jameschenjav

Results 6 issues of jameschenjav

I have a JSON file contains 138 instances records, which grabbed from [EC2 describe-instances](https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-instances.html) ```fish ❯ jq 'length' ../tmp/2.json 138 ``` It's slightly different from the [example](https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-instances.html#examples), just flatten with...

I have used `rbenv` for years on Mac. This week I started to use `frum` and immediately noticed an issue. The `readline` does not work properly. For example, previously if...

I have several hosts configured in my ~/.ssh/config, that protected with company's VPN or AWS session manager. There are some examples: ``` Host foo.i-123456 User xxx ProxyCommand aws ssm start-session...

new feature

Not everyone uses sh or bash. Event `env STORYBOOK=true vue-cli-service storybook:serve -p 6006 -c config/storybook` (which should be `/usr/bin/env` by default) would be better. btw, thanks for your great work....

The sorting flag from `jq` is very helpful when dealing with JSON APIs. ``` -S sort keys of objects on output; ``` There is an example: ``` ❯ echo '{...

enhancement

`oracledb` version is `6.4.0` Table definition: ```ts class Foo extends Table { id = this.column('id', 'bigint') // NUMBER } const tFoo = new Foo(); const bar = await connection .selectFrom(tFoo)...