Changelog
- 2020-04-24: Removed Blue and Added: Congo, Rock&Pop and FutuRock.
nano .local/share/radiotray/bookmarks.xml
When attempting installing Linux Mint from a Live USB, it might fail after downloading updates. Here is how to solve it:
CTRL+ALT+DEL
)sudo touch /target/etc/apt/sources.lists.new
Note: If the above command fails, maybe the /target
point is not mounted yet.
Simply click Continue button to start copying some files and then execute command again.
@@||movistar.com.ar/$document | |
*.perfil.com##DIV[class*="videoJWaside"] | |
*.perfil.com##IFRAME[src*="http://player.performgroup.com"] | |
video.perfil.com/js/* | |
player.performgroup.com/* |
This was tested on HBCD v15.2
I recommend using MiniXP from HBCD. You can do every described step, in particular installing Grub4Dos: (Menu Partition/Boot/MBR > Grub4Dos Installer. Choose Disk, Partition and click Install)
#!/bin/bash | |
hash=916f4c31aaa35d6b867dae9a7f54270d | |
while true | |
do | |
echo -ne "\n~~ Ingrese contraseña y presiona ENTER (nada para Salir): " | |
read -s pw | |
if [ -z $pw ]; then | |
echo |
#!/bin/bash | |
# ======================================================================================= | |
# Discoveres all opened FLV files that don't exists on /tmp, and allow to copy to $HOME. | |
# The file must remain open before copying, because the plugin unlinks the filename. | |
# Based on: http://davesource.com/Solutions/20110313.Chrome-linux-hidden-flash-files.html | |
# ======================================================================================= | |
SUDO="sudo " | |
TEMPFILE="/tmp/flvs_$(date +%s)" | |
METHOD=3 |
//! from http://www.quirksmode.org/js/cookies.html | |
function createCookie(name,value,days) { | |
if (days) { | |
var date = new Date(); | |
date.setTime(date.getTime()+(days*24*60*60*1000)); | |
var expires = "; expires="+date.toGMTString(); | |
} | |
else var expires = ""; | |
document.cookie = name+"="+value+expires+"; path=/"; |