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 December 8, 2025 01:11
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 November 23, 2025 05:14
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";