2016/12/10 add prce dependency
2016/07/13 remove latest dependencies that is not needed for compile: asciidoc xmlto
2019/03/06 change shadowsocks resource; add shadowsocks new dependencies build
| 毛WOOL | |
| 丝 SILK(SE) | |
| 棉 COTTON(CO) | |
| 麻 LINEN | |
| 亚麻 FLAX | |
| 琼麻 SISAL | |
| 大麻 hemp | |
| 黄麻 jute | |
| 马尼拉麻 abaca | |
| 尼龙 NYLON |
| # | |
| # Uncrustify Configuration File | |
| # File Created With UncrustifyX 0.2 (140) | |
| # | |
| # Alignment | |
| # --------- | |
| ## Alignment |
| #!/bin/sh | |
| #ndk root now could be installed in Android SDK manager/Extras/NDK Bundle; should be $ANDROID_HOME/ndk_bundle | |
| echo "NKDROOT: " $NDKROOT | |
| export ANRDOID_TOOLCHAIN="arm-linux-androideabi-4.9" | |
| # Set up toolchain paths. | |
| # | |
| # For ARM |
| <?php | |
| namespace Pokus; | |
| class Exception extends \Exception | |
| { | |
| } | |
| function tttt($string) | |
| { | |
| try { |
| upstream redash { | |
| server redash:5000; | |
| } | |
| server { | |
| listen 80; | |
| location / { | |
| return 301 https://$host$request_uri; | |
| } |
| window: | |
| # Window dimensions (changes require restart) | |
| # | |
| # Number of lines/columns (not pixels) in the terminal. The number of columns | |
| # must be at least `2`, while using a value of `0` for columns and lines will | |
| # fall back to the window manager's recommended size. | |
| dimensions: | |
| columns: 500 | |
| lines: 30 |
| local spaces = require("hs.spaces") -- https://github.com/asmagill/hs._asm.spaces | |
| -- Switch kitty | |
| hs.hotkey.bind({'command'}, 'escape', function () -- change your own hotkey combo here, available keys could be found here:https://www.hammerspoon.org/docs/hs.hotkey.html#bind | |
| local BUNDLE_ID = 'net.kovidgoyal.kitty' -- more accurate to avoid mismatching on browser titles | |
| function getMainWindow(app) | |
| -- get main window from app | |
| local win = nil | |
| while win == nil do |