View DoubleClick.cs
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
public void Open(UnitRowViewModel viewModel) | |
{ | |
ScreenManager.ActivateItem(new EditUnitViewModel(viewModel.Id)); | |
} |
View roman.rb
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
class Roman | |
»···def self.method_missing name, *args | |
»···»···roman = name.to_s | |
»···»···roman.gsub!("IV", "IIII") | |
»···»···roman.gsub!("IX", "VIIII") | |
»···»···roman.gsub!("XL", "XXXX") | |
»···»···roman.gsub!("XC", "LXXXX") | |
»···»···roman.gsub!("CD", "CCCC") | |
»···»···roman.gsub!("CM", "DCCCC") |
View spectest.java
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
package specs; | |
import static org.junit.Assert.*; | |
import org.junit.Before; | |
import org.junit.Test; | |
import dlist.DList; | |
import dlist.DPosition; | |
public class When_appending_element { | |
private DList<Integer> Subject; |
View gist:5899421
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
#I @"Tools\Fake" | |
#r "FakeLib.dll" | |
open Fake | |
let buildNumber = | |
if hasBuildParam "version" then getBuildParam "version" else | |
if isLocalBuild then "0" else | |
buildVersion | |
let version = |
View FakeMage.fs
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
type MageProcessor = MSIL | X86 | |
type MageCall = NewApp | UpdateApp | Sign | Deploy | UpdateDeploy | SignDeploy | |
type MageTrustLevels = Internet | LocalIntranet | FullTrust | |
type MageParams = | |
{ ToolsPath : string | |
ProjectFiles : seq<string> | |
Name : string | |
IconPath : string | |
IconFile : string | |
Processor : MageProcessor |
View gist:8094334
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
Build Configuration: | |
* Debug Support: full | |
* GNU Visibility: yes | |
Now type "make" to compile. | |
(CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash /home/jpreiss/work/xfce/libxfce4util/missing autoheader) | |
configure.ac:140: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... |
View gist:b0d51727d056f09766e3
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
// seq<int64> -> #seq<int64> | |
let req findAllPrimes values = | |
let sequence = seq { | |
for value in values do | |
if isPrime value then | |
yield value | |
else | |
let divisors = findDivisors value | |
yield! findAllPrimes divisors } | |
sequence |
View gist:88dd9b4483d02d6df03c
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
### Keybase proof | |
I hereby claim: | |
* I am slesa on github. | |
* I am slesa (https://keybase.io/slesa) on keybase. | |
* I have a public key whose fingerprint is 0313 2654 990B FB6A EFF2 6514 AC0E 80D9 FDB6 A2A1 | |
To claim this, I am signing this object: |
View Create Zips of apps with data and config
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
(* Special directory syntax: | |
bin\Program | |
bin\Application | |
... | |
bin\Config | |
let deployDir = "bin\deploy\" | |
let createZip is64bit (dirInfo: DirectoryInfo) = | |
let dirName = dirInfo.Name | |
if not (System.String.Equals(dirName, "config", System.StringComparison.CurrentCultureIgnoreCase)) then |
View Main.scala
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
package hello_scala | |
import akka.actor.Actor | |
import akka.actor.ActorSystem | |
import akka.actor.Props | |
class HelloActor extends Actor { | |
def receive = { | |
case "hello" => println("hello back to you") | |
case _ => println("huh?") | |
} |
OlderNewer