Skip to content

Instantly share code, notes, and snippets.

<html>
<head>
<link rel="apple-touch-icon-precomposed" href="launch.png"/>
<STYLE type="text/css">
form, input {font-size:60px;}
</STYLE>
</head>
<body>
<form action="launch.php" method="post">
Enter Prompt: <input name="prompt" size="20">
<?php
$prompt = $_POST['prompt'];
$site = $_POST['site'];
if ( $site == google )
{
header('Location: http://google.com/search?q=' . $prompt . '');
}
@jkishner
jkishner / dayone.php
Created August 21, 2012 16:21
php app to convert journal entry from form into URL that launches Day One iPhone app and enters journal entry
<html>
<head></head>
<body>
<?php
/* if the "submit" variable does not exist, the form has not been submitted - display initial page */
if (!isset($_POST['submit'])) {
?>
<h1>DayOne Entry Form</h1>
@jkishner
jkishner / mailrhone.php
Created August 23, 2012 18:45
email fields as per Patrick Rhone's reimagining
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'>
<STYLE type="text/css">
textarea {
font-size:18px;
font-family: 'Quicksand', sans-serif;
outline: none; //see "remove the blue glow" at http://css-tricks.com/textarea-tricks/
}
input.btn {
javascript:(function%20pushoverBookmarklet()%20%7B%20%20%20%20%20%20%20%20%20%20%20%20function%20pushoverNotification(token,%20user,%20title,%20message,%20url)%20%7B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20params%20%3D%20%7B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20token:%20token%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20,%20user:%20user%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20,%20title:%20title%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20,%20message:%20message%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20,%20url:%20url%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%3B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20var%20data%20%3D%20%221%3D1%22%3B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20for%20(var%20key%20in%20params)%20%7B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20data%20%2B%3D%20%22%26%22%20%2B%20key%20%2B%20%22%3D%22%20%2B%20params%5Bkey%5D%3B%20%20%20%20%20%20%20%20%20%20%20%20%20%2
javascript:window.location='drafts://x-callback-url/create?text=%5B'+encodeURIComponent(document.title)+'%5D('+encodeURIComponent(location.href)+')&action=Copy%20to%20Clipboard'
@jkishner
jkishner / Tweet Later
Last active December 14, 2015 02:48
Tweet Later
due://x-callback-url/add?title={{tweetbot://SCREENNAME/post?text=[[body]]}}%20at%20[[title]]&x-source=Drafts&x-success=drafts://
@jkishner
jkishner / Twitter Later
Created February 22, 2013 20:20
Twitter Later
due://x-callback-url/add?title={{drafts:///create?text=[[body]]&action=Tweet:%20SCREENNAME}}%20at%20[[title]]&x-source=Drafts&x-success=drafts://
@jkishner
jkishner / facebook fans widget on statusboard by panic
Created April 11, 2013 21:26
Put this code on your server, call it fans.php, then added it as an html (diy) widget in StatusBoard. inspired by http://stackoverflow.com/questions/7439966/show-twitter-followers-in-plain-text
<html><body>
<?php
function fbfan() {
$pageID = 'ENTER_YOURS_HERE';
$info = json_decode(file_get_contents('http://graph.facebook.com/' . $pageID));
echo $info->likes;
}
?>
You have <?php fbfan(); ?> Facebook fans!
javascript:window.location='drafts://x-callback-url/create?text=text%3D%22'+encodeURIComponent(document.title)+'%22%20url%3D%22'+encodeURIComponent(location.href)+'%22&action=opml'