I hereby claim:
- I am grassdog on github.
- I am grassdog (https://keybase.io/grassdog) on keybase.
- I have a public key whose fingerprint is 7631 9C8E 27B4 6E57 10FD 6E84 6BDE 5281 5648 940B
To claim this, I am signing this object:
| [alias] | |
| unstage = reset HEAD | |
| # What's changed since last pull | |
| news = log -p HEAD@{1}..HEAD@{0} | |
| # Mark a repo as trusted | |
| trust = "!mkdir -p .git/safe" | |
| # List commits |
| module Main exposing (..) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Html.App as Html | |
| import Html.Events exposing (onInput, on, targetValue) | |
| import Json.Decode as Json | |
| import String exposing (join) | |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * This is the Karma configuration file. It contains information about this skeleton | |
| * that provides the test runner with instructions on how to run the tests and | |
| * generate the code coverage report. | |
| * | |
| * For more info, see: http://karma-runner.github.io/0.12/config/configuration-file.html | |
| */ | |
| module.exports = function(config) { | |
| config.set({ |
| class Goal < ActiveRecord::Base | |
| belongs_to :user | |
| has_many :checkpoints | |
| # Fields from schema.rb | |
| #create_table "goals", :force => true do |t| | |
| # t.string "description" | |
| # t.string "period" | |
| # t.integer "user_id" | |
| # t.integer "position" |
| param ( | |
| [Parameter(Mandatory=$true, HelpMessage='Provide a URL to download')] | |
| $url | |
| ) | |
| $proxy = new-object System.Net.WebProxy("http://myproxyaddress") | |
| $username = 'myusername' | |
| $password = ConvertTo-SecureString 'MyPass' -AsPlainText -Force | |
| $cred = New-Object System.Management.Automation.PSCredential $username, $password | |
| $proxy.credentials = $cred |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> | |
| <string>Stellar</string> | |
| <key>settings</key> | |
| <array> | |
| <dict> | |
| <key>settings</key> |
| #!/bin/sh | |
| # | |
| # Shows commits you haven't pushed to the remote yet. Accepts same | |
| # arguments as git-log. Assumes 'origin' is the default remote if no | |
| # branch.Foo.remote configuration exists. | |
| curr_branch=$(git symbolic-ref -q HEAD | sed -e 's|^refs/heads/||') | |
| origin=$(git config --get "branch.$curr_branch.remote") | |
| origin=${origin:-origin} |