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
| winget install notepads | |
| winget install notepad++ | |
| winget install jabref | |
| winget install quicklook | |
| winget install chrome | |
| winget install sumatrapdf | |
| winget install vcxsrv | |
| winget install visual studio code | |
| winget install visual studio community | |
| winget install windows terminal |
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
| ffmpeg -i "fileprefix.mkv" -c:v libx265 "fileprefix.mp4" |
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
| set guifont=Fira\ Code:h9 | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'kristijanhusak/vim-hybrid-material' | |
| call plug#end() | |
| set background=dark | |
| colorscheme hybrid_material | |
| :set lines=50 columns=125 |
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
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "ctrl+enter", | |
| "command": "workbench.action.terminal.runSelectedText" | |
| } | |
| ] |
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
| git update-git-for-windows |
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
| ipconfig /flushdns | |
| netsh winsock reset |
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
| # In Rtools 4.0 run | |
| # pacman -Syu | |
| # pacman -S mingw-w64-{i686,x86_64}-libxml2 | |
| Sys.setenv(LOCAL_CPPFLAGS = "-I/mingw$(WIN)/include/libxml2") | |
| Sys.setenv(LIB_XML = "$(MINGW_PREFIX)") | |
| install.packages("XML") |
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
| # In Rtools 4.0 run | |
| # pacman -Syu | |
| # pacman -S mingw-w64-{i686,x86_64}-curl | |
| # pkg-config --libs libcurl | |
| install.packages("RCurl") |
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
| # In Terminal install clang | |
| # sudo apt-get install clang | |
| dotR <- file.path(Sys.getenv("HOME"), ".R") | |
| if (!file.exists(dotR)) dir.create(dotR) | |
| M <- file.path(dotR, "Makevars") | |
| if (!file.exists(M)) file.create(M) | |
| cat("\nCXX14FLAGS=-O3 -march=native -mtune=native -fPIC", | |
| "CXX14=clang++", # g++ # or clang++ but you may need a version postfix | |
| file = M, sep = "\n", append = TRUE) |