TestCoverage – Martin Fowler
TestCoverage.
TestCoverage.
Memory efficient way to store strings in hash maps using boost::array | Jovislab dev blog.
copy from: http://samiux.blogspot.com/2011/05/howto-nvidia-cuda-toolkit-40-on-ubuntu.html HOWTO : nVidia CUDA Toolkit 4.0 on Ubuntu 11.04 Desktop The CUDA Toolkit 4.0 is released on May 2011. If you have nVidia display card that have several CUDAs on it, you will interested in this tutorial. This time, I would like to show you how to install CUDA Toolkit 4.0 on Ubuntu 11.04 Desktop. You will experience a more faster desktop after the installation of CUDA Toolkit 4.0. Meanwhile, if you installed SMPlayer, you can playback 1080p videos with the help of vdpau. ...
W przypadku Aptany i pyCharm, warto sprawdzić czy używamy przypadkiem nie używamy Open JDK. Poziom zmulenia tych aplikacji jest niewiarygodny pod Open JDK. Zmiana na nieco lepiej: 1 2 sudo apt-get update sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts zawartość /etc/jvm 1 /usr/lib/jvm/java-6-sun zawartość ~.bash_profile 1 2 export JAVA_HOME=/usr/lib/jvm/java-6-sun export PATH=$PATH:$JAVA_HOME/bin
--- title: “A Batch for a New Post in Hugo” date: 2023-11-29T14:22:30+01:00 draft: false Batch file for a new post in Hugo @echo off for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set datetime=%%a set year=%datetime:~0,4% set month=%datetime:~4,2% set day=%datetime:~6,2% setlocal enabledelayedexpansion set "filename=%1" shift :concat if "%1"=="" goto end set "filename=!filename!-%1" shift goto concat :end set filename=%year%-%month%-%day%-!filename!.md hugo new -k post posts/!filename! subl "content\posts\!filename!" And the archetype for post: ...