+
diff --git a/William_Blackwell/Debugging-jQuery.zip b/William_Blackwell/Debugging-jQuery.zip new file mode 100644 index 0000000..0d02627 Binary files /dev/null and b/William_Blackwell/Debugging-jQuery.zip differ diff --git a/William_Blackwell/bday.js b/William_Blackwell/bday.js new file mode 100644 index 0000000..724c4b8 --- /dev/null +++ b/William_Blackwell/bday.js @@ -0,0 +1,19 @@ +function birthday(day){ +var sad = "ugh, too many days until my birthday"; +var happy = "yay my birthday is close!"; +var scream = "OMG IM SO EXCITED MY BDAY IS ALMOST HERE"; +var bday = "HAPPY BIRTHDAY TO ME!"; + if(day >= 30){ + console.log(sad); + } + else if((day < 30) && (day > 5)){ + console.log(happy); + } +else if(( day <= 5) && (day >0)){ + console.log(scream); +} +else if(day == 0){ + console.log(bday); +} +} +birthday(30); \ No newline at end of file diff --git a/William_Blackwell/colorclicker.zip b/William_Blackwell/colorclicker.zip new file mode 100644 index 0000000..166c14f Binary files /dev/null and b/William_Blackwell/colorclicker.zip differ diff --git a/William_Blackwell/contactCard 2.zip b/William_Blackwell/contactCard 2.zip new file mode 100644 index 0000000..bb27866 Binary files /dev/null and b/William_Blackwell/contactCard 2.zip differ diff --git a/William_Blackwell/contactCard.zip b/William_Blackwell/contactCard.zip new file mode 100644 index 0000000..aacd86b Binary files /dev/null and b/William_Blackwell/contactCard.zip differ diff --git a/William_Blackwell/css_examples.zip b/William_Blackwell/css_examples.zip new file mode 100644 index 0000000..29a61f3 Binary files /dev/null and b/William_Blackwell/css_examples.zip differ diff --git a/William_Blackwell/database assignment copy/database.css b/William_Blackwell/database assignment copy/database.css index ea89268..6bb2afb 100644 --- a/William_Blackwell/database assignment copy/database.css +++ b/William_Blackwell/database assignment copy/database.css @@ -66,7 +66,7 @@ ul li { background-color: white; line-height: 40px; margin: 0px; - width: 14.07%; + width: 14.16%; border:1px solid black; } #mainc { @@ -156,4 +156,7 @@ ul li { .buttons:hover { color: #5c729c; background-color: white; +} +.think { + border-right:0px; } \ No newline at end of file diff --git a/William_Blackwell/database assignment copy/database.html b/William_Blackwell/database assignment copy/database.html index ec675bc..b195a39 100644 --- a/William_Blackwell/database assignment copy/database.html +++ b/William_Blackwell/database assignment copy/database.html @@ -1,31 +1,31 @@ - +
-
+
+
Storage
+
All databases are just a bin of storage. Since there could potientally be a lot The amazing part about having a There are a lot of large companies that This storage is housed on your of information a database stores one Database is that it is a storage bin that specialize in the storing of @@ -57,7 +57,7 @@
Searching


will have floors upon floors of just hte data we are looking for. Imagine one user had access to that data its just so too have the size and amount of database storage (think NSA styled). we had a room full of books and you like what we have built into our own companies on the market. That being Our computer stores information on were asked to find the Coding Dojo computers.
@@ -69,7 +69,7 @@Interaction


it wouldnt be useful to said a lot of their software is free for the harddrive. we are able to create Algorithm Book. Well you might start other users. However the joy of having most users, think of MySQL. which new information, read information. picking up each book, checking the a database is that it is a storage bin while being an incredible DB.
@@ -81,7 +81,7 @@Companies


