Skip to content

Instantly share code, notes, and snippets.

@ixoo
ixoo / .config
Last active August 29, 2015 14:07
KVM Guest Kernel config for 3.17.0
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 3.17.0 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"

Keybase proof

I hereby claim:

  • I am ixoo on github.
  • I am ix4r (https://keybase.io/ix4r) on keybase.
  • I have a public key whose fingerprint is 7001 676E 1911 F95F BCF4 56C7 4D1B 57EA 093C AB9E

To claim this, I am signing this object:

@ixoo
ixoo / arch_systemd_analyze.svg
Created August 20, 2012 07:45
Arch Linux/KDE with systemd booting in 2.1s
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<?php
if (!defined('BASEPATH')) exit('<font face="Arial" color="red"><strong>No direct script access allowed for security reasons. Your IP Address has been logged.</font><strong>');
class Encrypt extends Model {
function Encrypt()
{
parent::Model();
}
@ixoo
ixoo / hello.cpp
Created February 14, 2012 19:53 — forked from L3n41c/.gitignore
Interpreted C++
#define XSTR(x) STR(x)
#define STR(x) #x
#line 6 XSTR(THIS_FILE)
#define BEGIN_SCRIPT /*
this_md5="$(md5sum < "$0" | cut -d' ' -f1)"
last_md5="$(readelf -p SOURCE_FILE_HASH "${0%.cpp}" 2>/dev/null | awk '/\[ *0\]/ { print $3 }')"
[ "$this_md5" != "$last_md5" ] && (
g++ -x c++ -std=c++0x -pipe -Wall -Wextra -g -O3 -DTHIS_FILE="$(basename $0)" -DTHIS_MD5="$this_md5" -o "${0%.cpp}" $0 ||
exit 1 )
exec "${0%.cpp}" "$@"