Skip to content

Instantly share code, notes, and snippets.

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

Labmem 001 0130w

💌
Coding for fun
  • Sichuan, Chengdu
  • 12:02 (UTC +08:00)
View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 1, 2025 20:07
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");
}