-
Do it
-
Test it
-
Fix it
-
Done this well
-
Nice work!
This file contains 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
Augusta = Awesome = true and Loved = Cherished = true | |
Infinity = (+1.0 / 0)..(-1.0 / 0) | |
def Infinity.ends; false; end | |
Forever = -> { puts "Augusta, we \033[31m<3\033[0m you!"; sleep 5 } | |
Incredible = :wunderbar! | |
%w(We The).map { |const| self.class.const_set const, Module.new do; end } | |
OurFamily = :the_number_one_most_important_thing # not breakfast | |
def a_letter(*to); yield Augusta; end |
This file contains 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
// edited on Sublime and posting it back | |
int main () | |
{ | |
return 0; | |
} |
This file contains 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
using System; | |
using JSIL; | |
using JSIL.Meta; | |
public static class Program { | |
public static int x = 10; | |
public static int y = 20; | |
public static void Main () { | |
dynamic document = Builtins.Global["document"]; |
This file contains 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
<div class="container-fluid"> | |
<div class="row"> | |
<div class="col-xs-12"> | |
<h1 class="text-primary text-center"><a id="Questions_2"></a> Power of Questions</h1></div> | |
<div class="col-xs-12"> | |
<p> | |
<h4 class="text-center">"I, for one, want to be pulled and stretched and tested. I want the discomfort of not knowing, because it’s in those tiny unknowing spaces that I feel the most alive (and connected with discovery). It’s in those moments I have the best conversations—with people from all belief systems." <a href="http://j.mp/qTransform"> http://j.mp/qTransform</a></em></p> | |
</div> | |
</div> | |
<img id = "idea" class="img-responsive center-block" src="http://launchany.com/wp-content/uploads/2016/01/idea.jpg"> |
This file contains 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
-- https://packagecontrol.io/packages/sublime-github | |
import Html exposing (..) | |
main = | |
text "Hello, World!" |
This file contains 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
module Sample where | |
import Stack exposing (..) | |
import String | |
import Html exposing (..) | |
reverseString : String -> String | |
reverseString str = | |
String.split "" str | |
|> Stack.fromList |
This file contains 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
import SStack as Stack exposing (..) | |
import Html exposing (..) | |
reverseString : String -> String | |
reverseString str = | |
Stack.reverse str | |
main : Html.Html | |
main = |
This file contains 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
module Validator where | |
-- import Html exposing (..) | |
import Text exposing (..) | |
import Graphics.Element exposing (..) | |
import Color exposing (..) | |
import SStack as Stack exposing (..) | |
reverseString : String -> String |
This file contains 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
module Bracket where | |
import Html exposing (..) | |
import Html.Events exposing (on, targetValue) | |
import Html.Attributes exposing (..) | |
import Signal exposing (Address) | |
import StartApp.Simple as StartApp | |
import String exposing (..) | |
import Dict exposing (..) | |
import List.Extra as Listx exposing (find) |
OlderNewer