diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/.nojekyll @@ -0,0 +1 @@ + diff --git a/01week/resume/CSS.css b/01week/resume/CSS.css new file mode 100644 index 0000000000..99d886a1f8 --- /dev/null +++ b/01week/resume/CSS.css @@ -0,0 +1,180 @@ + +body{ + background : url('images/retrowave-3-dimensional-artwork-neon-oceanchrome-eb-1920x1080.jpg'); + background-repeat: no-repeat; + background-attachment: fixed; + background-position: center; + +} + + + +ul{ + list-style-type: none; + overflow:hidden; +} + +li{ + float:right; + color:white; + text-align:center; + width:12%; + height:25px; + padding: 10px; + transition: background-color 0.5s ease; + background-color: rgb(75, 75, 75); + font-family: 'Courier New', Courier, monospace; +} + +a { + text-decoration:none; +} + +a:link {color:White; background-color:transparent; text-decoration:none} +a:visited {color:White; background-color:transparent; text-decoration:none} +a:hover {color:White; background-color:transparent; text-decoration:none} +a:active {color:White; background-color:transparent; text-decoration:none} + +li:hover{ + background-color:#111111 +} + + + +h1{ + margin-bottom:0px; + font-size:100px; + margin-left:75px; + font-family:Arial, Helvetica, sans-serif; +} + +h2{ + padding-left: 2%; + font-size:50px; +} + +article{ + color:white; + margin-top:50px; + width:40%; + height:300px; + background-color: rgba(17, 16, 16, 0.9); + border:2px solid black; + font-size: 25px; + + +} + +nav{ + + height:50px; + width:100%; + margin-bottom:20px; +} + +header{ + padding-top:10px; + background-color: rgb(0,72,124); + width:100%; + height:75px; + border-bottom:1px solid black; +} + +p{ + padding-left: 3%; + padding-right: 3%; + text-indent: 50px; font-size:21px +} + + + + + +div#wrapper{ + + min-width:1000px; + + margin-left:20%; + margin-right:20%; + height:910px; + margin-bottom:20px; + margin-top: 15px; +} + +footer{ +padding:5px; +text-align:center; +} + + + +/*Wanted a fade in effect, already existed so I copy pasted the css*/ + + +/* make keyframes that tell the start state and the end state of our object */ + +@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } } +@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } } +@keyframes fadeIn { from { opacity:0; } to { opacity:1; } } + +.fade-in { + opacity:0; /* make things invisible upon start */ + -webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */ + -moz-animation:fadeIn ease-in 1; + animation:fadeIn ease-in 1; + + -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/ + -moz-animation-fill-mode:forwards; + animation-fill-mode:forwards; + + -webkit-animation-duration:1s; + -moz-animation-duration:1s; + animation-duration:1s; +} + +/*Different varients on the fade in, controls the fade in speed*/ + +.fade-in.one { +-webkit-animation-delay: 0.7s; +-moz-animation-delay: 0.7s; +animation-delay: 0.7s; +} + +.fade-in.two { +-webkit-animation-delay: 1.2s; +-moz-animation-delay:1.2s; +animation-delay: 1.2s; +} + +.fade-in.three { +-webkit-animation-delay: 1.6s; +-moz-animation-delay: 1.6s; +animation-delay: 1.6s; +} + + +.fade-in.four { +-webkit-animation-delay: 1.8s; +-moz-animation-delay: 1.8s; +animation-delay: 1.8s; + } + + + + +p#article_p{ + font-size: 26px; + margin:7px; + padding:2px; + border-bottom: 1px solid black; + +} + +h3{ + color: rgb(255, 255, 255); + padding:0; + margin:0; + margin-left:10px; + font-family: Georgia, 'Times New Roman', Times, serif +} + diff --git a/01week/resume/Education.html b/01week/resume/Education.html new file mode 100644 index 0000000000..859d0298ef --- /dev/null +++ b/01week/resume/Education.html @@ -0,0 +1,83 @@ + + + + +
+ +
+ Test Encryption - Inputed string/information
+ 84
+ 101
+ 115
+ 116
+ 32
+ 69
+ 110
+ 99
+ 114
+ 121
+ 112
+ 116
+ 105
+ 111
+ 110
+ - Ascii values
+ 9 8 1 2 4
+ - Encryption code
+
+ 15 15
+ - Ascii array and Encrypted array length(s)
+
+ 28556
+ 11110
+ 13586
+ 17909
+ 4049
+ 8792
+ 18117
+ 8954
+ 13469
+ 32458
+ 14435
+ 12760
+ 17136
+ 12210
+ 11100
+ - Encrypted ascii
+
+ 84
+ 101
+ 115
+ 116
+ 32
+ 69
+ 110
+ 99
+ 114
+ 121
+ 112
+ 116
+ 105
+ 111
+ 110
+ - Decrypted ascii
+ Test Encryption - Original Message
+
+
+ public static void encrypt(){
+
+ int a = code.charAt(0)-48;
+ int b = code.charAt(1)-48;
+ int c = code.charAt(2)-48;
+ int d = code.charAt(3)-48;
+ int e = code.charAt(4)-48;
+
+ for(int i = 0;i<INIT_MSG.length();i++)
{
+ encyp_ascii_array[i] = asciiarray[i] *(a-(b*b))*(d-e);
+
+
+ /* Because this isn't random enough looking and gives similar modifications
+ to similar characters (an a will have the same value as another a farther
+ in the sequence) This next set of modifactions is applied based on sequence,
+ not ascii value.*/
+
+ if(i%2==0 ){
+ encyp_ascii_array[i] +=e*a*d*c*a;
+ }
+ if(i%3==0 ){
+ encyp_ascii_array[i] +=a*d*e+c+5000;
+ }
+ if(i%4==0 ){
+ encyp_ascii_array[i] +=d-c*d*a*c*a;
+ }
+
+ /* For each value 0-9, there are 2 additional modifiers
+ based on sequence*/
+ }
+
+
+
+
+ Honestly this worked at one point but our router changed + and because of that I had to redo the port forwarding and + now it's big broke. + +
+ + +
+ //Client Run() Method
+ public void run() throws Exception{
+ Socket socket = new Socket("172.8.169.224", 1100);
+ printstream = new PrintStream(socket.getOutputStream());
+
+
+ InputStreamReader InputReader = new InputStreamReader(socket.getInputStream());
+ BufferedReader BufferedReader = new BufferedReader(InputReader);
+
+ while(true){
+
+
+ String Message = BufferedReader.readLine(); //Reads server input
+ client_GUI.ServerInput("Server: "+Message); //outputs server input to client screen
+ System.out.println(Message);
+
+ }
+ }
+
+
//Server Run() Methond
+ public void run() throws Exception{
+ ServerSocket ServerSocket = new ServerSocket(1100);
+ Socket Socket = ServerSocket.accept();
+ printstream = new PrintStream(Socket.getOutputStream());
+
+
+ InputStreamReader InputReader = new InputStreamReader(Socket.getInputStream());
+ BufferedReader BufferedReader = new BufferedReader(InputReader);
+
+
+
+
+ while(true){
+
+ String Message = BufferedReader.readLine();
+ Server_GUI.ServerInput("Client: "+Message);
+ System.out.println(Message);
+
+
+ }
+ }
+
+
+ Status: Part time
+ Title: House Painter
+ Supervisor: David
+ Job responsiblites: Painting, masking, cleanup
+ Employed from: 2015-present
+
+ Status: Part time
+ Title: Ground man
+ Superviser: Leo
+ Job Responsibilites: Clearing debris, driving, safe powertool use
+ Employed from: 2017-present
+
+ Status: Terminated
+ Title: Stock boy
+ Superviser: Vivian
+ Job Responsibilites: Cleaning, stocking shelves, product organization
+ Employed from: 2014-2015
+
+
+ + I was born January 1st 2001 in roseville, CA. + My family moved up the west coast since my birth. + From Roseville to Medford, OR; to Kent, WA; and finally to Seattle, WA. + When I was 13 I got my first job as a stock boy at my mom’s friends clinic. + After that I ran my own various businesses from yard work to running a convenience store out of my locker. + When I was 15 I started working with my dad painting houses and that is what I still do today. + + +
++ I have always been interested in computers, both hardware and + software. My first computer was a broken laptop my mom handed + down to me. She didn’t think I could actually use it, but one + windows repair disk and a hdd replacement and it was good to go. + Since then I have been building my own computers and doing all + of the maintenance on them. I first got into CS when I + enrolled in a Java course sophomore year of highschool. + The intro class was full so I was thrown into AP. Computer + science fit like a glove and soon I was ahead of the class, + completing side projects, and using methods and libraries + we haven’t been taught to use. + +
++ Last year I moved to San Antonio and now I am finishing up + high school and should graduate before December. My plan is + to finish high asap, complete ACA full stack c#.net, and + work for my uncle at his communications company based in + Seattle. + +
++ -Object orientated java +
++ -Gimp image editing +
++ -Unity game development +
++ -Blender 3d model creation +
++ -HTML/CSS +
+ +
+
+ Hi! I'm SeaJay,
+
+ I am a 17 year old web designer, (future) software engineer, + twitch streamer, and lumberjack. I recently moved + to San Antonio from Seattle where I was raised. I have + a passion for software engineering and hope to pursue + computer science as a career. My dream is to live downtown + and operate a fully automated hydroponic farm, the perfect + combination of nature and technology. + +
+
+
+
+
+
+
+
+ Twitter -@nasa
+ Facebook -fb.com/nasa
+ Instagram -@nasa
+ Youtube -youtube.com/NASA
+
Public Communications Office
+ NASA Headquarters
+ 300 E. Street SW, Suite 3R30
+ Washington, DC 20546
+ (202) 358-0001 (Office)
+ (202) 358-4338 (Fax