Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View nurtext's full-sized avatar
🚀
Don't tell me the sky is the limit, when there are footprints on the moon

Cedric Kastner nurtext

🚀
Don't tell me the sky is the limit, when there are footprints on the moon
View GitHub Profile
@nurtext
nurtext / gist:4031775
Created November 7, 2012 14:01
Mail 2 Reminder
tell application "Mail"
using terms from application "Mail"
set theSelection to selection
set theMessage to first item of theSelection
set theBody to "message:%3C" & message id of theMessage & "%3E"
set theSubject to the subject of theMessage
tell application "Reminders"
set theList to first item of reminders
make new reminder with properties {name:theSubject, body:theBody, container:theList}
end tell
@nurtext
nurtext / gist:3083354
Created July 10, 2012 13:50
Third-party cookies using IE 9 and iFrames
<?
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
@nurtext
nurtext / app.js
Created March 4, 2011 08:41
[Titanium] TableView with TextView jumping when it gets focussed
Ti.UI.setBackgroundColor('#fff');
var tabGroup = Ti.UI.createTabGroup();
var win1 = Ti.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff'
});
var tab1 = Ti.UI.createTab({