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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="initial-scale=1, width=device-width"> | |
| <title></title> | |
| <!-- compiled css output --> | |
| <link href="css/ionic.app.css" rel="stylesheet"> | |
| <link href="css/style.css" rel="stylesheet"> |
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
| { | |
| "name": "Stream example ruby app", | |
| "description": "A simple Pinterest clone built with Rails 4 and stream_rails", | |
| "website": "https://getstream.io", | |
| "keywords": [ | |
| "getstream.io", | |
| "HTML5", | |
| "PHP" | |
| ], | |
| "repository": "https://github.com/GetStream/stream-example-ruby", |
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
| css: | |
| #gradient { | |
| width: 100%; | |
| height:100%; | |
| background-color: rgb(186,115,255); | |
| } | |
| html: | |
| <body> | |
| <div id="gradient"> |
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
| ####################################### | |
| # CANONICAL GEMS | |
| # lives at https://gist.githubusercontent.com/brw12/d508024dcd7e230e4a88/raw/2e65efe2a145dda7ee51d1741299f848e5bf752e/Gemfile | |
| ####################################### | |
| ####################################### | |
| # CORE SETUP | |
| ####################### | |
| # core setup | |
| source 'https://rubygems.org' |
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
| # originally copied from https://help.github.com/articles/ignoring-files | |
| # i manually keep this in sync with https://gist.github.com/benjiwheeler/d100b0c4ed7fbce3dfce | |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o |
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
| general: | |
| build_dir: . | |
| machine: | |
| environment: | |
| RAILS_ENV: "test" | |
| RACK_ENV: "test" | |
| # note: DON'T need to have heroku: section anywhere because we use --app heroku commands. |
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
| class Quality < ActiveRecord::Base | |
| belongs_to :measureable, :polymorphic => true, :inverse_of => :qualities | |
| # translates a raw value to a log scale, using expected mean and halflife. | |
| # eg, suppose we're scoring the relative reliability of something based on its age. | |
| # if 10 days is halflife, and expected mean is 2 days, the raw values and log values will be: | |
| # raw value | log value | |
| # -------------------------- | |
| # 0 days | -.17 | |
| # 1 day | -.09 |
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 'test_helper' | |
| class GroupsControllerTest < ActionController::TestCase | |
| test "ok to create duplicate group through api" do | |
| user = create(:user) | |
| @request.env["HTTP_AUTHORIZATION"] = user.basic_auth_header("abc1234") | |
| post :apicreate, format: :json, nickname: "hannabarbera" | |
| assert_response :created | |
| assert_not_nil assigns(:group) |
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
| drizzle_parse_cloud / cloud / main.js | |
| // ************************* libraries *********************************** | |
| var _ = require('underscore'); | |
| var moment = require('moment'); | |
| //var moment = require('moment-timezone'); | |
| var MAX_ALERT_LENGTH = 110; | |
| var TARGET_TIME_OF_DAY_SEC = 7 * 3600; // 7 am | |
| var TIME_OF_DAY_ABS_DIFF_LIMIT = 40 * 60; // within 40 mins |
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
| { | |
| "005": {"std_tz": "EST", "std_utc_diff": -5, "dst_tz": "EDT", "dst_utc_diff": -4, "state": "NY", "eg_city": "Holtsville"} | |
| ,"010": {"std_tz": "EST", "std_utc_diff": -5, "dst_tz": "EDT", "dst_utc_diff": -4, "state": "MA", "eg_city": "Agawam"} | |
| ,"011": {"std_tz": "EST", "std_utc_diff": -5, "dst_tz": "EDT", "dst_utc_diff": -4, "state": "MA", "eg_city": "Indian_Orchard"} | |
| ,"012": {"std_tz": "EST", "std_utc_diff": -5, "dst_tz": "EDT", "dst_utc_diff": -4, "state": "MA", "eg_city": "Adams"} | |
| ,"013": {"std_tz": "EST", "std_utc_diff": -5, "dst_tz": "EDT", "dst_utc_diff": -4, "state": "MA", "eg_city": "Ashfield"} | |
| ,"014": {"std_tz": "EST", "std_utc_diff": -5, "dst_tz": "EDT", "dst_utc_diff": -4, "state": "MA", "eg_city": "Ashburnham"} | |
| ,"015": {"std_tz": "EST", "std_utc_diff": -5, "dst_tz": "EDT", "dst_utc_diff": -4, "state": "MA", "eg_city": "Auburn"} | |
| ,"016": {"std_tz": "EST", "std_utc_diff": -5, "dst_tz": "EDT", "dst_utc_diff": -4, "state": "MA", "eg_city": "Cherry_Valley"} | |
| ,"017": {"std_tz": "EST", "std_utc_diff": -5, " |