The Laracasts PHPStorm theme.
https://www.dropbox.com/s/f4l3qc2falnvq61/laracasts_theme_updated.icls
(Add to ~/Library/Preferences/WebIde80/colors on Mac.)
| { | |
| sourcemapId: "65b40dbac79ce13182bfc26c", | |
| certifications: [ | |
| { | |
| name: 'Leather Working Group', | |
| valid: true | |
| } | |
| ], | |
| buinessIdentifiers: [ | |
| { |
| YumYum is going to be a grubhub clone |
| var userChoice = prompt("Do you choose rock, paper or scissors?"); | |
| var computerChoice = Math.random(); | |
| if (computerChoice < 0.34) { | |
| computerChoice = "rock"; | |
| } else if(computerChoice <= 0.67) { | |
| computerChoice = "paper"; | |
| } else { | |
| computerChoice = "scissors"; | |
| } console.log("Computer: " + computerChoice); |
| should neatly display users github profile | |
| show number of repos the user has as well as give them a link to thier profiles | |
| show number of followers and and follwing as well as link to them |
The Laracasts PHPStorm theme.
https://www.dropbox.com/s/f4l3qc2falnvq61/laracasts_theme_updated.icls
(Add to ~/Library/Preferences/WebIde80/colors on Mac.)
At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)
Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.
| 'use strict'; | |
| // Solution to Mad Libs drill | |
| // ========================== | |
| const express = require('express'); | |
| const bodyParser = require('body-parser'); | |
| const app = express(); |
| find the right christmas present based on idea or character |
| https://gist.github.com/anonymous/ed3f1aa828f0c556acaa183a6d6bf94b (catch error) | |
| https://gist.github.com/anonymous/768af86ce45957ac94f50d4dd532f6b7(traffice light) |