This file contains 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
3081dc8bd48393dfcb9af31a7d078a4f |
This file contains 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
xrandr --newmode "2560x1440" 241.50 2560 2600 2632 2720 1440 1443 1448 1481 -hsync +vsync | |
xrandr --addmode HDMI1 2560x1440 | |
xrandr --output HDMI1 --mode 2560x1440 |
This file contains 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
wireshark -k -i <(ssh [email protected] tcpdump -U -w - host somehost.example.org and port 80) |
This file contains 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
#!/usr/bin/env python | |
import ctypes | |
import ntplib # wget https://ntplib.googlecode.com/hg/ntplib.py | |
import sys | |
import time | |
# struct timespec { | |
# time_t tv_sec; /* seconds */ | |
# long tv_nsec; /* nanoseconds */ |
This file contains 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
<?php | |
function getRandomBits($bits) { | |
assert('is_int($bits)'); | |
/* First load some random bytes. */ | |
$numBytes = ($bits - 1) / 8 + 1; | |
$bytes = openssl_random_pseudo_bytes($numBytes); | |
/* Convert it to an integer. */ |
This file contains 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/bash | |
for ((C=0;C<=7;C++)) do echo -e "\e[0;$((30+C))mcolor$C\e[0m \e[1;$((30+C))mcolor$((C+8))\e[0m"; done |
This file contains 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
#!/usr/bin/env python | |
import platform | |
import socket | |
import struct | |
import sys | |
_ULOG_NL_EVENT = 111 | |
class _NetlinkHeader: | |
SIZE = 16 |
This file contains 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 <stddef.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#define IFNAMSIZ 16 | |
#define ULOG_PREFIX_LEN 32 | |
#define ULOG_MAC_LEN 80 | |
typedef struct ulog_packet_msg { |
This file contains 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
#!/usr/bin/env python | |
class Hello(object): | |
@staticmethod | |
def _hello_impl_1(): | |
print 'Hello world!' | |
_hello_impl = None | |
@staticmethod | |
def hello(): | |
if Hello._hello_impl == None: | |
Hello._hello_impl = Hello._hello_impl_1 |
This file contains 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 <asm/types.h> | |
#include <linux/netlink.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <sys/socket.h> | |
#include <unistd.h> | |
int main() { | |
int res; |