Re: tango and the missing map tiles

2009-06-25 Thread Carlo Minucci
Rask Ingemann Lambertsen ha scritto:

 will yaouh perform a similar task? i assume even though they are
 blank, they will have a date and time, thus when yaouh is run, it will
 see they are old/the hash is wrong, and replace them?
 

No, Yaouh! (version 0.5.1) doesn't update empty map tiles

what???
why not?
are you sure?

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


gtkaddpoi 0.7 is out

2009-06-06 Thread Carlo Minucci
i have fix some bug

* now work with tangogps empty table
* work if latitude or longitude integer number is minor of 10
* query don't fail is there is a / in the address or name

http://wiki.openmoko.org/wiki/Gtkaddpoi

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


bluespam.py - new version

2009-05-27 Thread Carlo Minucci
bluespam is an utility for send/spam a file via bluetooth

i have release a new versione of bluespam.py
you can download from http://minucci.net/file/bluespam.py

now you have to launch with file like argument:

python ./bluespam.py file.txt

before you have to launch this on a terminal:

sqlite3 bluespam.sql CREATE TABLE log(id INTEGER PRIMARY KEY ASC, 
timestamp INT, name TEXT, mac TEXT)

because bluespam.py write log of successful file send into a database, 
in separate table, each for file

need test with various phone or smartphone

enjoy it :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [request] gtkaddpoi ability to query wikimapia

2009-05-11 Thread Carlo Minucci
ivvmm ha scritto:
 Hello list.
 
 Wouldn't it be much more efficient for gtkaddpoi to query wikimapia.org,
 instead of yahoo?
 
 There are many places tagged there in my remote town and none in Yahoo.
 Any chance for this to appear in gtkaddpoi?

gtkaddpoi use yahoo because the API is very simple
with a query with city name, address and number, you can get easyly the 
latitude and longitude
with wikimapia is not possible... i think :)


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: coypu: send file via bluetooth

2009-04-30 Thread Carlo Minucci
Daniel.Li ha scritto:

 
 Is it compatible with other bluetooth device. Well, Nokia N70 for
 example. :)

mhh... i think yes... if n70 support obex push

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


coypu: send file via bluetooth

2009-04-29 Thread Carlo Minucci
i have release a software for send file via bluetooth
http://wiki.openmoko.org/wiki/Coypu

it's have some problem but for now work :)

for now it's possible only send file from openmoko to other device

just test it :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Neofreerunner Twitter

2009-04-27 Thread Carlo Minucci
sushama ha scritto:
 Deal All,
 
 Neofreerunner is now on Twitter!
 
 https://twitter.com/neofreerunner
 
 Neofreerunner twitter helps all to communicate with our ever expanding 
 community and exchange as much as information, news, updates, testing 
 experiences and not to forget the jokes.We would be updating tweets 
 timely as and when we have any, including internal happenings in 
 Openmoko office :). This would be a lot more fun too.
 
 If you are on twitter do not forget to follow neofreerunner and tweet us 
 whenever you like.
 
 Regards,
 Sushama

i hope you tweet from http://wiki.openmoko.org/wiki/TwitterMoko :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [2.6.28+ kernel] usb host/device mode switcher

2009-04-25 Thread Carlo Minucci
Robin Paulson ha scritto:
 hi,
 are there any apps for controlling usb host/device mode, which will
 work under the newer kernels? both the apps on opkg appear to only
 work on older kernels
 

i think you can use shortom
http://wiki.openmoko.org/wiki/ShortOm

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Command-line Yaouh! clone

2009-04-23 Thread Carlo Minucci
rhn ha scritto:
 This program was started before Yaouh! was published. Initially, it only
 downloaded the empty tiles, so I called it fill_gaps.py. For a long time, I
 felt it's sufficient, so I didn't change it. Recently, I decided that I
 need something smarter - I tried out Yaouh!, which didn't have some of the
 funcionaltiy I wanted. The code was a bit messy, too.
   

which funcionality do you want on yaouh? :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


bluetooth spam

2009-04-22 Thread Carlo Minucci
i have write a little application for spam a file via bluetooth :)

this is the code (you need openpush package)

#!/usr/bin/python

import os
import string
import time

start_bluetooth=echo 1  
/sys/bus/platform/devices/neo1973-pm-bt.0/power_on; echo 0  
/sys/bus/platform/devices/neo1973-pm-bt.0/reset; /etc/init.d/bluetooth 
start
os.system(start_bluetooth)

while 10:
dev_scan = hcitool scan
list_dev=os.popen(dev_scan)
tot= list_dev.read()
tot= tot.split(\n)
tot.pop(0)
tot.reverse()
tot.pop(0)
for dev in tot:
dev=dev.split(\t)
get_channel = sdptool search --bdaddr  + dev[1] +  OPUSH | 
sed 's/ //g' | grep Channel | cut -d: -f 2
channel_scan=os.popen(get_channel)
channel=channel_scan.read()
print ! + channel[:-1] + !
if channel != :
send_file=obextool push file.txt  + dev[1] ++ channel
print sending file to \ + dev[2] + \
print send_file
send=os.system(send_file)
time.sleep(5)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: bluetooth spam

2009-04-22 Thread Carlo Minucci
Evgeny ha scritto:
 On Wed, Apr 22, 2009 at 4:20 PM, The Digital Pioneer
 digitalpionee...@gmail.com wrote:
 Spam a file? Send it to everyone in range? Why?

 It seems, because he can do it, funny.
 

exactly :)


the true
i have code this application for spread mp3 of my band during live concert
it's cool :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [0M2008.12] qtopia theme

2009-04-09 Thread Carlo Minucci
Marco Trevisan (Treviño) ha scritto:
 Carlo Minucci wrote:
 Marco Trevisan (Treviño) ha scritto:

 However theming qtopia is quite easy, I've re-themed all mine with tango
 icons (and elementary-like buttons) :P
 how?
 
 You've simply to add the icons you want to use in the
 /opt/Qtopia/pics/themes/${theme} path. This is explained also in docs [1].

in my om2008 i don't have this directory
it's different

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [0M2008.12] qtopia theme

2009-04-08 Thread Carlo Minucci
Bernd (Jesus McCloud) Prünster ha scritto:
 who made it [1] and where to get?
 
 [1] http://scap.linuxtogo.org/files/2abc691f82a2b2ea05789b960fb5f6c4.png
 
 thx in advance

i want it too :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [0M2008.12] qtopia theme

2009-04-08 Thread Carlo Minucci
Marco Trevisan (Treviño) ha scritto:

 However theming qtopia is quite easy, I've re-themed all mine with tango
 icons (and elementary-like buttons) :P

how?

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


new version of gtkaddpoit

2009-04-03 Thread Carlo Minucci
i have release a new version of gtkaddpoi 
http://wiki.openmoko.org/wiki/Gtkaddpoi

now you can search a POI and add to Navit bookmark

don't forget to donate something at http://minucci.net/openmoko.php :D

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Yaouh! new version out

2009-03-31 Thread Carlo Minucci
only more speed for this release

http://www.opkg.org/package_105.html

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


[OM2008] stop a call from terminal

2009-03-07 Thread Carlo Minucci
on my phone i can call a number from terminal with this command:

DISPLAY=:0 qcop service send Dialer dial\(QString,QString\) 800444000 
800444000

(800444000 is a green number of microsoft italy :) )
but i have not found a solution for stop the call from terminal

somebody can help me?

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Yaouh! 0.5.1 out

2009-03-05 Thread Carlo Minucci
* delete freespace check and progress bar
* now work with tangogps default config file
* work in SHR too (i hope :) )
* change icon with a picture taken during my holiday in Vespa :)

http://www.opkg.org/package_105.html

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [SHR-testint] On Yaouh! 0.5 and 0.4

2009-03-04 Thread Carlo Minucci
Francesco de Virgilio ha scritto:
 Hi list,
 does anyone know where can I find the opk/ipk for Yaouh! 0.3? I've tried
 0.4 on my fresh SHR-testing but, when downloading during the night, it
 crashed (I don't know why, I'm trying again now to report the error from
 shell).
   

you can found all old version here 
http://projects.openmoko.org/frs/?group_id=250

 Yaouh 0.5 simply doesn't work showing an error related to filesystem
 (but this has been discussed in another topic).
 So, for my SHR-testing the latest version avaiable for use has been 0.3.
  Does anyone know where can I get it?
   

