removed unused directories and moved bash scripts to root

This commit is contained in:
silvernode 2016-04-03 08:00:36 -07:00
parent e5ad3b64b0
commit 34bcd602f8
29 changed files with 0 additions and 160 deletions

View File

@ -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"

View File

@ -1,15 +0,0 @@
#include <stdlib.h>
#include <stdio.h>
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;
}

View File

@ -1,15 +0,0 @@
#include <stdlib.h>
#include <stdio.h>
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;
}

Binary file not shown.

Binary file not shown.

View File

@ -1,22 +0,0 @@
#include <stdio.h>
#include <string.h>
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;
}

View File

@ -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

View File

@ -1,9 +0,0 @@
#!/usr/bin/julia
function gayness()
println("Loser")
end
gayness()

View File

@ -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

View File

@ -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()

View File

@ -1 +0,0 @@
puts 'Hello, world!'