DPS909 & OSD600 Fall 2019 - Lab 2

From CDOT Wiki
Jump to: navigation, search

Programming with git and GitHub

Due Date

Friday Sept 13 before midnight.

Introduction

This lab will get you started using git, GitHub, and also introduce you to an open source project called Filer, which we'll be working with in Release 0.1.

Our goal is to create a single-page, serverless web app for note taking, and host it on GitHub.

NOTE: You are free to collaborate with others in the class, share ideas, code, and help one another debug. However, every student must follow the steps to completion so as to create the necessary work products.

Walkthrough

The following steps will help you get things setup and working. If you need help with any of these, make sure you ask. If there are things you want to know more about, do some research and follow the links provided.

Step 1: Create a new GitHub Repo

  1. Create a new GitHub repo (instructions here):
    1. Name it something like my-note, micro-note, whiteboard or something else that makes sense to you
    2. Add a Description, for example: "A web based note taking app".
    3. Set your repo to be Public
    4. Initialize it with a README.md and License. For your License, choose BSD 2-Clause "Simplified License" (see BSD 2-Clause).
  2. Your new repo will have a URL that combines your GitHub username and chosen repo name: https://github.com/username/repo-name. Understanding this URL scheme is important when you're trying to make sense of which version of a repo (i.e., which fork) you're reading.

Step 2: Clone your GitHub Repo on your Local Machine

  1. Install git if you don't already have it on your computer. You can download it here. NOTE: if you're on Windows, I suggest that you override the following settings while running the installer:
    1. Change the default editor Git uses from Vim to your preferred editor (e.g., Visual Studio Code)
    2. Make sure you use Git from the command line and also from 3rd-party software when adjusting your PATH.
    3. When configuring line ending conversions, choose Checkout as-is, commit as-is. This will make sure that Unix style line endings don't get converted to Windows line endings, and vice-versa.
  2. You now need to copy your repo onto your local computer. To do this, use the git clone command. The clone command requires a git URL to a repo. NOTE: this is NOT the same thing as your GitHub URL for your repo; a git URL ends in .git. You can follow these instructions to find your repo's git URL. When you have it, use git clone https://github.com/username/repo-name.git to clone it locally on your computer.
  3. You should now have a new directory with the same name as your GitHub repo. Type cd repo-name and look at the files. There should be LICENSE and README.md files. Open them in your code editor, and compare them to what you see on GitHub.

Step 3: Write some Code in your Local Repo

  1. Create a new file named index.html inside your local repo's directory. You can use any code editor you like--I'd suggest using Visual Studio Code.
  2. In your index.html file, create a basic HTML5 document.
  3. Try opening your index.html page in a browser, and make sure it works as you expect.
  4. Once you're convinced that everything's working, commit your work to git. To do so, use the following commands:
    1. git add index.html
    2. git commit -m "Adding a basic web page"

Step 4: Mirror your work on GitHub

  1. Our code is committed (i.e., saved) in our local git repo, but at some point we should also push the commit(s) to our GitHub repo too. Each repo is a copy (i.e., clone) of the other, but they don't stay in sync automatically. We have to tell them when and what we want to sync by using git's push and pull commands.
  2. Use the following command to push your recent change (i.e., commit) to GitHub: git push origin master. Here we tell git to push commit(s) to the origin repo (i.e., the one from which we cloned originally), and to use the master branch. We'll discuss branches more in coming weeks. For now, it's enough to know that master is the default branch of development.
  3. Any time you want to sync what's on your local computer with GitHub, you can follow these steps to push any missing commits.

