Posted in April 28, 2012 ¬ 11:52h.Piotr
After one of the Ubuntu 11.10 updates I was affected by some really weird colors in the embedded flash player. Basically, every movie looked similar to the one below (notice the dominance of the bluish color): The solution is to disable hardware acceleration in Flash Player settings (RMB -> Settings) just as shown here: After [...]
Read the rest of this entry »
Posted in August 19, 2011 ¬ 10:40h.Piotr
Recently I needed to find out what GNU/Linux a terminal-only server is using. The most obvious thing I could think of was to use: uname -a Unfortunately, it will return the kernel information only – no details about the distribution though. The distribution info is located in a different file which is dependent on… the [...]
Read the rest of this entry »
Posted in April 1, 2011 ¬ 15:57h.Piotr
It’s at least the third time I try to find a solution for the unavailable codecs proclem during rendering video project in Kdenlive. This time, I’ll write it down and link to this great site to make sure I’ll be able to easily find it next time ;-) The process is quite simple (I’m using [...]
Read the rest of this entry »
Posted in January 8, 2011 ¬ 16:35h.Piotr
In the Axis2 (which you can download from this site) bin subdirectory, there is a java2wsdl.sh file which can be used to generate a WSDL file from plain Java classes. Below is a very rough example how to use it: /home/palli/axis2-1.5.4/bin/java2wsdl.sh -o /home/palli/ -of Test.wsdl -sn WSAdditionalOperations -cp . -cn com.nullhaus.ediploma.server.WSAdditionalOperations Used arguments: o – [...]
Read the rest of this entry »
Posted in January 4, 2011 ¬ 15:34h.Piotr
I’ve recently bumped into a problem with using a SSL Network Extender when trying to establish a VPN connection through the web browser. The SNX was throwing a ‘failed to initialize’ error without any details despite the right credentials. To identify the error, I needed to execute the snx from the command line (snx) which [...]
Read the rest of this entry »
Posted in September 25, 2010 ¬ 06:55h.Piotr
Sometimes you just really want to use the autocomplete feature and omit the HTML form autocomplete=”off”. To do so, you need to modify following file (the firefox version might, and probably will be, different than the one posted below): /usr/lib/firefox-3.6.10/components/nsLoginManager.js (in Windows it might be something like C:\Program Files\Mozilla Firefox\components\nsLoginManager.js) Change this: _isAutocompleteDisabled : function [...]
Read the rest of this entry »
Posted in July 3, 2010 ¬ 09:04h.Piotr
It seems that in Ubuntu 10.04 the tun module (which is used to create fake network interface) is compiled into the kernel instead of being a module as in Ubuntu 9.10. It results in error while running the snx command: FATAL: Module tun not found. This problem can be solved either by recompiling the kernel [...]
Read the rest of this entry »
Posted in August 12, 2009 ¬ 04:10h.Piotr
Executing this code will allow you to get back to firefox 3.x fonts rendering in firefox 3.5. It also makes Kadu fonts look much smoother. cd /etc/fonts/ sudo mv conf.d/10-hinting-slight.conf . sudo ln -s conf.avail/10-hinting-slight.conf conf.d/ sudo mv conf.d/10-hinting.conf . sudo ln -s conf.avail/10-hinting.conf conf.d/ sudo dpkg-reconfigure fontconfig Be the first to like. Like Unlike
Read the rest of this entry »