now i have installed SHR for testing 0.5 e search for a solution... if i 
don't found i delete the secondo progress bar :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [SHR-testint] On Yaouh! 0.5 and 0.4

2009-03-04 Thread Carlo Minucci
Helge Hafting ha scritto:
 Carlo Minucci wrote:

   
 now i have installed SHR for testing 0.5 e search for a solution... if i 
 don't found i delete the secondo progress bar :)
 

 The bar that needs df / to work?  No need to get rid of it 
 unconditionally. Test the output of that df command, and make the bar 
 only if df gave a useable response. Those with a working df then 
 gets the bar, and those without still get their tiles updated. (And if 
 they don't like that, they can complain to whoever packages busybox for 
 the SHR distro. df / is supposed to work, according to documentation.)
   

in italian language i can answer to you with grazie al cazzo :)

i have test df / on SHR, don't work. on om2008.12 work properly
i don't know why but i'm working for a solution

for now i have release, in the svn, a version working on SHR
use this script for upgrade  on SHR:

wget 
http://projects.openmoko.org/plugins/scmsvn/viewcvs.php/*checkout*/usr/bin/yaouh.py?conten
t-type=text%2Fplainrev=15root=yaouh -O /usr/bin/yaouh.py

now work also with default configuration of tangogps (for fix this bug 
http://wiki.openmoko.org/wiki/Yaouh!#Bug )

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


illume keyboard italian sms

2009-02-27 Thread Carlo Minucci
i have release a package of my italian keyboard optimized for sms

* add number
* add a sad smiley
* always a button for heart :)

all info at http://www.opkg.org/package_145.html



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Samsung M7600

2009-02-10 Thread Carlo Minucci
OpenMitko ha scritto:
 Looks familiar, doesn't it?
 
 http://dailymobile.se/2009/02/07/pictures-samsung-m7600-with-bang-olufsen-powered-audio/


a PSP? :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: yaouh! 0.4 is out - 10x speedup hack

2009-02-10 Thread Carlo Minucci
Robin Paulson ha scritto:

 carlo, any chance of implementing this in a forthcoming release?

yes
i promise in the next release i insert this idea


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


yaouh! 0.4 is out

2009-02-09 Thread Carlo Minucci
download from http://wiki.openmoko.org/wiki/Yaouh!

little bufgix and add support for multiple wget download
i think now is more fast

please, test and feedback

see you

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


yaouh! 0.3 is out

2009-02-05 Thread Carlo Minucci
http://wiki.openmoko.org/wiki/Yaouh!
a new version is available

now you can choise repository for updating

need feedback for repository function

thank a lot to florian schweikert for help me

see you

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: yaouh! 0.3 is out

2009-02-05 Thread Carlo Minucci
Francesco de Virgilio ha scritto:

  * Package yaouh md5sum mismatch. Either the opkg or the package index
 are corrupt. Try 'opkg update'.
 
 Any hint?

my mistake

try now... i forgot to rename the file :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Free file hosting

2009-02-02 Thread Carlo Minucci
Michele Renda ha scritto:
 On 02/02/2009 10:23, Timo Juhani Lindfors wrote:
 How about

 http://projects.openmoko.org
 http://savannah.gnu.org

 I can't use [1] because there are Debian focused package.
 I can't use [2] because I don't want to open a project, only to publish 
 a package that I only recompiled for FR :)

you can use www.opkg.org too (i think)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


first FreeRunner Party (in Italy)

2009-02-02 Thread Carlo Minucci
info at: http://www.luccalug.it/wiki/Freerunner (sorry, only in italian 
languages)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! 0.2.1 is out now

2009-01-22 Thread Carlo Minucci
Helge Hafting ha scritto:

 
 I let it run overnight, to deal with 5 tiles.
 It still segfaults sometime during the night.
 There are no full filesystems this time though.

yesterday yaouh have crash with 2 tiles...

...mumble mumble...


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Yaouh! 0.2.1 is out now

2009-01-21 Thread Carlo Minucci
http://wiki.openmoko.org/wiki/Yaouh%21

i have fix some bug:
* no output of curl and wget (no more x.log big)
* fix break into while