Step 5: Adding Features

  1. Our note taking web app needs a way to save and load our work. To prepare you for your 0.1 Release, we'll use the FilerJS Browser Filesystem library.
  2. Add a script tag to the bottom of your HTML body that uses the following src: https://unpkg.com/filer/dist/filer.min.js:
    <script src="https://unpkg.com/filer/dist/filer.min.js"></script>
  3. Below this, add a second script that initializes a filesystem:
    <script>const fs = new Filer.FileSystem(); ...
  4. The fs instance can be used to call any of the filesystem operations like readFile() or writeFile().
  5. Write some code to accomplish the following set of steps:
    1. When the page's DOM is finished loading (use the DOMContentLoaded event), try to fs.readFile('/note', 'utf8', function(err, data) {...}). If there is an error (i.e., if err is non-null), use a default string like "Welcome to my notepad!". If the file does exist (i.e. data is non-null), use that for your string instead.
    2. Use the string from the previous step to display in a <div> that you add to the page. You can give it an id="notepad". Also make this <div> editable using the contenteditable attribute (i.e., the user should be able to edit the text in the page):
      <div id="note" contenteditable></div>
    3. Use a setInterval() call to register an interval callback that saves whatever is in the notepad div every 2-5 seconds (try different amounts of time to see what works best) to the /note file. NOTE: recall that you can use document.querySelector('#note').innerHTML to get/set the contents of the div.
    4. When the user refreshes the page, or loads it after closing it, the contents of the /note file should reappear.

Step 6: Push and Setup Gh-Pages Hosting

  1. Once you have the basics working from Step 5, use git add, git commit, and git push as discussed above to sync your GitHub repo with your local machine.
  2. Next, we'll enable Gh-Pages for our master branch. This will tell GitHub to create a web server to host our content. Follow these steps:
    1. Click Settings in your GitHub repo's main page header
    2. Under the GitHub Pages > Source dropdown, choose the master branch option.
    3. Click Save
  3. Your site will get built and hosted at https://username.github.io/repo-name. Every time you push new code to your master branch, these changes will get rebuilt and hosted again. NOTE: it may take some time between when you push, and when it shows up on github.io.

Step 7: Add Something Cool

For the final step, add something unique, interesting, fun, cool, etc. your app. Here are some ideas, but you are free to do anything you'd like:

  • Update the "save" logic so it uses keyboard shortcuts. You could use a library like Hotkeys.js. If you use this library, make sure you see the note about enabling it for contenteditable.
  • Add some UI, maybe a toolbar with a Save button.
  • Change the fonts using something like Google Fonts
  • Make the UI responsive, so it works well on mobile, tablets, or desktop.
  • Use a CSS library to make the UI look like it's using being done with hand-drawn, paper sketch styles (e.g., PaperCSS)
  • Use a background image instead of a pure white document
  • Add some kind of Google Docs style indicator to tell the user when their changes are saved (i.e., "Saving..." vs. "All changes saved!")
  • Make it possible to support multiple pages/files. For example, if the user loads index.html?p=note you load the /note file, but index.html?p=opensource would cause the app to use the /opensource file instead.
  • Add the ability to download and save your notepad. You can use a library like FileSaver.js.
  • Add a word count feature. There are lots of existing JavaScript text analysis libraries you could use, or write your own.
  • Instead of a plain DIV using contenteditable, switch to a rich text editor control using an open source component like Trix or Quill (there are dozens if you do some research).

Step 8: Blog about Your App

Write a blog post about your app. Include links to the code on GitHub, as well as the live version on github.io. Explain how it works, and which extra feature(s) you added. Also discuss any new technical things you learned along the way.

Submission

Complete the steps above and then add your information to the table below.

