If you like me use a Linux station to do your development and don't want to use the standard Git diff tool this Gist is for you.
- Download installation from Perforce Web Site
| [Trigger] | |
| Operation = Install | |
| Operation = Remove | |
| Operation = Upgrade | |
| Type = Package | |
| Target = * | |
| [Action] | |
| Description = Update gist with all installed pacman packages. | |
| When = PostTransaction | |
| Depends = gist |
| #Much code taken from https://github.com/roxas75/rxTools/blob/012a9c2fe99f2d421e68ae91f738b4028995ad67/tools/scripts/ncchinfo_gen.py | |
| #Uses some bits and pieces from https://github.com/Mtgxyz2/3ds-FUSE | |
| #Comments are for people that care about being able to read their code tommorrow :P | |
| from __future__ import print_function | |
| import os, sys, glob, struct | |
| from Crypto.Cipher import AES | |
| from Crypto.Util import Counter | |
| from hashlib import sha256 | |
| from ctypes import * | |
| from binascii import hexlify, unhexlify |
If you like me use a Linux station to do your development and don't want to use the standard Git diff tool this Gist is for you.
This tutorial will briefly tell you how to use pisg, a program that takes IRC logs and makes a webpage about statistics of the chat, with Discord.
/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
~/.ssh/config, set each ssh key for each repository as in this exemple:| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader | |
| == Shell |
| ROM:0001A020 DCD 4, 0 | |
| ROM:0001A028 DCD 0x203, 9, 0 | |
| ROM:0001A034 DCD 0x484A0190, 0x65324741, 5, 0, 0, 0 | |
| ROM:0001A04C DCD 0x2A052, 0xAA00AA00, 0xAA00AA00, 0x44584493, 0x1000000 | |
| ROM:0001A04C DCD 0xF0048683, 0xA00631D1, 0xBF0D0401, 0x180AE3F, 0xD1643842 | |
| ROM:0001A04C DCD 0x8888, 0x88888888, 0, 0 | |
| ROM:0001A084 DCD 0x11000D20, 0x7800000, 0x4002600, 0x40000000, 0x40000000 | |
| ROM:0001A084 DCD 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 | |
| ROM:0001A0C8 DCD 0xC30001, 0x60002, 0x20003, 6, 0xFF000A, 0x3F, 0 | |
| ROM:0001A0E4 DCD 0x203, 9, 0 |
| " Vimであいまいな幅の文字の論理幅を1にします | |
| set ambiwidth=single | |
| " RLoginであいまいな幅の文字の論理幅を1にします。 | |
| call writefile(["\e[?8428h"], '/dev/tty') |
| // Written by Pioz. | |
| // Compile with: gcc -o autoclick autoclick.c -lX11 | |
| #include <stdio.h> // printf, fprintf and fflush | |
| #include <string.h> // memset | |
| #include <unistd.h> // sleep and usleep | |
| #include <X11/Xlib.h> // X11 | |
| #include <X11/Xutil.h> // XGetPixel and XDestroyImage | |
| // Simulate mouse click |