This file contains hidden or 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
<?xml version="1.0"?> | |
<root> | |
<!-- Spotify Path --> | |
<vkopenurldef> | |
<name>KeyCode::VK_OPEN_URL_APP_Spotify</name> | |
<url type="file">/Applications/Spotify.app</url> | |
</vkopenurldef> | |
<!-- Set Spotify definition --> | |
<appdef> |
This file contains hidden or 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
# Auto-complétion Git | |
source ~/.git-completion.bash | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
fi | |
# Alias | |
source ~/.alias | |
source ~/.bash_export |
This file contains hidden or 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
/** | |
* Encode name for URL | |
* | |
* @param string $p_sString | |
* @return string | |
*/ | |
public function encode ($p_sString) { | |
$_sReturn = utf8_decode($p_sString); | |
$_sReturn = strtolower($_sReturn); | |
$_sReturn = strtr($_sReturn, |