I hereby claim:
- I am jwo on github.
- I am jwo (https://keybase.io/jwo) on keybase.
- I have a public key ASAJZhNvpvuI6EJyOxva6TZ0zBCpxaWUTNvsy38y38ybcAo
To claim this, I am signing this object:
| #!/bin/bash | |
| echo 'So you want to create a new project, eh?' | |
| echo 'What is the name of the project?' | |
| read project_name | |
| mkdir $project_name |
| select whichtype in "Authoring" "Semantics" "Syntax" "Forms" "Storage"; do | |
| case $whichtype in | |
| Authoring ) break;; | |
| Semantics ) break;; | |
| Syntax ) break;; | |
| Forms ) break;; | |
| Storage ) break;; | |
| esac | |
| done |
I hereby claim:
To claim this, I am signing this object:
| class Calendar | |
| attr_reader :date | |
| def initialize(date) | |
| @date = date | |
| end | |
| HEADER = %w(Sunday Monday Tuesday Wednesday Thursday Friday Saturday).freeze | |
| START_DAY = :sunday |
docker build .d774c9ed0183docker tag d774c9ed0183 jwolgamott/tiy-dotnet-runnable:0.4-betadocker push jwolgamott/tiy-dotnet-runnable:0.4-betaThen, people will be able to docker run jwolgamott/tiy-dotnet-runnable:0.4-beta
| export function saveOfficeStaff(section, staff) { | |
| return (dispatch, getState) => { | |
| const issue = getState().newsletterId; | |
| const theData = { | |
| staff: staff, | |
| section_id: section.id | |
| } | |
| fetch(`/api/newsletters/${issue}/office_staff`, { |
| import React, { Component } from 'react'; | |
| import ActionCable from 'actioncable'; | |
| class App extends Component { | |
| componentWillMount() { | |
| var cable = ActionCable.createConsumer('ws://localhost:3000/cable') |
| <h1>Oh Hai</h1> | |
| <%= react_component 'oh-hai' %> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://code.jquery.com/jquery-2.2.4.js"></script> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |