Skip to content

Instantly share code, notes, and snippets.

View YagamiD3v's full-sized avatar

YagamiD3v YagamiD3v

View GitHub Profile
@YagamiD3v
YagamiD3v / compile-aseprite-win.md
Created April 7, 2024 08:11 — forked from VermeilChan/compile-aseprite-win.md
Compile Aseprite from source code for Windows 11/10 x64
@YagamiD3v
YagamiD3v / compile-aseprite-gnu-linux.md
Created April 7, 2024 08:11 — forked from VermeilChan/compile-aseprite-gnu-linux.md
Compile Aseprite from source code for GNU/Linux
@YagamiD3v
YagamiD3v / p8.py
Created January 12, 2024 17:49 — forked from Ivoah/p8.py
Download all PICO-8 carts from lexaloffle BBS
from requests import get
from bs4 import BeautifulSoup
import re
import os
def make_filename(fname):
for c in ',! ().':
fname = fname.replace(c, '_')
while fname != fname.replace('__', '_'):
fname = fname.replace('__', '_')
@YagamiD3v
YagamiD3v / work-with-multiple-github-accounts.md
Created May 1, 2023 10:29 — forked from rahularity/work-with-multiple-github-accounts.md
How To Work With Multiple Github Accounts on your PC

How To Work With Multiple Github Accounts on a single Machine

Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.

NOTE: This logic can be extended to more than two accounts also. :)

The setup can be done in 5 easy steps:

Steps:

  • Step 1 : Create SSH keys for all accounts
  • Step 2 : Add SSH keys to SSH Agent