Skip to content

Instantly share code, notes, and snippets.

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

Muhep Atasoy muhep06

🏠
Working from home
View GitHub Profile
@muhep06
muhep06 / install_node_exporter.sh
Created December 4, 2025 18:14
Automated shell script to install and configure Prometheus Node Exporter as a systemd service on Linux.
#!/bin/bash
# Exit immediately if a command exits with a non-zero status
set -e
# 1. Define Version (Use argument if provided, otherwise default to 1.8.2)
DEFAULT_VERSION="1.10.2"
VERSION="${1:-$DEFAULT_VERSION}"
echo "------------------------------------------------"
@muhep06
muhep06 / Money.php
Last active February 2, 2020 12:16
Laravel Nova Custom Currency Field - call undefined function money_format() error fix
<?php
namespace App\Fields;
use Laravel\Nova\Fields\Number;
use NumberFormatter;
class Money extends Number
{
public $locale = "en_GB";