Skip to content

Instantly share code, notes, and snippets.

View ltackmann's full-sized avatar

Lars Tackmann ltackmann

View GitHub Profile
@ltackmann
ltackmann / SVGSamples.dart
Created December 29, 2011 04:09
SVG in Dart
#import('dart:html');
class SVGSamples {
void run() {
drawlines();
}
void drawlines() {
final int maxY = 250;
@ltackmann
ltackmann / Build.scala
Created November 7, 2011 11:47
Task that aggregate resources from dependencies in SBT 0.11
import sbt._
import Keys._
object ProjectBuild extends Build {
// setup sub projects
// ...
lazy val warproj = Project("war-project", file("."), settings = buildSettings) dependsOn(subproj1, subproj2 /* ... */)
val buildSettings = {