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
โญ Total Stars: 6.2k | |
โ Total Commits: 14.7k | |
๐ Total PRs: 921 | |
๐ฉ Total Issues: 101 | |
๐ฆ Contributed to: 11 |
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
๐ Morning 41 commits โโโโโโโโโโโโโโโโโโโโโ 15.3% | |
๐ Daytime 76 commits โโโโโโโโโโโโโโโโโโโโโ 28.4% | |
๐ Evening 103 commits โโโโโโโโโโโโโโโโโโโโโ 38.4% | |
๐ Night 48 commits โโโโโโโโโโโโโโโโโโโโโ 17.9% |
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
Rust ๐ 26h56m โโโโโโโโโโโโโโโโโโโโโโโโโโโ 63.7% | |
TypeScript ๐ 11h22m โโโโโโโโโโโโโโโโโโโโโโโโโโโ 26.9% | |
Other ๐ 1h17m โโโโโโโโโโโโโโโโโโโโโโโโโโโ 3.1% | |
C++ ๐ 53m โโโโโโโโโโโโโโโโโโโโโโโโโโโ 2.1% | |
JavaScript ๐ 47m โโโโโโโโโโโโโโโโโโโโโโโโโโโ 1.9% |
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 telethon import TelegramClient | |
from telethon.tl.functions.messages import GetMessagesViewsRequest | |
import socks | |
import sys, time | |
# Open http://telethon.readthedocs.io/en/latest/extra/basic/creating-a-client.html#creating-a-client and login with your phone number. | |
# Click under API Development tools. | |
# A Create new application window will appear. Fill in your application details. There is no need to enter any URL, and only the first two fields (App title and Short name) can currently be changed later. | |
# Click on Create application at the end. Remember that your API hash is secret and Telegram wonโt let you revoke it. Donโt post it anywhere! |
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
mkdir ./deploy-gh-page | |
cp -rf "${DeployPath}" ./deploy-gh-page | |
cd ./deploy-gh-page | |
git init | |
git config --global push.default matching | |
git config --global user.email "${GitHubEmail}" | |
git config --global user.name "${GitHubUser}" | |
git add --all . |
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
Show hidden characters
{ | |
"extends": ["tslint:recommended", "tslint-react"], | |
"rules": { | |
"arrow-parens": false, | |
"arrow-return-shorthand": [false], | |
"comment-format": [true, "check-space"], | |
"import-blacklist": [true, "rxjs"], | |
"interface-over-type-literal": false, | |
"interface-name": false, | |
"max-line-length": [true, 120], |
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 telegram import Bot,ParseMode | |
from github import Github | |
import time | |
from datetime import datetime | |
import calendar | |
import traceback | |
bot = Bot("xxxxxxxx:xxxxxxxxxxxxxxxxxxxxxx") #Telegram bot token | |
def newEvent(event): |