Show all commits the current feature branch has:
$ git show -s $(./git-branch-commits.sh)
Cherry-Pick all commits the specific pull request (checked out as branch) has:
find $HOME/Maildir -type d -not \( -path "*/cur" -or -path "*/new" -or -path "*/tmp" -or -path "*/.Trash" \) -exec ./maildir-deduplicate.py -n {} + |
*.lmu diff=easyrpg |
#!/usr/bin/env ruby | |
# read | |
xxd = IO.read('file.xxd') | |
# values are comma separated | |
chars = xxd.split(',') | |
# with whitespaces | |
chars.map! {|c| c.strip} | |
# in hex | |
chars.map! {|c| c.to_i(16)} |
diff -Naur libmad-0.15.1b.orig/configure.ac libmad-0.15.1b/configure.ac | |
--- libmad-0.15.1b.orig/configure.ac 2004-01-23 10:41:32.000000000 +0100 | |
+++ libmad-0.15.1b/configure.ac 2015-10-12 05:51:12.514078692 +0200 | |
@@ -26,7 +26,7 @@ | |
AC_CONFIG_SRCDIR([decoder.h]) | |
-AM_INIT_AUTOMAKE | |
+AM_INIT_AUTOMAKE([foreign]) | |
#!/usr/bin/ruby | |
rooms = Array[ | |
"Message", | |
"Message options", | |
"Show face", | |
"Choices", | |
"Number input", | |
"Switch operation", | |
"Variable operation", |
# Name: discord-bot-bridge.pl | |
# Author: carstene1ns < dev f4ke de > | |
# Date: 2017-08-04 | |
# License: This code is put in the public domain. | |
use strict; | |
use warnings; | |
use utf8; | |
use v5.26.0; | |
use HexChat; |
<?xml version='1.0'?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<!-- load default settings --> | |
<include>/etc/fonts/fonts.conf</include> | |
<!-- disable anti-aliasing --> | |
<match target="font"> | |
<edit mode="assign" name="rgba"> | |
<const>none</const> | |
</edit> |
#!/usr/bin/env ruby | |
# | |
# dump_romfs.rb by carstene1ns, 2018 - under ISC License | |
# | |
# See http://switchbrew.org/index.php?title=NRO for reference | |
MAGIC = "NRO0" | |
HEADER = "ASET" | |
# helper |
#/etc/dnsmasq.conf | |
no-resolv | |
no-hosts | |
address=/ctest.cdn.nintendo.net/<IP of your Webserver> | |
#log-queries |