VirtualTam's bookmarks
38 bookmarks found
-
PyCharm + Windows
2017-04-17 PyCharm setup
- https://www.jetbrains.com/pycharm/download/download-thanks.html?platform=windows&code=PCC
- https://www.jetbrains.com/help/pycharm/2017.1/git.html
- https://confluence.jetbrains.com/display/PYH/Using+PyCharm%27s+Git+integration+locally
- https://www.jetbrains.com/help/pycharm/2017.1/run-debug-configuration-tox.html
- https://www.jetbrains.com/help/pycharm/2017.1/configuring-colors-and-fonts.html
- https://training.talkpython.fm/courses/explore_pycharm/mastering-pycharm-ide
Environment
- doesn't work with Git from Cygwin
- https://git-for-windows.github.io/
- https://www.python.org/downloads/
- https://github.com/jkaving/intellij-colors-solarized
- http://ethanschoonover.com/solarized
- https://fonts.google.com/specimen/Noto+Sans
- https://www.microsoft.com/en-us/download/details.aspx?id=44266
Packages
-
-
XBoxMidiPad download | SourceForge.net
2016-03-20 -
myspace-dl-cli
2015-01-05 Download songs from MySpace!
-
The Intel enigma
2014-12-16 -
http://www.tomshardware.co.uk/forum/288005-32-seagate-barracuda-st2000dm001-good-drives http://www.tomshardware.co.uk/forum/293847-32-possible-failure-seagate-barracuda-sata-st2000dm001
http://gsmartcontrol.sourceforge.net/home/ http://www.smartmontools.org/wiki/Download http://www.seagate.com/support/internal-hard-drives/desktop-hard-drives/barracuda/
-
Open source racing game with a track editor. It focuses on closed rally tracks with possible stunt elements (jumps, loops, pipes). You can drive in Single-Player mode racing against the clock or completing championships. There is also an online Multi-Player mode.
-
Bash: test if a file needs to be downloaded
2014-04-09 1#!/bin/bash 2# Check if a file needs to be downloaded 3# Useful iff there is no checksum available to check a local file 4url=http://test-url.com 5 6dl=1 7if [[ -f $file_path ]]; then 8 local_size=$(ls -l $file_path | awk '{print $5}') 9 remote_size=$(wget --spider $url 2>&1 | awk '/Length/ {print $2}') 10 11 if [[ $local_size -eq $remote_size ]]; then 12 echo "The file was previously downloaded" 13 dl=0 14 else 15 echo "Corrupted file found, re-downloading..." 16 rm -f $file_path 17 fi 18else 19 echo "Downloading file..." 20fi 21 22[[ $dl -eq 1 ]] && wget $url -O $file_path
-
Mathcore Index:The Blog
2013-09-26 -
Lisp Downloads -=- Eric Marsden
2013-08-18 Cool Lisp modes, featuring coffee.el (HTCPCP) and some server (httpd, postgres) utils
-
- http://www.korganalogue.net/korgms/mstt.html
- http://www.cykong.com/Synths/Korg%20MS-20/KorgMS-20-Mod4-Clock.htm
- http://20patch.constructingtowers.com/patch
- https://www.youtube.com/watch?v=jglbXy2tN20
- https://www.youtube.com/watch?v=d_sUFHVnsUE
- Recreating 'DA FUNK' with the MS-20
- Recreating 'FLAT BEAT' By Mr Oizo
- https://github.com/nbirnel/korg-ms-20-patches
- https://www.audiobombs.com/items/696/korg-ms-20-presets
- https://www.kvraudio.com/product/korg-ms-20-sound-library-by-wagsrfm
- https://jrmbisson.blogspot.com/2010/10/korg-ms-20-presets-for-download.html
-
Gelocity is an awesome set of co-op maps for Portal 2, using the mechanisms of the game (portals, gels, player interaction) to provide neat races!