- - normal file
- d directory
- s socket file
- l link file
- c character special
- p fifo (named pipe)
- b block speical
http://www.thegeekstuff.com/2009/07/linux-ls-command-examples/
When you link a shared library against other shared libraries (e.g. linkThe reason is these two libraries are inconsistent. The solution: reinstall the packages that contains the two libraries.libwx_baseu-2.8.so
againstlibstdc++.so
), the linker records versioned symbols used bylibwx_baseu
and provided bylibstdc++
.
If at runtime you use a different copy oflibstdc++
(one which doesn't provide the same versioned symbol(s)), you get a (dynamic) liking error and the program doesn't run at all (this is preferable to a "mystery" crash later on).
>modprobe vboxdrvThe following messages are shown:
WARNING: The character device /dev/vboxdrv does not exist. Please install the virtualbox-ose-modules package for your kernel and load the module named vboxdrv into your system. You will not be able to start VMs until this problem is fixed.
>modprobe vboxdrv
>virtualboxVirtualbox comes back ...
"I have no further interest in any of this distribution cross-compilation stuff. "New repository of sbox is here. http://maemo.gitorious.org/scratchbox2
@echo off for /f "delims=] tokens=1*" %%a in ('find /v /n "" ^<.\newsources.txt') do ( echo %%b )
XmlListModel { source: "http://www.google.com/ig/api?weather=forchheim" query: "/xml_api_reply/weather/forecast_information" //forecast information XmlRole { name: "city"; query: "city/@data/string()" } XmlRole { name: "forecast_date"; query: "forecast_date/@data/string()" } XmlRole { name: "current_date_time"; query: "current_date_time/@data/string()" }
XmlListModel { source: "http://www.google.com/ig/api?weather=forchheim" query: "/xml_api_reply/weather/current_conditions" //current condition XmlRole { name: "condition"; query: "condition/@data/string()" } XmlRole { name: "temp_c"; query: "temp_c/@data/string()" } XmlRole { name: "humidity"; query: "humidity/@data/string()" } XmlRole { name: "icon"; query: "icon/@data/string()" } XmlRole { name: "wind_condition"; query: "wind_condition/@data/string()" } }
XmlListModel { property int index source: "http://www.google.com/ig/api?weather=forchheim" query: "/xml_api_reply/weather" XmlRole { name: "day_of_week"; query: "forecast_conditions[" + index.toString() + "]/day_of_week/@data/string()" } XmlRole { name: "low_f"; query: "forecast_conditions[" + index.toString() + "]/low/@data/string()" } XmlRole { name: "high_f"; query: "forecast_conditions[" + index.toString() + "]/high/@data/string()" } XmlRole { name: "icon"; query: "forecast_conditions[" + index.toString() + "]/icon/@data/string()" } XmlRole { name: "condition"; query: "forecast_conditions[" + index.toString() + "]/condition/@data/string()" } }
chance_of_rain.gif
sunny.gif
mostly_sunny.gif
partly_cloudy.gif
mostly_cloudy.gif
chance_of_storm.gif
showers.gif
rain.gif
chance_of_snow.gif
cloudy.gif
mist.gif
storm.gif
thunderstorm.gif
chance_of_tstorm.gif
sleet.gif
snow.gif
icy.gif
dust.gif
fog.gif
smoke.gif
haze.gif
flurries.gif
ContentExtractor::ContentExtractor(QObject *parent) : QObject(parent) { //regexp pattern QString escape1 = QRegExp::escape("<div class=\"yn-story-content\">"); QString escape2 = QRegExp::escape("</div>"); QString aPattern = escape1 + "(.*)?" + escape2; regExp_.setPattern ( aPattern ); regExp_.setMinimal ( true ); regExp_.setCaseSensitivity(Qt::CaseInsensitive); } void ContentExtractor::extractContent(QString text_in) { if (regExp_.indexIn(text_in) != -1) { content_ = regExp_.cap(1); content_ = content_.trimmed(); content_ = content_.remove('\n'); content_ = content_.remove('\t'); } }