Add the following line to 'Advanced settings' of 'GWT Compile' dialog:
-draftCompile -localWorkers XX being the number of cores in your CPU.
You can thank me later :)
(+Boris Daich, you might find it helpful)
A blog containing tips and trips of the mobile developing trade.
-draftCompile -localWorkers XX being the number of cores in your CPU.
QPalette pal = QApplication::palette(); | |
pal.setColor(QPalette::Disabled, QPalette::Text, QColor(80, 80, 80)); | |
pal.setColor(QPalette::Disabled, QPalette::Light, QColor(0, 0, 0, 0)); | |
QApplication::setPalette(pal); |
import re, urllib2,sys | |
k = 0 | |
for i in range(7,0,-1): | |
page_url = "http://theoatmeal.com/comics_pg/page:%d"%i | |
out = open("oatmeal\\out%d.html"%i,"w") | |
out.write("<html><body>\n") | |
print "getting " + page_url | |
f = urllib2.urlopen(page_url) | |
a = f.read() | |
results = [] | |
for params in re.findall("""<a href="/comics/(.*?)"><img src="(.*?)" alt="(.*?)" class="border0" /></a>""",a): | |
title = params[2] | |
sub_url = "http://theoatmeal.com/comics/" + params[0] | |
print "getting " + sub_url | |
try: | |
sf = urllib2.urlopen(sub_url) | |
except: | |
print "Unexpected error:", sys.exc_info()[0] | |
continue | |
sa = sf.read() | |
r1 = re.findall('"(http://s3.amazonaws.com/theoatmeal-img/comics/.*?)"',sa,re.S) | |
result = { | |
'title' : title, | |
'sub_images' : r1 | |
} | |
if len(result['sub_images'])==0: | |
print "crap" | |
else: | |
results += [ result ] | |
print result | |
results.reverse() | |
for result in results: | |
out.write("<hr/>\n") | |
out.write(result['title'] + "<br/>\n") | |
for si in result['sub_images']: | |
print "getting " + si | |
try: | |
u = urllib2.urlopen(si) | |
except: | |
print "Unexpected error:", sys.exc_info()[0] | |
continue | |
fn = 'oatmeal\\%d.%s'%(k,si[-3:]) | |
k += 1 | |
localFile = open(fn, 'wb') | |
localFile.write(u.read()) | |
localFile.close() | |
out.write("<img src=\"%s\"/> <br/>\n"%fn) | |
out.flush() | |
out.write("</body></html>\n"); | |
out.close() |
qrcobj = programEnv.Qrc("SomeFile.qrc", QT4_QRCFLAGS="-name SomeFile")and all is well.
#adding qrc resources compilation | |
import xml.dom.minidom | |
qtResourceFile = [] | |
for q in ("GUI.qrc", "UI/UI.qrc",): | |
baseq = os.path.basename(q)[:-4] | |
qrcdeps = [] | |
qrc = programEnv['ENV']['PWD'] + "/GUI/" + q | |
dir = os.path.dirname(qrc) | |
x = xml.dom.minidom.parse(open(qrc)) | |
for filenode in x.getElementsByTagName("file"): | |
qrcdeps += [ dir + "/" + filenode.childNodes[0].data ] | |
qrcobj = programEnv.Qrc(q, QT4_QRCFLAGS="-name "+baseq) | |
programEnv.Depends(qrcobj, qrcdeps) | |
qtResourceFile += [ qrcobj ] |
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(151,5): warning MSB8015: Forcing a rebuild of all source files due to the contents of ".........\Debug\custombuild.command.1.tlog" being invalid.
import sys, urllib2,json | |
Base = 'http://xkcd.com/' | |
Tail = 'info.0.json' | |
def main(): | |
n = int(sys.argv[1]) | |
k = int(sys.argv[2]) | |
out = open("out3.html","w") | |
out.write("<html><body>\n") | |
for i in range(n,k+1): | |
url = '%s%d/%s' % (Base, i, Tail) | |
print url | |
f = urllib2.urlopen(url) | |
a = f.readline() | |
f.close() | |
d = json.loads(a) | |
out.write("<hr/>\n") | |
out.write(d['title'] + "<br/>\n") | |
out.write("<img src=\"%d.%s\"/> <br/>\n"%(i,d['img'][-3:])) | |
out.write(d['alt'].replace("\n","<br/>") + "</br>\n") | |
u = urllib2.urlopen(d['img']) | |
localFile = open('%d.%s'%(i,d['img'][-3:]), 'wb') | |
localFile.write(u.read()) | |
localFile.close() | |
out.flush() | |
out.write("</body></html>\n"); | |
out.close() | |
if __name__ == '__main__': | |
main() |
NSURL* furl = [f trackUrl];
// ipod-library://item/item.mp3?id=
if([[furl scheme] isEqualToString:@"ipod-library"]){
NSNumber* pid = [NSNumber numberWithLongLong: [[f.name substringFromIndex:32] longLongValue] ];;
MPMediaPropertyPredicate *predicate = [MPMediaPropertyPredicate predicateWithValue:pid forProperty:MPMediaItemPropertyPersistentID];
MPMediaQuery *songQuery = [[[MPMediaQuery alloc] init] autorelease];
[songQuery addFilterPredicate: predicate];
if (songQuery.items.count == 0) {
return NO; // NOT FOUND!
}