This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = Kirill Berezin | |
| email = enelar@exsul.net | |
| [url "ssh://git@github.com"] | |
| insteadOf = https://github.com | |
| [url "ssh://git@gitlab.com"] | |
| insteadOf = https://gitlab.com | |
| [core] | |
| editor = nano | |
| [push] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| application: you-app-name-here | |
| version: 1 | |
| runtime: python | |
| api_version: 1 | |
| default_expiration: "30d" | |
| handlers: | |
| - url: /(.*\.(appcache|manifest)) | |
| mime_type: text/cache-manifest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <meta http-equiv="refresh" content="5"/> | |
| <?php | |
| include('phpa2o.php'); | |
| include('phpsql/oneline.php'); | |
| phpsql\OneLineConfig("pgsql://postgres@localhost/plov"); | |
| $trans = db::Begin(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "auto_match_enabled": false, | |
| "draw_minimap_border": true, | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "font_size": 14, | |
| "gutter": true, | |
| "highlight_line": true, | |
| "hot_exit": true, | |
| "ignored_packages": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vm.swappiness=90 | |
| vm.dirty_ratio=50 | |
| vm.dirty_background_ratio=30 | |
| vm.dirty_writeback_centisecs=60000 | |
| vm.vfs_cache_pressure=150 | |
| vm.laptop_mode=1 | |
| vm.page-cluster=1 | |
| vm.min_free_kbytes=2048 | |
| vm.memory_failure_recovery=1 | |
| vm.panic_on_oom=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -type f -iname "*.xlsx" -print0 | while IFS= read -r -d $'\0' line; do | |
| echo "$line" | |
| ssconvert -S "$line" "${line%.xlsx}.%s.csv" | |
| # rm "$line" | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -XX:+UseParallelGC -Xms10m -Xmx1536m -XX:NewRatio=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # PARAMETERS | |
| # ---------- | |
| # PHP | |
| # --- | |
| PHP_TIMEZONE="UTC" | |
| PHP_DIRECTORY="/etc/php5ts" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define EMPTY() | |
| #define DEFER(func) func EMPTY() | |
| #define EVAL(...) EVAL1(EVAL1(EVAL1(__VA_ARGS__))) | |
| #define EVAL1(...) EVAL2(EVAL2(EVAL2(__VA_ARGS__))) | |
| #define EVAL2(...) EVAL3(EVAL3(EVAL3(__VA_ARGS__))) | |
| #define EVAL3(...) EVAL4(EVAL4(EVAL4(__VA_ARGS__))) | |
| #define EVAL4(...) EVAL5(EVAL5(EVAL5(__VA_ARGS__))) | |
| #define EVAL5(...) __VA_ARGS__ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias ilossh='ssh -o PasswordAuthentication=yes \ | |
| -o ChallengeResponseAuthentication=no \ | |
| -o GSSAPIAuthentication=no \ | |
| -o HostbasedAuthentication=no \ | |
| -o PubkeyAuthentication=no \ | |
| -o RSAAuthentication=no \ | |
| -o Compression=no \ | |
| -o ForwardAgent=no \ | |
| -o ForwardX11=no \ | |
| -o KexAlgorithms=diffie-hellman-group1-sha1 \ |