Skip to content

Instantly share code, notes, and snippets.

View rarpainting's full-sized avatar
🎯
Focusing

rarpainting

🎯
Focusing
View GitHub Profile
@fxkraus
fxkraus / debian-install-megacli.md
Last active April 30, 2024 04:09
Install LSI MegaCli .deb package on Debian/Ubuntu

download

wget https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zip

unzip

unzip 8-07-14_MegaCLI.zip
@saelo
saelo / decorator.go
Created March 8, 2015 19:45
Decorators in Go
package main
import (
"fmt"
"reflect"
)
func Decorate(impl interface{}) interface{} {
fn := reflect.ValueOf(impl)