Xing Yahao

Results 37 comments of Xing Yahao

Thank you! I didn't know that! I understand how it works, and will support it.

@rgarrigue Hi, can you check the latest version? If you press 'n' in clusters, it should go to tasks 😄

Thanks! > About the "n" shortcut, doesn't feel intuitive, I naturally tried "tab", "enter", "right arrow" to move between clusters / tasks / containers That's true. Because they are used...

@raicem Thanks for your kindness 😭 I'm using Github Action, OS is ubuntu-latest. ``` Run node -v node -v npm -v npm run prod shell: /bin/bash -e {0} v12.18.3 6.14.7...

Here is how I config `webpack.mix.js`. ```js const path = require('path') let mix = require('laravel-mix') require('laravel-mix-react-typescript-extension') mix.reactTypeScript( path.resolve(__dirname, 'resources/ts/xx.tsx'), path.resolve(__dirname, 'public/js/xx.min.js') ) mix.disableSuccessNotifications().version() ``` And the output of `tsc` is...

```bash grep -n -i 'root' /tmp/test_grep.txt --color=auto ```

```bash sed "2,+3p" test.txt -n ``` ```bash sed "/with/p" test.txt -n ``` ```bash sed '2,$d' test.txt ``` ```bash sed -E -e "s/(Y|y)ou/Me/" test.txt -e "s/may/might/g" ``` ```bash sed "2i hello"...

```bash awk '{print $1}' test.txt ``` ```bash awk '{print $1,$2,$3}' test.txt ``` ```bash awk '{print "Hello: "$1,"World: "$2}' test.txt ``` ```bash awk 'NR==2,NR==3{print $1}' test.txt ``` ```bash awk '{print NR,$1}'...

```bash echo $PATH | awk -F ":" '{print $1,$NF}' ``` ```bash echo $PATH | awk -v FS=":" '{print $1}' ``` ```bash echo $PATH | awk -v FS=":" '{print $1,"--------------",$2}' ```...

```bash awk 'BEGIN{print "something here"}{print $1}' test.txt ``` ```bash awk 'BEGIN{print "-----------something before start-----------"}{print $1}END{print "--------------something after end--------------"}' test.txt ``` ```bash awk 'NR