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
ashes://addOpenURL?title=Linked%20Post&url=nebulous%3A%2F%2Fnew%3Fcontents%3DTitle%3A%2520%5B%5B%5Btitle%5D%5D%5D%250A----%250ALinktitle%3A%2520%5B%5B%5Btitle%5D%5D%5D%250A----%250ACustomlink%3A%2520%5B%5B%5Burl%5D%5D%5D%250A----%250ADate%3A%2520%250A----%250ACategories%3A%2520Link%250A----%250AText%3A%2520%253E%2520%5B%5B%5Btextselection%5D%5D%5D |
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
import clipboard | |
import urllib | |
import urllib2 | |
import bs4 | |
import webbrowser | |
url = clipboard.get() | |
soup = bs4.BeautifulSoup(urllib.urlopen(url)) | |
title = soup.title.string | |
name = title.encode('utf-8') |
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
import clipboard | |
import urllib | |
import urllib2 | |
import bs4 | |
import webbrowser | |
url = clipboard.get() | |
soup = bs4.BeautifulSoup(urllib.urlopen(url)) | |
title = soup.title.string | |
name = title.encode('utf-8') |
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
import webbrowser | |
import clipboard | |
import Image, ImageFile | |
import datetime | |
import ftplib | |
import urllib | |
from io import BytesIO | |
today = datetime.datetime.now() | |
image = clipboard.get_image() |
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
set dateDay to day of (current date) | |
set dateMonth to month of (current date) | |
set dateYear to year of (current date) | |
set dateTime to time of (current date) | |
set nameMonth to month of (current date) as string | |
set currentDate to dateDay & "-" & dateMonth & "-" & dateYear & "-" & dateTime as string | |
tell application "Finder" | |
set thisPicture to selection as alias |
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
With this little PHP script you can directly post photos to your server using Tweetbot. |
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
javascript:window.location='drafts://x-callback-url/create?text='+encodeURIComponent(location.href)+'&action=Copy%20to%20Clipboard&x-success=nebulous://'; | |