Skip to content

Instantly share code, notes, and snippets.

View sebnyberg's full-sized avatar
🇸🇪

Sebastian Nyberg sebnyberg

🇸🇪
View GitHub Profile
@sebnyberg
sebnyberg / README.md
Last active December 25, 2023 18:38
Just some git notes

Git notes

Just a collection of git + magit things that I need to start remembering.

Usual working procedure

git switch -c my-branch

# ... do work
@sebnyberg
sebnyberg / README.md
Last active September 27, 2023 06:42
Mac + Moonlander + EN + SE

EN + SE on the Moonlander

I've been switching back and forth between English and Swedish for programming / chatting since.. forever.

Having bought the ZSA Moonlander, one of the goals was to eliminate switching.

There are two possible routes:

  1. Use a Swedish layout and put EN keys in better positions
  2. Use an English layout and somehow manage to insert åäö
@sebnyberg
sebnyberg / README.md
Last active January 10, 2024 04:57
Emacs 29 MacOS setup
@sebnyberg
sebnyberg / tmp_test.go
Last active June 10, 2023 12:52
Roman To Integer Benchmarks
package main_test
import (
"testing"
)
var res int
func a(x int) int {
return x
@sebnyberg
sebnyberg / main.go
Created March 29, 2023 20:27
ChatGPT module thing
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v4/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
type VpcArgs struct {
Name string
CidrBlock string
@sebnyberg
sebnyberg / keybase.md
Last active September 9, 2022 10:23
keybase.md

Keybase proof

I hereby claim:

  • I am sebnyberg on github.
  • I am sebnyberg (https://keybase.io/sebnyberg) on keybase.
  • I have a public key whose fingerprint is DF53 5589 DAE0 9ECB 9014 4758 0D00 5B0E C045 DB7C

To claim this, I am signing this object:

@sebnyberg
sebnyberg / a_test.go
Last active August 5, 2022 11:30
Sort + inplace dedup vs map
package a
import (
"math/rand"
"sort"
"testing"
)
var res []int
var res2 map[int]struct{}
@sebnyberg
sebnyberg / snippets.json
Created July 10, 2022 11:29
snippets.json
{
"TestCases": {
"prefix": "tcs",
"body": [
"func Test_$1(t *testing.T) {",
"\tfor _, tc := range []struct{",
"\t\t$2 $3",
"\t\twant $4",
"\t}{",
"\t\t{$0},",
@sebnyberg
sebnyberg / guide.md
Last active March 7, 2024 16:14
Ubuntu installation on iMac 2019 (MacOS 11 - Big Sur)

Ubuntu 20.04 with Wifi on iMac 2019 (MacOS 11 - Big Sur)

The purpose of this document is to summarize some of the things I had to figure out to successfully install Ubuntu on my iMac '19 27" 5K, a.k.a. iMac 19,1.

t2linux

From what I could find, iMac's do not have the t2 security chip. However, it does share hardware (and firmware) with contemporary Macbook Pros. For this reason, the t2linux.org website contains lots of helpful information about how to install Ubuntu on an iMac.

However, the guides on the t2linux website did not work for me when I ran it, so I had to mix and match some old pages from the wiki to make things work. Also, most issues are focused on Macbooks, not iMacs.

@sebnyberg
sebnyberg / example.sh
Last active March 25, 2022 16:56
Make sure to use errexit
#!/usr/bin/env bash
#
# Archive a folder by uploading it to S3 and
# renive it locally
#
# Usage:
#
# ./s3archive.sh $dir $bucket
#
echo "Uploading to archive bucket..."