Inspiration: Deis Commit Style Guide
I often quote Deis in sections below.
It makes going back and reading commits easier. It also allows you to spend less time thinking about what your commit message should be.
Inspiration: Deis Commit Style Guide
I often quote Deis in sections below.
It makes going back and reading commits easier. It also allows you to spend less time thinking about what your commit message should be.
import java.io.IOException; | |
import java.net.URLClassLoader; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
import java.nio.file.Path; | |
/** | |
* Example demonstrating a ClassLoader leak. | |
* | |
* <p>To see it in action, copy this file to a temp directory somewhere, |
Here is a true time scaled solar-system, which means that every objects have a time relative to an Earth year.
A Pen by Malik Dellidj on CodePen.
(ns ^:figwheel-always svg-image-example.core | |
(:require-macros [cljs.core.async.macros :refer [go-loop]]) | |
(:require [cljs.core.async :refer [<! timeout]] | |
[om.core :as om :include-macros true] | |
[om-tools.core :refer-macros [defcomponent]] | |
[om-tools.dom :as dom])) | |
(enable-console-print!) | |
(defcomponent rotated-rect-rect |
Title | Author(s) | Year |
---|---|---|
Intuitionistic Type Theory | Per Martin-Löf | 1984 |
On the Meanings of the Logical Constants and the Justification of the Logical Laws | Per Martin-Löf | 1996 |
[[http://mat.uab.cat/~kock/crm/h |
(function() { | |
var letters = letters = { | |
'A': [ | |
[, 1], | |
[1, , 1], | |
[1, , 1], | |
[1, 1, 1], | |
[1, , 1] | |
], | |
'B': [ |
Add Graal JIT Compilation to Your JVM Language in 5 Steps, A Tutorial http://stefan-marr.de/2015/11/add-graal-jit-compilation-to-your-jvm-language-in-5-easy-steps-step-1/
The SimpleLanguage, an example of using Truffle with great JavaDocs. It is the officle getting-started project: https://github.com/graalvm/simplelanguage
Truffle Tutorial, Christan Wimmer, PLDI 2016, 3h recording https://youtu.be/FJY96_6Y3a4 Slides
This document is deprecated — see http://eev.ee/everything/tags/mario-maker/ instead.
55A7-0000-0049-50DD
· ★★☆☆☆ · tricky · 🍄🍄🍄
A deceptively cheery level. Slightly less fair than intended. I'm sorry.
[ | |
{ | |
"packetName": "add_entity_packet", | |
"clientBound": true, | |
"serverBound": false, | |
"fields": [ | |
{ | |
"name": "eid", | |
"type": "long" | |
}, |
package xyz.jadonfowler.phasebot.world; | |
import java.util.*; | |
import lombok.*; | |
import xyz.jadonfowler.phasebot.world.material.*; | |
public enum ToolStrength { | |
//@formatter:off | |
WOOD(2f, Material.fromString("wood_sword", "wood_pickaxe", "wood_axe", "wood_spade", "wood_hoe")), | |
STONE(4f, Material.fromString("stone_sword", "stone_pickaxe", "stone_axe", "stone_spade", "stone_hoe")), |