Skip to content

Instantly share code, notes, and snippets.

View S1SYPHOS's full-sized avatar
🐧
hackin' on Linux

Martin Folkers S1SYPHOS

🐧
hackin' on Linux
View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active July 3, 2024 10:44
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:
@jonluca
jonluca / requests.py
Created June 15, 2021 04:06
Fast AsyncIO HTTP requests
import http.cookies
http.cookies._is_legal_key = lambda _: True
import asyncio
import aiohttp
import nest_asyncio
import time
nest_asyncio.apply()
async def gather_with_concurrency(n, *tasks):
semaphore = asyncio.Semaphore(n)