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
| Foo | |
| A | |
| e -> B | |
| B | |
| e -> A | |
| Bar | |
| C | |
| e -> D | |
| D |
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
| openapi: 3.0.0 | |
| info: | |
| title: Goldilocks HTTP API | |
| version: 1.0.0-alpha | |
| components: | |
| schemas: | |
| reference: |
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
| case File.read '/tmp/foo.txt' do | |
| {:ok, content} -> IO.puts content | |
| {:error, error} -> IO.inspect error | |
| 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
| Running Steam on ubuntu 14.04 64-bit | |
| STEAM_RUNTIME is enabled automatically | |
| Installing breakpad exception handler for appid(steam)/version(1416617579) | |
| Installing breakpad exception handler for appid(steam)/version(1416617579) | |
| Installing breakpad exception handler for appid(steam)/version(1416617579) | |
| Gtk-Message: Failed to load module "overlay-scrollbar" | |
| Gtk-Message: Failed to load module "unity-gtk-module" | |
| Gtk-Message: Failed to load module "overlay-scrollbar" | |
| Gtk-Message: Failed to load module "unity-gtk-module" | |
| Installing breakpad exception handler for appid(steamwebhelper)/version(20141121162341) |
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
| function echo(something){ | |
| console.log(something); | |
| return echo; | |
| } | |
| (echo ("hello world") ("i'm feeling lispy today") ("so i put parenthesis everywhere")) |
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 Prefix | |
| def initialize | |
| @expression_regex = /\([\w+*\-]+ (\w+ ?)+\)/ | |
| @operators = {} | |
| @operators["+"] = lambda {|args| return args.map{|x| x.to_i}.inject(:+) } | |
| @operators["*"] = lambda {|args| return args.map{|x| x.to_i}.inject(:*) } | |
| @operators["-"] = lambda {|args| return args.map{|x| x.to_i}.inject(:-) } | |
| 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
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Stripe</title> | |
| <style type="text/css"> | |
| html, body{ | |
| width: 100%; | |
| height: 100%; | |
| margin:0; | |
| padding: 0; |
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
| ;; INIT : string * int * int * int -> proc | |
| (define INIT (lambda (diskname disksize cachesize) | |
| (begin | |
| (fs-make-disk diskname disksize) | |
| (fs-init-cache cachesize) | |
| (fs-init-dcache) | |
| (fs-format-disk diskname disksize) | |
| ))) | |