Skip to content

Instantly share code, notes, and snippets.

View thorque's full-sized avatar

Thorsten Kamann thorque

View GitHub Profile
@thorque
thorque / hello-world.js
Created December 27, 2023 13:56
123.fg
// modules are defined as an array
// [ module function, map of requires ]
//
// map of requires is short require name -> numeric require
//
// anything defined in a previous bundle is accessed via the
// orig method which is the require for previous bundles
(function (modules, entry, mainEntry, parcelRequireName, globalName) {
/* eslint-disable no-undef */
package rla;
import java.util.*;
public class BugwartsPathFinder {
private static final char WALL = '#';
private static final char START = 'A';
private static final char END = 'B';
public static void main(String[] args) {
@thorque
thorque / CustomMetadataTagset.lua
Last active January 10, 2016 15:30
Lightroom Tagsets
return{
title = LOC "$$$/CustomMetadata/Tagset/Title=PICTOR PHOTOGRAPHY",
id = 'CustomMetadataTagset',
items = {
{ 'com.adobe.label', label = LOC "$$$/Metadata/OrigLabel=Standard Metadata" },
'com.adobe.filename',
'com.adobe.copyname',
'com.adobe.folder',
@thorque
thorque / Constellation.java
Created October 15, 2011 10:28
RESTful webservice with Spring
public class Constellation{
...
@XStreamOmmitField
private byte[] starCardData;
}
@thorque
thorque / pom.xml
Created December 14, 2010 22:58
Getting started with easyb
<dependencies>
<dependency>
<groupId>org.easyb</groupId>
<artifactId>easyb</artifactId>
<version>0.9.8</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.7.5</version>
class HelloWorld{
static def main(def args){
println "Hello World"
}
}