- Line by line
- No colors
- Able to be piped into vim (shown later on)
diff <(curl -vs https://reddit.com 2>&1) <(curl -vs https://reddit.com 2>&1)Some stuff off the top of my head:
Monitorama 2013:
RICON East 2013:
| BeautifulSoup==3.2.1 | |
| Django==1.4.2 | |
| Fabric==1.4.2 | |
| MySQL-python==1.2.3 | |
| PIL==1.1.7 | |
| South==0.7.5 | |
| akismet==0.2.0 | |
| amqp==1.0.13 | |
| amqplib==1.0.2 | |
| anyjson==0.3.3 |
| void **find_sys_call_table(void *kernel_addr, int kernel_size) | |
| { | |
| /* | |
| Check for the system_call_fastpath() signature, hand-written piece of | |
| assembly code from arch/x86/kernel/entry_64.S: | |
| ja badsys | |
| mov rcx, r10 | |
| call sys_call_table[rax * 8] | |
| mov [rsp + 20h], rax |
| // WEBRTC stuff: | |
| #include "talk/base/logging.h" | |
| #include "talk/base/stringutils.h" | |
| #include "talk/base/common.h" | |
| #include "talk/base/physicalsocketserver.h" | |
| #include "talk/base/ssladapter.h" | |
| #include "talk/base/thread.h" | |
| // Have to undef some stuff here because the compiler yells about it. Postgres | |
| // has it's own versions. |
| # Makefile for a go project | |
| # | |
| # Author: Jon Eisen | |
| # site: joneisen.me | |
| # | |
| # Targets: | |
| # all: Builds the code | |
| # build: Builds the code | |
| # fmt: Formats the source files | |
| # clean: cleans the code |
| <?php | |
| /** | |
| * Set global/skip_process_modules_updates to '1' in app/etc/local.xml and | |
| * then use this script to apply updates and refresh the config cache without | |
| * causing a stampede on the config cache. | |
| * | |
| * @author Colin Mollenhour | |
| */ | |
| umask(0); | |
| ini_set('memory_limit','512M'); |
| #!/bin/bash | |
| # load resources | |
| xrdb -merge .Xresources | |
| #xsetroot -solid '#222'& | |
| # map caps lock as extra escape | |
| xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'& | |
| # start clipboard manager | |
| parcellite& |