Skip to content

Instantly share code, notes, and snippets.

View fernandosanchezjr's full-sized avatar

Fernando fernandosanchezjr

View GitHub Profile
@estherjk
estherjk / !dell-xps-15-7590-ubuntu-dual-boot.md
Last active December 13, 2023 12:42
Dell XPS 15 7590 Ubuntu Dual Boot

Dell XPS 15 7590 Ubuntu Dual Boot

From Windows

Updating Windows

Make sure you have the latest Windows & Dell updates. Go to Settings > Updates & Security > Check For Updates.

Turning off BitLocker

@xogeny
xogeny / append_test.go
Created January 27, 2015 18:04
Benchmark for append vs. copy in Golang
package copy_vs_append
import (
"testing"
)
func TestCopy(t *testing.T) {
y := doCopy(true, false)
if len(y) != 1000 {
t.Fatalf("Expected len(y) to be 1000 but was %d", len(y))