Skip to content

Instantly share code, notes, and snippets.

Debugger entered--Lisp error: (wrong-type-argument characterp "Fabians anteckningar 22 mars.pdf")
mapconcat(#[257 "\2119\203 \300!\207\211\247\203\301!\207\207" [symbol-name number-to-string] 3 "\n\n(fn I)"] (("Fabians anteckningar 22 mars.pdf") ("Forelasning 29 mars 1861-1917.pdf") ("Forelasning 5 april Sovjetunionens uppgang och fall.pdf") ("Forelasning Den aldsta ryska historien 1 feb.pdf") ("Forelasning Ikoner 22 mars.pdf") ("Forelasning Introduktion 25 jan.pdf") ("Forelasning Katarina II - 1800-talets forsta halft 15 feb.pdf") ("Forelasning Ryskt 1600-tal 8 feb.pdf") ("Forelasning Ryskt 1700-tal Peter den store 8 feb.pdf") ("Musikhistoria Ryssland Uppsala 2017 Musiklista.pdf") ("Naverbrev-Novgorod.pdf") ("Tentamen 151127.pdf") ("Tentamen 160513.pdf") ("Tentamen 161214.pdf") ("tenta-1.org")) "\n")
helm-init-candidates-in-buffer(global (("Fabians anteckningar 22 mars.pdf") ("Forelasning 29 mars 1861-1917.pdf") ("Forelasning 5 april Sovjetunionens uppgang och fall.pdf") ("Forelasning Den aldsta ryska
@jocap
jocap / userChrome.css
Created March 14, 2021 11:25
Tabs on bottom for Firefox 60, Mac OS X version (InterWeb)
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* TABS on bottom */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {
-moz-box-ordinal-group: 10;
}
#TabsToolbar {
-moz-box-ordinal-group: 1000 !important;
-moz-appearance: none !important;
background: url(chrome://browser/skin/Toolbar-background-noise.png) hsl(0,0%,83%) !important;
@jocap
jocap / Create Tag Groups.scpt
Last active December 13, 2023 17:16
AppleScript for DEVONthink 3 that creates smart groups for all tags in the currently displayed group.
use AppleScript version "2.4" -- Yosemite (10.10) or later
use scripting additions
use framework "Foundation"
tell application "DEVONthink 3"
set theGroup to root of front window
set theRecordTags to tags of children of theGroup & tags of children of children of theGroup & tags of children of children of children of theGroup & tags of children of children of children of children of theGroup
set theDelims to AppleScript's text item delimiters
set AppleScript's text item delimiters to ASCII character 0
set theTags to text items of (theRecordTags as string)
@jocap
jocap / Toggle Info.js
Last active December 17, 2023 01:03
Toggle the Info panel in DEVONthink 3, automatically resizing the window.
(function(){
let dt3 = Application("DEVONthink 3");
dt3.includeStandardAdditions = true;
let se = Application("System Events")
let p = se.processes.byName("DEVONthink 3")
let win = dt3.windows()[0]
let toggle = p.menuBars.at(0).menuBarItems.byName("Tools").menus.byName("Tools")
.menuItems.byName("Inspectors").menus.byName("Inspectors").menuItems()[0]
@jocap
jocap / Go to Reference.js
Last active December 17, 2023 02:17
DEVONthink 3 JXA for finding the selected citation in the reference list of the current document.
(function(){
let dt3 = Application("DEVONthink 3");
dt3.includeStandardAdditions = true;
var sel = dt3.windows()[0].selectedText()
if (sel) {
sel = sel.replace(/ +and +/, " ")
sel = sel.replace(/ +och +/, " ")
sel = sel.replace(/ +& +/, " ")
sel = sel.replace(/, +/, " ")