From 55e1885bfffef6613b2f3e3ff322623753a85027 Mon Sep 17 00:00:00 2001
From: afreglett <45523745+afreglett@users.noreply.github.com>
Date: Fri, 4 Sep 2020 17:40:57 -0400
Subject: [PATCH 1/8] Add files via upload
---
README.md | 72 ++--------------------------
index.html | 134 ++++++++++++++++++++++++++++++++++++++++++++++++-----
server.js | 4 +-
style.css | 129 +++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 258 insertions(+), 81 deletions(-)
create mode 100644 style.css
diff --git a/README.md b/README.md
index 4906dc8..291535e 100644
--- a/README.md
+++ b/README.md
@@ -1,59 +1,3 @@
-Assignment 1 - Hello World: Basic Deployment w/ Git, GitHub, Glitch
-===
-
-*DUE: Monday, September 7th by 11:59 AM (before the start of class!)*
-
-This assignment is a "warm-up" exercise.
-You will simply deploy the starting Web site that you will use this term to [Glitch](http://www.glitch.com/).
-
-Treat this assignment as a chance to get up to speed on Git, GitHub, and Glitch.
-If you already know these, great.
-However, if you're new to them, spend several hours practicing, experimenting, and reading documentation.
-In other words, don't just get your website up and done. You will need skills with these tools throughout the rest of the course.
-
-Assignment details
----
-
-This assignment requires that your website is both contained in a GitHub repository and hosted in Glitch. There are two ways to do this:
-
-1. Fork this repo and clone it to your computer, make changes locally on your computer, push the repo onto GitHub, and then import your GitHub repo into Glitch.
-2. Fork this repo and then import it directly to Glitch, use the Glitch editor to make changes, and then export your repo from Glitch back to GitHub.
-3. Same as #1, but instead of importing from Github to Glitch you just upload the files (or copy/paste) them directly to Glitch.
-
-## Option 1 - Clone to computer, push to Github, import to Glitch (recommended)
-
-1. Fork the starting project code in GitHub. This repo contains:
- * the server code, `server.js`
- * A starting `index.html` file that you will edit as described below
- * A package.json file that helps configure Glitch
- * This README
-2. Edit `index.html` to show the following information about you:
- * your name and class at WPI (e.g. class of 2020) Note: Do not put any contact or personal information that you do not potentially want other people outside of this class to see.
- * your major(s) and minor(s)
- * previous computer science courses that you have taken at WPI
- * your experience with the following technologies and methods (none, some, a lot)
- * HTML
- * CSS
- * Java
- * JavaScript
- * Ruby
- * Python
- * unit testing
-4. Complete some technical and/or design achievements (see below).
-5. Test your project to make sure that when someone goes to your main page, it displays correctly. You can do this locally by simply running `node server.js` from within the assignment directory.
-
-6. Modify the README file according to the specification below.
-7. Commit and push all your changes to GitHub.
-8. Deploy your project to Glitch. You can do this by [importing the repo from GitHub](https://medium.com/glitch/import-code-from-anywhere-83fb60ea4875)
-9. Ensure that your project has the proper naming scheme (guide follows) so we can find it.
-9. Create and submit a Pull Request to the original repo.
-
-## Option 2 - Fork repo and import to Glitch, edit on Glitch, and then export back to GitHub
-Most of these steps are the same as option 1, except that you being by creating a new project Glitch using this repo as a staring point (just choose New Project > Import from GitHub for this and then paste in the link to your repo). At the end, you can export your Glitch project to GitHub by [following these instructions](https://www.youtube.com/watch?time_continue=77&v=aWJFbtrgW4E&feature=emb_logo). *Note that the location of the projecct export feature in Glitch has moved from what they show in this video.* It's now located in Tools > Import and Export (tools is located in the bottom left of the Glitch editor).
-
-## Option 3 - Clone to computer, edit locally, push to GitHub, upload to Glitch
-This is the same as option 1, except that for step 6 (Deploy to Glitch) you simply upload each file to your Glitch repository (using New File > Upload a File).
-
Naming and URL Scheme
---
@@ -78,15 +22,6 @@ Below are some suggested technical and design achievements. You can use these to
1. (10 points) Create a color palette using [color.adobe.com](https://color.adobe.com). Use all the colors in the palette in your webpage by implementing the appropriate CSS. Add a small screenshot of the color wheel for your color palette to your repo.
2. (5 points) Use a font from [Goolge Fonts](https://fonts.google.com) in your website.
-Resources
----
-
-If you need a JavaScript/HTML/CSS refresher, see [HTML & CSS](https://wpi.primo.exlibrisgroup.com/discovery/fulldisplay?docid=alma9936730811904746&context=L&vid=01WPI_INST:Default&lang=en&search_scope=MyInst_and_CI&adaptor=Local%20Search%20Engine&tab=Everything&query=any,contains,Jon%20Duckett&offset=0) and/or [JavaScript Codeacademy](https://www.codecademy.com/en/tracks/javascript).
-
-If you need a Git/GitHub refreseher, see [GitHub Bootcamp](https://help.github.com/categories/bootcamp/), the [GitHub Guides](https://guides.github.com/) (especially the ones on Hello World, and Understanding the GitHub Flow, and Forking Projects), and [CodeSchool's Try Git Course](https://www.codeschool.com/courses/try-git).
-
-Sample Readme (delete the above when you're ready to submit, and modify the text below with your links and descriptions)
----
Charlie Roberts
http://a1-charlieroberts.glitch.me
@@ -94,9 +29,12 @@ http://a1-charlieroberts.glitch.me
This project shows ...
## Technical Achievements
-- **Styled page with CSS**: Added rules for the p, li, and a selectors...
+I decided to add rules to h1,h2, body and table. These rules included font-family, text-align, background color, color, font-size, and padding.
+I created a simple slide in animaton whihc I used for both my h1 and h2.
+I created a table, graph, links (directed to my LinkedIn) underling, bolding and horizontal line breaks.
### Design Achievements
-- **Used the Roboto Font from Google Fonts**: I used Roboto as the font for the primary copy text in my site.
+I created a color palette using color.adobe.com that utilized #C9D5C4, #9782F5, #F5EDAE, and #76EAF5
+I also used two fonts from Google Fonts, Dancing Scripts (h1) and Clicker Script (h2)
diff --git a/index.html b/index.html
index 37ac8c3..f03c867 100755
--- a/index.html
+++ b/index.html
@@ -1,28 +1,138 @@
+
+
+
+
CS4241 Assignment 1
-
Information about [Your name here]
+
Information about Alexa Freglette
- [Self introduction]
+ Hello! My name is Alexa Freglette, a current junior from NYC!
- [Major and other information]
+ I am a double major in Computer Science with a concentration in CyberSecurity and Professional Writing.
- [Other things]
-
+ At WPI I am a member of the Women's Crew Team, a sister of Phi Sigma Sigma and a member of the WiCS!
+
+
Currently I am working as a Co-Op with UPS on their Linux Implentation Team.
-
Experience
-
- Working experience
-
+
+
+
+
Table of CS Classes
+
+
+
+
Full Name
+
Class Number
+
Term Taken
+
+
+
Introduction to Program Design
+
1101
+
A 2018
+
+
+
Object Oriented Design Concepts
+
2102
+
B 2018
+
+
+
Discrete Mathematics
+
2022
+
C 2019
+
+
+
Algorithms
+
2223
+
D 2019
+
+
+
Introduction to Machine Org and Assembly Language
+
2011
+
A 2019
+
+
+
Systems Programming Concepts
+
2303
+
B 2019
+
+
+
Operating Systems
+
3013
+
C 2020
+
+
+
Human Computer Interaction
+
3041
+
D 2020
+
+
+
Foundations of Computer Science
+
3133
+
D 2020
+
+
+
Webware
+
4241
+
A 2020
+
+
+
Computer Networks
+
3516
+
A 2020
+
+
+
+
+
+
Working Experience
+
-
IBM/Rational
-
WPI
-
+
UPS Information Service Management Co-op/Intern — Linux Implementation Services Team
+
WPI Marketing ~ Computer Marketing Systems Assistant
+
+
diff --git a/server.js b/server.js
index 9490f71..e6e735d 100644
--- a/server.js
+++ b/server.js
@@ -7,8 +7,8 @@ const server = http.createServer( function( request,response ) {
case '/':
sendFile( response, 'index.html' )
break
- case '/index.html':
- sendFile( response, 'index.html' )
+ case '/style.html':
+ sendFile( response, 'style.css' )
break
default:
response.end( '404 Error: File Not Found' )
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..ec01984
--- /dev/null
+++ b/style.css
@@ -0,0 +1,129 @@
+h1{
+ font-family: 'Dancing Script', cursive;
+ text-align: center;
+ background-color: #9782F5;
+ color: #76EAF5;
+ font-size: 60px;
+ padding: 10px;
+ animation-duration: 5s;
+ animation-name: slidein;
+ }
+
+ @keyframes slidein {
+ from {
+ margin-left: 100%;
+ width: 300%;
+ }
+
+ to {
+ margin-left: 2%;
+ width: 100%;
+ }
+ }
+
+
+h2{
+ color: #9782F5;
+ font-family: 'Clicker Script';
+ padding-left: 12px;
+ font-size: 30px;
+ background-color: #76EAF5;
+ text-align: center;
+ animation-duration: 2s;
+ animation-name: slidein;
+
+}
+
+body {
+ background-color: #F5EDAE;
+ font-family: Verdana;
+ color: #9782F5;
+ margin: 20px;
+}
+
+
+table {
+ font-family: Courier;
+ color: #9782F5;
+ border-collapse: collapse;
+ width: 100%;
+ }
+
+ td, th {
+ text-align: left;
+ padding: 8px;
+ }
+
+ tr:nth-child(even) {
+ background-color: #c9f5c4;
+ }
+
+@supports (display:grid) {
+
+ @media (min-width:32em) {
+
+ .graph {
+ display:block;
+ width: 100%;
+ height:300px;
+ }
+ .graph tbody {
+ position:relative;
+ display:grid;
+ grid-template-columns:repeat(auto-fit, minmax(2em, 1fr));
+ column-gap:8%;
+ align-items:end;
+ height:100%;
+ margin:60px;
+ padding:10px;
+ border-bottom:2px solid #F58Ed2;
+ }
+
+ .graph tbody:before,
+ .graph tbody:after {
+ position:absolute;
+ left:-3.2em;
+ width:2.8em;
+ text-align:right;
+ font:bold 80%/120% arial,helvetica,sans-serif;
+ }
+
+ .graph tbody:before {
+ content:"LOTS";
+ top: 10px;
+ }
+
+ .graph tbody:after {
+ content:"NONE";
+ }
+
+ .graph tr {
+ position:relative;
+ }
+ .graph th,
+ .graph td {
+ display:block;
+ text-align:center;
+ }
+ .graph tbody th {
+ position:absolute;
+ top:-3em;
+ left:0;
+ width:100%;
+ font-weight:normal;
+ text-align:center;
+ white-space:nowrap;
+ text-indent:0;
+ transform:rotate(-45deg);
+ }
+ .graph td {
+ width:100%;
+ height:100%;
+ background:#76EAF5;
+ border-radius: 10px 10px 10px 10px;
+ }
+ }
+}
+
+
+
From ed6af3357319933954e8859999d503e88c3174c5 Mon Sep 17 00:00:00 2001
From: afreglett <45523745+afreglett@users.noreply.github.com>
Date: Sun, 6 Sep 2020 17:04:49 -0400
Subject: [PATCH 2/8] Add files via upload
updates
---
README.md | 32 +++--------------------
Screen Shot 2020-08-31 at 4.37.12 PM.png | Bin 0 -> 793422 bytes
index.html | 4 +--
server.js | 6 +++--
4 files changed, 9 insertions(+), 33 deletions(-)
create mode 100644 Screen Shot 2020-08-31 at 4.37.12 PM.png
diff --git a/README.md b/README.md
index 291535e..9ed484f 100644
--- a/README.md
+++ b/README.md
@@ -1,37 +1,11 @@
-Naming and URL Scheme
----
+Alexa Freglette
+https://glitch.com/~a1-afreglett
-You must use a consistent naming scheme for all projects in this course.
-If we can't find it, we can't grade it.
-
-By default Glitch often assigns your application a random name. To change it, click on the project dropdown menu in the upper left corner of Glitch. You will then see an additional text field displaying the project name in the resulting menu; click here to edit the name.
-
-The name scheme should be `a1-yourGitHubUsername`.
-The `a1` will need to be updated to `a2`, `a3`, and so on in future projects.
-
-Achievements
----
-Below are some suggested technical and design achievements. You can use these to help boost your grade up to an A and customize the assignment to your personal interests. These are recommended acheivements, but feel free to create/implement your own... just make sure you thoroughly describe what you did in your README and why it was challenging. ALL ACHIEVEMENTS MUST BE DESCRIBED IN YOUR README IN ORDER TO GET CREDIT FOR THEM.
-
-*Technical*
-1. (max 5 points) Style your page using CSS. Each style rule you apply will get you 1 extra point for a maximum of 5 points. Be sure to describe your style rules in your README.
-2. (5 points) Add a simple JavaScript animation to the page.
-3. (max 5 points) Experiment with other HTML tags (links, images, tables etc.) Each extra tag you use will get you 1 extra point for a maximum of 5 points. Be sure to describe the links you use in your README.
-
-*Design*
-1. (10 points) Create a color palette using [color.adobe.com](https://color.adobe.com). Use all the colors in the palette in your webpage by implementing the appropriate CSS. Add a small screenshot of the color wheel for your color palette to your repo.
-2. (5 points) Use a font from [Goolge Fonts](https://fonts.google.com) in your website.
-
-
-Charlie Roberts
-http://a1-charlieroberts.glitch.me
-
-This project shows ...
## Technical Achievements
I decided to add rules to h1,h2, body and table. These rules included font-family, text-align, background color, color, font-size, and padding.
I created a simple slide in animaton whihc I used for both my h1 and h2.
-I created a table, graph, links (directed to my LinkedIn) underling, bolding and horizontal line breaks.
+I created a table, graph, a link that opens to a new window (directed to my LinkedIn), underling, bolding and horizontal line breaks.
### Design Achievements
I created a color palette using color.adobe.com that utilized #C9D5C4, #9782F5, #F5EDAE, and #76EAF5
diff --git a/Screen Shot 2020-08-31 at 4.37.12 PM.png b/Screen Shot 2020-08-31 at 4.37.12 PM.png
new file mode 100644
index 0000000000000000000000000000000000000000..06bc4251536261e54f4ad5a61d11c51677e061cb
GIT binary patch
literal 793422
zcmeFZWmH_twkV7S2`(YHTX1)Gcemi~E{!H3xCD16c<|uv?ry>LpU5b$*ZHK8+u)}~)J36k-@p^9
zpzG)dVM~a^V2LD`ZXT(csi3RS(?f+Da1G|=l}Eth+jx-aZSbA90oz^MfzNyCO|QO|
zX9AWl5V5~>tgVNBz(CNp%KPVpz9r`;iw{bNqzHsG`v@sb?;)AyDjdip{43^h!pjv}
zIL~KHxZvje?$uV>#e{7ULKqUh*oAeG79N%CWLR)$6
zO3P?obzO@2o}V`rcWjswBZL=gMBhG?Fumksq#Y;D6e*G9V#&1_zx!3pXyCtih7VrV?=CDSX>MLx<=;Eq;
z90VH&LrivO)Pxx~dCU8ei(l2qH@HRpRGbiB$9u2Xs}77Tf)A2kkL)!dI|Y?!uuz`n
zfVgm*y|g$E{K!zOj2a6@u!
zB0q^Re}y=P!0!#gGF#)xfv|(5%t1PV@fBvUf(R9+<3@}QF=U1q4}QCe_#RGelMyXY
z=K_g7kn1BtFbRQp(Dzt^0wil;pIBNmWFBFMSSBoZ3E?R;oL?e3%8+%~A3{Fl>V8MJ
z326^e6t&Ein}l)0Py4c$lROFc9`>6tUOBvNx8x6w6C_Y)*M)A%+v1)FCze*|%AoX3
zawk;3ckNJ0T~PP9tzV&NFv6o%MR0Stafl~tMhPNhy=O3V@5`~@Rt
zPvv|{n;m;h7(eH9GV1`19X~UA{S%|qLZ04~z=82K$2GeTecIE;FaVp+TczKQ6YuGZD2E2rj!O8>eR$S`m=;9(3`jk$<>LWUCht>N*hOCMbQEX6k^{@)q`{mc(Ym0%B}`
zwSQNJd5oTp<;$puwt(jO&WJjT$&kTc^r`f|6-Goak9vmgVBnDJfY=PnJj2|?ykW#`Sbn%Q(SY=r
z0-sLr!wMxIB}gQibe}4jqEW6=>#Ut$*HFv9-Y@zI@&R}Sq_d(s(fpy6P|4l?D;lai
zrwr};50S0d?(f}sdGUFnCTYI}`&`3;vTl^rh2n)D3TI?phtcWuL7mQcNxoG>eTI&>hzdbo6t6sBJ-Jd
zyZJ}uXNOjY%rgxE?Fm&T5yy`8PlA#glG()@1pzaGcAIvw_LIiU_R?I}9Q3Rw9DWW3
z4p`Q8BUZf!wbh@UYc7qqTc}j2)~O_@o~f7=+!dCJ+=~{*Xe`bw(#IZ04O5O&2hxa{
zJIqDuFKQPpSj;YmribGlm#ld#3mvfSH5}b%(kuu+8aM!^-k5Hi)Gk?c?zL4E+83QV
zuNa*ooy4CkpJtWM>f*LsT@2&;YWOAr^4mItw$M(UCPg;C{~C0$bMZSU*z0w+@$fk*
z-_AJj>wRd7sD8UqxU$PIlhhQ)a}e%wVq)m`ryxv7ZLxxM;L``xxF-^I`q%pJ93;H1_<^7+a+9LO7VdfU<{Yl`itQ6+S7
zceQaEAS6sjBCr`cw>Sq`cC0Cc$c{h{Pk@m3rUKOl)d%wgLm%CbOPr5_&WuK#pZ!A}
z!?k^it+sgz$tsPX>3t&n!`Dw=+oko*tjt_@e&IE8_|A_?>WC+buW6Unb9$Z@x?df~
zFJ$U6wP)48h_h4i(l-k{l8_Uk