This file contains 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
gci -inc bin,obj -rec | rm -rec -force | |
# without alias: Get-ChildItem -inc bin,obj -rec | Remove-Item -rec -force |
This file contains 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
# List all tracks from all mka files in Downloads | |
for fname in (find ~/Downloads -type f -name '*.mka'); mkvmerge -i $fname| grep 'Track ID'; end | |
# Extract second (number 1) track from all mka files in Downloads | |
for fname in (find ~/Downloads -type f -name '*.mka'); mkvextract $fname tracks 1:(basename (dirname $fname)).flac; end | |
This file contains 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
assoc .py=py_auto_file | |
ftype py_auto_file="C:\path_to_python\python.exe" "%1" %* |
This file contains 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
sudo apt-get update | |
sudo apt-get --assume-yes upgrade | |
sudo apt-get --assume-yes install tmux htop p7zip-full build-essential gcc g++ make binutils | |
sudo apt-get --assume-yes install software-properties-common | |
wget https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64-deb | |
wget https://repo.continuum.io/archive/Anaconda3-4.4.0-Linux-x86_64.sh | |
sudo dpkg -i cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64-deb |
This file contains 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
Problem: | |
linux (ubuntu) nvidia driver not able to detect dell 30" screen, and use it in 2560x1600. | |
Solution: | |
to tell Xorg to ignore EDID checksum on particular output. Added this to my "device" section: | |
Option "IgnoreEDIDChecksum" "DFP-0" |
This file contains 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
# Disable screen lock | |
gsettings set org.gnome.desktop.screensaver lock-enabled false |
This file contains 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
dnf install @development-tools | |
dnf install rpm-build | |
#where installed: | |
python -c 'import os; import inspect; import tensorflow; print(os.path.dirname(inspect.getfile(tensorflow)))' | |
#test: | |
python -m tensorflow.models.image.mnist.convolutional |
This file contains 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
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
sudo apt-get update | |
sudo apt-get install gcc-5 g++-5 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5 |
This file contains 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
sudo apt-get update | |
sudo apt-get upgrade | |
sudo mkdir -p /media/cdrom | |
sudo mount /dev/cdrom /media/cdrom | |
cd /media/cdrom | |
sudo cp VM*.tar.gz /tmp | |
sudo apt-get install linux-headers-server build-essential | |
//(for desktop is "sudo apt-get install linux-headers-$(uname -r) build-essential") | |
cd /tmp |
This file contains 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
my_name ALL = (ALL) NOPASSWD: ALL |
NewerOlder