Skip to content

Instantly share code, notes, and snippets.

View smeagol74's full-sized avatar

Konstantin Borisov smeagol74

  • Novosibirsk, Russian Federation
View GitHub Profile
@smeagol74
smeagol74 / subr.el
Created June 16, 2023 07:35
Emacs 28.2 subr.el
;;; subr.el --- basic lisp subroutines for Emacs -*- lexical-binding:t -*-
;; Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2022 Free Software
;; Foundation, Inc.
;; Maintainer: emacs-devel@gnu.org
;; Keywords: internal
;; Package: emacs
;; This file is part of GNU Emacs.
@smeagol74
smeagol74 / doct-org-roam.el
Created October 4, 2021 14:05 — forked from progfolio/doct-org-roam.el
doct-org-roam.el
;;; doct-org-roam.el --- An org-roam extension for doct
;; Copyright (C) 2020 Nicholas Vollmer
;; Author: Nicholas Vollmer <progfolio@protonmail.com>
;; URL: https://github.com/progfolio/doct-org-roam
;; Created: July 27, 2020
;; Keywords: org, org-roam, convenience
;; Package-Requires: ((emacs "26.1"))
;; Version: 0.0.0
@smeagol74
smeagol74 / aww.sh
Created August 19, 2018 13:05
AWW Admin API cli
#!/usr/bin/env bash
SECRET=<YOUR-API-SECRET-KEY>
function _curl() {
curl --silent $@ | jsonlint
}
function listBoards() {
_curl -X POST "https://awwapp.com/api/v2/admin/boards" --data secret="${SECRET}"