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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.11764705926179886</real> | |
<key>Green Component</key> | |
<real>0.11372549086809158</real> |
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
;(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); |
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 | |
# 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 |
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 | |
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 |
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
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) |
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
<!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> |
NewerOlder