Skip to content

Instantly share code, notes, and snippets.

View DorianRudolph's full-sized avatar

DorianRudolph

View GitHub Profile
@hyperupcall
hyperupcall / settings.jsonc
Last active May 13, 2024 22:21
VSCode config to disable popular extensions' annoyances (telemetry, notifications, welcome pages, etc.)
// I'm tired of extensions that automatically:
// - show welcome pages / walkthroughs
// - show release notes
// - send telemetry
// - recommend things
//
// This disables all of that stuff.
// If you have more config, leave a comment so I can add it!!
{
@yancyn
yancyn / git-svn.md
Last active April 29, 2024 05:18
Migrate Archive Google Code SVN to Git

Migrate Archive Google Code SVN to Git

Requirements

  • git
  • git-svn

Setup¹

$ sudo apt-get install git
$ sudo add-apt-repository ppa:git-core/ppa
anonymous
anonymous / ps2mouse.ino
Created August 23, 2015 11:23
#include <ps2.h>
PS2 mouse(6, 5);
bool left, right;
void mouse_init()
{
mouse.write(0xff);
mouse.read();