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
function fish_prompt --description 'Write out the prompt' | |
set -l last_status $status | |
set_color green --bold | |
echo -n 'Ξ ' | |
# PWD | |
set_color cyan --bold | |
set fullpath (pwd) | |
if echo $fullpath | grep -q ^/home/ |
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
#!/usr/bin/env php | |
<?php | |
error_reporting(0); | |
$languages = [ | |
"af" => "Afrikaans", | |
"sq" => "Albanian", | |
"am" => "Amharic", | |
"ar" => "Arabic", | |
"hy" => "Armenian", | |
"az" => "Azerbaijani", |