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
#installs the browser-based editor Codiad | |
DEST=~/codiad | |
pkg install php | |
if [ ! -e $DEST ] | |
then | |
git clone https://github.com/guiscaranse/Codiad $DEST | |
fi |
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
/* | |
CMD Hyper-Cmder | |
*/ | |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// Choose either "stable" for receiving highly polished, |
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
Encoding iso = Encoding.GetEncoding("ISO-8859-1"); | |
Encoding utf8 = Encoding.UTF8; | |
byte[] utfBytes = utf8.GetBytes(Message); | |
byte[] isoBytes = Encoding.Convert(utf8, iso, utfBytes); | |
string msg = iso.GetString(isoBytes); |