Skip to content

Instantly share code, notes, and snippets.

View MarvinJWendt's full-sized avatar
😀
Vibing

Marvin Wendt MarvinJWendt

😀
Vibing
View GitHub Profile
@MarvinJWendt
MarvinJWendt / Oxford-Word-List-With-Definition.txt
Created August 25, 2017 00:00
Oxford wordlist with definitions.
This file has been truncated, but you can view the full file.
A
A- prefix (also an- before a vowel sound) not, without (amoral). [greek]
Aa abbr. 1 automobile association. 2 alcoholics anonymous. 3 anti-aircraft.
Aardvark n. Mammal with a tubular snout and a long tongue, feeding on termites. [afrikaans]
@MarvinJWendt
MarvinJWendt / wordlist-german.txt
Created September 7, 2017 03:19
All german words (german wordlist).
This file has been truncated, but you can view the full file.
AA
AAA
Aachen
Aachener
Aachenerin
Aachenerinnen
Aachenern
Aacheners
Aachens
Aal
@MarvinJWendt
MarvinJWendt / wordlist-english.txt
Created September 7, 2017 03:17
All english words (English wordlist).
This file has been truncated, but you can view the full file.
&c
'd
'em
'll
'm
'mid
'midst
'mongst
'prentice
're
services:
minio:
image: minio/minio:latest
container_name: minio
volumes:
- /hdd/data:/data # big HDD drive
- cache:/cache # docker volume
command:
- server
- /data
@MarvinJWendt
MarvinJWendt / Go Module Count by Domain
Created April 8, 2024 23:35
Count of all Go modules by domain as of 2024.04.09
Total go modules: 1288407
github.com: 1218651
gitlab.com: 12372
gitee.com: 8497
gopkg.in: 5746
go-micro.dev: 3494
github.hscsec.cn: 3209
github.phpd.cn: 2487
bitbucket.org: 2347
@MarvinJWendt
MarvinJWendt / delete_merged_branches.sh
Last active December 26, 2023 06:34
Deletes merged local branches, except "main" or "master".
git branch --merged | egrep -v "(^\*|main|master)" | xargs git branch -d
@MarvinJWendt
MarvinJWendt / hello-world.go
Created October 10, 2022 16:10
Golang Hello World
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, World!")
}
@MarvinJWendt
MarvinJWendt / dot_new_domain_list.csv
Last active February 27, 2022 18:56
A list of `.new` doamins
Domain name Company Description
ar.new Aircards Easily create and deploy WebAR activation codes to use on your next augmented reality project.
io.new Bit.io Upload data to your Bit.io cloud database.
query.new bit.io Easily query bit.io data repositories.
pen.new CodePen Prototype your frontend code in CodePen's online development sandbox.
vue.new CodeSandbox Create a new vue.js project online with CodeSandbox.
ts.new CodeSandbox Create a new Typescript project online with CodeSandbox.
js.new CodeSandbox Create a new Javascript project online with CodeSandbox.
react.new CodeSandbox Create a new React project online with CodeSandbox.
ng.new CodeSandbox Create a new Angular project online CodeSandbox.
@MarvinJWendt
MarvinJWendt / Markdium-Go.go
Created July 12, 2021 21:31
Markdium-Hello World
package main
func main() {
os.Exit(1337)
}
@MarvinJWendt
MarvinJWendt / Markdium-TypeScript.ts
Created July 12, 2021 21:22
Markdium-Hello Markdium!
let foo = 'bar'
/**
Don't worry about the code block, it will be saved as a gist with right language format, and auto embed to your post.
**/