This file contains 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
// .git/config file example, update each project | |
[remote "origin"] | |
url = [email protected]:repo-namespace/reponame.git | |
fetch = +refs/heads/*:refs/remotes/origin/* |
This file contains 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
[ | |
{ "keys": ["super+d"], "command": "duplicate_line" }, | |
{ "keys": ["super+delete"], "command": "delete_line" }, | |
{ "keys": ["shift+alt+up"], "command": "swap_line_up" }, | |
{ "keys": ["shift+alt+down"], "command": "swap_line_down" }, | |
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol", "extend": false} } | |
] |
This file contains 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
class Coordinates | |
{ | |
/** | |
* @param array $c1 Expected [lat, lon] EPSG:4326 | |
* @param array $c2 Expected [lat, lon] EPSG:4326 | |
* @return float|int distance in meters | |
*/ | |
public function calculateDistance($c1, $c2) | |
{ |
This script is a copy of https://marekbosman.com/site/automatic-update-of-cloudflare-ip-addresses-in-nginx/
wget https://gist.githubusercontent.com/AidasK/27aa5d6f918eca12d95427178b5aaa59/raw/e3ce185de43d89c237e081d3f56e5a79024b4115/cloudflare-update-ip-ranges.sh -P /usr/local/bin/
chmod +x /usr/local/bin/cloudflare-update-ip-ranges.sh
add include /etc/nginx/cloudflare;
this line to /etc/nginx/nginx.conf (above include /etc/nginx/conf.d/*.conf;
)
This file contains 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
[ ]Pasai | |
[ ]pinigai | |
[ ]draudimas | |
[ ]EU draudimo korteles | |
[ ]credit card | |
[ ]sutartys | |
[ ]pinigine | |
Rubai | |
[ ]termo apatiniai |
This file contains 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
#!/bin/bash | |
for arg in $* | |
do | |
if [[ $arg =~ ^\-e\=.* ]]; then | |
force=${arg:3} | |
echo "FORCE $force" | |
fi | |
done; | |
for file in $* |
This file contains 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
#!/bin/bash | |
DIR=$(basename `pwd` | tr "[:upper:]" "[:lower:]") | |
CONTAINER="${DIR}""_php_1" | |
# support for whitespace in arg list | |
CSMOPTS=() | |
whitespace="[[:space:]]" | |
for i in "$@" | |
do |
This file contains 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/python -u | |
""" | |
Dropbox File Transfer Comparison - POC | |
This program compares the speed of uploading multiple files to dropbox using | |
both queued and parallel connections per file. | |
""" | |
import time |
This file contains 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
Uploading 2 files of size 104857600 | |
in sequence time taken (seconds): 54.40421 | |
in parallel time taken (seconds): 46.30641 | |
Uploading 4 files of size 104857600 | |
in sequence time taken (seconds): 109.19875 | |
in parallel time taken (seconds): 81.90215 | |
Uploading 8 files of size 104857600 | |
in sequence time taken (seconds): 227.43679 | |
in parallel time taken (seconds): 154.61778 |
NewerOlder