$sudo apt-get install audacious
If doesn't work, add repository and try again
$sudo add-apt-repository ppa:nilarimogard/webupd8
$sudo apt-get update
$sudo apt-get install audacious
Note:Enable Winamp mode and enalbe equalizer
Resources
[1] http://audacious-media-player.org/download
[2] Equializer from Winamp
http://ubuntuforums.org/showthread.php?t=1609390
[2] How to install
http://www.webupd8.org/2014/04/install-audacious-35-in-ubuntu-1404-or.html
Sunday, May 31, 2015
Monday, May 25, 2015
SSH Tunneling
$ssh -D 127.0.0.1:8080
$ssh -[N]D 5555
N Doesn't work in some servers, then remove it.
Firefox Setting
2. Select "Manual proxy configuration"
3. Enter localhost for the SOCKS host, 9999 for the port, and SOCKS v5 selected. Click "OK" to save it.
use http://www.whatismyip.org/ for verify new ip
References:
[1] https://gist.github.com/brentjanderson/6ed800376e53746d2d28ba7b6bdcdc12 (rev 2024)
[2] http://www.planetb.ca/2010/08/how-to-create-an-ssh-tunnel-with-putty-and-stay-anonymous-on-a-network/
Monday, May 18, 2015
OSX Developer Resources Windows/Linux(Ubuntu)
Enable OSX installation over VMPlayer 7.0 over Ubuntu 14.04
Uncompress Unlocker files [1] and run:
$sudo ./lnx-install.sh
$sudo apt-get install dmg2img
$dmg2img
[1] Unlocker
http://www.insanelymac.com/forum/files/file/339-unlocker/
Olds
[2] OSX Updates https://sites.google.com/site/appleclubfhs/support/advice-and-articles/updating-mac-os
[3] VMWare Images (Snow/Lion/...) http://www.souldevteam.net/blog/downloads/
Saturday, May 16, 2015
Llamar de Brasil a Perú Prefijo de Salida/Código de operador
El prefijo de salida de Brasil es 00
Código de operador XX que puede ser:
14 - Brasil Telecom,
15 - Vivo,
21 - Claro,
31 - Oi,
41 - TIM,
12 - CTBC ó
25 - GVT.
Osea:
00 + XX + Pais + Ciudad + Número
Ejemplo:
Usando Oi(31) A Perú(51) Arequipa(54) al numero 555555
00315154555555
Referencias:
[1] http://www.aproxima.es/llamando.html?desde=brasil&hacia=peru
Código de operador XX que puede ser:
14 - Brasil Telecom,
15 - Vivo,
21 - Claro,
31 - Oi,
41 - TIM,
12 - CTBC ó
25 - GVT.
Osea:
00 + XX + Pais + Ciudad + Número
Ejemplo:
Usando Oi(31) A Perú(51) Arequipa(54) al numero 555555
00315154555555
Referencias:
[1] http://www.aproxima.es/llamando.html?desde=brasil&hacia=peru
Tuesday, May 12, 2015
Matlab 2012a/2014a en ubuntu
Ambas formas, son parecidas, estoy probando con la [1].
referencias:
[1] http://rutaxt.blogspot.com/2012/05/como-instalar-matlab-2012-en-linux.html
[2] http://ceroy2.blogspot.com/2013/03/instalando-matlab-en-ubuntudebianmint.html
[3] 2014a ISOhttp://www-rohan.sdsu.edu/~download/matlab.html
[4] 2014a ISO http://www.eng.utah.edu/downloads/matlab/R2014a/
referencias:
[1] http://rutaxt.blogspot.com/2012/05/como-instalar-matlab-2012-en-linux.html
[2] http://ceroy2.blogspot.com/2013/03/instalando-matlab-en-ubuntudebianmint.html
[3] 2014a ISO
[4] 2014a ISO http://www.eng.utah.edu/downloads/matlab/R2014a/
Sunday, May 10, 2015
OpenCV 2.4.x over Ubuntu
I installed Opencv 2.4.8 over ubuntu 12.04, works good with images, but i getting error at display/read videos, then i research and use other resources:
[1], is best for me, have scripts for install opencv library, if you like more details about steps, is possible use [2] or [3].
-----------------------------------------
When you like java libraries
Need to do[4]:
If you get this message: libv4l2.so.0: error adding symbols: DSO missing from command line collect2, do that:
If not works, start again using [5].
Resources:
[1] https://help.ubuntu.com/community/OpenCV
[1.1] https://github.com/jayrambhia/Install-OpenCV/tree/master/Ubuntu/2.4
[2] http://abhitak.wordpress.com/2009/08/29/installing-opencv-on-linux-ubuntu-9-04/
[3] http://www.ozbotz.org/opencv-installation/
[4] http://www.giuseppeurso.eu/en/how-to-compile-opencv-on-centos-with-java-support/
[5] http://www.sysads.co.uk/2014/05/install-opencv-2-4-9-ubuntu-14-04-13-10/
[1], is best for me, have scripts for install opencv library, if you like more details about steps, is possible use [2] or [3].
-----------------------------------------
When you like java libraries
Need to do[4]:
$ export JAVA_HOME=/root/jdk1.7.0_07
$ mkdir build
$ cd build
$ cmake -DBUILD_SHARED_LIBS=OFF ../
If you get this message: libv4l2.so.0: error adding symbols: DSO missing from command line collect2, do that:
$grep -rl -- -lv4l1 samples/* modules/* | xargs sed -i 's/-lv4l1/-lv4l1 -lv4l2/g'
If not works, start again using [5].
Resources:
[1] https://help.ubuntu.com/community/OpenCV
[1.1] https://github.com/jayrambhia/Install-OpenCV/tree/master/Ubuntu/2.4
[2] http://abhitak.wordpress.com/2009/08/29/installing-opencv-on-linux-ubuntu-9-04/
[3] http://www.ozbotz.org/opencv-installation/
[4] http://www.giuseppeurso.eu/en/how-to-compile-opencv-on-centos-with-java-support/
[5] http://www.sysads.co.uk/2014/05/install-opencv-2-4-9-ubuntu-14-04-13-10/
Labels:
C/C++,
Computer Vision,
Linux.Developer
Tuesday, May 05, 2015
MST Using Prim/Kruskal Algorithm
Prim
[1] Prim Demo https://www.cs.princeton.edu/~wayne/kleinberg-tardos/pdf/04DemoPrim.pdf
[2] C++ STL Heap
https://msdn.microsoft.com/library/6y3edk6s%28v=vs.71%29.aspx
[3] C++ STL Max & Min Heap
https://codeconnect.wordpress.com/2013/09/05/max-min-heap-using-c-stl/
[4] Min Heap http://www.codeproject.com/Tips/816934/Min-Binary-Heap-Implementation-in-Cplusplus
Kruskal
[1] UnionFind
https://www.cs.princeton.edu/~rs/AlgsDS07/01UnionFind.pdf
[1.1] Complete Course https://www.cs.princeton.edu/~rs/AlgsDS07/
[2] Disjoint-Set (Source Code C++)
http://www.mathblog.dk/disjoint-set-data-structure/
http://web.rememberingemil.org/Projects/DisjointSets.aspx.html
Monday, May 04, 2015
Sunday, May 03, 2015
Ubuntu program shutdown
$sudo shutdown -P 1:00 #shutdown at 1:00am
references
[1] https://tnoergaard.wordpress.com/2010/07/23/how-to-make-ubuntu-shutdown-after-a-particular-time/
references
[1] https://tnoergaard.wordpress.com/2010/07/23/how-to-make-ubuntu-shutdown-after-a-particular-time/
Subscribe to:
Posts (Atom)
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglés se llama “A potentially dangerous Request.Form value was detected from the client”. varias páginas indican dos cosas: 1. agrega...
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
Odoo 17 - Custom adds
[1] Diario/Seq https://apps.odoo.com/apps/modules/17.0/sequence_for_journal