This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Prevent link mangling on Google | |
// @namespace LordBusiness.LMG | |
// @match https://www.google.com/search | |
// @grant none | |
// @version 1.1 | |
// @author radiantly | |
// @description Prevent google from mangling the link when copying or clicking the link on Firefox | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Internal name | Serial | Driver name | Driver version | Filename | |
---|---|---|---|---|---|
F-ZERO ADVAN | AGB-AFZJ-JPN | MusicPlayer2000 | 0001 - F-Zero (J).gba | ||
SUPER MARIOA | AGB-AMAJ-JPN | MusicPlayer2000 | 0002 - Super Mario Advance (J).gba | ||
ROCKMAN_EXE | AGB-AREJ-JPN | MusicPlayer2000 | 0003 - Battle Network RockMan EXE (J).gba | ||
KURURIN | AGB-AKRJ-JPN | MusicPlayer2000 | 0004 - Kuru Kuru Kururin (J).gba | ||
MR. DRILLER2 | AGB-AD2J-JPN | MusicPlayer2000/? | 0005 - Mr. Driller 2 (J).gba | ||
CHUCHUROCKET | AGB-ACRJ-JPN | MusicPlayer2000 | 0006 - Chu Chu Rocket! (J).gba | ||
DRACULA AGB1 | AGB-AAMJ-JPN | MusicPlayer2000 | 0007 - Akumajou Dracula - Circle of the Moon (J).gba | ||
ADVANCE GTA | AGB-AG7J-JPN | MusicPlayer2000 | 0008 - Advance GTA (J).gba | ||
WAIWAI | AGB-AKWJ-JPN | 0009 - Konami Wai Wai Racing Advance (J).gba |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- old.css 2021-01-22 19:37:42.128976786 -0500 | |
+++ new.css 2021-01-22 19:37:30.008928748 -0500 | |
@@ -1,5 +1,5 @@ | |
-/**** old.min.css ***/ | |
-/*Wed Jan 20 2021 14:45:41 GMT-0500 (Eastern Standard Time)*/ | |
+/**** new.min.css ***/ | |
+/*Fri Jan 22 2021 11:05:45 GMT-0500 (Eastern Standard Time)*/ | |
@charset "UTF-8"; | |
*,:after,:before { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
import subprocess | |
import json | |
OFFSET = 1288834974657 | |
TIME_DIFF = 359 | |
MACHINE_ID = 377 | |
N = 10 | |
def tweet_id_from_timestamp(utcdttime): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Bill Ticehurst, 2020 | |
Emits a minimal 16 x 16 gif suitable for use as an inline favicon | |
GIF spec at https://www.w3.org/Graphics/GIF/spec-gif89a.txt for the structure | |
Favicon formats supported at https://en.wikipedia.org/wiki/Favicon | |
For a transparent GIF (color_table = false, depend_on_background = true) this emits: | |
<link rel="icon" href="data:image/gif;base64,R0lGODlhEAAQAAAAACwAAAAAAQABAAACASgAOw=="> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rank | Type | Prefix/Suffix | Length | |
---|---|---|---|---|
1 | Prefix | my+ | 2 | |
2 | Suffix | +online | 6 | |
3 | Prefix | the+ | 3 | |
4 | Suffix | +web | 3 | |
5 | Suffix | +media | 5 | |
6 | Prefix | web+ | 3 | |
7 | Suffix | +world | 5 | |
8 | Suffix | +net | 3 | |
9 | Prefix | go+ | 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdint.h> | |
#include <elf.h> | |
#include <string.h> | |
struct xorInfo | |
{ | |
uint8_t *xor_table; | |
uint8_t *xor_ptr; | |
uint8_t *source; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> | |
#include <openssl/aes.h> | |
#include <openssl/rsa.h> | |
#include <algorithm> | |
#include <openssl/sha.h> | |
#pragma pack(push, 1) | |
struct npCoreKey |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdint.h> | |
#include <elf.h> | |
#include <string.h> | |
uint8_t *findDataSegment(uint8_t *buf) | |
{ | |
Elf32_Ehdr *ehdr = (Elf32_Ehdr *) buf; | |
Elf32_Shdr *shdr = (Elf32_Shdr *)&buf[ehdr->e_shoff]; |