2018-11-23

El Problema con la Música de Videojuegos







Happy hacking!!!

2018-11-04

Runtime vs. compile time (JIT vs. AOT) optimizations in Java and C++ - I...







Recuerda compartir esta entrada con tus amigos, porque el conocimiento es la mejor inversión que se puede hacer.

2018-08-28

#Codetalks4Devs LiLaS, un proyecto para proteger redes de datos







Happy hacking!!!

#CodeTalks4Devs Evil Foca desde dentro, ¡conócela!







Recuerda compartir esta entrada con tus amigos, porque el conocimiento es la mejor inversión que se puede hacer.

2018-07-17

How to delete the mp3 file of the current audacious song

I you want to delete the mp3 file of the current song playing in audacious just follow these steps:

  • First add the following text to the change song plugin for the starting songs
    echo "%f"<audacious.tx
  • now execute this command each time you want to delete a song.
    rm "`cat audacious.txt|sed -e 's/%20/ /g' |sed -e 's/%26/\&/g' |sed -e 's/file:..//g'`"
    

Maybe you'll have to add more sed commands depending on the name of your songs.

Happy hacking!!!