Skip to content

Instantly share code, notes, and snippets.

View jbl0ndie's full-sized avatar
🤓

Jonathon Hodges jbl0ndie

🤓
View GitHub Profile
@jbl0ndie
jbl0ndie / exitCode1
Last active November 17, 2023 17:10
clang: error: linker command failed with exit code 1 (open frameworks)
This means you have two files which have a function called "main" in them -- the compiler compiles all the code fine, but when it goes to link, it sees two object symbols that have the same name.
This usually happens when you include the example code from the an addon (by dragging the addon into a project, for example, but neglecting to remove the addon's example code).
#pragma once
#include "ofMain.h"
ofMesh generatePieMesh( float radius, float segments ) {
// Create our mesh.
ofMesh mesh;
mesh.setMode( OF_PRIMITIVE_TRIANGLE_FAN );
// Add the center point
force quit the following daemon
com.apple.SpeechRecognitionCore.speechrecognitiond
or in the terminal
killall -9 com.apple.SpeechRecognitionCore.speechrecognitiond
that then restarts the failed daemon
test oh yeah
#User downloads a pdf but it's an image only document and the text cannot be searched
#open a terminal
#brew install tesseract (unless you already have it installed)
#open the document in Preview and export to a Tiff document (multipage is supported, 150dpi seems ok
#change to the file directory in terminal to save you the bother of putting the full path in
#tesseract filename.tiff outputfilename pdf
#tesseract then crunches through your file and creates an output file with the specified name and filetype
@jbl0ndie
jbl0ndie / gist:b88df3af99ba7adaabb73088c8f4feb3
Created August 16, 2016 13:28
Join pdfs in Linux terminal
pdfunite in-1.pdf in-2.pdf in-n.pdf out.pdf
@jbl0ndie
jbl0ndie / copyImagePath.workflow
Created February 12, 2017 16:04
AppleScript to copy the path of an image in the syntax required by TiddlyWiki for easy image embedding
on run {input, parameters}
tell application "Finder"
set fileName to selection as alias
set fileName to POSIX path of fileName
set firstPart to "[img[" & fileName
set imagePath to firstPart & "]]"
set the clipboard to imagePath
end tell
@jbl0ndie
jbl0ndie / gist:f5c752841901e9484d20bacbb6ceddf9
Last active April 28, 2017 09:08
OS X (or Mac OS) stops showing thumbnail images - fix
//Open Terminal
cd ~/Library/Preferences
rm com.apple.finder.plist //Delete Finder's property list
sudo killall Finder //Kills Finder which should prompt OS X to restart it automatically
//Optional manual restart of Finder
open /System/Library/CoreServices/Finder.app
//Adapted from http://www.jgoode.com/easy-fix-for-mac-finder-preview-thumbnails-not-displaying/
@jbl0ndie
jbl0ndie / multiSend01.workflow
Created March 21, 2017 13:25
Send a file or files as Mail attachments in OS X from Finder, with the subject as the filename
on run {input, parameters}
(* This script takes a selection of files, appends them to individual emails to a predetermined address
using the filename as the subject of the email and then sends it *)
set mgPeople to "YourSenderName"
set mgAddress to "your.email@address.com"
--set mgAddress to "debug.mail@address.com" --debug address
set theSender to "debug.mail@address.com"
set mgContent to ""
@jbl0ndie
jbl0ndie / gist:65c97ca4e6e6c7c5b830cf684e144a9a
Created April 4, 2017 21:41
Gracefully quit OS X application from command line
osascript -e 'quit app "APPLICATIONNAME"'
i.e.
osascript -e 'quit app "Calculator"'
I used this before running a rsync (well Grsync actually) script,
so my database application wasn't running while it was backed up.
@jbl0ndie
jbl0ndie / gist:a773b26c0a53c708b458841256aed5d1
Created January 28, 2022 16:11
Excluding labels in Jira with JQL
AND Labels != XYZ
# Jira returns only cards with a label but not XYZ
# does not return cards without a label, which is unexpected when you first think of it
# is returning cards with labels, specifically labels !=XYZ
# Solution: be explicit
AND (Labels is null OR Labels != XYZ)
# returns all cards without a label or a label which is not XYZ