Skip to content

Instantly share code, notes, and snippets.

View chmike's full-sized avatar

Christophe Meessen chmike

View GitHub Profile
@Vesnica
Vesnica / vscode_x2go_fix.txt
Created August 12, 2016 08:59
Visual Studio Code X2Go Fix
sudo sed -i 's/BIG-REQUESTS/_IG-REQUESTS/' /usr/lib/x86_64-linux-gnu/libxcb.so.1
Hint: You can copy modified lib to /usr/share/code/
@ncw
ncw / README.txt
Last active February 20, 2024 19:30 — forked from spikebike/client output
Client side certificates with go
This demonstrates how to make client side certificates with go
First generate the certificates with
./makecert.sh test@test.com
Run the server in one terminal
go run server.go
@AntoineAugusti
AntoineAugusti / gist:4287212
Created December 14, 2012 17:39
Clean virusmails directory
find /var/lib/amavis/virusmails/ -type f -mtime +30 -delete
@spikebike
spikebike / client.go
Created March 29, 2012 01:13
TLS server and client
package main
import (
"crypto/tls"
"crypto/x509"
"fmt"
"io"
"log"
)