check and tell me other problem :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-20 Thread Carlo Minucci
Rask Ingemann Lambertsen ha scritto:
 On Fri, Jan 16, 2009 at 04:12:19PM +0100, Tilman Baumann wrote:
 Untested code:

   import httplib
   conn = httplib.HTTPConnection(tile.openstreetmap.org)
   conn.request(HEAD, /file...)
   r1 = conn.getresponse()
   print r1.status, r1.reason
   etag = getheader(ETag)
   print etag

 And if stuff was new, make GET instead of HEAD
 
It sure would be more efficient if OSM supported the If-Modified-Since:
 header in a GET request. Then you wouldn't need the HEAD request.
 
Also, consider using the same connection for multiple requests. It ought
 to help a lot with such small files.
 

where can i found httplib package for openmoko?

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-20 Thread Carlo Minucci
Helge Hafting ha scritto:
 Carlo Minucci wrote:
 http://wiki.openmoko.org/wiki/Yaouh!

 i a simple interface for update the maps of tangogps
 it's optimized for low band usage
 
 A very good idea, but it does not work yet.
 
 My maps are in /media/card/kart/,
 but yaouh thinks they are in /home/root/Maps.
 so it doesn't check my 5 tiles.

i found the bug :)

go to line 83 of the yaouh.py and add a new line, after dir = out[2], with

j = n

and test it
now it should work

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-19 Thread Carlo Minucci
Risto H. Kurppa ha scritto:

 
 By default the OSM maps are in /home/root/Maps/OSM
 So creating a symbolic link from this directory to your µSD card will
 do it: you don't have to move the files anywhere or even touch
 tangogps configuration, only point the directory to the card.


yes
it's a solution
but check in the tangogps config file if you have right path for map
you can found in /home/root/.gconf/app/tangogpd/%gconf.xml


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-17 Thread Carlo Minucci
Francesco de Virgilio ha scritto:
 Same problem here :(
 How could I solve this? It seems a _great_ app ;)

wait for release 0.2 :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! 0.2

2009-01-17 Thread Carlo Minucci
out now! http://wiki.openmoko.org/wiki/Yaouh!

* now is a little more fast
* add name user agent
* destroy update button after press




___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Yaouh! out (update for tangogps maps)

2009-01-16 Thread Carlo Minucci
http://wiki.openmoko.org/wiki/Yaouh!

i a simple interface for update the maps of tangogps
it's optimized for low band usage

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-16 Thread Carlo Minucci
The Digital Pioneer ha scritto:
 Getting the following output in SHR, with maps stored in ~/Maps
 
 40
 Unhandled exception in thread started by
 Traceback (most recent call last):
   File /usr/bin/yaouh.py, line 78, in up_progressbar
   print _ + dir + _
 UnboundLocalError: local variable 'dir' referenced before assignment

oh
you can delete this line, it's only for my debug

(sorry for my bad english)

you have check if in tangogps your repository is call OSM
my script (for now) search only OSM in the tangogps config file, and 
if there is another name can't find the right dir e generate this error

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-16 Thread Carlo Minucci
Xavier Cremaschi ha scritto:
 Carlo Minucci a écrit :
 http://wiki.openmoko.org/wiki/Yaouh!

 i a simple interface for update the maps of tangogps
 it's optimized for low band usage
 
 Just a question : how can you check the remote file without dowloading 
 it before ? Do you use etag [1] to do that ?

yes
etag

i check with this:

curl -I http://tile.openstreetmap.org/$file | grep ETag | cut -d \ -f 2

do you know a better way?

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-16 Thread Carlo Minucci
The Digital Pioneer ha scritto:
 I use OSM repo, yes. I removed that line, but now it just breaks on 
 another one (line 82). So still no go.

ok
open a shell into the phone e launch this

cat ~/.gconf/apps/tangogps/%gconf.xml | grep OSM|http

and check if you receiver a row like this

r...@saponettofono:~# cat ~/.gconf/apps/tangogps/%gconf.xml | grep 
OSM|http
 
stringvalueOSM|http://tile.openstreetmap.org/%d/%d/%d.png|/home/root/Maps/OSM|0/stringvalue
r...@saponettofono:~#

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-16 Thread Carlo Minucci
The Digital Pioneer ha scritto:
 No go. I tried grepping for just OSM though, here's what I got...
 
 r...@om-gta02 [~] # cat .gconf/apps/tangogps/%gconf.xml | grep OSM
   stringvalueOSM/stringvalue

