Hi there
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 ( | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| ) | |
| type RealWebClient struct { | |
| } |
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 "fmt" | |
| func main() { | |
| usingComma := -1 | |
| delimiter := ":" | |
| if -1 == usingComma { | |
| delimiter := "," | |
| fmt.Println("Delimiter is " + delimiter) |
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
| mod = angular.module 'AnimateAlgorithms', [] | |
| mod.service 'Algorithm', [ '$timeout', ($timeout) -> | |
| reset = () -> | |
| world.states = [] | |
| world.the_state = {} | |
| save = (arr) -> | |
| # console.log "Array: %o", arr |
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
| --- | |
| layout: impress | |
| title: "My new impress stuff" | |
| description: "" | |
| category: | |
| published: false | |
| tags: [] | |
| --- | |
| <div class="step" data-x="850" data-y="3000" data-rotate="90" data-scale="5"> |
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 lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=1024" /> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <title>impress.js</title> | |
| <link href="http://fonts.googleapis.com/css?family=Open+Sans:regular,semibold,italic,italicsemibold|PT+Sans:400,700,400italic,700italic|PT+Serif:400,700,400italic,700italic" 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
| Feature: Contextual Transforms | |
| Scenario: As a user I get contextual transforms | |
| Given I have logged in | |
| And I access the "mynewblog" repository | |
| Then I wait for 10 seconds | |
| And I select "_posts" | |
| And I wait for 3 seconds | |
| And I select "2014-04-22-testing-impress.md" | |
| And I wait for the editor |
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
| [ | |
| { | |
| "code": "<div id=\"its\" class=\"step\" data-x=\"850\" data-y=\"3000\" data-rotate=\"90\" data-scale=\"5\">\n</div>\n", | |
| "type": "insert", | |
| "context": { "template": "impress" }, | |
| "version": 2, | |
| "name": "90degrees" | |
| } | |
| ] |
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
| app = proc do |env| | |
| Rack::Directory.new('.').call(env) | |
| end | |
| run app |
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
| puts "Hello" |