Skip to content

Instantly share code, notes, and snippets.

View Muhammad-Ikhwan-Fathulloh's full-sized avatar
🎯
Focusing

Muhammad Ikhwan Fathulloh Muhammad-Ikhwan-Fathulloh

🎯
Focusing
View GitHub Profile
@dave-malone
dave-malone / aws-iot-thing-esp32.md
Last active February 2, 2023 11:01
Install Amazon FreeRTOS on an ESP32 and make it a "thing"
@RadGH
RadGH / short-number-format.php
Last active August 8, 2024 20:33
Short Number Formatter for PHP (1000 to 1k; 1m; 1b; 1t)
<?php
// Converts a number into a short version, eg: 1000 -> 1k
// Based on: http://stackoverflow.com/a/4371114
function number_format_short( $n, $precision = 1 ) {
if ($n < 900) {
// 0 - 900
$n_format = number_format($n, $precision);
$suffix = '';
} else if ($n < 900000) {