Skip to content

Instantly share code, notes, and snippets.

View mieky's full-sized avatar
🦀

Mike Arvela mieky

🦀
View GitHub Profile
@mieky
mieky / isyyspakkauta.js
Last active December 20, 2015 21:28
Bookmarklet to conveniently browse Isyyspakkaus in-line with just the left/right arrow keys.
;(function($) {
var url = 'http://www.lily.fi/blogit/isyyspakkaus';
if (window.location.href !== url) {
window.location = url;
return;
}
var links = $(".blog-archive-list").find("a").get().reverse();
var currentIndex = parseInt(localStorage.getItem("currentIndex") || 0, 10);
@mieky
mieky / ununzip.sh
Created May 9, 2013 10:25
Un-unzip a file without a root folder that spews its contents all around the place.
#!/bin/bash
# A bash-wrapped version of http://www.commandlinefu.com/commands/view/9536/un-unzip-a-file
if [ $# -eq 0 ]; then
echo "Un-unzips a file without a root folder."
echo "Usage: ununzip <filename>"
exit 1
elif [ ! -e $1 ]; then
echo "File not found: $1"
exit 1
fi
@mieky
mieky / local_deploy.sh
Created December 19, 2012 10:45
A helper script for deploying a WAR file to a local Tomcat container (with Manager & JMX enabled in tomcat-users.xml for username/password)
#!/bin/bash
if [ "$#" -ne 1 ];
then
echo "This script deploys a WAR file to a local Tomcat container."
echo "Usage: $0 <war_file>"
exit 1
fi
WAR_FILE=$1
@mieky
mieky / exiftool-android41.txt
Created November 28, 2012 08:30
Comparison of EXIF data on a portrait image taken via device web browser
ExifTool Version Number : 9.06
File Name : last-android.jpg
Directory : .
File Size : 1010 kB
File Modification Date/Time : 2012:11:27 17:01:08+02:00
File Access Date/Time : 2012:11:28 10:28:02+02:00
File Permissions : rwxr-xr-x
File Type : JPEG
MIME Type : image/jpeg
Exif Byte Order : Little-endian (Intel, II)
@mieky
mieky / html5-camera-test.html
Last active March 28, 2022 08:00
HTML5 camera test
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>HTML5 camera test</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<form>