Setup Emscripten
Require fastcomp compiler for MAME compile.
Require fastcomp compiler for MAME compile.
https://github.com/chimari/MaCoPiX | |
sudo apt install libx11-dev | |
sudo apt install libglib2.0-dev | |
sudo apt install libgtk-3-dev |
# for curl | |
echo 'proxy = "http://example.com:8080"' > ~/.curlrc | |
# for wget | |
echo 'http_proxy=http://example.com:8080' >> ~/.wgetrc | |
echo 'https_proxy=http://example.com:8080' >> ~/.wgetrc | |
# for other (include nodejs/pip) | |
echo 'export HTTP_PROXY="http://example.com:8080"' >> ~/.bashrc | |
echo 'export HTTPS_PROXY_="${HTTP_PROXY}"' >> ~/.bashrc |
// 以下のように Firefox をデバッグサーバーで起動しておく。 | |
// "C:\Program Files\Firefox Developer Edition\firefox.exe" -start-debugger-server | |
// about:config | |
// devtools.debugger.remote-enabled true | |
// devtools.chrome.enabled true | |
// devtools.debugger.prompt-connection false | |
// devtools.debugger.force-local false | |
{ | |
"version": "0.2.0", |
$proxy='http://<IP>:<PORT>' | |
$ENV:HTTP_PROXY=$proxy | |
$ENV:HTTPS_PROXY=$proxy | |
cd ~\Downloads | |
.\rustup-init.exe |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
// 任意の名称 | |
"name": "Launch firefox", | |
// hbenl.vscode-firefox-debug 識別子 | |
"type": "firefox", | |
"request": "launch", | |
// 画面遷移したら再アタッチ |
@-moz-document url-prefix("chrome://devtools/content/") { | |
* { | |
font-size: 15px !important; | |
font-family: 'Ricty Diminished for Powerline' !important; | |
} | |
} |
# Powerline | |
if [ -f /usr/share/powerline/bindings/bash/powerline.sh ]; then | |
source /usr/share/powerline/bindings/bash/powerline.sh | |
fi | |
# macOS の場合は LANG を設定しないと Powerline の表示がおかしくなる | |
LANG=ja_JP.UTF-8 | |
# Alacritty & tmux | |
if [[ "$TERM_PROGRAM" = "alacritty" && $SHLVL = 1 ]] |
#ave_to_clipboard Configuration for Alacritty, the GPU enhanced terminal emulator. | |
# Any items in the `env` entry below will be added as | |
# environment variables. Some entries may override variables | |
# set by alacritty itself. | |
env: | |
# TERM variable | |
# | |
# This value is used to set the `$TERM` environment variable for | |
# each instance of Alacritty. If it is not present, alacritty will |
# 256 terminal | |
set-option -g default-terminal screen-256color | |
set -g terminal-overrides 'xterm:colors=256' | |
# for powerline | |
run-shell "powerline-daemon -q" | |
source "/usr/share/powerline/bindings/tmux/powerline.conf" | |
# prefixキーをC-aに変更する | |
set -g prefix C-w |