This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DefaultHashMap<K, V> extends HashMap<K, V> { | |
private final Class<V> cls; | |
public DefaultHashMap(Class factory) { | |
this.cls = factory; | |
} | |
@Override | |
public V get(Object key) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Desc: Ett mindre fint bashscript för att skapa en mpeg-film av ett gäng bilder | |
# med morphad övergång mellan bilderna. Scriptet kräver ffmpeg och ImageMagick. | |
#Version: 1.1 | |
#Coder: Fredrik Persson | |
#E-mail: [email protected] | |
#Download/webpage: | |
#Licens: BSD | |
#TODO: Exif-rotation? |
NewerOlder