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
| package main | |
| import ( | |
| "github.com/codegangsta/cli" | |
| "log" | |
| ) | |
| func LoginCommand(c *cli.Context) { | |
| //it must be available here | |
| println(debugFlag) |
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
| Error: Attempted to handle event `didSetProperty` on <Seotool.Url:ember634:null> while in state root.deleted.saved. Called with {name: destination, oldValue: undefined, originalValue: undefined, value: undefined}. |
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
| Testcase.AlbumTracksRoute = Ember.Route.extend | |
| model: -> | |
| @modelFor('album').get('tracks') |
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
| def other_function | |
| accept_two_arguments({foo: 1, bar: 2}) | |
| end | |
| def accepts_two_arguments(first, second) | |
| puts first, second | |
| 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
| % A customer enters, sees our menu and asks if he could have the prices of all the items costing between $3 and $10 with taxes % (say 7%) counted in afterwards. | |
| 3> RestaurantMenu = [{steak, 5.99}, {beer, 3.99}, {poutine, 3.50}, {kitten, 20.99}, {water, 0.00}]. | |
| [{steak,5.99}, | |
| {beer,3.99}, | |
| {poutine,3.5}, | |
| {kitten,20.99}, | |
| {water,0.0}] | |
| 4> [{Item, Price*1.07} || {Item, Price} <- RestaurantMenu, Price >= 3, Price =< 10]. |
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
| {- | |
| Prelude> :t [['a','b','c'],['d','e']] | |
| [['a','b','c'],['d','e']] :: [[Char]] | |
| Prelude> head [['a','b','c'],['d','e']] | |
| "abc" | |
| Prelude> head (head [['a','b','c'],['d','e']]) | |
| 'a' | |
| Prelude> head [[]] | |
| [] | |
| 1. Rewrite the previous list literals using only (:) and the empty list constructor []. |
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 entities = { | |
| address: 1, | |
| block: 2, | |
| transaction: 3, | |
| }; | |
| entities.humanize = function (id) { | |
| switch (id) { | |
| case 1: | |
| return 'address'; | |
| case 2: |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| main :: Int -> Int -> IO | |
| main x y = putStrLn (show (x+y)) | |
| -- Compilation error main.hs:2:23: Expecting one more argument to `IO' In the type signature for `main': main :: Int -> Int -> IO |
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
| // $npm install --save-dev ember-cli-content-security-policy | |
| //config/environment.js | |
| module.exports = function(environment) { | |
| var ENV = { | |
| contentSecurityPolicy: { | |
| 'script-src': "'self' 'unsafe-eval'", | |
| 'style-src': "'self' 'unsafe-inline'" | |
| } | |
| }; |