Source: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360004366159/comments/360001082099
Yes, you can disable that:
- open Help -> Edit Custom VM Options...
- add a string -Dide.win.frame.decoration=false
- restart IDE
@SETLOCAL | |
@CD "%~dp0" | |
:: WARNING scoop force exit of batch | |
powershell -C "%~dp0\export.ps1" | |
@IF "x%~1"=="xbatch" GOTO :EOF | |
@:: Pause if not interactive | |
@ECHO %cmdcmdline% | FIND /i "%~0" >NUL | |
@IF NOT ERRORLEVEL 1 PAUSE |
:<<"::EOF" | |
@busybox sh "%~f0" | |
@EXIT /B | |
::EOF | |
set -x | |
echo "$SHELL" | |
echo "running in busybox" | |
exit $? |
Source: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360004366159/comments/360001082099
Yes, you can disable that:
0<0# : ^ | |
""" | |
:: Keep a python script inside a bat file | |
:: Source https://stackoverflow.com/a/41651933 | |
@py -3 -x -B "%~f0" %* | |
@EXIT /B | |
""" | |
import sys | |
from os.path import basename | |
from urllib.parse import urlparse |
0<0# : ^ | |
''' | |
:: Keep a python script inside a bat file | |
:: Source https://stackoverflow.com/a/41651933 | |
@SETLOCAL ENABLEEXTENSIONS | |
@py -3 -x -B "%~f0" %* | |
@SET ERR=%ERRORLEVEL% | |
@:: Pause if not interactive | |
@ECHO %cmdcmdline% | FIND /i "%~0" >NUL | |
@IF NOT ERRORLEVEL 1 PAUSE |
*.bat eol=crlf | |
*.xml eol=crlf |
# Export repo path | |
export PATH=/mnt/data/src/aosp:$PATH | |
export REPO_MIRROR=isilon.cambridge.arm.com:/ifs/arm/scratch/aosp_mirror | |
export REPO_MOUNT=/mnt/data/src/aosp_mirror | |
# Mount AOSP Cambridge mirror (if required) | |
function repo_mount { | |
mount | grep "$REPO_MOUNT" &>/dev/null | |
[[ $? -eq 1 ]] || return |
# 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 |
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"
# Source: https://www.netroby.com/view/3891 | |
yum groupinstall "Development Tools" | |
yum install ncurses-devel git-core | |
git clone [email protected]: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 |