Skip to content

Instantly share code, notes, and snippets.

@fredrik
fredrik / keybase.md
Created March 7, 2014 11:57
keybase.md

Keybase proof

I hereby claim:

  • I am fredrikmollerstrand on github.
  • I am mollerstrand (https://keybase.io/mollerstrand) on keybase.
  • I have a public key whose fingerprint is 0A7C ADE3 E8BD E541 D16C 3040 F8F2 4277 C0E4 4953

To claim this, I am signing this object:

@fredrik
fredrik / Preferences.sublime-settings
Created January 21, 2015 15:02
Sublime Text 3 settings
{
"font_size": 14.0,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"ensure_newline_at_eof_on_save": true,
"auto_complete": false,
"copy_with_empty_selection": false,
@fredrik
fredrik / settings.json
Created January 28, 2025 07:19
~/Library/Application Support/Code/User/settings.json
{
"workbench.colorTheme": "Solarized Light",
"editor.minimap.enabled": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.formatOnSave": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.unusedImports": "explicit",
@fredrik
fredrik / cinode.py
Last active June 10, 2026 13:59
Cinode API client
import json
import logging
import os
import httpx
COMPANY_ID = undefined
CINODE_API_URL = "https://api.cinode.com/v0.1/"