Based on GICS (Global Industry Classification Standard) with translations and ICB name.
Sources:
Total regions: 7
Total countries: 218
Last update: 24th March 2024
Why would I do that? In case of an extension is not available on stores, you can install it by yourself. The original repository will probably exists and continue to serve releases.
➡ Go to Github Releases page to download the latest ZIP source files and follow these steps regarding your browser.
| RewriteEngine On | |
| # rule for forcing https | |
| RewriteCond %{HTTPS} off [OR] | |
| # rule for removing www subdomain | |
| RewriteCond %{HTTP_HOST} ^www\. [NC] | |
| RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC] | |
| RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301] |
| . ~/.git-prompt.sh | |
| # prompt (current folder + git) | |
| export GIT_PS1_SHOWDIRTYSTATE=true | |
| setopt PROMPT_SUBST ; PS1='%F{green}%1d%f %F{yellow}% $(__git_ps1 "(%s)")%f\$ ' | |
| # add ssh keys | |
| if [ -z "$SSH_AUTH_SOCK" ] ; then | |
| eval `ssh-agent -s` | |
| ssh-add |
| :: First, you have to put ssh keys in right folder. To find it follow this path in Explorer: %USERNAME%/.ssh | |
| :: Next, it depend if you have cmder or cmder_mini. To find cmder folder installation: open cmder and type `echo %CMDER_ROOT%` | |
| :: Go in cmder folder and edit config/user-startup.cmd file | |
| :: For cmder add this line: | |
| @call "%CMDER_ROOT%\vendor\git-for-windows\cmd\start-ssh-agent.cmd" | |
| :: For cmder_mini add this line: | |
| @call "%GIT_INSTALL_ROOT%\cmd\start-ssh-agent.cmd" |
| npm list -g --depth=0 |
| <?php | |
| function sanitize($string) { | |
| return strtolower( | |
| trim( | |
| preg_replace('~[^0-9a-z]+~i', '-', html_entity_decode(preg_replace('~&([a-z]{1,2})(?:acute|cedil|circ|grave|lig|orn|ring|slash|th|tilde|uml);~i', '$1', htmlentities($string, ENT_QUOTES, 'UTF-8')), ENT_QUOTES, 'UTF-8')), | |
| '-') | |
| ); | |
| } | |
| var_dump(sanitize(" Hey oH, c'est l'été ! ")); // "hey-oh-c-est-l-ete" |
| git grep -l 'original_text' | xargs sed -i 's/original_text/new_text/g' |
| [alias] | |
| st = status | |
| ci = commit | |
| br = branch | |
| co = checkout | |
| cp = cherry-pick | |
| df = diff --color-words | |
| dfw = diff --color-words --ignore-space-change | |
| last = log -1 --stat | |
| slog = log --pretty=oneline |