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
def testWord(word, word_new): | |
isGreater = len(word_new) > len(word) + 1 | |
isLower = len(word_new) < len(word) - 1 | |
if isGreater or isLower: | |
return False | |
if len(word_new) > len(word): |
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
import requests | |
old_token = '' | |
new_token = '' | |
h = { | |
'Authorization': 'Bearer ' + old_token | |
} | |
tracks = [] | |
index = 0 |
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
from threading import Thread | |
import random | |
import time | |
import requests | |
def send_configurations(n=1, n2=2): | |
time.sleep(random.randint(1, 10)) | |
print(n) | |
for n in range(10): |
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
from zeep import Client | |
from zeep.transports import Transport | |
from zeep.wsse.username import UsernameToken | |
import json | |
url = "https://example.com/Service.svc?wsdl" | |
client = Client(url, wsse=UsernameToken("username", "password")) | |
reponse = client.service.MyService(request={"CountryCode": "MEX", "ClientCode": 0000}) |
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
#!/bin/bash | |
# Add this file as a crontab task | |
# Example: * * * * * bash /opt/dir/task/stayalive.sh | |
# If the collector is not runing, execute it | |
if [[ ! `pgrep -f "python main.py"` ]]; then | |
cd /opt/dir/process && ./process-name | |
fi |
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
function calculateDistance(rssi) { | |
var txPower = -59 //hard coded power value. Usually ranges between -59 to -65 | |
if (rssi == 0) { | |
return -1.0; | |
} | |
var ratio = rssi*1.0/txPower; | |
if (ratio < 1.0) { |
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
nohup command </dev/null >/dev/null 2>&1 & # completely detached from terminal |
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
env GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v bitbucket.com/mycompany/my_package |
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
SELECT Id, Body, AcceptedAnswerId, Score, ParentId, CreationDate | |
FROM Posts | |
WHERE CreationDate BETWEEN '2014-01-01' AND '2017-01-01' |
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
func ReadGzFile(filename string) ([]byte, error) { | |
fi, err := os.Open(filename) | |
if err != nil { | |
return nil, err | |
} | |
defer fi.Close() | |
fz, err := gzip.NewReader(fi) | |
if err != nil { | |
return nil, err |