Skip to content

Instantly share code, notes, and snippets.

@kijowski
kijowski / adonis.el
Created June 27, 2024 08:09
Interactively execute Adonisjs command
(defun execute-adonis-command()
"Interactively execute adonis command in projectile root"
(interactive)
(projectile-with-default-dir
(projectile-acquire-root)
(let* ((commands-string (shell-command-to-string "node --no-warnings ace list --json"))
(commands-json (json-parse-string commands-string :object-type 'alist))
(commands-names (cl-loop for entry across commands-json
collect (let ((description (let-alist entry .description))
(name (let-alist entry .commandName)))
@kijowski
kijowski / settings.js
Last active July 10, 2024 20:18
Surfingkeys settings
api.unmap('x', /fastmail.com|app.fastmail.com/);
api.unmapAllExcept(['E','R','T'], /localhost/);
@kijowski
kijowski / resume.json
Last active January 4, 2024 13:39
resume.json
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Michał Kijowski",
"label": "Full-stack Software Engineer",
"picture": "https://gravatar.com/userimage/86611499/380562989b8196b2a537b608fa86de35.jpeg?size=256",
"email": "hello@kijowski.dev",
"phone": "",
"url": "https://kijowski.dev",
"website": "https://kijowski.dev",
@kijowski
kijowski / gist:17bc8e1e744f9602dcac4e6ee1d18183
Created December 17, 2022 00:05
tezos profile verification
I am attesting that this GitHub handle kijowski is linked to the Tezos account tz1MvR7tKyBXr93snzWNnAAkyspSYUgYL6Rg for tzprofiles
sig:edsigu4N2PAryiuxiDbAVuu8dn3pfxL5s4gz3ATZ58JStCCdyAcy2HFtkR8sjTRw8ZP6JtDrZDE6GfdnSkur6B6rh1jZipysag3
@kijowski
kijowski / keybase.md
Created April 20, 2019 21:07
Keybase verification

Keybase proof

I hereby claim:

  • I am kijowski on github.
  • I am kijowski (https://keybase.io/kijowski) on keybase.
  • I have a public key ASBAEDZ0w2oIlkjfvwkMVDZY8nxjIK89nCNGNCX0xWZD5wo

To claim this, I am signing this object:

@kijowski
kijowski / 0_reuse_code.js
Last active August 29, 2015 14:14
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console