Skip to content

Instantly share code, notes, and snippets.

View Ink-33's full-sized avatar
๐Ÿ€
Clover~

Ink33 Ink-33

๐Ÿ€
Clover~
View GitHub Profile
@Ink-33
Ink-33 / clearmedia.md
Created May 2, 2022 03:12
Stripe metadata info and album cover from audio using ffmpeg.
ffmpeg.exe -i in.flac -map 0:0 -map_metadata -1 -codec:a copy out.flac

-map 0:0 means only keep the stream 0 of input file 0, which is using to strip album cover.

-map_metadata -1 means to strip all metadata info.

@asukakenji
asukakenji / 0-go-os-arch.md
Last active July 8, 2025 03:46
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix โœ…
android โœ…
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 9, 2025 05:16
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@abravalheri
abravalheri / commit.md
Last active June 30, 2025 15:59 — forked from stephenparish/commit.md
RFC: Git Commit Message Guidelines

Commit Message Guidelines

In the last few years, the number of programmers concerned about writing structured commit messages have dramatically grown. As exposed by Tim Pope in article readable commit messages are easy to follow when looking through the project history. Moreover the AngularJS contributing guides introduced conventions that can be used by automation tools to automatically generate useful documentation, or by developers during debugging process.

This document borrows some concepts, conventions and even text mainly from these two sources, extending them in order to provide a sensible guideline for writing commit messages.

@lolzballs
lolzballs / HelloWorld.java
Created March 22, 2015 00:21
Hello World Enterprise Edition
import java.io.FileDescriptor;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
public class HelloWorld{
private static HelloWorld instance;
public static void main(String[] args){
instantiateHelloWorldMainClassAndRun();
@chrisgillis
chrisgillis / ssl_smtp_example.go
Created April 16, 2014 14:48
Golang SSL SMTP Example
package main
import (
"fmt"
"log"
"net"
"net/mail"
"net/smtp"
"crypto/tls"
)