This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Download portable binaries of Chromium | |
# Usage: ./download-chromium.sh {windows,linux,mac} > chromium.zip | |
# | |
# If these URLs stop working, this should have it: | |
# https://github.com/GoogleChrome/puppeteer/blob/master/lib/BrowserFetcher.js | |
if [ "$1" = "linux" ] ; then | |
CHROMIUM_PLATFORM=Linux_x64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# Usage: nextcloud-log.sh [number of recent entries] [logfile] | |
tail -${1:-10} ${2:-/var/www/nextcloud/data/nextcloud.log} | xargs -L1 -d "\n" -I '{}' sh -c "echo '{}' | python3 -m json.tool" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://security.debian.org/debian-security/pool/updates/main/c/chromium-browser/chromium-browser_60.0.3112.78-1~deb9u1.debian.tar.xz | |
export GOOGLE_API_KEY="AIzaSyCkfPOPZXDKNn8hhgu3JrA62wIgC93d44k" | |
export GOOGLE_DEFAULT_CLIENT_ID="811574891467.apps.googleusercontent.com" | |
export GOOGLE_DEFAULT_CLIENT_SECRET="kdloedMFGdGla2P1zacGjAQh" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import urllib.request | |
import json | |
import sys | |
import re | |
import shutil | |
# No, this isn't my own OAuth2 token. It isn't anyone's. It's the default token Twitter gives out to non-signedin users |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page | |
# and in the NixOS manual (accessible by running ‘nixos-help’). | |
{ config, pkgs, ... }: | |
let | |
unstableTarball = | |
fetchTarball | |
https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I contributed to the Semaphore Trusted Setup Multi-Party Ceremony. | |
The following are my contribution signatures: | |
Circuit: semaphore16 | |
Contributor # 35 | |
Hash: 606f3c2e 4665018f 7e8e6524 5d6f19f7 | |
b021cdb6 4001240d ff21a37d d327851e | |
d1299494 8e9b030c ca30c5ca f2fd65b4 | |
99aefc8e 05c8c76a 50f48502 c7efa123 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c84e6a77451b9666c9a2e6e89d54d502a04c4aed Mon Sep 17 00:00:00 2001 | |
From: Zelly Snyder <[email protected]> | |
Date: Wed, 18 Dec 2024 19:06:33 -0800 | |
Subject: [PATCH] Revert "JceRandom: use SecureRandom.getInstanceStrong()" | |
This reverts commit 3cc9d481f727793fb8c878181e0adcc07669d450. | |
--- | |
.../org/apache/sshd/common/random/JceRandom.java | 16 ++-------------- | |
1 file changed, 2 insertions(+), 14 deletions(-) |
OlderNewer