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
var AccessToken; | |
var BaseURL; | |
var ClientSecret; | |
var ClientToken; | |
var ReqType; | |
var ReqPath; | |
var Data; | |
// Pick up environment variables into credentials object | |
var credentials = { |
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
On Thursday April 23 I have promptly escaped from a maximum security office in the Eyde building to the Lansing underground until Monday April 27. Today, still wanted by people like you emailing me, I survive as a person taking a vacation day. If you have a problem, if no one else can help, and if you can find a phone, maybe you can reach me at 517-884-XXXX. | |
Dun da Dun Daaa Dun dun duhhhh | |
https://www.youtube.com/watch?v=PIfuaUTH9Y4 |
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
var url = 'http://www.msu.edu'; | |
casper.test.begin('Lookup homepage', 1, function suite(test) { | |
casper.start(url, function() { | |
test.assertHttpStatus(200, "Web server returned page correctly"); | |
test.assertTitle('Michigan State University'); | |
}); | |
casper.run(function() { | |
test.done(); |
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
datetime="2013-07-31T05:05Z" | |
var d = new Date(datetime); | |
d | |
/* returns Wed Jul 31 2013 01:05:00 GMT-0400 (EDT) */ |
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
```ruby | |
module Beeper | |
def self.twilio_phone_number | |
'xyz' | |
end | |
def self.twilio_sid | |
'xxx' | |
end | |
def self.twilio_auth_token | |
'yyy' |
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
group :development do | |
gem 'brakeman' | |
gem 'better_errors' | |
gem 'binding_of_caller' | |
gem 'meta_request' | |
gem 'rack-mini-profiler' | |
gem 'rails-footnotes' | |
# run `rails generate rails_footnotes:install` | |
end |
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
# Place this file in /etc/logrotate.d/gitlab | |
/home/gitlab/gitlab/log/*.log { | |
daily | |
rotate 52 | |
missingok | |
delaycompress | |
compress | |
copytruncate | |
} |
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
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:b |
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 Comment < ActiveRecord::Base | |
# Associations | |
belongs_to :post | |
belongs_to :commenter | |
end |
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 Patient < ActiveRecord::Base | |
# Associations | |
has_many :Requisitions | |
# Functions | |
def full_name | |
return [given_name, family_name].join(' ') | |
end | |
end |
NewerOlder