Wordpress - russenreaktor.wordpress.com - RussenReaktor's Weblog
General Information:
Latest News:
[SOLVED]How do I make Ubuntu appear as a bluetooth keyboard? 23 Jul 2013 | 02:59 am
a compact version (essentially the same procedure – this worked better for me): Install libbluetooth-dev . Download hidclient source code for Ubuntu. (Check the official page to make sure that’s no...
[SOLVED] Convert ogv to gif 14 Apr 2013 | 02:37 am
First install this: sudo apt-get install imagemagick mplayer gtk-recordmydesktop On a terminal: mplayer -ao null -vo jpeg:outdir=output Use ImageMagick to convert the screenshots into an animated gifs...
[SOLVED] Recursive image optimisation for web 10 Apr 2013 | 07:23 pm
use jpegoptim for jpeg files and optipng for pngs. save this code to the file e.g., optimize.sh #!/bin/bash optimize() { jpegoptim *.jpg --strip-all for i in * do if test -d $i then cd $i echo $i o...
[SOLVED] Fixed PHP Warning: Module ‘apc’ already loaded in Unknown on line 0 23 Mar 2013 | 05:46 pm
You are getting this message “[SOLVED] Fixed PHP Warning: Module ‘apc’ already loaded in Unknown on line 0″ every time you execute the php in your console. It means that you have already activated th...
[SOLVED]Preselect refinement label in Google Custom Search Engine 11 Mar 2013 | 01:00 pm
var searchOps = {'defaultToRefinement': '[YOUR_REFINEMENT_LABEL]'}; var searcher = new google.search.CustomSearchControl('[Custom Search ID]', searchOps); Source: http://productforums.google.com/d/msg...
[SOLVED] Ubuntu: Configure Google Public DNS IPs 11 Jan 2013 | 02:57 am
open resolv.conf $ sudo vi /etc/resolv.conf just add nameserver 8.8.8.8nameserver 8.8.4.4 Why should you try Google Public DNS? By using Google Public DNS you can: Speed up your browsing experience. I...
[SOLVED] Add recursive .svn ignore to .gitignore 7 Jan 2013 | 03:39 pm
just put *.svn* to your .gitignore file
[Solved] Linux: make screenshot of the virtual screen 16 Dec 2012 | 03:20 am
Make screenshot on display 1 with the imagemagick DISPLAY=:1 import -window root screen.png Source: Xvfb and Firefox headless screenshot generator « Ivan Villareal.
[SOLVED] Running headless on Linux 7 Dec 2012 | 08:48 pm
First, install a VNC server: sudo apt-get install vnc4server Next, start and configure the server: vncserver At this point, it should ask you to create a password for VNC. Do so, then continue. Start ...
[SOLVED] Linux: resize all images via console 3 Dec 2012 | 09:51 pm
Just install ImageMagick if you dont have it yet sudo apt-get install imagemagick Resize all JPG files in to desired size mogrify -resize 640x480 *.jpg Source: http://www.baptiste-wicht.com/2010/09/ti...