I have been playing around with two new toys lately: The Epiphany web browser, and DuckDuckGo search. I might write more on these another time, but for now I want to show you how you can change the default setting for search (in Epiphany) from Google to DuckDuckGo, by using gconf-editor in Gnome:
Fire up a shell, and enter:
gconf-editor
A dialogue box will pop up. Click on apps -> epiphany -> general
You will see a list of things on the right. Scroll down until you see 'url_search'. Click that, then right click, and select 'edit key'. In the new dialogue box that comes up, paste the following into the 'Value' field:
http://duckduckgo.com/?q=%s&ie=UTF-8&oe=UTF-8
Click, 'OK', and then close gconf-editor. Now when you open up Epiphany and do a search, you should be looking at a result page from DDG, instead of Google.
Happy DDG'ing!
Sunday, January 2, 2011
Humorous AMD Video
With CES looming, and news of AMD winning the International CES Innovations 2011 Design and Engineering Award for its Fusion APU, I have to say I am pretty excited to see Fusion finally coming to fruition. Anyway, since Fusion is upon us, here is a funny new promotional video from AMD about fusion; watch for AMD President & CEO Dirk Meyer at the end:
Saturday, December 18, 2010
How to build Dillo on OpenSUSE 11.3
Dillo is a small, fast, and light browser. In order to build it on OpenSUSE, you will need some pre-requisites. This article will cover how to get the source code for Dillo (and associated libraries), as well as the software build tools you will use to compile the Dillo browser.
Sunday, November 28, 2010
How to change Gnome login background image.
Update: For OpenSUSE 11.4, see this post.
As root, enter the following into your shell:
Of course you will need to change the bit in red, "some_picture_filename.png" to the one that you want as your background image on the login screen.
It seems that the method for doing this has been evolving. What worked even six months ago does not appear to work now. As of this writing, I am using Gnome 2.30.0 with OpenSUSE. I found the information here.
As root, enter the following into your shell:
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
--type string \
--set /desktop/gnome/background/picture_filename some_picture_filename.png
Of course you will need to change the bit in red, "some_picture_filename.png" to the one that you want as your background image on the login screen.
It seems that the method for doing this has been evolving. What worked even six months ago does not appear to work now. As of this writing, I am using Gnome 2.30.0 with OpenSUSE. I found the information here.
Saturday, November 6, 2010
Excellent AMD Bulldozer Blog
Many of us have been patiently waiting for the release of the AMD Bulldozer processor. As the date draws nearer, more details about the chip are starting to emerge. Today I came across this interesting blog, Patent based research regarding AMD's future MPUs. The title gives a little idea of what the blog is about, but keep in mind that there is more there than patent research. Indeed, there is a lot of info there. The author also comments on the AMD Llano and Bobcat processors. Check it out for yourself!
Tuesday, September 14, 2010
Misconceptions
Last night I was fiddling around with some really simple code; the object of my program was to test a positive integer, to see if it was odd or even, and then print the result. There is more than one way to do this, some being more expensive than others. I thought I would run some tests to see what sort of differences, with regard to program execution time, I could come up with. I had three methods of checking for whether a number was odd or even.
Sunday, August 22, 2010
encrypt(3) example usage
A while back I had someone ask about how to use the encrypt() function under Linux. He had tried the man page, encrypt(3), which even contains an example usage. Unfortunately for him, the example given was terribly broken. I managed to find a post by Jens Thoms Törring which contained a working sample (though there was an off-by-one error which Mr. Törring later brought to my attention). Since the current man page at the time had a broken example, I thought I would send a patch in to have it fixed. That was a little over a year ago, but guess what? Still the same broken code! I don't know why the patch was not applied. Perhaps it was a crappy patch (I don't normally do patches, so I might have done it wrong). Or maybe the maintainer of the man pages was too busy. I don't really know what happened. Since speculation is pretty much useless, I thought I might post the code here, for anyone else searching for a useful example of encrypt usage.
Subscribe to:
Posts (Atom)