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
//////////////////////// | |
// CS:GO autoexec config | |
name "ST☢FF" | |
//////////////////////// | |
////////////////////// | |
// Netcode | |
// | |
// Rate |
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 zsh | |
#compare the provided version of git to the version installed and on path | |
#prints 1 if input version <= installed version | |
#prints -1 otherwise | |
function git_compare_version() { | |
local INPUT_GIT_VERSION=$1; | |
local INSTALLED_GIT_VERSION | |
INPUT_GIT_VERSION=(${(s/./)INPUT_GIT_VERSION}); |
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/zsh | |
# | |
# | |
# | |
# pdf_tj.sh | |
# | |
# This script examines the TJ operators in a PDF file. | |
# | |
# It requires QPDF <http://qpdf.sourceforge.net/> to decompress PDF files. |
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/sh | |
FF=frag_find | |
#FF=./frag_find/src/frag_find | |
TMP=/tmp | |
#TMP=. | |
dd if=/dev/zero of=$TMP/zero_block_512 bs=512 count=1 | |
dd if=/dev/zero of=$TMP/zero_block_1k bs=512 count=2 | |
dd if=/dev/zero of=$TMP/zero_block_256 bs=256 count=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
/* [...] */ | |
int main(int argc,char **argv) | |
{ | |
/* [...] */ | |
//RANDOM SAMPLING START | |
if(opt_sampling_params.size()>0) set_sampling_parameters(opt_sampling_params); | |
/* Create a list of blocks to sample */ |