├── .gitignore ├── Contributors ├── README.md ├── about.html ├── base.html ├── cssart.html ├── favicon.ico ├── form.html ├── geolocation.html ├── index.html ├── public ├── images │ ├── Profile1.png │ ├── Profile2.png │ ├── Profile3.png │ ├── controls.png │ ├── cssart │ │ ├── 1-frankdip.png │ │ ├── 2-dreamshield.png │ │ ├── 2-duckhunt.png │ │ ├── 2-gameboy.png │ │ ├── 2-gameboy2.png │ │ ├── 2-healthbars.png │ │ ├── 2-heathbars.png │ │ ├── 2-kirby.png │ │ ├── 2-megaman.png │ │ ├── 2-mspacman.png │ │ ├── 2-navi.png │ │ ├── 2-ori.png │ │ ├── 2-pokeball.png │ │ ├── 2-redxiii.png │ │ ├── 2-sonic.png │ │ ├── 2-yoshi.png │ │ ├── 3-buttercup.png │ │ ├── 3-darwin.png │ │ ├── 3-dexter.png │ │ ├── 3-fanplanet.png │ │ ├── 3-kuriboh.png │ │ ├── 3-lumpy.png │ │ ├── 3-mickey.png │ │ ├── 3-mickey2.png │ │ ├── 3-pika.png │ │ ├── 3-totoro.png │ │ ├── 4-Danielle.png │ │ ├── 4-Erica.png │ │ ├── 4-FrankDip.png │ │ ├── 4-Julia.png │ │ ├── 4-Mark.png │ │ ├── 4-Mibeauchamp.png │ │ ├── 4-Morgen.png │ │ ├── 4-Yuka.png │ │ ├── 4a-Morgen.png │ │ ├── 4a-Yuka.png │ │ ├── 5-FrankDip.png │ │ ├── 5-Morgen.png │ │ ├── 5-Yuka.png │ │ ├── chocotaco.png │ │ ├── letstacoboutit.png │ │ ├── manvsfood.png │ │ ├── miniontaco.png │ │ ├── purecsstaco.png │ │ ├── tacoboy.png │ │ ├── tacobykayleigh.png │ │ ├── tacosurprise.png │ │ └── thefriendlytaco.png │ ├── mockups │ │ ├── src.png │ │ ├── style-guide.png │ │ └── yearbook-mockup.png │ ├── motto.jpg │ ├── rotating_card_thumb1.png │ ├── rotating_card_thumb2.png │ ├── rotating_card_thumb3.png │ ├── scholarship-badge.png │ ├── studentProfile.png │ ├── title1.png │ ├── title2.png │ └── title3.png ├── lib │ ├── jquery-3.3.1.js │ └── lightslider.js ├── scripts │ ├── classProject.js │ ├── cssart.js │ ├── geolocation.js │ ├── gtable.js │ ├── tabletop.js │ └── yearbook.js └── stylesheets │ ├── about.css │ ├── cssart.css │ ├── geolocation.css │ ├── index.css │ ├── lightslider.css │ ├── reboot.css │ ├── resources.css │ ├── rotating-card.css │ ├── styles-master.css │ └── yearbook.css ├── resources.html └── yearbook.html /.gitignore: -------------------------------------------------------------------------------- 1 | ##### Reference 2 | gitignore - Specifies intentionally untracked files to ignore 3 | https://git-scm.com/docs/gitignore 4 | https://help.github.com/articles/ignoring-files/ 5 | 6 | # End 7 | 8 | ### User 9 | [Pp]rivate* 10 | [Ss]ecret* 11 | doc.txt 12 | 13 | # End 14 | 15 | # Packages # 16 | # it's better to unpack these files and commit the raw source 17 | # git has its own built in compression methods 18 | *.7z 19 | *.dmg 20 | *.gz 21 | *.iso 22 | *.jar 23 | *.rar 24 | *.tar 25 | *.zip 26 | 27 | # End 28 | 29 | # Floobits # 30 | .floo 31 | 32 | # End 33 | 34 | 35 | 36 | # Created by https://www.gitignore.io/api/sublimetext 37 | 38 | ### SublimeText ### 39 | # cache files for sublime text 40 | *.tmlanguage.cache 41 | *.tmPreferences.cache 42 | *.stTheme.cache 43 | 44 | # workspace files are user-specific 45 | *.sublime-workspace 46 | 47 | # project files should be checked into the repository, unless a significant 48 | # proportion of contributors will probably not be using SublimeText 49 | # *.sublime-project 50 | 51 | # sftp configuration file 52 | sftp-config.json 53 | 54 | # Package control specific files 55 | Package Control.last-run 56 | Package Control.ca-list 57 | Package Control.ca-bundle 58 | Package Control.system-ca-bundle 59 | Package Control.cache/ 60 | Package Control.ca-certs/ 61 | Package Control.merged-ca-bundle 62 | Package Control.user-ca-bundle 63 | oscrypto-ca-bundle.crt 64 | bh_unicode_properties.cache 65 | 66 | # Sublime-github package stores a github token in this file 67 | # https://packagecontrol.io/packages/sublime-github 68 | GitHub.sublime-settings 69 | 70 | 71 | # End of https://www.gitignore.io/api/sublimetext 72 | 73 | 74 | # Created by https://www.gitignore.io/api/visualstudiocode 75 | 76 | ### VisualStudioCode ### 77 | .vscode/* 78 | !.vscode/settings.json 79 | !.vscode/tasks.json 80 | !.vscode/launch.json 81 | !.vscode/extensions.json 82 | .history 83 | 84 | 85 | # End of https://www.gitignore.io/api/visualstudiocode 86 | 87 | 88 | # Created by https://www.gitignore.io/api/vim 89 | 90 | ### Vim ### 91 | # swap 92 | .sw[a-p] 93 | .*.sw[a-p] 94 | # session 95 | Session.vim 96 | # temporary 97 | .netrwhist 98 | *~ 99 | # auto-generated tag files 100 | tags 101 | 102 | 103 | # End of https://www.gitignore.io/api/vim 104 | 105 | 106 | # Created by https://www.gitignore.io/api/emacs 107 | 108 | ### Emacs ### 109 | # -*- mode: gitignore; -*- 110 | *~ 111 | \#*\# 112 | /.emacs.desktop 113 | /.emacs.desktop.lock 114 | *.elc 115 | auto-save-list 116 | tramp 117 | .\#* 118 | 119 | # Org-mode 120 | .org-id-locations 121 | *_archive 122 | 123 | # flymake-mode 124 | *_flymake.* 125 | 126 | # eshell files 127 | /eshell/history 128 | /eshell/lastdir 129 | 130 | # elpa packages 131 | /elpa/ 132 | 133 | # reftex files 134 | *.rel 135 | 136 | # AUCTeX auto folder 137 | /auto/ 138 | 139 | # cask packages 140 | .cask/ 141 | dist/ 142 | 143 | # Flycheck 144 | flycheck_*.el 145 | 146 | # server auth directory 147 | /server/ 148 | 149 | # projectiles files 150 | .projectile 151 | projectile-bookmarks.eld 152 | 153 | # directory configuration 154 | .dir-locals.el 155 | 156 | # saveplace 157 | places 158 | 159 | # url cache 160 | url/cache/ 161 | 162 | # cedet 163 | ede-projects.el 164 | 165 | # smex 166 | smex-items 167 | 168 | # company-statistics 169 | company-statistics-cache.el 170 | 171 | # anaconda-mode 172 | anaconda-mode/ 173 | 174 | 175 | # End of https://www.gitignore.io/api/emacs 176 | 177 | 178 | # Created by https://www.gitignore.io/api/windows 179 | 180 | ### Windows ### 181 | # Windows thumbnail cache files 182 | Thumbs.db 183 | ehthumbs.db 184 | ehthumbs_vista.db 185 | 186 | # Folder config file 187 | Desktop.ini 188 | 189 | # Recycle Bin used on file shares 190 | $RECYCLE.BIN/ 191 | 192 | # Windows Installer files 193 | *.cab 194 | *.msi 195 | *.msm 196 | *.msp 197 | 198 | # Windows shortcuts 199 | *.lnk 200 | 201 | 202 | # End of https://www.gitignore.io/api/windows 203 | 204 | 205 | # Created by https://www.gitignore.io/api/linux 206 | 207 | ### Linux ### 208 | *~ 209 | 210 | # temporary files which can be created if a process still has a handle open of a deleted file 211 | .fuse_hidden* 212 | 213 | # KDE directory preferences 214 | .directory 215 | 216 | # Linux trash folder which might appear on any partition or disk 217 | .Trash-* 218 | 219 | # .nfs files are created when an open file is removed but is still being accessed 220 | .nfs* 221 | 222 | 223 | # End of https://www.gitignore.io/api/linux 224 | 225 | # Created by https://www.gitignore.io/api/osx 226 | 227 | ### OSX ### 228 | *.DS_Store 229 | .AppleDouble 230 | .LSOverride 231 | 232 | # Icon must end with two \r 233 | Icon 234 | 235 | # Thumbnails 236 | ._* 237 | 238 | # Files that might appear in the root of a volume 239 | .DocumentRevisions-V100 240 | .fseventsd 241 | .Spotlight-V100 242 | .TemporaryItems 243 | .Trashes 244 | .VolumeIcon.icns 245 | .com.apple.timemachine.donotpresent 246 | 247 | # Directories potentially created on remote AFP share 248 | .AppleDB 249 | .AppleDesktop 250 | Network Trash Folder 251 | Temporary Items 252 | .apdisk 253 | 254 | 255 | # End of https://www.gitignore.io/api/osx 256 | artstuff.html 257 | -------------------------------------------------------------------------------- /Contributors: -------------------------------------------------------------------------------- 1 | This File is to List All Contributors 2 | Rob Goelz - https://github.com/RobGoelz 3 | Mo Hampton - https://github.com/mohampton 4 | James Perrin - https://github.com/jamesperrin 5 | Becky Boyce - https://github.com/beckybair 6 | Stefanie Chin - https://github.com/histef 7 | Lakisha Davis - https://codepen.io/KishaDavis/ 8 | Doni Mathis - http://github.com/donimathis 9 | Dean McKenzie - http://github.com/tuxhedoh 10 | Marie Therese Yason - https://github.com/Planetwabisabi 11 | Sam Stokes 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Udacity Yearbook Project 2 | Optional Yearbook Collaboration for Udacity Front-End Scholarship Participants 3 |  4 | 5 | 6 | #### Question: What is this? 7 |
Answer: It is a yearbook project to show off our cohort of the GWG program.
8 | 9 | #### Question: Can I contribute? 10 |Answer: Of course you can! No matter what your experience/knowledge level is we encourage everyone to contribute.
11 | 12 | #### Question: Where do I begin? 13 | -Right now we are still making decisons and in planning phases. Some work has been done, but we are needing to regroup in order to make sure we are all on the same page. 14 | 15 | #### Project Requirements 16 | - An Editing Software (Vscode, Sublime, Atom) 17 | - Have git installed on your pc using Homebrew `brew install git` for Mac users and `apt-get install git` for Debian/Ubuntu users 18 | - Frameworks in use are 19 | - [Bootstrap 4](https://getbootstrap.com) 20 | - [JQuery 3.3.1] 21 | 22 | 23 | -- 1/31/18 -- 24 | Everyone should update their local copies from the main (this) repo. This will resolve a lot of issues. 25 | 26 | People can use this as a guide. 27 | https://stackoverflow.com/questions/7244321/how-do-i-update-a-github-forked-repository#answers 28 | 29 | -- 1/24/18 -- 30 | This is the unofficial repo for a class project/website created and maintained by the class members of Grow With Google and Udacity 2018. The boiler plate code has been added. Feel free to make pull requests at will. Happy coding! 31 | 32 | 33 | To contribute, simply make a pull request or fork this repo and work on it that way. Alternatively, you can pull files to your local environment (your computer) and work on them that way. If you have any questions please let sgstokes006, js-goose, KatFrog or any of the other collaborators know. 34 | 35 | If you are looking for resources to learn GitHub, check out this short video or this blog post from Udacity for more info. 36 | 37 | Happy coding! 38 | -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |Since January 2018, as the Grow with Google Developer Scholarship Recipients, we have worked diligently 118 | on completing courses in HTML, CSS, JavaScript and jQuery. As we near the end of our program, we 119 | are excited to share our new skills. As such, we wanted to create a project that would hone and showcase 120 | these skills while putting familiar names to faces. This led us to create a yearbook for our GwG 121 | cohort. Here you can learn about members of our group and see the skills we have learned put into 122 | practice. If you're a member of our cohort, feel free to contribute to the wesbite. We all know that 123 | practice makes perfect.
124 |Provide an opportunity for scholarship recipients to work in a team environment and improve skills.
141 |Provide a source for scholarship recipients to keep up with each other.
145 |Allow prospective employers to see our skills and learn more about each of us.
149 |167 |173 |Whether you want to uncover the secrets of the universe, or you just want to pursue a career in the 168 | 21st century, basic computer programming is an essential skill to learn.
169 | 172 |
Are you a Google 2018 Udacity Scholar? Click the button below to create a profile and be added to the Yearbook.
184 | Add Me! 186 |