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
#-- Compiler and Linker Flags | |
# -march (or -mcpu) builds exclusively for an architecture | |
# -mtune optimizes for an architecture, but builds for whole processor family | |
export CFLAGS="-pipe -mtune=generic -fstack-protector-all -O3 -fno-plt" | |
export CXXFLAGS="-pipe -mtune=generic -fstack-protector-all -O3 -fno-plt" | |
export CPPFLAGS="-D_FORTIFY_SOURCE=2" | |
export LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" |
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
TOPFILE = Testbench.bsv | |
TOPMODULE = mkTestbench | |
BUILD_PATH = build | |
BSIM_EXE = $(BUILD_PATH)/outputFile | |
BSCFLAGS = -u | |
BUILD_DIR_FLAGS = -simdir $(BUILD_PATH) -bdir $(BUILD_PATH) -info-dir $(BUILD_PATH) | |
default: compile link |
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
[[ -f ~/.less-colors ]] && . ~/.less-colors |
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
HOST * | |
# Force SSH2 | |
Protocol 2 | |
# Use this only if supported | |
#VerifyHostKeyDNS yes | |
# We will only use ed25519 keys | |
RSAAuthentication no |
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 | |
#Author Kyle Agronick <[email protected]> | |
#Usage: Invoke this script to get the size of your subvolumes and snapshots | |
#Make sure to run "sudo btrfs quota enable /" first | |
LOCATION='/' | |
if [ $1 ]; then | |
LOCATION=$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
[user] | |
name = games647 | |
email = [email protected] | |
signingkey = BFC68C8708713A88 | |
[filter "lfs"] | |
required = true | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
[core] | |
whitespace = warn |
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
own_window yes | |
own_window_class Conky | |
own_window_type dock | |
own_window_hints sticky,undecorated,skip_pager,skip_taskbar,above | |
own_window_transparent no | |
#own_window_argb_visual yes | |
own_window_colour 2f2f2f | |
#own_window_argb_value 200 | |
double_buffer yes |
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 | |
# | |
# Move the current window to the next monitor. | |
# | |
# Only works on a horizontal monitor setup. | |
# Also works only on one X screen (which is the most common case). | |
# | |
# Props to | |
# http://icyrock.com/blog/2012/05/xubuntu-moving-windows-between-monitors/ | |
# |
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
trap 'echo -e "\e]0;$BASH_COMMAND\007"' DEBUG |
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
uprg(P):- uprg(P, [#]). % Creates a new push-down automaton | |
%Input | head of the stack :- Stackoutput | |
uprg([p|Tail], Stack):- uprg(Tail, [p|Stack]). | |
uprg([p|Tail], [#|Stack]):- uprg(Tail, [p, #|Stack]). | |
uprg([p|Tail], [a|Stack]):- uprg(Tail, [p, a|Stack]). | |
uprg([a|Tail], [p|Stack]):- uprg(Tail, [a|Stack]). | |
uprg([a|Tail], [a|Stack]):- uprg(Tail, [a|Stack]). | |
uprg([b|Tail], [a|Stack]):- uprg(Tail, [b|Stack]). |