Skip to content

Instantly share code, notes, and snippets.

View 1271's full-sized avatar
💓
I want uppy!

Sergey Zharkov 1271

💓
I want uppy!
View GitHub Profile
http://shields.io/
@1271
1271 / gist:56e030604544e881ca1caf513c8561b7
Created January 20, 2017 13:33 — forked from AliMD/gist:3344523
All github Emoji (Smiles)

All github Emoji (Smiles)

ali.md/emoji

:bowtie: | 😄 | 😆 | 😊 | 😃 | ☺️ | 😏 | 😍 | 😘 | :kissing_face: | 😳 | 😌 | 😆 | 😁 | 😉 | :wink2: | 👅 | 😒 | 😅 | 😓

😩 | 😔 | 😞 | 😖 | 😨 | 😰 | 😣 | 😢 | 😭 | 😂 | 😲 | 😱 | :neckbeard: | 😫 | 😠 | 😡 | 😤 | 😪 | 😋 | 😷

😎 | 😵 | 👿 | 😈 | 😐 | 😶 | 😇 | 👽 | 💛 | 💙 | 💜 | ❤️ | 💚 | 💔 | 💓 | 💗 | 💕 | 💞 | 💘 | ✨

@1271
1271 / gist:7ee295d97071ea046077b0faf8391524
Created September 26, 2017 19:14 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
<script>
function downloadPack() {
fetch("https://api.github.com/repos/yuru-yuri/Manga-Downloader/releases/latest")
.then(response => response.json())
.then((out) => {
// Initiate the download.
document.querySelector("#without-html5-").innerHTML="<a href='"+out.zipball_url+"'>Click here if the download didn't start automatically.</a>";
window.location.assign(out.zipball_url);
});
@1271
1271 / conda.md
Created November 20, 2017 10:38
Conda py3.5 qt4
https://www.anaconda.com/download/
conda create -n oldpyqt pyqt=4
conda install -c acellera -n oldpyqt pyinstaller
@1271
1271 / ipk.py
Created December 28, 2017 21:23
ipk openwrt downloader
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from requests import get
from lxml.html import document_fromstring
from os import path, makedirs
try:
import progressbar # pip install progressbar2
bar = progressbar.ProgressBar()
_bar = None
@1271
1271 / PCdisplay_v_1.3_1602_nano_168.ino
Last active January 23, 2018 12:32
PCdisplay_v_1.3_1602
#define DRIVER_VERSION 1 // 0 - маркировка драйвера кончается на 4АТ, 1 - на 4Т
// ------------------------ НАСТРОЙКИ ----------------------------
// ----------------------- ПИНЫ ---------------------------
#define BTN1 A3 // первая кнопка
#define BTN2 A2 // вторая кнопка
// ----------------------- ПИНЫ ---------------------------
// -------------------- БИБЛИОТЕКИ ---------------------
#include <OneWire.h> // библиотека протокола датчиков
language: php
php:
- '7.0'
- nightly
matrix:
include:
# Eloquent bridge
- php: '7.0'
@1271
1271 / abookru_com.py
Last active April 27, 2018 10:33
abookru.com tracks downloader
import logging
import re
from argparse import ArgumentParser
from base64 import b64decode
from datetime import datetime
from multiprocessing import cpu_count
from os import makedirs
from os.path import basename, isdir, isfile, getsize, join
from sys import stderr
from threading import Thread
@1271
1271 / twitch-grabber.py
Last active June 5, 2018 12:45
twitch smiles downloader
from argparse import ArgumentParser
from multiprocessing import cpu_count
from os import path, makedirs
from threading import Thread
from progressbar import ProgressBar
from requests import get
args = ArgumentParser()
args.add_argument_group('General')