In which (I hope) I found the right Google Reader replacement
Tweet Aside from Google Search and Gmail, Google Reader is the only other Google product that I use regularly. I check Google Calendar from time to time, I have lots of documents in Google Drive and some photos in Picasa Web, but I don’t use them as much as I use Google Reader. I check [...]
Fix for Google Chrome’s “Couldn’t load plugin” error on Linux
Tweet The quick fix is to execute rm -Rf ~/.config/google-chrome/PepperFlash. You can follow the issue in Chromium’s public issue tracker.
Sample Desktop Entry file for Fedora 17
Tweet /usr/share/applications/IntelliJ.desktop [Desktop Entry] Encoding=UTF-8 Name=IntelliJ Comment=IntelliJ Community Edition Exec=/home/randell/idea-IU-117.798/bin/idea.sh Icon=/home/randell/idea-IU-117.798/bin/idea.png Terminal=false Type=Application categories=Application;Development; StartupNotify=true
Clear input values inside a div using JavaScript
Tweet This script recursively traverses all HTML elements, looks for input fields and clears their values. It uses only JavaScript. No jQuery required. // From http://stackoverflow.com/a/1500073/106778 function clearChildren(element) { for (var i = 0; i < element.childNodes.length; i++) { var e = element.childNodes[i]; if (e.tagName) switch (e.tagName.toLowerCase()) { case ‘input’: switch (e.type) { case "radio": [...]
How to install SFLphone on Fedora 16
Tweet This is a slightly modified version of the SFLphone build instructions. First, install the dependencies: sudo yum groupinstall group "Development Tools" "Development Libraries" sudo yum install alsa-lib-devel pulseaudio-libs-devel libsamplerate-devel commoncpp2-devel ccrtp-devel libzrtpcpp-devel dbus-c++-devel pcre-devel gsm-devel speex-devel celt071-devel libyaml-devel cppunit-devel cppcheck Then clone the master branch because the latest release (1.0.2) has a bug, which [...]
