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 { | |
| #name : #TransformStream, | |
| #superclass : #DecoratorStream, | |
| #instVars : [ | |
| 'block', | |
| 'originalStream' | |
| ], | |
| #classInstVars : [ | |
| 'decoratedStream', | 
  
    
      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 lang="en"> | |
| <head> | |
| <title>wc-test</title> | |
| <script> | |
| const squareClickEventName = 'square-click'; | |
| const iToFile = (n) => String.fromCharCode(97+n) | |
| const iToRank = (n) => String(n+1) | 
  
    
      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
    
  
  
    
  | // To write FizzBuzz we'll need some numbers. Which means we'll have to define them... | |
| type Z = { type: 'zero' } | |
| type N = Z | S | |
| type S = { prev: N } | |
| type N1 = { prev: Z } | |
| type N2 = { prev: N1 } | |
| type N3 = { prev: N2 } | |
| type N4 = { prev: N3 } | |
| type N5 = { prev: N4 } | |
| type N6 = { prev: N5 } | 
  
    
      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
    
  
  
    
  | abstract class Option<A> { | |
| abstract get(): A | |
| abstract getOrElse(a: A): A | |
| abstract map<B>(f: (a: A) => B): Option<B> | |
| static none<A>(): None<A> { | |
| return new None<A>() | |
| } | |
| static some<A>(a: A): Some<A> { | 
  
    
      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
    
  
  
    
  | (defun add-one-to-it-all (ls) | |
| (let ((result nil)) | |
| (dolist (x ls) | |
| (push (1+ x) result)) | |
| (reverse result))) | |
| (defun my-length (ls) | |
| (let ((total 0)) | |
| (dolist (x ls) | |
| (setf total (+ 1 total))) | 
  
    
      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
    
  
  
    
  | desc 'Generate tags page' | |
| task :tags do | |
| puts "Generating tags..." | |
| require 'rubygems' | |
| require 'jekyll' | |
| include Jekyll::Filters | |
| options = Jekyll.configuration({}) | |
| site = Jekyll::Site.new(options) | |
| site.read_posts('') | 
  
    
      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
    
  
  
    
  | " WordProcessor Mode / Goyo | |
| let g:goyo_width=65 | |
| let g:wp_mode_is_on = 0 | |
| function! ToggleWPMode() | |
| if g:wp_mode_is_on | |
| set formatoptions=tcq | |
| set nowrap nolinebreak expandtab | |
| silent! nunmap <buffer> k | 
NewerOlder