(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
function _transliterate_to_ascii($str, $case = 0) | |
{ | |
static $UTF8_LOWER_ACCENTS = NULL; | |
static $UTF8_UPPER_ACCENTS = NULL; | |
if ($case <= 0) | |
{ | |
if ($UTF8_LOWER_ACCENTS === NULL) | |
{ | |
$UTF8_LOWER_ACCENTS = array( | |
'à' => 'a', 'ô' => 'o', 'ď' => 'd', 'ḟ' => 'f', 'ë' => 'e', 'š' => 's', 'ơ' => 'o', |