Skip to content

Instantly share code, notes, and snippets.

View FarrelAD's full-sized avatar
keep rolling!

Farrel Augusta Dinata FarrelAD

keep rolling!
View GitHub Profile
@FarrelAD
FarrelAD / build-deploy-android.yml
Last active October 1, 2025 01:12
An example of GitHub actions for build and deploying Flutter project to Android app
name: Build and Deploy Flutter Android App
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
# workflow_dispatch: # <- uncomment this if you also want manual runs
permissions:
@FarrelAD
FarrelAD / logo-jti.svg
Created June 14, 2025 01:26
Logo JTI SVG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@FarrelAD
FarrelAD / routes.php
Last active April 9, 2025 01:25
A simple example of Laravel route grouping with middleware.
<?php
use Illuminate\Support\Facades\Route;
Route::middleware(['auth'])->group(function () {
Route::get('/', function () {
return 'Welcome!';
});
});