Skip to content

Instantly share code, notes, and snippets.

@kshiteesh
kshiteesh / urlsafari
Last active January 16, 2025 02:37
This AppleScript saves all the tabs open in all Safari windows to a Markdown file.
(*
Export All Safari Tabs in All Open Windows to a Markdown File
July 13, 2015
// SCRIPT PAGE
http://hegde.me/urlsafari
// ORIGINAL SCRIPT ON WHICH THIS SCRIPT IS BUILT
http://veritrope.com/code/export-all-safari-tabs-to-a-text-file
@atduskgreg
atduskgreg / illusion.md
Last active September 24, 2020 15:10
Art and Science of Illusion Notes
--==============================
-- Send Keynote Text to Desktop Markdown File
-- Writted By: Richard Dooling https://github.com/RichardDooling/
-- Based on
-- Send Keynote Presenter Notes to Evernote
-- Version 1.0.1
-- Written By: Ben Waldie <[email protected]>
-- http://www.automatedworkflows.com
-- Version 1.0.0 - Initial release
@benwaldie
benwaldie / 2014-04-03 Send Keynote Presenter Notes to Evernote.applescript
Created April 3, 2014 14:14
This script sends presenter notes from a Keynote 6.2 presentation to Evernote.
--==============================
-- Send Keynote Presenter Notes to Evernote
-- Version 1.0.1
-- Written By: Ben Waldie <[email protected]>
-- http://www.automatedworkflows.com
-- Version 1.0.0 - Initial release
-- Version 1.0.1 - Updated for Keynote 6.2 compatibility
--==============================
@drjwbaker
drjwbaker / Transforming Research Through Digital Scholarship
Last active December 28, 2015 00:48
Transforming Research Through Digital Scholarship, British Library, 11 November 2013
**Transforming Research Through Digital Scholarship, British Library, 11 November 2013**
========================================================================================
*Andrew Prescott, How Arts and Humanities is Being Transformed through Digital Scholarship*
Some of transformation unclear ... offer some hints on what is going on.
Collaboration with institutions at the heart of the digitrans theme's development.
BL site of transformative moments: text, sounds recording, post, biblical concordances.
The latter were revolutionary, considered heretical
> in essence cut up the bible and rearranged it into a different order.
> is it a tool? act of philosophy? intellectual engagement?
-- This script includes examples for using AppleScript to perform several
-- useful tasks with Evernote.
-- Each section illustrates a chunk of Evernote's AppleScript interface,
-- and each section also cleans up after itself.
-- Please refer to the Evernote application's scripting dictionary for
@cyli
cyli / insert_notes.py
Last active November 7, 2021 13:10
Gross hack to add presenter notes to the HTML export of a keynote presentation.
"""
Export your keynote file to HTML. Pass the keynote file (to extract the
presentation notes) and the extracted HTML directory to this script, and it
will attempt to inject the presenter notes it extracted from the Keynote file
into the HTML.
Only tested on Keynote '09, Chrome 24.0.1312.56
"""
import os
@benwaldie
benwaldie / 2012-12-09-TUAW_Waldie.applescript
Created December 9, 2012 18:34
TUAW - Send Keynote Presenter Notes to Evernote with AppleScript
-- Make sure a presentation is opened in Keynote. If not, notify the user and stop.
tell application "Keynote"
if (front slideshow exists) = false then
display alert "Unable to proceed." message "Please open a presentation in Keynote."
return
end if
set extractBody to button returned of (display alert "Would you like to extract slide content too?" buttons {"Yes", "No"}) = "Yes"
-- Target the front presentation.
@bhudgeons
bhudgeons / Evernote Folder Action.scpt
Created August 22, 2012 05:12
AppleScript that creates an Evernote "drop box" for files.
(*
Works in Evernote v.3.3.0.
(Note: I've read of people having problems with
AppleScript with the AppStore version of Evernote.
If you're having trouble, you might want to sync,
then delete the appstore version and download the
mac app directly from Evernote.)
Based on:
@unbracketed
unbracketed / export_repo_issues_to_csv.py
Last active August 3, 2023 18:13
Export Issues from Github repo to CSV (API v3)
"""
Exports Issues from a specified repository to a CSV file
Uses basic authentication (Github username + password) to retrieve Issues
from a repository that username has access to. Supports Github API v3.
"""
import csv
import requests