- https://gist.github.com/gesteves/43f2beb42f7238d23099d0ebc1601cfb
- https://github.com/jessabean/100-javascript-projects/blob/master/README.md
- https://github.com/womenwhocodedc/front-end-community/blob/master/study-guides/javascript_study_guide.md
- https://github.com/patriciarealini/expo/blob/master/tasking.md
- https://github.com/SpeakAgent/frontend-test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p id="message">Guess a number between 1 and 10</p> | |
<form id="input"> | |
<input type="text" name="number" id="guess"> | |
<button id="submit">Submit</button> | |
</form> | |
<button id="replay" class="hidden">Replay</button> | |
# Number-guessing | |
- Write the `init` function to set up an event listener on the form. The event listener should pass the value of the input element to the `check` function. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav class="masthead-nav"> | |
<a class="{% if page.title == "About" %}active {% endif %}tooltipped tooltipped-s" href="{{ site.baseurl }}/about" aria-label="About this site.">About</a> | |
<a class="{% if page.title == "Process" %}active {% endif %}tooltipped tooltipped-s" href="{{ site.baseurl }}/process" aria-label="Working with us.">Process</a> | |
<a class="{% if page.title == "Capabilities" %}active {% endif %}tooltipped tooltipped-s" href="{{ site.baseurl }}/capabilities" aria-label="What we can do.">Capabilities</a> | |
<a class="{% if page.title == "Team Docs" %}active {% endif %}tooltipped tooltipped-s" href="{{ site.baseurl }}/team-docs" aria-label="How we do what we do.">Team Docs</a> | |
<a class="{% if page.title == "Project Leads" %}active {% endif %}tooltipped tooltipped-s" href="{{ site.baseurl }}/project-leads" aria-label="Who's leading your project?">Project Leads</a> | |
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/gjtorikian/html-proofer | |
# Add `gem 'html-proofer'` to your Gemfile | |
# Run `bundle` | |
# Create a file named `Rakefile` | |
# Paste the code below in it | |
# Run `rake test` from the commandline. Issues will be reported. | |
require 'html/proofer' | |
task :test do |
This is really just an approach for locally testing DNS changes, which can easily be done with a HOSTS file if the change involves an IP address, but gets a bit trickier when things like CNAMEs are involved. This is only meant to test locally off a single machine.
-
Install bind using homebrew
brew install bind
-
Follow the installation steps to start up bind
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mig Reyes - Web Designer at Basecamp | |
* Don't be defined by your job title | |
* Things don't have to be perfect | |
* Move fast and make ugly things sometimes | |
Benjamin Dauer - Product Designer NPR | |
* Working on Pandora for NPR | |
* The best interfaces are those that you don't notice | |
* The importance of the human element |
A Pen by Nathan Bingham on CodePen.
- Decide on a subdomain to use with ngrok. This makes the whole process easier.
- Open up a Command Prompt in Administrator mode and run the following command to register the URL with HTTP.sys replacing "modernie" with your subdomain and ##### with your VisualStudio/IISExpress application's port.
netsh add urlacl url=http://modernie.ngrok.com:##### user=everyone
- Edit your applicationhost.config. The easiest way to is start up the site and right-click the IISExpress icon in the System Tray. Click "Show All Applications" and select your website running at
localhost:#####
. Click the path next to "Config" to open the file in an editor. - Search for you site's
<bindings>
configuration. The easiest way is to search for*:#####:localhost
, which should bring you to the<bindings>
section for your site. Edit them to include the following:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user www-data; | |
worker_processes 1; | |
error_log /var/log/nginx/error.log; | |
pid /var/log/nginx/nginx.pid; | |
events { | |
worker_connections 1024; | |
} |
NewerOlder