Skip to content

Instantly share code, notes, and snippets.

View CharaD7's full-sized avatar
🏠
Working from home

Joy Ayitey CharaD7

🏠
Working from home
View GitHub Profile
@CharaD7
CharaD7 / currency_symbols.php
Created September 22, 2016 15:29 — forked from gibbs/currency_symbols.php
An array of currency symbols as HTML entities
<?php
$currency_symbols = array(
'AED' => '&#1583;.&#1573;', // ?
'AFN' => '&#65;&#102;',
'ALL' => '&#76;&#101;&#107;',
'AMD' => '',
'ANG' => '&#402;',
'AOA' => '&#75;&#122;', // ?
'ARS' => '&#36;',
'AUD' => '&#36;',
@CharaD7
CharaD7 / .gitconfig
Last active August 6, 2021 18:31 — forked from sarthaksavvy/.gitconfig
Git configuration
[alias]
acm = "!f() { git add . && git commit -m \"$(echo $@)\"; }; f";
c = checkout
com = checkout master
cob = checkout -b
b = branch
# Delete branches.
# -d for normal delete, -D for forced delete
# Example g bd branch_name OR g bD branch_name