This file contains hidden or 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
| process.stdin.resume(); | |
| process.stdin.setEncoding('utf8'); | |
| var Util = require('./util'); | |
| //COLOR STUFF//////////////////// | |
| var clc = require('cli-color'); | |
| var style = { "w": clc.blue("w"), "W": clc.yellowBright("W")}; | |
| var error = clc.red.bold; | |
| var info = clc.cyanBright; |
This file contains hidden or 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
| require 'watir-webdriver' | |
| require 'headless' | |
| require 'mail' | |
| class ApplicationController < ActionController::Base | |
| protect_from_forgery with: :exception | |
| def pizza_party |
This file contains hidden or 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
| #include <Notes.h> | |
| #include <Bridge.h> | |
| #include <HttpClient.h> | |
| int melody[] = { | |
| NOTE_C4, NOTE_G3,NOTE_G3, NOTE_A3, NOTE_G3,0, NOTE_B3, NOTE_C4}; | |
| int noteDurations[] = { | |
| 4, 8, 8, 4,4,4,4,4 }; |