I hereby claim:
- I am sarg on github.
- I am sarg (https://keybase.io/sarg) on keybase.
- I have a public key whose fingerprint is 09F6 8FC8 0BA0 DC12 5CA7 C490 3ADB 423B 40A2 0785
To claim this, I am signing this object:
/* | |
Mask all digits in credit card number unless they are first or last four characters. | |
Never mask credit cards less than 6 characters | |
*/ | |
class CreditCard { | |
/** | |
* Mask credit card number for display. | |
*/ | |
public static String maskify(String creditCardNumber) { | |
// Never mask credit cards with less than 6 characters. |
(defun geiser-edit--goto-line-guix (symbol line) | |
(unless (numberp line) | |
(goto-char (point-min)) | |
(when (re-search-forward | |
(rx (seq "(define-public" | |
(one-or-more " ") | |
symbol-start (literal (format "%s" symbol)) symbol-end)) | |
nil t) | |
(goto-char (match-beginning 0))))) |
import requests | |
from requests.auth import HTTPBasicAuth | |
settings = { | |
'url' : 'http://apivelobike.velobike.ru', | |
'login' : '', | |
'pin' : '', | |
'year' : '2017' | |
} |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# 0. prerequisites: | |
# register bot and get access token | |
# message /newbot to @BotFather | |
# enter bot name | |
# save token received from @BotFather | |
# send message to your newly created bot | |
# find out chat_id with | |
# curl -s https://api.telegram.org/bot${TOKEN}/getUpdates \ |