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
fcode () | |
{ | |
[ "$#" -lt 1 ] && { | |
echo "Supply string to search for!"; | |
return 1 | |
}; | |
printf -v search "%q" "$*"; | |
local include="yml,js,json,php,md,html,config,py,cpp,c,go,hs,rb,conf,rs,txt"; | |
local exclude=".config,.git,node_modules,vendor,build,yarn.lock,*.sty,*.bst,*.coffee,dist,*.aux,*.tmp"; | |
rg_cmd='rg --column --line-number --no-heading --fixed-strings --ignore-case --follow --color always'; |
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
optimizeForThisHost = pkg: | |
pkgs.lib.overrideDerivation pkg (old: { | |
CFLAGS = "${old.CFLAGS} -fPIC -O3 -march=native"; | |
}); |
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
[ 2.142954] List of all partitions: | |
[ 2.143444] No filesystem could mount root, tried: | |
[ 2.144192] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) | |
[ 2.144247] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.8.0-rc8 #1 | |
[ 2.144247] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.7.5-20140531_083030-gandalf 04/01/2014 | |
[ 2.144247] 0000000000000000 ffffffff812f00af ffffffffffffff00 ffff88000750fea8 | |
[ 2.144247] ffffffff8115c4d0 0000000000000010 ffff88000750feb8 ffff88000750fe50 | |
[ 2.144247] ffff88000750fea8 ffff88000750fec0 0000000000000012 0000000000000001 | |
[ 2.144247] Call Trace: | |
[ 2.144247] [<ffffffff812f00af>] ? dump_stack+0x5c/0x7d |
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 bash | |
EXEC=$(dirname ${BASH_SOURCE[0]})/nixpkgs-update-pkg.sh | |
if [[ ! -e $1 ]]; then | |
echo "Does not exist: $1" | |
echo "Exit." | |
exit 1 | |
fi |
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
# | |
# | |
# | |
# Variables | |
# | |
# | |
# | |
DOCUMENT_CLASS=article | |
SETTING_FONTSIZE=11pt |
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
read(10, "712//\t\tINTERNAL\t\tIBM12712\t\t1\nmod"..., 4096) = 2847 | |
read(10, "", 4096) = 0 | |
close(10) = 0 | |
munmap(0x7feaad925000, 4096) = 0 | |
futex(0x7feaa6c688d0, FUTEX_WAKE_PRIVATE, 2147483647) = 0 | |
open("/etc/X11/egl/atiapfxxES.blb", O_RDONLY) = -1 ENOENT (No such file or directory) | |
open("/etc/X11/atiogl_perfcount.conf", O_RDONLY) = -1 ENOENT (No such file or directory) | |
gettid() = 17783 | |
gettid() = 17783 | |
open("/etc/X11/atiogl.conf", O_RDONLY) = -1 ENOENT (No such file or directory) |
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
" | |
" Version 1.0 | |
" Author: Matthias Beyer <[email protected]> | |
" Date: 03-11-2015 | |
" License: Public Domain | |
" | |
" --- | |
" | |
" Colorscheme for vim and neovim. Created mainly with vim.ink | |
" |
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
use runtime::Runtime; | |
use std::error::Error; | |
use std::fmt::Formatter; | |
use std::fmt::Result as FMTResult; | |
use std::fmt::Display; | |
use std::path::Path; | |
use std::result::Result; | |
use module::todo::TodoModule; |
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
# ... some things here ... | |
environment.systemPackages = let | |
basePkgs = import "${configDir}/pkgs/basePackages.nix" pkgs; | |
devPkgs = import "${configDir}/pkgs/devPackages.nix" pkgs; | |
desktopPkgs = import "${configDir}/pkgs/desktopPackages.nix" pkgs; | |
networkPkgs = import "${configDir}/pkgs/networkingPackages.nix" pkgs; | |
vim = import "${configDir}/pkgs/vim/default.nix" pkgs; | |
in | |
basePkgs ++ devPkgs ++ desktopPkgs ++ networkPkgs ++ vim; |