I hereby claim:
- I am tvorogme on github.
- I am tvorogme (https://keybase.io/tvorogme) on keybase.
- I have a public key ASBkOqZ5ohB8aGtHATIfJUEpxo9pA4nXQlEmZfh5i6Dg3go
To claim this, I am signing this object:
| #!/bin/bash | |
| if screen -ls | grep vkusvill_$BRANCH | |
| then | |
| screen -X -S vkusvill_$BRANCH quit | |
| else | |
| echo "Session doesn't exist, going on..." | |
| fi | |
| screen -dmS vkusvill_$BRANCH |
| #! /bin/bash | |
| SLEEP_TIME=5 # Default time between checks. | |
| SAFE_PERCENT=30 # Still safe at this level. | |
| DANGER_PERCENT=20 # Warn when battery at this level. | |
| CRITICAL_PERCENT=5 # Hibernate when battery at this level. | |
| NAGBAR_PID=0 | |
| export DISPLAY=:0.0 |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import re | |
| string = input().rstrip().lstrip() | |
| string = string.lower() | |
| string = re.sub("\.{1}\s*", ". ", string) | |
| tmp_string = string | |
| string = string.split(". ") | |
| string = list(filter(lambda x: len(x), string)) |
I hereby claim:
To claim this, I am signing this object:
| from urllib.request import urlopen | |
| from concurrent import futures | |
| import pickle | |
| site = "http://izvestia.ru/news/" | |
| last_publication = 646946 | |
| start = 500000 | |
| answer = [] | |
| def get_page(n): |
| from urllib.request import urlopen | |
| from concurrent import futures | |
| import pickle | |
| site = "http://www.nnov.kp.ru/daily/1/" | |
| last_publication = 3625745 | |
| start = 3527000 | |
| answer = [] | |
| def get_page(n): |