ok
this is the problem :)

can you send me this %gconf.xml via email?
i want to check the difference with mine

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Yaouh! out (update for tangogps maps)

2009-01-16 Thread Carlo Minucci
Thomas Franck ha scritto:

 
 Very nice program.. works like a charm (so far (checking on ~70k
 tiles)).. it's somewhat slow, though.. maybe you can implement that
 python httplib to save the curl invocations? :) please?

maybe in the next release :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [2008.18] image with GPRS and any soft

2008-12-27 Thread Carlo Minucci
bytestore ha scritto:
 asu.edj (with qwerty button and operator icon)
 
 can you send me only this file?
 
 http://openmoko.spb.ru/download/file.php?id=12

thank a lot

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [2008.18] image with GPRS and any soft

2008-12-26 Thread Carlo Minucci
bytestore ha scritto:

 asu.edj (with qwerty button and operator icon)

can you send me only this file?

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


merry christmas

2008-12-24 Thread Carlo Minucci
merry christmas
(now in italy is 00:00)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: merry christmas

2008-12-24 Thread Carlo Minucci
Sargun Dhillon ha scritto:
 There are female OpenMoko users? Where? :-P

ahahahah

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [All] tangogps - python scripts for .kml from/to sqlite

2008-12-23 Thread Carlo Minucci
Thomas des Courières ha scritto:
 Hi all,
 just wanted to share some scripts I used.
 The first one is for converting a list of points out of a kml file to a 
 poi sqlite3 database which tangogps can read, and the other one is for 
 doing the reverse operation : getting the pois of the tango gps db and 
 creating a kml file.
 It might need some tweaking, as some things are hard coded.
 Note that I also extracted the points of the kml file with my favorite 
 excel like program into a plain file listing all points.
 Hoping that it will save someone's time,
 Thomas

i think is a good idea!!!

i have use your idea and your code in my gtkaddpoi 
http://wiki.openmoko.org/wiki/Gtkaddpoi :)

for now only for export a POI

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Default IP Address on All Distributions

2008-12-18 Thread Carlo Minucci
Giorgio Marci ha scritto:
 In Italy most of the home user routers have 192.168.0.* by default.

in italy most are 192.168.1.* :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: OpenVibe is out

2008-12-18 Thread Carlo Minucci
Peter Stumm ha scritto:
 hi,
 where can i find the source code,
 i want to start programming with enlightenment and need a little
 example.

for example you can read this 
http://wiki.openmoko.org/wiki/Python#Minimal_ETK_gui+

and this for documentation
http://wiki.openmoko.org/wiki/EFL_Documentation

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: OpenVibe is out

2008-12-17 Thread Carlo Minucci
Pander ha scritto:
 Carlo, nice application. If anyone is interested, I have an open source
 MIDlet in a JAR and the open source that also controls the vibrator
 function. Sorry, OpenVibe was not the first, me probably also not.

mine is the first work with hardware open source :)

where i can download your version?

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


problem with registration of new project

2008-12-16 Thread Carlo Minucci
(sorry for my bad english)
anyone have problem with registration of new projet on 
http://projects.openmoko.org/

when i try i receive a denied message

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


OpenVibe is out

2008-12-16 Thread Carlo Minucci
http://wiki.openmoko.org/wiki/OpenVibe

i have make the first release of the OpenVibe: the first opensource 
vibrator :)

enjoy :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: removing the Sudoku package

2008-12-11 Thread Carlo Minucci
Joseph Reeves ha scritto:
 [EMAIL PROTECTED]:~#opkg list_installed | grep sudoku
 pyefl-sudoku - 0.0.2+svnr49-r1.01 -
 [EMAIL PROTECTED]:~9#opkg remove pyefl-sudoku

