Skip to content

Instantly share code, notes, and snippets.

View jarwonozt's full-sized avatar
🏠
Working from home

NOZT jarwonozt

🏠
Working from home
View GitHub Profile
@syahzul
syahzul / reset-mysql-password-on-linux-mint.md
Last active January 22, 2024 17:16
Reset MySQL root password on Linux Mint 19.2

Let's start by stopping the currently running MySQL database.

$ sudo systemctl stop mysql.service

Next, create set proper permission to the folder to be used by MySQL process to store and access socket file.

$ sudo mkdir -p /var/run/mysqld
@ahmadshobirin
ahmadshobirin / set locale and timezone indonesia in laravel.md
Last active September 23, 2025 14:25
set locale and timezone indonesia in laravel

Open File App\Providers\AppServiceProvider

Change method boot

use Carbon\Carbon;


public function boot()
{
	config(['app.locale' => 'id']);
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active October 13, 2025 23:47
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