Sunday, April 22, 2018
Alternatives to shazam
[1] On web https://www.midomi.com
[2] Get song name from mp3 on web http://audiotag.info
[3] Chrome plugin https://www.aha-music.com/
Saturday, April 21, 2018
Deep Learning Lectures
References:
[1] Top ten papers https://www.techleer.com/articles/517-a-list-of-top-10-deep-learning-papers-the-2018-edition/
Friday, April 20, 2018
Printable Grid and Rulers Paper
Resources:
[1] Graph Paper, ready for print over A4 http://www.grassfedjp.com/print-grid-paper/
[2] Rulers http://leversetdujour.info/ruler-to-print.html
Monday, April 16, 2018
Monday, April 09, 2018
Linux Microphone doesn't working
Try to reload drivers
$sudo alsa force-reload
restart device and check if sound is workin? if it doesnt do this:$sudo apt-get remove --purge alsa-base pulseaudio
$sudo apt-get install alsa-base pulseaudio
References:[1] https://askubuntu.com/questions/508221/sound-input-device-microphone-not-working
Saturday, April 07, 2018
Fedora/CentOS Change ports of Apache Web Server (httpd)
1) In file /etc/httpd/conf/httpd.conf
Listen 80
Listen 8079
This till your server to listen to the port 8079
2) virtual host file /etc/httpd/conf.d/vhost.conf
<VirtualHost *:8079>
DocumentRoot /var/www/html/api_folder
ServerName example.com
ServerAlias www.example.com
ServerAdmin root@example.com
ErrorLog logs/www.example.com-error_log
CustomLog logs/www.example.com-access_log common
</VirtualHost>
This mean when you go to your www.example.com:8079 redirect to
/var/www/html/api_folder
3) Restart the service
$sudo service httpd restart
$systemctl restart httpd.service
[1] https://httpd.apache.org/docs/2.4/bind.html
Wednesday, April 04, 2018
Call using Internet (Brasil - Perú)
https://www.poptox.com/Peru
https://www.spytox.com/whose-number-is-calling-me
Thursday, March 29, 2018
Ubuntu 16 OpenCV 2.4.x disable ffmpeg and jpeg
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_TBB=ON -D BUILD_NEW_PYTHON_SUPPORT=ON -D WITH_V4L=ON -D INSTALL_C_EXAMPLES=ON -D INSTALL_PYTHON_EXAMPLES=ON -D BUILD_EXAMPLES=ON -D WITH_QT=ON -D WITH_OPENGL=ON -D WITH_FFMPEG=OFF -D WITH_JPEG=OFF ..
Ubuntu 16 VMWare Player
$wget -c https://download3.vmware.com/software/player/file/VMware-Player-12.5.0-4352439.x86_64.bundle
$sudo chmod u+x VMware-Player-12.5.0-4352439.x86_64.bundle
$sudo ./VMware-Player-12.5.0-4352439.x86_64.bundle
Monday, March 26, 2018
Ubuntu how to get interval time for run Application
howmuchdelay.sh
T="$(date +%s%N)"
# Do some work here
$1 $2 $3 $4 $5 #sleep 2
# Time interval in nanoseconds
T="$(($(date +%s%N)-T))"
# Seconds
S="$((T/1000000000))"
# Milliseconds
M="$((T/1000000))"
printf "Take: %02d:%02d:%02d:%02d.%03d\n" "$((S/86400))" "$((S/3600%24))" "$((S/60%60))" "$((S%60))" "${M}"
Subscribe to:
Posts (Atom)
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
https://scfbm.biomedcentral.com/track/pdf/10.1186/1751-0473-3-6?site=scfbm.biomedcentral.com springer computer vision http://www.springer...
Algorithms
[1] Introduction to Algorithms 3rd Edition Cormen https://fun4yo.xyz/book/introduction-to-algorithms-3rd-edition/ [2]