Skip to content

Instantly share code, notes, and snippets.

@nikspyratos
nikspyratos / protonpass_to_keepassxc.js
Created November 26, 2023 07:20
Proton Pass json export file -> KeePassXC import CSV
#!/usr/bin/env node
const fs = require('fs');
function convertProtonPassToJson(protonPassJson) {
// Parse the JSON input
const data = JSON.parse(protonPassJson);
// Define an array to hold CSV lines
let csvLines = [];
@federicocarboni
federicocarboni / layout.ahk
Last active September 22, 2025 07:26
Digita Backtick ` e Tilde ~ su Windows senza Tastierino Numerico
<^>!'::Send `` ; AltGr + ' => `
<^>!vkDD::Send ~ ; AltGr + ì => ~
@mika76
mika76 / stars.ps1
Last active August 14, 2025 12:09 — forked from sebble/stars.sh
List all starred repositories of a GitHub user.
[CmdletBinding()]
param (
[Parameter()]
[string]
$user = "mika76"
)
$URL = "https://api.github.com/users/$user/starred"
$PAGE = 0
@lyshie
lyshie / config-deb-i386.json
Last active December 21, 2025 01:57
Scratch Desktop (Scratch 3.0 Offline Editor) on GNU/Linux
{
"src": "/tmp/scratch-desktop/",
"dest": "/tmp/",
"arch": "i386",
"icon": "/tmp/scratch-desktop/resources/Icon.png",
"categories": [
"Education"
]
}
@SpotlightKid
SpotlightKid / clone-gists.py
Last active November 5, 2025 14:41
Clone all gists of GitHub username given on the command line.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Clone all gists of GitHub user with given username.
Clones all gist repos into the current directory, using the gist id as the
directory name. If the directory already exists as a git repo, try to perform a
'git pull' in it.
"""
@shiffman
shiffman / sketch1.js
Created September 15, 2015 20:02
10PRINT in p5.js
// 10print.org
// Animated version of 10 print.
var x = 0;
var y = 0;
function setup() {
createCanvas(640, 360);
background(255);
}