Skip to content

Instantly share code, notes, and snippets.

View Mageas's full-sized avatar
🏠
Learning new languages

Arnaud Gaydamour Mageas

🏠
Learning new languages
View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active January 12, 2026 08:49
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

@darekkay
darekkay / trakt-backup.php
Last active January 5, 2026 06:39
Trakt.tv backup script
<?php
/*
Backup script for trakt.tv (API v2).
*/
// create a Trakt app to get a client API key: http://docs.trakt.apiary.io/#introduction/create-an-app
$apikey = "CLIENT_API_KEY";
$username = "YOUR_USERNAME";