Skip to content

Instantly share code, notes, and snippets.

View bdd's full-sized avatar
♨️

Berk D. Demir bdd

♨️
View GitHub Profile
@cassiozen
cassiozen / pixelbook-dev-setup.md
Last active October 22, 2023 12:06 — forked from denolfe/pixelbook-linux-setup.md
Notes on setting up Pixelbook for development

Pixelbook Setup

Change your channel

Some of the features mentioned in this document only work on the beta or Dev channel. To change your channel:

  1. chrome://help in a browser window
  2. Click Detailed Build Information
  3. Change Channel
  4. Select Beta (Or Dev, if you're feeling adventurous)

On Twitter the other day, I was lamenting the state of OCSP stapling support on Linux servers, and got asked by several people to write-up what I think the requirements are for OCSP stapling support.

  1. Support for keeping a long-lived (disk) cache of OCSP responses.

    This should be fairly simple. Any restarting of the service shouldn't blow away previous responses that were obtained. This doesn't need to be disk, just stable - and disk is an easy stable storage for most server

@mariusae
mariusae / importfmt
Created March 20, 2012 16:18
Format scala imports
#!/bin/bash
norm(){
awk '
/^import/ {
if(current) print current
current = $0
}
$0 !~ /^import/ {
current = current $0