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
; TextPad keyword syntax file for Freemarker | |
; Contributed by Simon Schoeters, version 0.2 | |
HTML=1 | |
[Syntax] | |
Namespace1 = 2 | |
IgnoreCase = Yes | |
KeyWordLength = | |
BracketChars = {}[]() |
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
property script_name : "RepairiPhotoDates" | |
property script_version : "0.2" | |
property script_description : "Gets the selected photos in iPhoto, extracts the iPhoto date and adds it in the photo EXIF data." | |
property script_copyright : "Creative Commons Attribution 3.0 License" | |
property script_author : "Simon Schoeters" | |
property script_website : "http://www.suffix.be/" | |
-- Open iPhoto, select the photos you need and run the script, it will replace the date in the EXIF headers with the data iPhoto shows. You'll need ExifTool by Phil Harvey (www.sno.phy.queensu.ca/~phil/exiftool/) installed to make this work. | |
tell application "iPhoto" |
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
property script_name : "NMEA2KML" | |
property script_version : "0.3" | |
property script_description : "This script converts a NMEA input file and converts all real coordinates to Google placemarks in a KML file." | |
property script_copyright : "Creative Commons Attribution 3.0 License" | |
property script_author : "Simon Schoeters" | |
property script_website : "http://www.suffix.be/" | |
-- Get the file and its path | |
set filePath to (choose file with prompt "Select a NMEA file:") as Unicode text | |
set filePath to replace_chars(filePath, ":", "/") |
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 svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"> | |
<!-- Set the light gray background --> | |
<rect width="740px" height="330px" style="fill:#efefef"/> | |
<!-- Set the x axis labels and gridlines --> | |
<text x="10px" y="30px" font-family="Verdana, sans-serif" font-size="11px" fill="#333">mon</text> | |
<text x="10px" y="70px" font-family="Verdana, sans-serif" font-size="11px" fill="#333">tue</text> |
NewerOlder