How to install Ubuntu on Samsung Galaxy S2

Android Ubuntu ScreenshotToday there is again an article on Android. More specifically, it’s about how you can run Android and Ubuntu (Linux) in parallel on your smartphone or tablet. Although I had already blogged about it before, but today I want to explain the whole setup process, step-by-step (using a slightly different method).
The title of this article is actually not quite correct, because we will not install Ubuntu, but setup some kind of a live system – so we get down to business.
I used my Galaxy S2 for the project. If it works with other smartphones, I could not test, but would be happy about comments on your part, if you tried it.
 
For our purposes we need the following things / conditions:

Android based device with root rights
Android Terminal Emulator (freely available on Google Playstore)
android-vnc-viewer (freely available on […]

Fix connection error when connecting Samsung Galaxy S2 with Kies

Samsung Galaxy S2 Kies VerbindungsproblemThe Samsung Galaxy S2 is a great device, with which I’m really full and satisfied. What I can’t say of Samsung’s software called Kies, which serves to synchronize and manage the Galaxy S2 with your PC.
There are always problems in connecting the smartphone to the PC or in special with Kies. If one is affected by the problem and googling a bit, so you will quickly find out that this problem does not occur only sporadically.
Therefore, today I want to show you three approaches that have helped me several times already when my Galaxy S2 won’t connect with Kies.
1) Reboot
Even if it sounds too simple. Often it is enough, to turn your Galaxy S2 once off and restart it. This is especially true when Windows indicates that the ‘Device’ could not be started. (Error code […]

XiVerse – Xing reverse search engine

XiVerse ProduktbildFor some days I’m also on Xing. Who is also there, will certainly know the function that displays the last visitors of one’s own profile.
Unfortunately you do not get the names of your visitors, but only small thumbnails of the last visitor appears in the basic membership at Xing. Also a link to their profile is not given.
This feature is dedicated to premium users (~ 7 € / month) only. But that’s only the half truth.
Find out who visited your Xing progile without having premium status
In most cases it is possible to find out who were the last visitors on the own profile without premium membership. Therefore you have to compare the visitors thumbnails against some data.
In order to simplify the search procedure, as an exercise for myself and as a feasibility study in general, I have […]

WordPress2Doc – How to convert WordPress articles into Word and PDF documents

WordPress2Doc is a small program I developed, that enables you to convert your WordPress articles into Word (docx) documents. In addition to the Word format (.docx) the PDF format (.pdf) is available as a target format. For the conversion, the program makes use of the WordPress export XML file and can convert the items inside the export file in one or both of the aforementioned formats.
Tip: The download link for WordPress2Doc is at the end of this article! Who needs no further information, can now confidently scroll to the bottom of the article.
How to convert WordPress articles into pdf and docx files
To convert your WordPress articles into .docx or .pdf format, the relevant articles must be exported from WordPress at first. This can be done at WordPress’ backend. Therefore open the administration page of your blog and navigate to the “Tools-> Export” menu in the WordPress backend.

How to change the size of a textbox in C#

I admit, the title sounds almost trivial. But on the second sight, it is not so easy to change the size of a TextBox control in C#, because a TextBox does not have the AutoSize property. For other controls you can set the AutoSize property to false and then change the height (height-property). For the TextBox control this is unfortunately not the case.
Nevertheless you can set the height of a TextBox by using a small workaround. The trick is as follows:

textBoxTest.Multiline = true;
textBoxTest.MinimumSize = new Size(150, 24);
textBoxTest.Size = new Size(150, 24);
textBoxTest.Multiline = false;

First you have to set the multiline property to true. Then you can adjust, according to your mood, the minimum-size and the size property to change the size of the TextBox. When you’re done, you set the Multiline property back to false. The TextBox maintains the set size just yet. It’s that simple
Who still wonders, why you should […]