About those annoying websites that will not allow you to view their content unless you click “like” on every article they have. Like me, you might not want to do that, because you might find out later that they do not really have the information you need, yet you already shared it.
A guide to avoid this situation (for a few sites at least, do the following for FireFox:
view the source code (Ctrl+U) of the page
find something like $(‘#hide-me’).show();
Type ctrl+shift+k and paste it there, then press enter
Recently we wanted to start a Windows virtual machine from a physical hard disk using a Fedora w/ GNOME 3 host machine to change the domain password of a user. To do so, we used QEMU, QEMU is a generic and open source machine emulator and virtualizer. To perform the…
Recently, we got a laptop that did not have a right Ctrl button and we found out after we started a VM with no Guest Additions installed. Because of these two factors we could not escape the VM capture mode and return to the host OS. To resolve the issue,…
while true; do echo 'Hit CTRL+C to exit'; someCommand; someOtherCommand; sleep 1; done alternative syntax while :; do echo 'Hit CTRL+C to exit'; someCommand; someOtherCommand; sleep 1; done