Skip to content

Instantly share code, notes, and snippets.

View agsimfzi's full-sized avatar
🎯
Focusing

Agus Imam Fauzi agsimfzi

🎯
Focusing
View GitHub Profile
@agsimfzi
agsimfzi / auto-increment-version.sh
Created October 22, 2023 16:54 — forked from CSTDev/auto-increment-version.sh
Script that will find the last Git Tag and increment it. It will only increment when the latest commit does not already have a tag. By default it increments the patch number, you can tell it to change the major or minor versions by adding #major or #minor to the commit message.
#!/bin/bash
#get highest tag number
VERSION=`git describe --abbrev=0 --tags`
#replace . with space so can split into an array
VERSION_BITS=(${VERSION//./ })
#get number parts and increase last one by 1
VNUM1=${VERSION_BITS[0]}
@agsimfzi
agsimfzi / rest-api-response-format.md
Created August 8, 2023 06:59 — forked from igorjs/rest-api-response-format.md
REST API response format based on some of the best practices
@agsimfzi
agsimfzi / improve_fonts.md
Last active July 27, 2023 14:36 — forked from YoEight/improve_fonts.md
Improve fonts archlinux

Improve Fonts

Newest

Make your Arch fonts beautiful easily! This is what I do when I install Arch Linux to improve the fonts.

You may consider the following settings to improve your fonts for system-wide usage without installing a patched font library packages (eg. Infinality):

Install some fonts, for example:
sudo pacman -S ttf-dejavu ttf-liberation noto-fonts

@agsimfzi
agsimfzi / README.md
Created June 23, 2023 06:05 — forked from yunpengn/README.md
A step-by-step guide to install PostgreSQL on Ubuntu without sudo privilege

Install PostgreSQL on Ubuntu without sudo

Being the most advanced open-source relational database, many of us need to install PostgreSQL for some purposes. However, sometimes you may not have sudo privilege on an Ubuntu server. Then, how should you install PostgreSQL in this case?

Compile from source!

Next, we will show a step-by-step guide on how to install PostgreSQL on Ubuntu by compiling it from source.

PostgreSQL Compilation & Installation

@agsimfzi
agsimfzi / next_nginx.md
Created June 23, 2023 04:28 — forked from kocisov/next_nginx.md
How to setup next.js app on nginx with letsencrypt
@agsimfzi
agsimfzi / lempp.md
Last active July 1, 2024 10:43 — forked from virbo/lempp.md
Install Linux Centos 7, Nginx, MySQL, Postgres, PHP 8.2

Update LANG

Edit environtment vi /etc/environment add these lines...

LANG=en_US.utf-8
LC_ALL=en_US.utf-8
@agsimfzi
agsimfzi / wsl2-ubuntu-lamp.md
Last active January 10, 2023 02:37 — forked from abobija/wsl2-ubuntu-lamp.md
LAMP stack on WSL2 (Ubuntu 22.04) - Apache, MySQL, PHP, PhpMyAdmin

LAMP stack on WSL2 (Ubuntu 22.04) - Apache, MySQL, PHP, PhpMyAdmin

Apache

sudo apt-get update && sudo apt-get upgrade 
sudo apt-get install -y apache2

PHP