Nvidia GTX-970 and cuda
Sorry, but you do not have permission to view this content.
Sorry, but you do not have permission to view this content.
http://www.mathworks.nl/help/signal/examples/accelerating-correlation-with-gpus.html
Next steps
Sorry, but you do not have permission to view this content.
Sorry, but you do not have permission to view this content.
Interesting list of options to instruct ffmpeg
to do the right thing.
Changed default /bin/sh
, which was bash
, into ksh
.
Other existing options are pdksh, zsh, ash.
Some cgi scripts are using bash
directly, these services have been disabled.
Following the suggestion in this blog post and following the instructions in profile management my dot files are now under source code control with git.
The given instructions were not complete: i.e. following this command:
1 |
mkdir .config.git |
you need to initialize/create the git repository:
1 2 3 4 5 |
cd .config.git shopt -s dotglob git init mv .git/* . rmdir .git |
Posted on Apr 16, 2014
The following describes a simple way to manage you profile configuration files using GitHub.
1 |
cd ~ |
1 |
mkdir .config.git |
.bash_profile
1 2 |
alias config='git --git-dir=$HOME/.config.git/ --work-tree=$HOME' echo "alias config='git --git-dir=$HOME/.config.git/ --work-tree=$HOME'" >> .bash_profile |
.bash_profile
to the configuration repository
1 |
config add .bash_profile |
1 |
config commit -m 'Initial commit' |
1 |
config remote add origin git@github.com:GITHUB_USERNAME/config.git |
1 |
config push origin master |
If you get an error when running config pull
to the effect of You asked me to pull without...
run the follow:
1 |
echo -e '[branch "master"]\n remote = origin\n merge = refs/heads/master' >> ~/.config.git/config |
1 |
cd ~ |
1 |
mv .bash_profile .bash_profile.bk |
1 |
git clone git@github.com:GITHUB_USERNAME/config.git config.git |
~/.config.git
1 |
mv config.git/.git .config.git |
1 |
shopt -s dotglob |
1 |
mv -i config.git/* . |
config.git
directory
1 |
rmdir config.git |
config pull
– get latest configuration changesconfig add FILENAME
– add a configuration fileconfig commit -a
– save all configuration changesconfig push
– push configuration changes to GitHubconfig GIT_OPTION
You can see my configuration repository at http://github.com/silas/config.
Source: Manage your $HOME with git by Robert Escriva
Posted on Mar 08, 2009
Quick small exercise: Android schaatsnacht app
I wonder what it can do…