This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<! 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 > |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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/ | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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', ' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p { | |
a{ | |
text-decoration: none; | |
border-bottom-style: solid; | |
border-bottom-width: 1px; | |
&:hover{ | |
border-bottom-width: 0.2em; | |
border-color: $anchor-font-color-hover; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################################## | |
# WP-cli | |
########################################## | |
ALIASES | |
########################################## | |
alias wpcdl=wp_core_download |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wmic | |
/output:C:\\InstallList.txt product get name,version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |