Skip to content

Instantly share code, notes, and snippets.

View 0130w's full-sized avatar
💌
Coding for fun

Apeiria 0130w

💌
Coding for fun
  • Guangdong, Shenzhen
  • 23:08 (UTC +08:00)
View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 18, 2025 09:30
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

@santa4nt
santa4nt / HelloJNI.java
Last active May 26, 2025 19:14
Sample JNI/C++ HelloWorld
public class HelloJNI {
static {
System.loadLibrary("hello"); // loads libhello.so
}
private native void sayHello(String name);
public static void main(String[] args) {
new HelloJNI().sayHello("Dave");
}