Skip to content

Instantly share code, notes, and snippets.

View PiDelport's full-sized avatar
💜
𝝺 🦀️ 🐍️ ☕️ 🏳️‍🌈️ 🏳️‍⚧️

Pi Delport PiDelport

💜
𝝺 🦀️ 🐍️ ☕️ 🏳️‍🌈️ 🏳️‍⚧️
View GitHub Profile
@PiDelport
PiDelport / gitlab-draft-comments.user.js
Last active October 21, 2023 07:43
GitLab Draft Comments (User Script)
// ==UserScript==
// @name GitLab Draft Comments
// @description Alert for and list forgotten GitLab draft comments.
// @namespace https://github.com/PiDelport/
// @author Pi Delport <pjdelport@gmail.com>
// @version 1.0
// @license MIT
// @homepageURL https://gist.github.com/PiDelport/74453fa91872a9e51c7858550ff3cab3
//
// @grant GM.registerMenuCommand
@PiDelport
PiDelport / ssh_known_hosts
Last active March 27, 2023 17:24
SSH: Well-known host keys
# Well-known hosts
# https://gist.github.com/PiDelport/8a327a46c4453941bedfea5e8269f980
# https://blog.bitbucket.org/2018/07/02/new-ip-addresses-bitbucket-cloud/
bitbucket.org,18.205.93.0/25,13.52.5.0/25 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw==
# GitHub
# https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/githubs-ssh-key-fingerprints
# https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/about-githubs-ip-addresses
@PiDelport
PiDelport / slack-web-workspace-sidebar.user.js
Last active December 28, 2022 18:06
Slack Web Workspace Sidebar
// ==UserScript==
// @name Slack Web Workspace Sidebar
// @description Enable the workspace sidebar on the web version of Slack.
// @namespace https://github.com/PiDelport/
// @author Pi Delport <pjdelport@gmail.com>
// @version 1.0
// @license MIT
// @homepageURL https://gist.github.com/PiDelport/513676916e8fc186a09edfc8965a410b
// @match https://app.slack.com/*
// ==/UserScript==
@PiDelport
PiDelport / templatelexer.py
Created August 8, 2012 20:29 — forked from eliben/templatelexer.py
Some takes on Eli Bendersky's implementation of Rob Pike's template lexer in Go.
from collections import namedtuple
TOK_TEXT = 'TOK_TEXT'
TOK_LEFT_META = 'TOK_LEFT_META'
TOK_RIGHT_META = 'TOK_RIGHT_META'
TOK_DUMMY = 'TOK_DUMMY'
# A token has
-- Sequence a list of Either-yielding monadic actions.
-- Sequencing stops on the first Left value, or yields a list successful Right values.
sequenceRights :: Monad m => [m (Either e t)] -> m (Either e [t])
sequenceRights [] = pure (pure [])
sequenceRights (x:xs) = handle =<< x
where
handle (Left e) = pure (Left e)
handle (Right t) = (t:) <<$>> sequenceRights xs
@PiDelport
PiDelport / curried.scm
Last active January 12, 2016 00:50
This snippet defines curried versions of lambda and define, and was originally posted on #scheme (Freenode IRC, 2007)
;;; Analogous to lambda, but curried.
(define-syntax curried
(syntax-rules ()
((curried () body ...) (lambda () body ...))
((curried (arg) body ...) (lambda (arg) body ...))
((curried (arg args ...) body ...)
(lambda (arg . rest)
(let ((next (curried (args ...) body ...)))
(if (null? rest)
next
@PiDelport
PiDelport / format_call.py
Last active October 10, 2015 21:48
Format a function call as a string.
import inspect
def format_call(func, *positional, **named):
_locals = inspect.getcallargs(func, *positional, **named)
spec = inspect.getargspec(func)
argvalues = inspect.formatargvalues(spec.args, spec.varargs, spec.keywords, _locals)
return '{}{}'.format(func.__name__, argvalues)
@PiDelport
PiDelport / pkg_tree.py
Last active October 9, 2015 08:17
Visualize Python distribution dependency graphs.
#!/usr/bin/env python
"""
Running::
python pkg_tree.py | dot -Txlib
Requires `pydot`.
"""
import pkg_resources
#!/bin/sh -e
dist="tinymce_${1:?}.zip"
wget -N "http://github.com/downloads/tinymce/tinymce/$dist"
unzip "$dist"
rm -r tinymce/examples
mv tinymce/changelog.txt tinymce_changelog.txt
cp -a tinymce/jscripts/tiny_mce/* js/tinymce/resources
@PiDelport
PiDelport / tox.ini
Created August 16, 2012 23:34
Baseline Tox config for supported versions of Python and Django.
# See http://tox.testrun.org/
#
# Supported Python 2.* environments: py{26,27,py}-dj{13,14,dev}
# Supported Python 3.* environments: py{31,32}-djdev
[tox]
minversion = 1.4
envlist = py27-dj14
# envlist =
# py26-dj13, py26-dj14, py26-djdev,