Skip to content

Instantly share code, notes, and snippets.

View huyhoang8398's full-sized avatar
📸

kn huyhoang8398

📸
View GitHub Profile
@aamnah
aamnah / ioncube.sh
Last active June 8, 2023 09:32
Bash script to install IonCube Loader
#!/bin/bash
##################
# Bash script to install IonCube Loader
# By @AamnahAkram from http://aamnah.com
##################
# Color Reset
Color_Off='\033[0m' # Text Reset
@ericdouglas
ericdouglas / super-tip.txt
Last active October 22, 2025 18:39
Change 4 spaces to 2 spaces indentation and change tab to spaces - Vim tip
// 4 spaces to 2 spaces
%s;^\(\s\+\);\=repeat(' ', len(submatch(0))/2);g
// Tab to 2 spaces
:%s/\t/ /g
@apocratus
apocratus / export_csv.php
Created April 22, 2011 10:10
Export MySQL to CSV (php script)
<?php
/* vars for export */
// database record to be exported
$db_record = 'XXXXXXXXX';
// optional where query
$where = 'WHERE 1 ORDER BY 1';
// filename for export
$csv_filename = 'db_export_'.$db_record.'_'.date('Y-m-d').'.csv';
// database variables