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
//http://codemonkeyism.com/how-to-improve-programming-with-interfaces/ | |
case class Person(n:String) { def name():String = n } | |
type Nameable = { def name():String } | |
def printName(n:Nameable) { println(n.name) } | |
printName(new Person("Codemonkey")) |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <vector> | |
#include <chrono> | |
#include <thread> | |
#include <mutex> | |
#include <iostream> | |
using namespace std; |
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
let f a b _ = | |
a + b | |
let f2 a = | |
f a 1 | |
let () = | |
print_int (f 1 2 3); | |
print_newline (); |
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
From 51f165b05a354ea047aca4436c191c2008d5058d Mon Sep 17 00:00:00 2001 | |
From: MATSUZAKI Kensuke <[email protected]> | |
Date: Fri, 12 Jun 2015 17:39:11 +0900 | |
Subject: [PATCH] Fix drawing | |
--- | |
Makefile | 2 +- | |
graph.ml | 11 +++++++---- | |
2 files changed, 8 insertions(+), 5 deletions(-) |
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
hsp3dish/emscripten/hgiox.cpp | 12 ++++++++++++ | |
hsp3dish/hgio.h | 2 ++ | |
hsp3dish/hsp3gr_dish.cpp | 5 +++++ | |
3 files changed, 19 insertions(+) | |
diff --git a/hsp3dish/emscripten/hgiox.cpp b/hsp3dish/emscripten/hgiox.cpp | |
index 428f5d1..d22b885 100644 | |
--- a/hsp3dish/emscripten/hgiox.cpp | |
+++ b/hsp3dish/emscripten/hgiox.cpp | |
@@ -662,6 +662,18 @@ int hgio_getHeight( void ) |
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
(defvar *howm-truname-cache* nil) | |
(defun howm-file-truename (filename) | |
(or | |
(cdr (assoc filename *howm-truname-cache*)) | |
(let ((f (file-truename (expand-file-name filename)))) | |
(add-to-list '*howm-truname-cache* (cons filename f)) | |
f))) | |
(defun howm-normalize-file-name (filename) |
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
open Domain | |
let rec f i n = | |
if n mod 1000 = 0 then | |
Printf.printf "%d %d\n" i n; | |
f i (n + 1) | |
let () = | |
for i = 0 to 3 do | |
Printf.printf "%d\n" i; |
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
import javafx.application.Application; | |
import javafx.scene.AmbientLight; | |
import javafx.scene.Group; | |
import javafx.scene.PerspectiveCamera; | |
import javafx.scene.PointLight; | |
import javafx.scene.Scene; | |
import javafx.scene.paint.Color; | |
import javafx.scene.paint.PhongMaterial; | |
import javafx.scene.shape.Box; | |
import javafx.scene.shape.CullFace; |
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
ko.bindingHandlers["holderJs"] = { | |
init: function (element, valueAccessor) { | |
var value = valueAccessor(); | |
$(element).attr("data-src", ko.unwrap(value)); | |
Holder.run({ images: element }); | |
} | |
}; |
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 A { | |
public a() { | |
alert("A!"); | |
} | |
} | |
class B extends A { | |
public b() { | |
alert("B!"); | |
} | |
} |