Skip to content

Instantly share code, notes, and snippets.

View estiedi's full-sized avatar

estiedi estiedi

  • Zortify
  • Luxembourg
View GitHub Profile
@estiedi
estiedi / .gitignore
Created April 20, 2017 08:10
Git ignore
# Created by .ignore support plugin (hsz.mobi)
### Linux template
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
@estiedi
estiedi / persistence.xml
Created April 18, 2017 14:36 — forked from mortezaadi/persistence.xml
persistence xml configurations for major databases and jpa providers
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
<!-- derby -->
@estiedi
estiedi / WebMap.java
Created February 10, 2012 14:29
JavaFX WebMap: exemple modifié de fxexperience.com
package webmap;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.application.Application;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Node;