Aapo Rantalainen
Aapo Rantalainen
About USB graphics tablet: I would be interested in this feature, but I need some mentoring. I have Aiptek graphics tablet for analyzing (my system seen it as Waltop). Am...
zipcrack.c:70 if (++crack_count >= 1000000 && verbosity) { printf ("checking pw %-40.40s\r", pw), fflush (stdout); Because **--verbose** it will print "checking pw ..." without newline (\n) but just carriage return...
Test this work-around. After 'make' failing, run: gcc -g -O2 -funroll-all-loops -O3 -o fcrackzip main.o crack.o -lzip Reason: **-lzip** must be after object-files. (Configure is not producing valid Makefile)
I got this error fixed, but this plugin has more outdated code #2 ``` diff --git a/init.rb b/init.rb index 06a826b..53e343d 100644 --- a/init.rb +++ b/init.rb @@ -1,14 +1,15 @@ require...
caches.db is standard sqlite3-database, you can edit it with any sqlite-tool. This is the schema of table: CREATE TABLE geocaches (last_viewed INTEGER, logs TEXT, vars TEXT, terrain INTEGER, waypoints text,...
Workaround: Compile with gcc4.6
Seems this can be handled with the same way as in row 1667. ``` --- a/main.py +++ b/main.py @@ -1648,7 +1648,7 @@ class IPBA2(QtGui.QMainWindow): paths = self.cursor.fetchall() for path_u in...
Maybe not directly related to Maemo, but something about 32bit arm. This fails g++-10 -c -fPIC -Wcast-align -Werror \ -I/usr/include/arm-linux-gnueabihf/qt5 \ -I/usr/include/arm-linux-gnueabihf/qt5/QtWidgets \ -o object.o a.cc This works g++-10 -c...
Unfortunately this is the situation. Geocaching.com has been changed and now agtl can't even do login.
Opencaching uses some "Developer Key", http://www.opencaching.com/api_doc/ how this fits with Open Source application, or generally any scripted application? (I haven't read Terms but I can guess developer key is personal...