Skip to content

Instantly share code, notes, and snippets.

View charleslouis's full-sized avatar

okcharlo charleslouis

View GitHub Profile
<! DOCTYPE html>
<html>
<head>
<title>PLS Processor</title>
<!-- needed for IE9 to ensure it treats page as HTML5 properly -->
<meta http-equiv="X-UA-Compatible" content="IE=9" >
</head>
<body>
<p>Audio PLS processor<p>
<audio id="audio" controls="controls"></audio >
<?php
/*
Plugin Name: Upload Override
Plugin URI: http://xentek.net/
Description: Override the Upload Path so that it is always set the way you want
Version: 0.1
Author: Eric Marden
Author URI: http://xentek.net/
*/
@charleslouis
charleslouis / create-slugs.php
Created June 14, 2014 10:27
#slug #wordpress #strip #sanitize #php
<?php
/*===================================
= Utils =
===================================*/
function strip_accents( $string ){
$string = strtr( $string, array(
'ร '=>'a', 'รก'=>'a', 'รข'=>'a', 'รฃ'=>'a', 'รค'=>'a', 'รฅ'=>'a', 'รฆ'=>'a', 'a'=>'a', 'a'=>'a', 'a'=>'a', 'รง'=>'c', 'c'=>'c', 'c'=>'c', 'c'=>'c', 'c'=>'c', 'd'=>'d', 'd'=>'d', 'รจ'=>'e', 'รฉ'=>'e', 'รช'=>'e', 'รซ'=>'e', 'e'=>'e', 'e'=>'e', 'e'=>'e', 'e'=>'e', 'e'=>'e', 'g'=>'g', 'g'=>'g', 'g'=>'g', 'h'=>'h', 'h'=>'h', 'รฌ'=>'i', 'รญ'=>'i', 'รฎ'=>'i', 'รฏ'=>'i', 'i'=>'i', 'i'=>'i', 'i'=>'i', 'i'=>'i', 'i'=>'i', '?'=>'i', 'j'=>'j', 'k'=>'k', '?'=>'k', 'l'=>'l', 'l'=>'l', 'l'=>'l', '?'=>'l', 'l'=>'l', 'รฑ'=>'n', 'n'=>'n', 'n'=>'n', 'n'=>'n', '?'=>'n', '?'=>'n', 'รฐ'=>'o', 'รฒ'=>'o', 'รณ'=>'o', 'รด'=>'o', 'รต'=>'o', 'รถ'=>'o', 'o'=>'o', 'o'=>'o', 'o'=>'o', 'ล“'=>'o', 'รธ'=>'o', 'r'=>'r', 'r'=>'r', 's'=>'s', 's'=>'s', 's'=>'s', 'ลก'=>'s', '?'=>'s', 't'=>'t', 't'=>'t', 't'=>'t', 'รน'=>'u', 'รบ'=>'u', 'รป'=>'u', 'รผ'=>'u', 'u'=>'u', 'u'=>'u', 'u'=>'u', '
@charleslouis
charleslouis / link-thicker-border-on-hover.scss
Created May 30, 2014 09:07
link thicker border on hover - remove text decoration and create a nice and smooth border effect on hover
@charleslouis
charleslouis / carriage_return.bash
Created May 14, 2014 08:31
Remove carriage return issues in cygwin
alias carriage_return=remove_carriage_return
remove_carriage_return(){
# cygwin throws error like :
# syntax error near unexpected token `$'{\r''
# due to carriage return
# this function runs the following
# cat originalfile | tr -d "\r" > newfile
# see http://stackoverflow.com/questions/20895946/syntax-error-near-unexpected-token-bash/23649350#23649350
@charleslouis
charleslouis / wp-cli_tools
Last active July 8, 2017 03:12
#WP-CLI, #Wordpress, #shell, #Alias, #batch, aliases, helpers and shortcuts for wp-cli,
##########################################
# WP-cli
##########################################
ALIASES
##########################################
alias wpcdl=wp_core_download
@charleslouis
charleslouis / rename_files_in_folder.php
Last active August 29, 2015 13:57
#rename, #rename files, #CSV, #is_file, #path_info
<?php
// this file rename all files in a directory, one after the other
// it reads the CSV file and replaces the $oldname with the $newname
// create a CSV file with "oldnam; newname"
// adjust to your needs and tell which separator is used to "explode(";", $line)"
$dir = "/file_dir_path/";
$csv = fopen("filename.csv", "r") or die("no csv file");
while(!feof($csv)) {
wmic
/output:C:\\InstallList.txt product get name,version
@charleslouis
charleslouis / .inputrc
Created February 26, 2014 11:55
inputrc
# To the extent possible under law, the author(s) have dedicated all
# copyright and related and neighboring rights to this software to the
# public domain worldwide. This software is distributed without any warranty.
# You should have received a copy of the CC0 Public Domain Dedication along
# with this software.
# If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
# base-files version 4.1-1
# ~/.inputrc: readline initialization file.
@charleslouis
charleslouis / .bashrc
Created February 26, 2014 11:54
bashrc
# To the extent possible under law, the author(s) have dedicated all
# copyright and related and neighboring rights to this software to the
# public domain worldwide. This software is distributed without any warranty.
# You should have received a copy of the CC0 Public Domain Dedication along
# with this software.
# If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
# base-files version 4.1-1
# ~/.bashrc: executed by bash(1) for interactive shells.