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
| #!/bin/sh | |
| write() { | |
| echo $* | |
| if [ "$DISPLAY" != "" ] | |
| then | |
| echo $* | dzen2 -tw 256 -p 2 -bg red -fg white -ta l | |
| fi | |
| } |
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
| // gcc -shared -fPIC -Wall -Werror -o debian-random.so debian-random.so.c | |
| #define _GNU_SOURCE | |
| #include <dlfcn.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| int null_fd = -1; |
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> | |
| int main() | |
| { | |
| void **pointer = 0; | |
| pointer += 1; | |
| printf("%d\n", pointer); | |
| } |
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
| # This configuration uses Mod1 and Mod3. Make sure they are mapped properly using xev(1) | |
| # and xmodmap(1). Usually, Mod1 is Alt (Alt_L) and Mod3 is Windows (Super_L) | |
| # ISO 10646 = Unicode | |
| font -*-fixed-medium-r-normal-*-13-*-*-*-*-70-iso10646-* | |
| # Use Mouse+Mod1 to drag floating windows to their wanted position | |
| floating_modifier Mod4 | |
| # New configuration |
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
| .global _start | |
| _start: | |
| nop | |
| nop | |
| nop | |
| nop | |
| nop | |
| nop | |
| nop |
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
| 05:13:09.360129 00:1a:92:42:63:a0 (oui Unknown) SNA > f8:db:7f:97:d5:68 (oui Unknown) STP Information, send seq 0, rcv seq 16, Flags [Command], length 70 | |
| 05:13:09.364128 00:1a:92:42:63:a0 (oui Unknown) SNA > f8:db:7f:97:d5:68 (oui Unknown) STP Information, send seq 0, rcv seq 16, Flags [Command], length 70 | |
| 05:13:09.364133 00:1a:92:42:63:a0 (oui Unknown) SNA > f8:db:7f:97:d5:68 (oui Unknown) Unknown DSAP 0x44 Information, send seq 0, rcv seq 16, Flags [Command], length 76 | |
| 05:13:09.364137 00:1a:92:42:63:a0 (oui Unknown) SNA > f8:db:7f:97:d5:68 (oui Unknown) Unknown DSAP 0x44 Information, send seq 0, rcv seq 16, Flags [Command], length 96 | |
| 05:13:09.458278 00:1a:92:42:63:a0 (oui Unknown) SNA > f8:db:7f:97:d5:68 (oui Unknown) Unknown DSAP 0x46 Information, send seq 0, rcv seq 16, Flags [Command], length 86 | |
| 05:13:09.512310 00:1a:92:42:63:a0 (oui Unknown) SNA > f8:db:7f:97:d5:68 (oui Unknown) Unknown DSAP 0x46 Information, send seq 0, rcv seq 16, Flags [Command], length 184 | |
| 05:13:09.572188 00:1a:92:42:63:a0 (oui Unkn |
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
| fritz-desktop:~% strace qemu -d cpu_reset 2>&1 | grep FUTEX_WAIT_PRIVATE | |
| futex(0x82dcb44, FUTEX_WAIT_PRIVATE, 1, NULL) = 0 |
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
| #!/bin/sh | |
| # prefix= | |
| cd $prefix/etc/zonefiles | |
| git pull origin master | |
| $prefix/sbin/rndc reload |
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
| syntax on | |
| filetype indent on | |
| set modeline ruler backspace=indent,eol,start number numberwidth=1 title mouse=a sw=2 ts=2 sts=2 guifont="Bitstream Vera Sans Mono 9" |
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
| rule add table 150 | |
| route add prohibit 74.119.76.0/22 table 150 | |
| route add prohibit 204.15.20.0/22 table 150 | |
| route add prohibit 66.220.144.0/20 table 150 | |
| route add prohibit 69.63.176.0/20 table 150 | |
| route add prohibit 69.171.224.0/19 table 150 | |
| route add prohibit 173.252.64.0/18 table 150 |