2012. október 16., kedd

Lepényszerelem

 

Asszem, hogy lepénysütő legénnyé válok manapság. Nagyon egyszerű, kevés vesződséggel jár, könnyű porcelánbevonatú serpenyőben kisütni, és nagyon fincsi. Ezt a receptet csináltam ma este, csak nem szórakoztam a csigázással, és petrezselyemzöldet is raktam bele.

2012. október 14., vasárnap

Video encoding performance with CUDA: AMD Athlon 64 X2 3800+, Geforce 210, Mediacoder

The encoding is four times faster with the help of CUDA in the case of a DVD image into an avi file. (Normal speed: 0.4x-0.5x, with CUDA: 2.0x-2.1x.) The video quality is not the best, but it is satisfactory.

2012. október 11., csütörtök

Török lepénykenyér

Kicsit sokat ittam ma este egy kedves ismerősömmel, úgyhogy nem tudtam programozni. Hát, sütöttem.

2012. október 10., szerda

Éttermi szintű vacsora



Szoktam mostanában jókat főzni, de a mai esti kaja nem csak jó volt, de egyszerűen fenségesre sikerült. Ilyen jót jobb színvonalú indiai/nepáli étteremben ettem még eddig, nemhogy én csináltam. Nagyon ütős kompozíció:
- Naan lepény köretnek. Az eredeti recepten annyit változtattam, hogy a tésztába római köményt is raktam, illetve nem tartottam be a tészta pihentetésére vonatkozó várakozási időket.
- Szuper omlósra sikerült, enyhén csípős marhapörkölt.
- Tzatziki (ez előre elkészített, bolti volt)
- Jégsaláta levelek hozzárágcsálni

2012. július 18., szerda

Fix Qt code completion/parsing in Eclipse

Some Qt magic macros cause problems for the C++ code parser in Eclipse and it shows "Syntax error" on some lines in the editor. Some problematic macros: e.g Q_OBJECT, Q_SIGNALS, Q_SLOTS, SLOT(), SIGNAL(). Other problems are skipped classes in the Qt includes because of the export macros before the class names: e.g Q_NETWORK_EXPORT breaks QUdpSocket, QTcpSocket etc.

Solution:
- Add the following preprocessor symbols in Project/Properties/C/C++ Include Paths and Symbols with "Add Preprocessor Symbol..." button one by one:

Q_SLOTS=
Q_OBJECT=
Q_SIGNALS=public
SIGNAL(a)="sallala"
SLOT(a)="sallala"
Q_CORE_EXPORT=
Q_NETWORK_EXPORT=
Q_DISABLE_COPY(a)=public:

Voilá, works. This preprocessor symbols affect only the code parser and the syntax checks in the C++ editor.

PS: If somebody knows about additional preprocessor symbols what is worth to add, please write in the comments.

2012. július 8., vasárnap

Nagy meténglevelek

Nálam a meténg itt északon ahelyett, hogy hosszanti nőne, nagy leveleket növeszt.

Published with Blogger-droid v2.0.6

2012. július 5., csütörtök

Random deadlocks in Plasma Desktop (KDE)

I experienced random deadlocks of the KDE Plasma Desktop in Ubuntu Natty and Oneiric. The desktop was frozen caused by the gmail-plasmoid. The workaround was to change the "Fetching mechanism" in the gmail-plasmoid's settings to KDE from python on the Misc. tab.