Skip to content

Instantly share code, notes, and snippets.

View joncol's full-sized avatar

Jonas Collberg joncol

View GitHub Profile
@joncol
joncol / salary.ipynb
Last active October 20, 2019 09:04
Skatteverket lönestatistik
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@joncol
joncol / fortune500.ipynb
Created October 10, 2019 06:34
Jupyter notebook
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@joncol
joncol / anonymous-gist.clj
Last active March 22, 2019 13:59
Timed Clojure thingy
(def ^:private credentials-status-atom (atom nil))
(defn- credentials-status []
(when-not @credentials-status-atom
(reset! credentials-status-atom
{:status "awaiting_mobile_bankid_authentication"})
(future
(Thread/sleep 3000)
(reset! credentials-status-atom {:status "updating"}))
(future
@joncol
joncol / CapsLockCtrlBackspace.ahk
Created January 3, 2017 08:15
Windows keyboard configuration, using AHK
g_LastCtrlKeyDownTime := 0
g_AbortSendBackSpace := false
g_ControlRepeatDetected := false
*CapsLock::
if (g_ControlRepeatDetected)
{
return
}