Name GitHub Repo (URL) GitHub Pages (URL) Blog Post (URL)
Example Name https://github.com/example/notepad-app https://example.github.io/notepad-app https://examplestudent.wordpress.com/2019/09/05/introducing-notepad/
Cheng-Tuo Shueh https://github.com/jerryshueh/simple-noter https://jerryshueh.github.io/simple-noter/ https://osstudent.blogspot.com/2019/09/dps909-lab-2-git-practice-simple-noter.html
Josue Quilon Barrios https://github.com/manekenpix/miniNote https://manekenpix.github.io/miniNote/ https://whataboutopensource.blogspot.com/2019/09/mininote-your-new-web-based-note-taking.html
James Inkster https://github.com/grommers00/my-note https://grommers00.github.io/my-note/ https://grommers.wordpress.com/2019/09/11/the-simple-note/
Ehsan Ekbatani https://github.com/eekbatani/micro-note https://eekbatani.github.io/micro-note/ https://eekbatani.blogspot.com/2019/09/micro-note-my-first-steps-into-open.html
Kartik Budhiraja https://github.com/kartik-budhiraja/Notify https://kartik-budhiraja.github.io/Notify/ https://kartikopensource.wordpress.com/2019/09/12/notify-online-notes-taking/
Jordan Sie https://github.com/jrdnlx/noteboard https://jrdnlx.github.io/noteboard/ https://jrdnlxnoteboard.blogspot.com/2019/09/phase-one-of-my-noteboard-application.html
Wajeeh Sheikh https://github.com/wajeehsheikh/Waj-Notes https://wajeehsheikh.github.io/Waj-Notes/ https://opensourcebywajeehsheikh.blogspot.com/2019/09/my-online-notepad.html
Cindy Le https://github.com/cindyledev/my-note https://cindyledev.github.io/my-note/ https://cindyledev.wordpress.com/2019/09/12/lab-2-programming-with-git-and-github/
Ryan Wilson https://github.com/RyanWils/my-note https://ryanwils.github.io/my-note/ https://medium.com/@rwilson31/note-taker-edb92f268d7b
David Medeiros https://github.com/drwm-base/my-note https://drwm-base.github.io/my-note/ https://discoveropensource.blogspot.com/2019/09/my-note-my-first-step-into-open-source.html
Robert Begna https://github.com/robertbegna/my-note https://robertbegna.github.io/my-note/ https://robertbegnastechblog.blogspot.com/2019/09/dps909-lab2-my-note.html
Bowei Yao https://github.com/ragnarokatz/my-note https://ragnarokatz.github.io/my-note/ https://ragnarokatz.wordpress.com/2019/09/12/a-simple-note-taker/
Varshan Nagarajan https://github.com/varshannagarajan/my-notepad https://varshannagarajan.github.io/my-notepad/ https://varshannagarajan.wordpress.com/2019/09/12/learning-about-github/
Carlos Gomez https://github.com/cagomezr/WebNote https://cagomezr.github.io/WebNote/ https://cagomezr.wordpress.com/2019/09/12/git-github-and-source-control/
Gia Tuong Tran https://github.com/giatuongtran9/my-note https://giatuongtran9.github.io/my-note/ https://giatuongtran.wordpress.com/2019/09/12/osd600-lab-2-simple-note-app/
Luca Cataldo https://github.com/lucacataldo/my-note https://lucacataldo.github.io/my-note/ https://cataldosoft.wordpress.com/2019/09/12/creating-a-note-taking-app-with-filer-js/
Hansol Cho https://github.com/Hansol-Cho/my-note-app https://hansol-cho.github.io/my-note-app/ https://medium.com/@hansol.cho613/web-based-note-app-348e5f77c650?sk=2046b8cc5db6eec62fbaf75562dac1b8
Bruno Alexander Cremonese de Morais https://github.com/brucremo/whiteboard https://brucremo.github.io/whiteboard/ https://bacmme.blogspot.com/2019/09/whiteboard-note-what-you-want-with.html
Minuk Park https://github.com/mpark86/my-note https://mpark86.github.io/my-note/ https://minukpark.wordpress.com/2019/09/12/simple-note-taking-app/
Reza Rajabi https://github.com/Reza-Rajabi/nOTeTOn https://reza-rajabi.github.io/nOTeTOn/ https://opensourcebrowsing.blogspot.com/2019/09/a-simple-note-taking-app-noteton-if-you.html
Matthew Clifford https://github.com/smilegodly/whiteboardapp https://smilegodly.github.io/whiteboardapp/ https://awesomeresponsibility.wordpress.com/2019/09/19/whiteboardapp/
Timothy Morris https://github.com/MeisterRed/micro-note https://meisterred.github.io/micro-note/ https://medium.com/@tjmorris56/micronote-a-web-based-note-taking-app-99d90eb9ff67
Paul Luu https://github.com/ImmutableBox/whiteboard/tree/master https://immutablebox.github.io/whiteboard/ https://paulopensourceblog.wordpress.com/2019/09/12/simple-whiteboard-application/
Wing Tung Lau https://aprilllllllll.github.io/OSD600/ https://github.com/aprilllllllll/OSD600 https://aprilprogrammer.blogspot.com/2019/09/web-based-notepad.html
Igor Naperkovskiy https://github.com/cryolis/whiteboard https://cryolis.github.io/whiteboard/ https://sentech849662565.wordpress.com/2019/09/13/first-git-project
Xin (Jack) Nian https://github.com/nianjack/MicroNote https://nianjack.github.io/MicroNote https://jacknian.wordpress.com/2019/09/12/micronote-a-web-based-note-taking-app
Hayley McIldoon https://github.com/shmooey/my-note https://shmooey.github.io/my-note/ https://hmcildoon.wordpress.com/2019/09/13/my-note/
Jatin Arora https://github.com/jatinAroraGit/note-down https://jatinaroragit.github.io/note-down/ https://jatinoopensource.wordpress.com/2019/09/12/lab-2-taking-notes/
Krystyna Lopez https://github.com/lozinska/my-note https://lozinska.github.io/my-note/ https://klopez8.blogspot.com/2019/09/filer-open-source-project.html
Minyi Chen https://github.com/KarlaChen/my-note https://karlachen.github.io/my-note/ https://karlachen.blogspot.com/2019/09/simple-take-note-app.html
Anton Biriukov https://github.com/birtony/my-note-keeper.git https://birtony.github.io/my-note-keeper/ https://medium.com/@birtony/implementing-a-simple-web-based-note-taking-application-5f57a74caf4
Ngoc Nam Khang Nguyen https://github.com/vitokhangnguyen/my-lightweight-noteboard https://vitokhangnguyen.github.io/my-lightweight-noteboard/ https://khangnguyenopensource.blogspot.com/2019/09/my-lightweight-noteboard-10.html
Jacob Shuman https://github.com/jacob-shuman/midnote https://jacob-shuman.github.io/midnote/ https://medium.com/@jacobshuman7/midnote-99f1a231e31c
Ryan Marzec https://github.com/RyanMarzec/micro-notes https://ryanmarzec.github.io/micro-notes/ https://marss64.wordpress.com/2019/09/13/micro-notes-a-step-into-open-source-on-github/
Adith Syam https://github.com/asyam1/my-note https://asyam1.github.io/my-note/ https://adithsyam2.blogspot.com/2019/09/my-notes-web-application-for-my-first.html
Sina Lahsaee https://github.com/ODAVING/Whiteboard https://odaving.github.io/Whiteboard/ https://opensourceprojects19.blogspot.com/2019/09/simple-whiteboard.html
Siwen Feng https://github.com/SiwenFeng/whiteboard https://siwenfeng.github.io/whiteboard/ https://fengsiwen.blogspot.com/2019/09/whiteboard-app-v10.html
Brett Dennis https://github.com/UltimaBGD/micro-note https://ultimabgd.github.io/micro-note/ https://ultimaopensource.wordpress.com/2019/09/13/filer-js-testing-micro-note/
Hansal Bachkaniwala https://github.com/hansal7014/Notes-Forever https://hansal7014.github.io/Notes-Forever/ https://medium.com/@hansal7014/notes-forever-a-note-taking-web-app-77309b62bc82
Neil Ong https://github.com/neilong31/foreverNote https://neilong31.github.io/foreverNote/ https://neilong31.wordpress.com/2019/09/13/web-based-note-taker-forevernote/
Andre Rosa https://github.com/Cadesh/whiteboard https://cadesh.github.io/whiteboard https://medium.com/@andrewvrosa/github-tricks-80709e9c1fc7
Julie Philip James https://github.com/jpjjulie/my-note https://jpjjulie.github.io/my-note/ https://juliephilipjames.wordpress.com/2019/09/13/creating-my-note-through-github/
Jayson Sherry https://github.com/jayson528/WebNotes https://jayson528.github.io/WebNotes/ https://mlforiphone.blogspot.com/2019/09/taking-notes-on-fly-have-you-ever.html
Yohan Choi https://github.com/cyh0968/notepad https://cyh0968.github.io/notepad https://ychoi63.blogspot.com/2019/09/developing-note-taking-app-step-01.html
Jordan Hui https://github.com/jordanhui19/whiteboard https://jordanhui19.github.io/whiteboard/ https://jhuiosd600.blogspot.com/2019/09/the-whiteboard-note-taking-app.html
Miguel Roncancio https://github.com/miggs125/mini-note https://miggs125.github.io/mini-note/ https://codepen.io/miggs125/post/mini-note
Thomas Luu https://github.com/ThomasLuu00/micro-note https://thomasluu00.github.io/micro-note/ https://thomasopensourceblog.wordpress.com/2019/09/14/playing-with-github-and-filer/
Calvin Ho https://github.com/c3ho/whiteboard https://c3ho.github.io/whiteboard/ https://c3ho.blogspot.com/2019/09/whiteboard-app.html
Rafi Ungar https://github.com/Silvyre/zennotate https://silvyre.github.io/zennotate/ https://raungar.wordpress.com/2019/09/13/zennotate-on-first-open-source-experiences/
Haichuan He https://github.com/haichuan0424/my-note https://haichuan0424.github.io/my-note/ https://medium.com/@haichuan0424/my-notepad-app-1d146ff4b1f4
Nazneen Nahar https://github.com/nazneennahar/my-note- https://nazneennahar.github.io/my-note-/ https://inspirationalnation.wordpress.com/2019/09/14/my-note-note-taking-app/
Muqing Li https://github.com/a8a9a16/whiteboard https://a8a9a16.github.io/whiteboard/ https://muqingli.wordpress.com/2019/09/14/notepad-app-based-on-github-io/
Musawar Bajwa https://github.com/MusaBajwa/micro-note https://musabajwa.github.io/micro-note/ https://musawarbajwa.wordpress.com/2019/09/14/my-first-web-based-note-taking-app/
Daniel Beigi https://github.com/dbeigi/whiteboard https://dbeigi.github.io/whiteboard/ https://danwithopensource.blogspot.com/2019/09/whiteboard-application-built-with-open.html
Sefa Baah - Acheamphour https://github.com/Sbaah/Micro-note https://sbaah.github.io/Micro-note/ https://opensourcedps909blog.blogspot.com/2019/09/dps909-fall-2019-lab-2.html
Ana Garcia https://github.com/agarcia-caicedo/tinyNote https://agarcia-caicedo.github.io/tinyNote/ https://semortea.wordpress.com/2019/09/14/tinynote/
Mykola Skuybeda https://github.com/mskuybeda/my-note https://mskuybeda.github.io/my-note/ https://nicksopensource.wordpress.com/2019/09/14/github-tutorial/
Ilya Zhuravlev https://github.com/izhuravlev/z-Note https://izhuravlev.github.io/z-Note/ https://medium.com/@ilya.zhurik/meet-z-note-e6449e80c8da
Sarika Hanif https://github.com/s-arika/my-note https://s-arika.github.io/my-note/ https://medium.com/@shanif5/my-note-online-note-taking-app-d89b52487453
Evelyn Yeung https://github.com/evlnyng/CornellNote https://evlnyng.github.io/CornellNote/ https://evlnyng.tumblr.com/post/187713806753/cornell-method-notetaking-app
Zufishan Ali https://github.com/zufishanali/my-note https://zufishanali.github.io/my-note/ https://medium.com/@ali.zufishan/my-note-6cc78bd51f9d
Pavan Kamra https://github.com/PavanKKamra/note-taking-app https://pavankkamra.github.io/note-taking-app/ https://pavankamra.blogspot.com/2019/09/note-taking-application.html
Sukhbeer Dhillon https://github.com/sukhbeersingh/notaker/ https://sukhbeersingh.github.io/notaker/ https://medium.com/@sukhbeerdhillon305/notaker-99c1c1722f77
Manan Patel https://github.com/Manan311/My_Note https://manan311.github.io/My_Note/ https://manan-patels-blog.blogspot.com/2019/09/notepad.html