Skip to content

Instantly share code, notes, and snippets.

View pielco11's full-sized avatar
🥛
Remember to drink water!

Francesco Poldi pielco11

🥛
Remember to drink water!
View GitHub Profile
If 2fa is enabled on github switch to ssh instead of https on linux
1. generate an ssh keypair on your linux box
ssh-keygen -t {rsa|dsa}
2. add the public key to github: profile - settings - ssh keys
3. switch from https to ssh
Check your repo remote:
@developius
developius / README.md
Last active May 20, 2025 11:20
Setup SSH keys for use with GitHub/GitLab/BitBucket etc

Create a new repository, or reuse an existing one.

Generate a new SSH key:

ssh-keygen -t rsa -C "your_email@example.com"

Copy the contents of the file ~/.ssh/id_rsa.pub to your SSH keys in your GitHub account settings (https://github.com/settings/keys).

Test SSH key:

#!/usr/bin/env python3
import asyncio
import time
import aiohttp
START = time.monotonic()
@Integralist
Integralist / Multiple asynchronous HTTP GET requests with Python's aiohttp and asyncio.py
Created November 1, 2016 15:37
Multiple asynchronous HTTP GET requests with Python's aiohttp and asyncio
import time
import datetime
import asyncio
import aiohttp
domain = 'http://integralist.co.uk'
a = '{}/foo?run={}'.format(domain, time.time())
b = '{}/bar?run={}'.format(domain, time.time())
async def get(url):