Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
| #!/bin/bash | |
| method=$1 | |
| ss-tunnel -k test -m $method -l 8387 -L 127.0.0.1:8388 -s 127.0.0.1 -p 8389 & | |
| ss_tunnel_pid=$! | |
| ss-server -k test -m $method -s 127.0.0.1 -p 8389 & | |
| ss_server_pid=$! | |
| iperf -s -p 8388 & |
| Byobu is a suite of enhancements to tmux, as a command line | |
| tool providing live system status, dynamic window management, | |
| and some convenient keybindings: | |
| F1 * Used by X11 * | |
| Shift-F1 Display this help | |
| F2 Create a new window | |
| Shift-F2 Create a horizontal split | |
| Ctrl-F2 Create a vertical split | |
| Ctrl-Shift-F2 Create a new session |
Please see other gists for updated information. https://gist.github.com/XenoPanther/15d8fad49fbd51c6bd946f2974084ef8
| CONFIG = { | |
| 'Arial Black' : 'ENG', | |
| 'Arial' : 'ENG', | |
| 'Calibri' : 'ENG', | |
| 'Cambria' : 'ENG', | |
| 'Candara' : 'ENG', | |
| 'Comic Sans MS' : 'ENG', | |
| 'Constantia' : 'ENG', | |
| 'Corbel' : 'ENG', | |
| 'Georgia' : 'ENG', |
| #!/bin/sh | |
| # Mount an NFS share on Android | |
| # Requirements: | |
| # - Busybox | |
| # - A kernel supporting nfs (either built-in or as a module) | |
| # On my Nexus 7 2012 I use the following kernel: | |
| # http://forum.xda-developers.com/showthread.php?t=2107224 | |
| # Remember: if you have problems of system space, simply delete some of the default stuff. |