no, don't work
because depend of another package (i don't remember the name)
i have use the installer gui (click in bottom installer) for uninstall

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: removing the Sudoku package

2008-12-11 Thread Carlo Minucci
Joseph Reeves ha scritto:
 [EMAIL PROTECTED]:~9#opkg remove -force-depends pyefl-sudoku
 
 ?

mh... maybe work
i haven't tried... try :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


gpsdcontrol 0.4 is out

2008-12-05 Thread Carlo Minucci
(sorry for my bad english)
i have released a new version of gpsdcontrol
http://wiki.openmoko.org/wiki/Gpsdcontrol

gpsdcontrol is a simple script for turn on/off gpsd and gps antenna in a 
simple icon on the desktop

now there is a new icon which change if gpsd is running or not, and blue 
led is turning on/off with gpsd

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Funding Global Domination

2008-12-04 Thread Carlo Minucci
Pander ha scritto:
 I've good experiences with http://cafepress.com for t-shirts. Send me an
 email and I will reply with some URLs with some nice examples.

i think http://www.spreadshirt.net/ is better

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: TwitterMoko 0.4 out

2008-12-04 Thread Carlo Minucci
Joachim Breitner ha scritto:

(sorry for my bad ensligh)

  * Please use a proper setup.py (using the python distutils) to 
install your files into the proper locations. See 

 http://git.debian.org/?p=pkg-fso/openmoko-panel-plugin.git;a=blob;f=setup.py;h=d6056f95561b9a8f4f602fc968e0bc8e6ca7a18b;hb=HEAD
as an example.
  * Using this setup.py, you can create proper and consistent tar-balls
using ./setup.py sdist. Make sure that you set the version number
corresponding, and check that all required files are included.

ok... i'm looking it tomorrow


 Additionally, while reading through your code, I’m wondering (please
 don’t take this personally): Does TwitterMoko have any advantages over
 existing projects such as twitux? What are it’s distinct features? Is

there is not a package of twitux for openmoko, and i'm not know how to 
recompile. i talk about om2008 and SHR

 there a good reason to fork and launch curl for each access, passing all
 parameters via the commandline and possibly not fully escaped, and
 blocking on the output of curl, instead of using some asynchronous http
 library directly?

yes... when i code i have use libcurl in my computer but after i have 
see there is not the package python-pycurl for om2008

 Also, the config should be saved in, say ~/.twittermoko.cfg, instead of
 a global place, and probably created with mode 660 (who knows, someone
 might actually have a guest ssh login to his FreeRunner :-)

this is a very good idea! in the next release...

 I hope this does not discourage you from working on TwitterMoko, but
 give you some hints on how to improve it – but I think befor inclusion
 in Debian, things have to evolve a litte bit.

mhh... i don't know... :)
i have start to code twittermoko because i have not found a client for 
om2008 :) only this

see you

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


TwitterMoko 0.4 out

2008-12-03 Thread Carlo Minucci
hi (sorry for my bad english)
i have released a new version of TwitterMoko (a client for twitter)

check the wiki page http://wiki.openmoko.org/wiki/TwitterMoko

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: TwitterMoko 0.4 out

2008-12-03 Thread Carlo Minucci
Riccardo Centra ha scritto:
 Hi Carlo,
 TwitterMoko is very cool and I always use it ;)

thanks a lot

 However, are you interested to make a client for Facebook? I really 
 appreciate it too :)

use a browser :)
i hate facebook

 Bye and thank you for twittermoko
 
 PS: i am italian too :D

e allora parla italiano :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: TwitterMoko 0.4 out

2008-12-03 Thread Carlo Minucci
Jelle De Loecker ha scritto:

 I'm currently using Twitux on my debian install, I don't mind trying out 
 TwitterMoko
 
 Greetings,
 Jelle De Loecker

thanks :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Fast screen rotate app

2008-11-24 Thread Carlo Minucci
Tilman Baumann ha scritto:
 Moritz Bitsch wrote:


hi
i have made a similar application, can you test on SHR for me? :)
you can download from http://minucci.net/file/opkg/ruotami_0.2_all.opk

thank you

see you

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


TwitterMoko

2008-11-21 Thread Carlo Minucci
(sorry for my bad english)
hi, i write here for announce the first release of TwitterMoko, a simple 
  Twitter client for openmoko
you can find here http://projects.openmoko.org/projects/twittermoko/

Hi I'm Carlo Minucci, you may remember me for application like gtkaddpoi 
or gpsdcontrol... :)

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community