Thats very slow as most reading. updating and deleting a large company called Facebook. libraries discovered. Instead if we information that all users would see. were to ID each item we can find it quickly.
diff --git a/William_Blackwell/disNinja.zip b/William_Blackwell/disNinja.zip new file mode 100644 index 0000000..b211302 Binary files /dev/null and b/William_Blackwell/disNinja.zip differ diff --git a/William_Blackwell/disappearing_ninja.zip b/William_Blackwell/disappearing_ninja.zip new file mode 100644 index 0000000..7fadf63 Binary files /dev/null and b/William_Blackwell/disappearing_ninja.zip differ diff --git a/William_Blackwell/fancyarray.js b/William_Blackwell/fancyarray.js new file mode 100644 index 0000000..e5f78a9 --- /dev/null +++ b/William_Blackwell/fancyarray.js @@ -0,0 +1,10 @@ +function fancy(){ + +var fancyName = ["james","jill","jane","jack"]; +for(var i =0; i < fancyName.length; i++){ + console.log(i+"->" + fancyName[i]); +} + + +} +fancy(); \ No newline at end of file diff --git a/William_Blackwell/fewbillion.js b/William_Blackwell/fewbillion.js new file mode 100644 index 0000000..e76a435 --- /dev/null +++ b/William_Blackwell/fewbillion.js @@ -0,0 +1,11 @@ +function aFew(){ +var sum = 0.01; + for(var i = 1; i < 31;i++){ + sum = sum * 2; + +} +sum = sum / 100; +return sum; + +} +console.log(aFew()); \ No newline at end of file diff --git a/William_Blackwell/internetAssignment/images/ad_background.png b/William_Blackwell/internetAssignment/images/ad_background.png new file mode 100644 index 0000000..baa208a Binary files /dev/null and b/William_Blackwell/internetAssignment/images/ad_background.png differ diff --git a/William_Blackwell/internetAssignment/images/client_server.jpg b/William_Blackwell/internetAssignment/images/client_server.jpg new file mode 100644 index 0000000..f45118b Binary files /dev/null and b/William_Blackwell/internetAssignment/images/client_server.jpg differ diff --git a/William_Blackwell/internetAssignment/images/globe.png b/William_Blackwell/internetAssignment/images/globe.png new file mode 100644 index 0000000..1c4c244 Binary files /dev/null and b/William_Blackwell/internetAssignment/images/globe.png differ diff --git a/William_Blackwell/internetAssignment/images/home.png b/William_Blackwell/internetAssignment/images/home.png new file mode 100644 index 0000000..d8a1b59 Binary files /dev/null and b/William_Blackwell/internetAssignment/images/home.png differ diff --git a/William_Blackwell/internetAssignment/images/html.png b/William_Blackwell/internetAssignment/images/html.png new file mode 100644 index 0000000..df31ddc Binary files /dev/null and b/William_Blackwell/internetAssignment/images/html.png differ diff --git a/William_Blackwell/internetAssignment/images/ninja.png b/William_Blackwell/internetAssignment/images/ninja.png new file mode 100644 index 0000000..cfa4bae Binary files /dev/null and b/William_Blackwell/internetAssignment/images/ninja.png differ diff --git a/William_Blackwell/internetAssignment/images/phone.png b/William_Blackwell/internetAssignment/images/phone.png new file mode 100755 index 0000000..0e4bcb6 Binary files /dev/null and b/William_Blackwell/internetAssignment/images/phone.png differ diff --git a/William_Blackwell/internetAssignment/index.html b/William_Blackwell/internetAssignment/index.html new file mode 100644 index 0000000..c45b583 --- /dev/null +++ b/William_Blackwell/internetAssignment/index.html @@ -0,0 +1,62 @@ + + + + + +
+ An Interconnected Network of Computers all around the world!
+ + +Reinvent your career in just 14 weeks
+
+
+
+ DNS
+
+ Mon - Fri a.m. - 5 p.m. (EST) 855.967.3787 International +1.617.967.3787
+Computers connected to the Web are called clients and servers
+
+ So What Actually Happens?
+