Skip to content

Instantly share code, notes, and snippets.

View rvtr's full-sized avatar
🤭
Oopsies, I bricked your DS

Lillian Skinner rvtr

🤭
Oopsies, I bricked your DS
View GitHub Profile
@xprism1
xprism1 / dump_3ds_panda.md
Last active April 1, 2024 16:21
Make a clean dump of a 3DS PANDA

Dumping 3DS PANDA NAND

What you need

  • A ntrboot compatible flashcart
  • A magnet that triggers the sleep mode of your PANDA (if using a folding style 3DS)
  • An already hacked retail 3DS (with Luma3DS)
  • A 3DS PANDA
    • Insert a new SD card into the PANDA (in case deleted data could be recovered by imaging the SD card the PANDA came with)
  • The latest release of ntrboot_flasher (download the ntrboot_flasher.firm)
  • The latest release of GodMode9 (download the GodMode9-(version)-(date).zip)
@nevillepark
nevillepark / README.md
Last active January 25, 2024 15:13
CBC MP3 stream urls
@Epicpkmn11
Epicpkmn11 / bannergif.py
Last active February 21, 2024 00:52
bannergif.py - Extracts a DS(i) ROM's icon to an image
#!/usr/bin/env python3
# Requirements:
# pip3 install libscrc pillow
"""
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
@nevillepark
nevillepark / README.md
Last active May 28, 2024 02:27
CBC radio stream URLs

CBC Radio Stream URLs

Using these URLs, you can listen to CBC radio streams with applications like VLC or Transistor. The files are M3U playlists, so you can use them as-is, edit them to suit your tastes, or use individual URLs.

This playlist contains the .m3u8 URLs from the CBC Listen website, which uses the HLS (HTTP Live Streaming) protocol. The audio stream is broken up into multiple tiny files, which are then fed into the .m3u8 playlist file that delivers them to your computer in the right order. This should work with modern media players.

This legacy playlist uses good old-fashioned MP3 streams found on PublicRadioFan.com. It will work with older programs like Winamp that don't support HLS. I don't know how lo

@xavierfoucrier
xavierfoucrier / gpg-signing.md
Last active June 5, 2024 09:39
GPG signing with Git and Github Desktop

GPG signing – git github-desktop

Here is a short guide that will help you setup your environment to create signed commits or signed tags with Git locally. This has been extensively tested on Windows with Git and the Github Desktop application: I use it every day for my professional development projects.

I you face any issue, feel free to leave a comment below.

Summary

  1. Sign commits or tags
  2. Key passphrase
  3. Disable signatures
  4. Renew a GPG key
@atenni
atenni / README.md
Last active April 24, 2024 01:36
How to permalink to a gist's raw file

Problem: When linking to the raw version of a gist, the link changes with each revision.

Solution:

To return the first file from a gist: https://gist.github.com/[gist_user]/[gist_id]/raw/

To get a file from multi–file gist: https://gist.github.com/[gist_user]/[gist_id]/raw/[file_name]