Skip to content

Instantly share code, notes, and snippets.

View gulafaran's full-sized avatar

Tom Englund gulafaran

View GitHub Profile
@gulafaran
gulafaran / asdf
Created May 15, 2016 14:27 — forked from anonymous/asdf
[ 0.000000] Linux version 4.5.2-1-ARCH (builduser@tobias) (gcc version 5.3.0 (GCC) ) #1 SMP PREEMPT Thu Apr 21 18:21:27 CEST 2016
[ 0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=PARTUUID=2ecdafb6-8e1b-496a-a02b-3580ce262e08 rw scsi_mod.use_blk_mq=1 debug=volt=debug
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: xstate_offset[3]: 960, xstate_sizes[3]: 64
[ 0.000000] x86/fpu: xstate_offset[4]: 1024, xstate_sizes[4]: 64
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x08: 'MPX bounds registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x10: 'MPX CSR'
@gulafaran
gulafaran / epicabs
Last active August 29, 2015 14:10 — forked from anonymous/epicabs
#!/bin/bash
epicabs() {
package="$@"
fullpath="$(pwd)/$package"
if [ -d "$fullpath" ] ; then
cd "$fullpath"
git pull
cd ..