Skip to content

Instantly share code, notes, and snippets.

View zurdors's full-sized avatar

Gaspar Reyes Póndigo zurdors

View GitHub Profile
@zurdors
zurdors / Add more usual tags to multiple selected tasks in Things 3.scpt
Last active November 25, 2019 01:57
Agrega un conjunto de etiquetas predeterminadas a múltiples tareas seleccionadas sin eliminar las etiquetas asignadas anteriormente.
tell application "Things3"
repeat with selectedToDo in selected to dos
set tagNames to tag names of selectedToDo
set tag names of selectedToDo to "!Baja 🆚, > Digital, > Online, 💻 Macbook, # Yo 👨, .Web browser," & tagNames
end repeat
end tell
@zurdors
zurdors / gist:99235bde436d7ea8bcf3fd5927b15787
Created August 11, 2019 03:40 — forked from ivikramsahu/gist:e9a2137612872316d53c961fe0ed7062
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@zurdors
zurdors / hazel-evernote.scpt
Last active September 3, 2018 23:29
AppleScript para copiar y pegar la imagen descargada en una nueva nota de Evernote, asignar etiquetas a esa nueva nota y mover la nota a la libreta de tu preferencia.
tell application "Evernote"
tell application "Finder" to set file_name to (name of theFile)
activate
set theData to (the clipboard as text)
set the clipboard to theData
set defaultTag to {"etiqueta-01", "etiqueta-02"}
set append_text to "Captura de pantalla completa de " & theData & " | Inspiración"
create note from file theFile notebook {"El nombre de mi libreta de capturas de pantalla"} title append_text tags defaultTag
end tell
@zurdors
zurdors / ia-writer_marked.applescript
Last active November 24, 2019 21:52 — forked from stephenhowells/ia-writer_marked.applescript
Vista previa de documento activo en iA Writer usando Marked.
-- Previsualizar el documento activo en iA Writer usando Marked.
tell application "iA Writer"
activate
-- Verifica si 'iA Writer' tiene un documento activo.
set the_document to document 1
-- Guarde el documento o pedirá que guarde si no lo ha guardado anteriormente.
save the_document