diff --git a/Bash Scripts/.bashrc b/Bash Scripts/.bashrc deleted file mode 100644 index b96d0fa..0000000 --- a/Bash Scripts/.bashrc +++ /dev/null @@ -1,18 +0,0 @@ -# .bashrc - -# If not running interactively, don't do anything -[[ $- != *i* ]] && return - -alias ls='ls --color=auto' -PS1='[\u@\h \W]\$ ' - - -#alias tux="/home/mollusk/gitlab/tux/tux.rb" - -github="https://github.com/silvernode" -gitlab="https://gitlab.com/silvernode" - -alias gitlog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) -%C(bold blue)<%an>%Creset' --abbrev-commit" - - diff --git a/C files/99bottles b/C files/99bottles deleted file mode 100755 index 40042b3..0000000 --- a/C files/99bottles +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include - -int main(void) -{ - unsigned int bottles = 99; - do - { - printf("%u bottles of beer on the wall\n", bottles); - printf("%u bottles of beer\n", bottles); - printf("Take one down, pass it around\n"); - printf("%u bottles of beer on the wall\n\n", --bottles); - } while(bottles > 0); - return EXIT_SUCCESS; -} diff --git a/C files/99bottles.c b/C files/99bottles.c deleted file mode 100755 index 40042b3..0000000 --- a/C files/99bottles.c +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include - -int main(void) -{ - unsigned int bottles = 99; - do - { - printf("%u bottles of beer on the wall\n", bottles); - printf("%u bottles of beer\n", bottles); - printf("Take one down, pass it around\n"); - printf("%u bottles of beer on the wall\n\n", --bottles); - } while(bottles > 0); - return EXIT_SUCCESS; -} diff --git a/C files/a.out b/C files/a.out deleted file mode 100755 index d871f17..0000000 Binary files a/C files/a.out and /dev/null differ diff --git a/C files/strings b/C files/strings deleted file mode 100755 index 296b146..0000000 Binary files a/C files/strings and /dev/null differ diff --git a/C files/strings-and-if-else.c b/C files/strings-and-if-else.c deleted file mode 100755 index d77ae4a..0000000 --- a/C files/strings-and-if-else.c +++ /dev/null @@ -1,22 +0,0 @@ -#include -#include - -int main() { - char * name = "nigger"; - int age = 28; - printf("%s, is you\n",name); - - //use strncmp function from string.h to compare strings - //the number 3 is the length of fag - if ( strncmp(name, "fag", 3) == 0 ) { - printf("This fag is identified and is %d\n", age); - } - else if (strncmp(name, "nigger", 6) == 0){ - printf("you are a %s\n", name); - } - else { - printf("I don't know you\n"); - } - - return 0; -} diff --git a/Julia Scripts/100doors.jl b/Julia Scripts/100doors.jl deleted file mode 100755 index 9848d2e..0000000 --- a/Julia Scripts/100doors.jl +++ /dev/null @@ -1,7 +0,0 @@ -doors = falses(100) -for a = 1:100, b in a:a:100 - doors[b] = !doors[b] -end -for a = 1:100 - println("Door $a is " * (doors[a] ? "open" : "close")) -end diff --git a/Julia Scripts/hello.jl b/Julia Scripts/hello.jl deleted file mode 100755 index cc7ee3e..0000000 --- a/Julia Scripts/hello.jl +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/julia - - -function gayness() - println("Loser") - -end - -gayness() diff --git a/Julia Scripts/high-low.jl b/Julia Scripts/high-low.jl deleted file mode 100755 index 4e1c06f..0000000 --- a/Julia Scripts/high-low.jl +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/julia - - -die1=rand(1:100) - - -function input(prompt::String="") - print(prompt) - chomp(readline()) -end - -while true - choice = input("Guess a number 1-100: " ) - - - - if Base.isdigit(choice) - choice = parseint(choice) - else - println("$choice, is not a positive number") - continue - end - - if choice < 101 - - if choice == die1 - println("You win!") - return false - - elseif choice > die1 - println("Too high!") - - elseif choice < die1 - println("Too low!") - - - end - else - println(choice, " is greater than 100!") - end - -end diff --git a/Julia Scripts/putitoff.jl b/Julia Scripts/putitoff.jl deleted file mode 100755 index caa5849..0000000 --- a/Julia Scripts/putitoff.jl +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/julia - - -function input(prompt::String="") - print(prompt) - chomp(readline()) -end - - - -function main() - - list = {} - while true - date = input("Type date: "); - addItem = input("Add an item: ") - - together = "$addItem-$date" - - - - push!(list,together) - - println(list) - - - - end -end - -main() diff --git a/Ruby Scripts/hello.rb b/Ruby Scripts/hello.rb deleted file mode 100755 index 5351f08..0000000 --- a/Ruby Scripts/hello.rb +++ /dev/null @@ -1 +0,0 @@ -puts 'Hello, world!' diff --git a/Bash Scripts/adduser.sh b/adduser.sh similarity index 100% rename from Bash Scripts/adduser.sh rename to adduser.sh diff --git a/Bash Scripts/auto-ping.sh b/auto-ping.sh similarity index 100% rename from Bash Scripts/auto-ping.sh rename to auto-ping.sh diff --git a/Bash Scripts/autolsblk.sh b/autolsblk.sh similarity index 100% rename from Bash Scripts/autolsblk.sh rename to autolsblk.sh diff --git a/Bash Scripts/backity/backity.sh b/backity/backity.sh similarity index 100% rename from Bash Scripts/backity/backity.sh rename to backity/backity.sh diff --git a/Bash Scripts/backity/config.sh b/backity/config.sh similarity index 100% rename from Bash Scripts/backity/config.sh rename to backity/config.sh diff --git a/Bash Scripts/ddstatus.sh b/ddstatus.sh similarity index 100% rename from Bash Scripts/ddstatus.sh rename to ddstatus.sh diff --git a/Bash Scripts/enable-key.sh b/enable-key.sh similarity index 100% rename from Bash Scripts/enable-key.sh rename to enable-key.sh diff --git a/Bash Scripts/fix_steam.sh b/fix_steam.sh similarity index 100% rename from Bash Scripts/fix_steam.sh rename to fix_steam.sh diff --git a/Bash Scripts/format-buddy.sh b/format-buddy.sh similarity index 100% rename from Bash Scripts/format-buddy.sh rename to format-buddy.sh diff --git a/Bash Scripts/func_test.sh b/func_test.sh similarity index 100% rename from Bash Scripts/func_test.sh rename to func_test.sh diff --git a/Bash Scripts/git_config.sh b/git_config.sh similarity index 100% rename from Bash Scripts/git_config.sh rename to git_config.sh diff --git a/Bash Scripts/gitbucket.sh b/gitbucket.sh similarity index 100% rename from Bash Scripts/gitbucket.sh rename to gitbucket.sh diff --git a/Bash Scripts/julia-installer.sh b/julia-installer.sh similarity index 100% rename from Bash Scripts/julia-installer.sh rename to julia-installer.sh diff --git a/Bash Scripts/mkuser.sh b/mkuser.sh similarity index 100% rename from Bash Scripts/mkuser.sh rename to mkuser.sh diff --git a/Bash Scripts/packages.sh b/packages.sh similarity index 100% rename from Bash Scripts/packages.sh rename to packages.sh diff --git a/Bash Scripts/sc.sh b/sc.sh similarity index 100% rename from Bash Scripts/sc.sh rename to sc.sh diff --git a/Bash Scripts/status-test.sh b/status-test.sh similarity index 100% rename from Bash Scripts/status-test.sh rename to status-test.sh diff --git a/Bash Scripts/void-updater.sh b/void-updater.sh similarity index 100% rename from Bash Scripts/void-updater.sh rename to void-updater.sh