which party has more info?
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<html xmlns:v="urn:schemas-microsoft-com:vml" | |
xmlns:o="urn:schemas-microsoft-com:office:office" | |
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" | |
xmlns="http://www.w3.org/TR/REC-html40"> | |
<head> | |
<meta http-equiv=Content-Type content="text/html; charset=windows-1252"> | |
<link rel=File-List href="Publication2_files/filelist.xml"> | |
<!--[if !mso]> | |
<style> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Student Site Title</title> | |
<link rel="stylesheet" src="style.css"> | |
<style> | |
//h1 {color:red} | |
</style> | |
</head> |
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
// source: http://d3js.org/colorbrewer.v1.min.js | |
var colorbrewer = { | |
YlGn: { | |
3: ["#f7fcb9", "#addd8e", "#31a354"], | |
4: ["#ffffcc", "#c2e699", "#78c679", "#238443"], | |
5: ["#ffffcc", "#c2e699", "#78c679", "#31a354", "#006837"], | |
6: ["#ffffcc", "#d9f0a3", "#addd8e", "#78c679", "#31a354", "#006837"], | |
7: ["#ffffcc", "#d9f0a3", "#addd8e", "#78c679", "#41ab5d", "#238443", "#005a32"], | |
8: ["#ffffe5", "#f7fcb9", "#d9f0a3", "#addd8e", "#78c679", "#41ab5d", "#238443", "#005a32"], |
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
source 'https://rubygems.org' | |
gem 'github_api' | |
gem 'pry' # insert `binding.pry` for debugging |
- https://developers.google.com/apps-script/overview
- https://developers.google.com/apps-script/reference/forms/
- https://developers.google.com/apps-script/reference/forms/form-app
- https://developers.google.com/apps-script/reference/forms/form
- http://stackoverflow.com/questions/24721226/how-to-define-global-variable-in-google-apps-script/24750489#24750489
- https://developers.google.com/apps-script/guides/rest/
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
require 'capybara/poltergeist' | |
require 'ruby-progressbar' | |
session = Capybara::Session.new(:poltergeist) | |
session.visit("https://bank.simple.com/signin") | |
session.fill_in("username", with: "USERNAME") | |
session.fill_in("password", with: "PASSWORD") | |
session.click_on("Sign in") |
Pros:
- presence of controllers/admin/* upon installation - it takes away the unnecessary mystery about how to configure the files which override default behavior
- look and feel of views
Cons:
- Installation errors, although they are currently solvable.
- can't run bundle commands while rails server is running.