Skip to content

Instantly share code, notes, and snippets.

View timvisee's full-sized avatar
Consuming coffee

Tim Visée timvisee

Consuming coffee
View GitHub Profile
"C:\Program Files\Java\jdk1.8.0_20\bin\java" -Dmaven.multiModuleProjectDirectory=C:\Users\Tim\IdeaProjects\AuthMeReloaded "-Dmaven.home=C:\Program Files\Apache\Maven 3.3.3" "-Dclassworlds.conf=C:\Program Files\Apache\Maven 3.3.3\bin\m2.conf" -Didea.launcher.port=7534 "-Didea.launcher.bin.path=C:\Program Files (x86)\JetBrains\IntelliJ IDEA 15.0.1\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Apache\Maven 3.3.3\boot\plexus-classworlds-2.5.2.jar;C:\Program Files (x86)\JetBrains\IntelliJ IDEA 15.0.1\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=15.0.1 clean install -B
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for fr.xephi:authme:jar:5.1-SNAPSHOT
[WARNING] 'dependencies.dependency.systemPath' for org.anjocaido:groupmanager:jar should not point at files within the project directory, ${basedir}/lib/EssentialsGroupManager-2.13.1.jar will be unresolvable by dependent
@timvisee
timvisee / NumberGuessTimer.ino
Last active December 9, 2015 22:13
Number Guess Timer example, Arduino code.Sample code for a HHS challenge.
/**
* Number Guess Timer example.
* Sample code for a HHS challenge.
*
* @author Tim Visée
* @website http://timvisee.com/
*/
#include <Arduino.h>
set(${CMAKE_PROJECT_NAME}_BOARD uno)
set(${CMAKE_PROJECT_NAME}_PORT COM5)
// Button pin
int button = 2;
int buttonState = LOW;
int counter = 0;
int timerTimeout = 2000;
long timer = -1;
// Led pins
int led1 = 7;

Keybase proof

I hereby claim:

  • I am timvisee on github.
  • I am timvisee (https://keybase.io/timvisee) on keybase.
  • I have a public key whose fingerprint is 6762 5BAB 0A20 0421 96C2 386C FECE FDA6 CED0 5802

To claim this, I am signing this object:

# Verpleegkundige table
CREATE TABLE verpleegkundige
(
id INT PRIMARY KEY NOT NULL AUTO_INCREMENT,
naam VARCHAR(255),
datum_in_dienst DATE NOT NULL,
geboorte_datum DATE NOT NULL,
geslacht VARCHAR(1),
uurtarief DOUBLE
);
{
"name": "JSON Test",
"version": 3
}
require 'defines'
debug_enabled = false
debug_items_enabled = false
region_size = 7 -- alternative mean to control how further away resources would be, default - 256 tiles or 8 chunks
-- each region is region_size*region_size chunks
-- each chunk is 32*32 tiles
override_normal_spawn = true -- if false then the standard spawner can also spawn full grown resources/entities,
tile:
posSet:
'0':
x: 0-9
y: 0
'1':
x: 0-9
y: 9
'0':
x: 0
@timvisee
timvisee / firefox-youtube-fix.css
Created March 25, 2016 14:18
Fix YouTube's crappy crashing Firefox browsers
@-moz-document domain("youtube.com") {
#guide-channels{
display:none !important;
}
}