https://www.x.org/releases/X11R7.7/doc/libX11/i18n/compose/en_US.UTF-8.html
$ setxkbmap -option # clear option
$ setxkbmap -model pc105 -layout us -option compose:ralt,caps:ctrl_modifier,shift:both_capslock| slmgr.vbs /dlv |
| module lboulard.net/go/playfield/flexible-yaml | |
| require gopkg.in/yaml.v2 v2.2.1 |
| @SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION | |
| @SET "HKEY=HKEY_LOCAL_MACHINE\Software\Python\PythonCore" | |
| @ECHO.::::::::: Local Machine | |
| @CALL :display "HKEY_LOCAL_MACHINE\Software\Python\PythonCore" | |
| @ECHO.::::::::: Current User | |
| @CALL :display "HKEY_CURRENT_USER\Software\Python\PythonCore" | |
| @FOR /F "usebackq" %%v in (`py.exe -c "import sys;print(sys.winver)"`) DO @SET "VERSION=%%v" | |
| @ECHO.::::::::: py.exe current version | |
| @ECHO Current version: Python %VERSION% | |
| @GOTO :EOF |
| @CD "%~dp0\vs2017offline" | |
| .\vs_community.exe --noweb --locale en-US --addProductLang en-US ^ | |
| --passive --norestart ^ | |
| --config "%~dp0\community.vsconfig.json" |
| #!/bin/sh | |
| set -eu | |
| usage() { | |
| printf "usage: %s <filesystem>\n\n" "$(basename "$0")" | |
| } | |
| if [ $# != 1 ]; then usage >&2; exit 1; fi | |
| fs="${1%/}" |
https://www.x.org/releases/X11R7.7/doc/libX11/i18n/compose/en_US.UTF-8.html
$ setxkbmap -option # clear option
$ setxkbmap -model pc105 -layout us -option compose:ralt,caps:ctrl_modifier,shift:both_capslock| From 65752efbecf15f8a24ee83126115fd578d2f86e9 Mon Sep 17 00:00:00 2001 | |
| From: Wez Furlong <wez@fb.com> | |
| Date: Mon, 8 Jan 2018 21:57:43 -0800 | |
| Subject: [PATCH 1/2] fix art.t test failure on alpine linux | |
| Summary: | |
| Looks like we end up with root_ holding a nullptr after | |
| the associated test is finished. This only seems to be a problem | |
| in practice on Alpine linux's musl libc based environment, and | |
| only when built with `-O2`. Not sure if this is a c++ standard |
| # Source: https://www.netroby.com/view/3891 | |
| yum groupinstall "Development Tools" | |
| yum install ncurses-devel git-core | |
| git clone git@github.com:vim/vim.git | |
| ./configure --prefix=/usr --with-features=huge --enable-multibyte --with-python-config-dir=/usr/lib/python2.7/config --enable-pythoninterp=yes | |
| make -j4 | |
| make install |
Upgrade pip before in case of very old version on system:
py -3 -m pip install --user -U pip
Upgrade all root packages in one go (avoid generating broken dependencies between root projects):
DEL "%TMP%\pip-upgrade.txt"
FOR /F "delims==" %i IN ('py -3 -m pip list --user --not-required --format=freeze') DO @ECHO %i >>"%TMP%\pip-upgrade.txt"
| # vim /etc/udev/rules.d/99-lboulard.rules | |
| ACTION!="add|change", GOTO="lboulard_end" | |
| SUBSYSTEM!="block", GOTO="lboulard_end" | |
| ENV{ID_VENDOR}!="JMicron", GOTO="lboulard_end" | |
| ENV{ID_MODEL_ID}!="0562", GOTO="lboulard_end" | |
| ATTR{queue/scheduler}="none" | |
| LABEL="lboulard_end" | |
| # udevadm control --reload |