Skip to content

Instantly share code, notes, and snippets.

View xjcl's full-sized avatar
👋
Say hi to me!

Jan-Frederik Konopka xjcl

👋
Say hi to me!
  • Düsseldorf, Germany
View GitHub Profile
import asyncio
import time
async def say_after(delay, what):
await asyncio.sleep(delay)
print(what)
async def use_await():
await say_after(3, 'world')
await say_after(2, 'hello')
import requests
import asyncio
import aiohttp
import aiofiles
get_img_url = lambda i: 'https://cdn.discordapp.com/embed/avatars/' + str(i) + '.png'
def download_all_sync():
@xjcl
xjcl / codejam_2018_r1b_a.py
Created April 26, 2021 12:06
Google Code Jam -- Rounding Error -- Solution in Python
# usage: (python3 a.py < a.in) > a.out
import time, sys, inspect, platform
print = lambda *a, **k: __builtins__.print(str(inspect.currentframe().f_back.f_lineno)+':',
*a, file=sys.stderr, **k) if platform.node() in ['surfux', 'ssd'] else ...
#---------------------------------------------
'''
i know this is 'sort-by-goodness'
@xjcl
xjcl / codejam_2020_r1b_b.py
Last active April 26, 2021 13:02
Google Code Jam -- Blindfolded Bullseye -- Solution in Python
# usage: (python3 a.py < a.in) > a.out
import time, sys, inspect, platform
print = lambda *a, **k: __builtins__.print(str(inspect.currentframe().f_back.f_lineno)+':',
*a, file=sys.stderr, **k) if platform.node() in ['surfux', 'ssd'] else ...
class EndTestCase(Exception): pass
#---------------------------------------------