Skip to content

Instantly share code, notes, and snippets.

View khanhth's full-sized avatar

Khanh Tran khanhth

  • Ho Chi Minh City - Vietnam
View GitHub Profile
@khanhth
khanhth / .sh
Created November 20, 2015 03:55
Bash script to remove trailing spaces
#!/bin/bash
#title : remove_trailing_spaces.sh
#description : Bash script to remove trailing spaces
#author : Tran Khanh
#date : 20/11/2015
#usage : bash remove_trailing_spaces.sh.sh
#bash_version : version 3.2.57(1)-release (x86_64-apple-darwin15)
#======================================================================
for file in ./*
@khanhth
khanhth / slug_generator.php
Last active August 29, 2015 14:07
PHP Slug Generator
<?php
/**
* Reset the mbstring internal encoding to a users previously set encoding.
*
* @see mbstring_binary_safe_encoding()
*
* @since 3.7.0
*/
function reset_mbstring_encoding() {
mbstring_binary_safe_encoding( true );