[Qt-creator] qt-creator (git) build (5min ago) crashes when resizing view.

2009-07-29 Thread Paulo Silva
Hi, I just compiled qtc from git repo. The folowing sequence of steps crashes qt-creator. - start qtc - open a file - split the view vertically (ctrl+3) or horizontally (ctrl+2) - split the horizontally or vertically - resize the third view maybe some incompatibility with qt4.5.0_rc1? Thanks

Disable Indexing but still getting IndexMerger log messages

2009-07-29 Thread Paulo Silva
Hi, I have a big copy operation in my application that I'm trying to optimize. For that I disabled indexing by changing my index.xml to have index-rule nodeType=nt:base/index-rule. Still, I'm getting log messages like this in my copy operation: 12:30:23,921 INFO [IndexMerger] merged 20

Re: [pygame] how to remove spam comments in pygame wiki

2009-07-28 Thread Paulo Silva
://sphinx.pocoo.org/ Paulo Silva wrote: otherwise, it's extremelly important Pygame being plenty of small snippets, and having them on places like wiki or www.pygame.org/docs/ is extremelly important, specially for newbies like me On 7/27/09, Paulo Silva nitrofur...@gmail.com wrote: i don't

Re: [pygame] write gif animation?

2009-07-27 Thread Paulo Silva
would be a good idea capturing each frame into a file, and joining all externally with gifsicle from a command line shell call? i used to do it a lot on sdlBasic, and surelly it will work on pygame... On 7/27/09, Jake b ninmonk...@gmail.com wrote: What's the best way to convert to a gif

[pygame] opengl from python - drawing wireframe shape colours and contour in the same time

2009-07-27 Thread Paulo Silva
hi! do someone know how can we draw opengl shapes with plain colour fill and outline, with different colours, at same time? a good example is what were used on the Area 4 of Rez: http://www.youtube.com/watch?v=aAncDNDsv7s , and some games from Kenta Cho (which also uses OpenGL) (sorry posting

Re: [pygame] opengl from python - drawing wireframe shape colours and contour in the same time

2009-07-27 Thread Paulo Silva
thanks! (pressuposed i understood the same object must be drawn twice, as shape and as wireframe?) On 7/27/09, Ian Mallett geometr...@gmail.com wrote: #Draw the object here #Disable texturing, lighting, etc. here glColor3f(0,0,0) glLineWidth(4) #or whatever

Re: [pygame] opengl from python - drawing wireframe shape colours and contour in the same time

2009-07-27 Thread Paulo Silva
no, my idea is doing simple poly games, a bit like those 3d games from Amiga time (such as Robocop3 and many others) - very flatcoloured - but i really wanted so have the meshes wireframed - thanks for all useful info! :) On 7/27/09, Ian Mallett geometr...@gmail.com wrote: Yes, unfortunately.

Re: [pygame] how to remove spam comments in pygame wiki

2009-07-27 Thread Paulo Silva
i don't know... maybe Pete Shinners? On 7/27/09, Horst JENS horst.j...@chello.at wrote: Am Sonntag, den 26.07.2009, 22:06 +0100 schrieb Paulo Silva: would be great if we can notify them for the administrator removing them - if we allow anyone to remove everything, the same spammers may wish

Re: [pygame] how to remove spam comments in pygame wiki

2009-07-27 Thread Paulo Silva
otherwise, it's extremelly important Pygame being plenty of small snippets, and having them on places like wiki or www.pygame.org/docs/ is extremelly important, specially for newbies like me On 7/27/09, Paulo Silva nitrofur...@gmail.com wrote: i don't know... maybe Pete Shinners? On 7/27/09

Re: [pygame] how to remove spam comments in pygame wiki

2009-07-26 Thread Paulo Silva
would be great if we can notify them for the administrator removing them - if we allow anyone to remove everything, the same spammers may wish to remove very useful information we waste our precious time on posting them... On 7/26/09, Horst JENS horst.j...@chello.at wrote: the

Re: [pygame] Axelay-like background scroll getting operand error

2009-07-21 Thread Paulo Silva
the same. On Tue, Jul 21, 2009 at 11:59, Paulo Silva nitrofur...@gmail.com wrote: http://pastebin.com/f5b433a3e thank you! :) On 7/21/09, Zack Schilling zack.schill...@gmail.com wrote: ypos2=(256.0/(1.0+(pow(2.0,(4.0-(ypos/64.0))*2.0 -Zack On Jul 21, 2009, at 10:30 AM, Paulo Silva

Re: [pygame] noob questions about creating and playing sounds

2009-07-20 Thread Paulo Silva
just a question: afaik, since Pygame uses SDL, Pygame only can play sounds were loaded, and the only way to 'create' (one of the questions of this mailinglist post) sounds is writing binary data into a .raw file, and calling SoX for converting it as .ogg, .wav, etc.? On 7/20/09, Jerzy Jalocha N

Re: [pygame] sprite 'weird' rotation

2009-07-20 Thread Paulo Silva
asked before. ~DR0ID Paulo Silva schrieb: ok, understood! and thanks about the fixing from the attachment! :) On 7/20/09, Michael George mdgeo...@cs.cornell.edu wrote: Note that you would need rotate_point or something similar if you want to rotate around a point that's not the center

[pygame] sprite 'weird' rotation

2009-07-19 Thread Paulo Silva
hi, i confess it seems a bad handle from me about sprite rotation on Pygame - do someone know better how we can handle it better, making them rotating its center? http://pastebin.com/f53335b66 thanks!

Re: [pygame] sprite 'weird' rotation

2009-07-19 Thread Paulo Silva
/data/parts/cannon.py?revision=31view=markup see the rotate_point function --Mike Paulo Silva wrote: hi, i confess it seems a bad handle from me about sprite rotation on Pygame - do someone know better how we can handle it better, making them rotating its center? http://pastebin.com

Re: [pygame] sprite 'weird' rotation

2009-07-19 Thread Paulo Silva
place the center instead, it works out. See the attached file for the fixed version. --Mike Paulo Silva wrote: thanks! but btw, i tried to apply it, and the result got more weird - not only i can't move the sprites independently, as the rotations got much more weird http://pastebin.com

[Rails] Re: undefined method `paginate'

2009-07-15 Thread Paulo Silva
post the message error please, for analyse. case the problem is to require your gem will_paginate, do you need require this will_paginate in the archive enviroment.rb, ex: require 'will_paginate' Att. Paulo Silva 2009/7/14 Pål Bergström rails-mailing-l...@andreas-s.net How come I get

Re: [pygame] sprite collisions - looking for simple snippet

2009-07-14 Thread Paulo Silva
programming ideas and actual code will start to fall. Hope this helps you get started. -Zack On Jul 13, 2009, at 6:49 PM, Paulo Silva wrote: @Zack: 'more pythonic' you mean PEP8? thanks a lot fixing the code, and helping me sensiblelizing a habit on this codiing way one thing i were

Re: [pygame] sprite collisions - looking for simple snippet

2009-07-13 Thread Paulo Silva
, but I make no promises. If I can get that far, I'll also rewrite it in a much more pythonic way. Then you can compare the two and learn much better practices when working in python. -Zack On Jul 13, 2009, at 8:03 AM, Paulo Silva wrote: hi! well, for me finding a good pygame snippet

Re: [pygame] sprite collisions - looking for simple snippet

2009-07-13 Thread Paulo Silva
://pastebin.com/m1e1c7c94 -Zack On Jul 13, 2009, at 11:47 AM, Paulo Silva wrote: @Zack - what i wanted were change the background colour to #FF only when the sprites 0 and 1 collides - anyway, sorry this code is not PEP8, and using abbreviated variable names - i came from hobbystic 80's ansi

Re: [pygame] sprite collisions - looking for simple snippet

2009-07-12 Thread Paulo Silva
this reference i know from a long time, and figured out easily there were the exact methods to be used - the problem is i couldn't have a snippet working only following that - on my oppinion on that referenence, each pygame method should have a working snippet to be tried out - for me is easier to

[magick-users] how to convert svg to png, keeping alpha channel values?

2009-07-07 Thread Paulo Silva
Hi! i were usually converting files from svg to png, hoping i can have the opacity and transparencies kept in the png file, which doesn't happen at all - all png results seems to be only rgb, and not rgba this situation is making me need to draw the objects twice (object and mask), open the

[pygame] being at pygame-users group without receiving mails in our inbox

2009-07-07 Thread Paulo Silva
Hi! since i used to follow pygame-users mailing list from google groups, is that possible sending messages to there, and not receiving anyone in your mail inbox? if it is, where must we configure, by webpage configuring or mailing list commands? what google groups is awesome is exactly this

[pygame] sprites in arrays, instead of simple variables

2009-07-07 Thread Paulo Silva
hi! recently i coded this humble snipped using sprites from subsurfaces: http://pastebin.com/f2b05bf70 the question is: it seems to be simple working with just 4 different sprites, one in each variable - but when they are hundreds or thousands, this task become to be very boring - can we store

Re: [pygame] sprites in arrays, instead of simple variables

2009-07-07 Thread Paulo Silva
@TyleLaing but do you know where can i find working snippets with sprite groups, like this one i sent? http://pastebin.com/f2b05bf70 (or how sprite group classes can be easily implemented there, if you or someone don't mind... :| ) thanks a lot! :) On 7/7/09, Paulo Silva nitrofur...@gmail.com

Re: [pygame] being at pygame-users group without receiving mails in our inbox

2009-07-07 Thread Paulo Silva
thanks, i didn't knew about filters, and how to use them - let's see how fine it works! thanks! :) On 7/7/09, Nirav Patel o...@spongezone.net wrote: I don't know about using Google Groups, but I see you are using Gmail. Why not create a filter that adds a List or Pygame label to mailing list

Re: [OpenFontLibrary] Din and Helvetica

2009-06-24 Thread Paulo Silva
as Dave know, recently i were working a bit over some Din Schriften Engshrift, which seems to be strongly based on Prussian Railways master drawings. - linked it somewhere at openfontlibrary wiki page ;) are there any decent resolution images of these master drawings, btw? 100 pixels per

AV with Delphi 7

2009-06-13 Thread Paulo Silva | Critical Software
would be very much appreciated and even more if you are already using them without problems for some time. Thanks in advance, Paulo Silva - Critical Software SA ___ Delphi mailing list - Delphi@elists.org http://lists.elists.org/cgi-bin/mailman

AdWords API Re: .Net API - impossible mission

2009-05-19 Thread Paulo Silva
Hi, Ok, So... please can you take a look in the log attached? thank you in advance. 2009/5/19 AdWords API Advisor adwordsapiadvi...@google.com Hello Paulo, Unfortunately, the SOAP faults currently returned by the v200902 API leave much to be desired. What would be most helpful is if

AdWords API Re: .Net API - impossible mission

2009-05-19 Thread Paulo Silva
Maybe the soap errors messages could have more meaning. thanks 2009/5/19 Paulo Silva silvapaulo...@gmail.com Hi, Ok, So... please can you take a look in the log attached? thank you in advance. 2009/5/19 AdWords API Advisor adwordsapiadvi...@google.com Hello Paulo, Unfortunately

AdWords API Re: .Net API - impossible mission

2009-05-19 Thread Paulo Silva
I am debugging your code and I realized that you are creating the v13 headers: private SoapHeader MakeHeader(string headerName, string value) { string typeName = com.google.api.adwords.v13. + headerName; Even I called the v2009 service is it correct ? 2009/5/19 Paulo Silva silvapaulo

AdWords API Re: .Net API - impossible mission

2009-05-19 Thread Paulo Silva
. Cheers, -Jeff Posnick, AdWords API Team On May 19, 4:34 pm, Paulo Silva silvapaulo...@gmail.com wrote: I am debugging your code and I realized that you are creating the v13 headers: private SoapHeader MakeHeader(string headerName, string value) { string typeName

Installing and configuring OCM in Model 2 JBoss installation

2009-05-07 Thread Paulo Silva
Hi, I have an app that is installed in Jboss, deployment model 2 (.rar in folder deploy,etc) and now I want to start using OCM. One of my requirements is that I can redeploy my app and still works after the redeploy. Currently I tried many things and gave up, mainly because after the redeploy

Re: [Lxde-list] What feature would you most like to see added in feature releases?

2009-04-28 Thread Paulo Silva
about the lxpanel menu button, i think would be a good idea it being square (1x1 proportion) - i'm using a 24x24 icon instead, and would be nice being easier for Linux distros (like Ubuntu and others) replacing them easily, like they do on Gnome On 4/28/09, Paulo Silva nitrofur...@gmail.com

Re: [Lxde-list] What feature would you most like to see added in feature releases?

2009-04-28 Thread Paulo Silva
, newbies are not comfortable on adding applications, command lines or scripts this way... On 4/28/09, Paulo Silva nitrofur...@gmail.com wrote: On 4/28/09, Alessandro Pellizzari a...@amiran.it wrote: Il giorno mar, 28/04/2009 alle 14.33 +0100, Paulo Silva ha scritto: The desktop icons could

Re: [Lxde-list] What feature would you most like to see added in feature releases?

2009-04-28 Thread Paulo Silva
PCMan, don't worry about this! TODO files exists exactly for it! no matter when these features will be included, the important is they can be considered and planned to be included sometime from someone - i'd love to help if i were that skilled on C development, i'm still very stuck on this lack of

Re: a good howto on postfix including its working w/ clamav

2009-04-23 Thread Paulo Silva
2009/4/22 Sthu Deus sthu.d...@gmail.com: Good day. Can You recommend a good howto on postfix including its working w/ clamav, etc. Thank You for Your time. Try this one: http://www.debian-administration.org/articles/259 -- Paulo Silva paulo...@gmail.com -- To UNSUBSCRIBE, email

Re: [Lxde-list] The new LXLauncher!

2009-04-20 Thread Paulo Silva
Awesome and thanks - which version would be this one? Anyway, were this Home desktop folder with that mistaken 'My Documents' name fixed? That provides huge usability mistakes, and the risk of users stop booting their Linux accounts (like when editing/removing hidden important files - that is

Re: [pure:dyne] Start Pure:Dyne without Xfce

2009-04-19 Thread Paulo Silva
i'm also in the oppinion xfce should be defaulty replaced with other more efficient, like lxde - xfce is as heavy as gnome, and you can feel it on slow machines, such as 200mhz ones, which ones lxde simply shines, and is even better featured than xfce i don't know about puredyne, but on ubuntu,

Re: [pure:dyne] Software project ideas (First Post)

2009-04-14 Thread Paulo Silva
One interesting thing can be done are plugins for Rosegarden. Rosegarden, anyway, still doesn't support plugins, specially coded in Python - these codes could exist externally, and latelly being used on Rosegarden, for example. What i personally needed were plugins for importing tracker files

lxde and nm-applet situation is worse: Jaunty python upgrade prevents pygtk apps from working

2009-04-14 Thread Paulo Silva
Well, i'm not yet using Jaunty (still on Interpid) - and i got an annoying situation having both LXDE and Gnome installed - a dependence named lxnm, not only it's not working, as well it removes by conflict nm-applet (network-manager-gnome package), and if we insist reinstalling LXDE, we take the

problems updating lxde and gnome, both installed

2009-04-14 Thread Paulo Silva
Hi! i have both gnome and lxde installed, and i got problems from the last update - lxnm seems to have conflict with the package had nm-applet, and got both uninstalled, and so, i got without internet connection and since lxnm has only a script, i really don't know how conflictable is this

Daphne video-cd arcade emulator

2009-04-10 Thread Paulo Silva
recently i got to know about this emulator, would be interesting having it on Debian: http://www.daphne-emu.com/ thanks! -- To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

[Stripes-dev] Submit form in IE doesn't send the correct event

2009-04-08 Thread Paulo Silva
Hi, I have a form that has 2 submit buttons (one to one event, another goes to another). Everything works alright except when I press enter to submit the form in IE7. If I do that the button name isn't posted so Stripes goes to the default handler instead of the correct event. This also

Re: [Stripes-dev] Submit form in IE doesn't send the correct event

2009-04-08 Thread Paulo Silva
StripesRuntimeException} will be thrown.     * /p should not exist anymore.. Don't forget about the enter key =)  also prototype.js needed a patch to get submits into form.serialize()... -Original Message- From: Paulo Silva [mailto:alfa...@gmail.com] Sent: Wednesday, April 08, 2009 1:18

.deb of Fuse emulator (zx-spectrum)

2009-04-07 Thread Paulo Silva
beyond that very limited zx-spectrum emulator still is Spectemu at Debian repository, it seems someone made .deb packages of Fuse zx-spectrum emulator, which seems to be a really complete emulator (emulates even those newer kit-based russian hardware, like Pentagon 1024, i think)

Bug#521862: Evolution startup crash

2009-03-31 Thread Paulo Silva
I had the same problem and solved it by downgrading the sqlite3 packages (libsqlite3-0 and sqlite3) that were upgraded today. -- Paulo Silva p...@eurotux.com Eurotux Informática, S.A. signature.asc Description: Esta é uma parte de mensagem assinada digitalmente

Bug#519112: pidgin: core dump whenever started as non-root

2009-03-31 Thread Paulo Silva
. This downgrade worked for me too. -- Paulo Silva p...@eurotux.com Eurotux Informática, S.A. signature.asc Description: Esta é uma parte de mensagem assinada digitalmente

[Evolution] Bug#521862: Evolution startup crash

2009-03-31 Thread Paulo Silva
I had the same problem and solved it by downgrading the sqlite3 packages (libsqlite3-0 and sqlite3) that were upgraded today. -- Paulo Silva p...@eurotux.com Eurotux Informática, S.A. signature.asc Description: Esta é uma parte de mensagem assinada digitalmente

Bug#521862: Evolution startup crash

2009-03-31 Thread Paulo Silva
I had the same problem and solved it by downgrading the sqlite3 packages (libsqlite3-0 and sqlite3) that were upgraded today. -- Paulo Silva p...@eurotux.com Eurotux Informática, S.A. signature.asc Description: Esta é uma parte de mensagem assinada digitalmente

Re: [pure:dyne] Software project ideas (First Post)

2009-03-23 Thread Paulo Silva
yes, there are lots of very promising open-source applications still lacking deeply on features - for example, just take a look at Jahshaka and Synfig, and compare them with AfterEffects and Flash editor, and you realize how needed of features they are... - and if you think some existing

Re: [pure:dyne] Software project ideas (First Post)

2009-03-23 Thread Paulo Silva
taking a look at some work done may have on you better ideas on what is missing on open-source tools - this example is a kind of work you can do on AfterEffects, and i think you still can't on Jahshaka: http://www.youtube.com/watch?v=6fucBh5FZGU On 3/23/09, Paulo Silva nitrofur...@gmail.com wrote

Re: [pure:dyne] Software project ideas (First Post)

2009-03-23 Thread Paulo Silva
-Windows API, but i really doubt on it, since i believe all can be simply replaced with GTK, wxWidgets, QT, or any other libraries available... i'm not that skilled to point what can be replaced with what, but i believe it is really possible! =) On 3/23/09, Paulo Silva nitrofur...@gmail.com wrote

Re: [pure:dyne] Software project ideas (First Post)

2009-03-23 Thread Paulo Silva
well, i had problems with sound output from ModPlugTracker on wine... - no sound at all... On 3/22/09, Karsten Gebbert k...@goto10.org wrote: Aymeric Mansoux said : Paulo Silva said : There are some ms-windows open-source tools very missing on Linux, such as ModPlugTracker and VirtualDub

Re: [pure:dyne] Software project ideas (First Post)

2009-03-23 Thread Paulo Silva
files (this feature i found only from VortexTracker, i think) On 3/23/09, Paulo Silva nitrofur...@gmail.com wrote: well, i had problems with sound output from ModPlugTracker on wine... - no sound at all... On 3/22/09, Karsten Gebbert k...@goto10.org wrote: Aymeric Mansoux said : Paulo Silva

Re: Main frozen for Alpha 6

2009-03-13 Thread Paulo Silva
i saw from slashdot twitter that files on ext4 are being missed? i confess i were expecting this happening, since ext4 is still too recent - maybe would be a good idea to release ext4 only on Karmic Koala? Defaultly, i'm not feeling too courageous, as user, on try ext4 that soon... On 3/10/09,

Re: [pure:dyne] installing on old hardware

2009-03-07 Thread Paulo Silva
having the same oppinion - i'm curious to see something from dyne:bolic can be compaired with PuppyLinux or DamnSmallLinux - like a light version of it, usink pekwm, jwm, lxde, etc. On 3/7/09, Antonios Galanopoulos an...@goto10.org wrote: hello, Pure:dyne reccomended hardware is at least PIII.

[shoebot-devel] Debian packaging

2009-02-17 Thread Paulo Silva
Hi Miriam, at http://tinkerhouse.net/shoebot/packages there seems to have a .deb available of Shoebot - please let us know if this .deb follows the Debian norm, and how hard would be maintaining it officially at Debian! thanks, =) Paulo -- Forwarded message -- From: ricardo

Re: Main frozen for Alpha 4

2009-02-10 Thread Paulo Silva
i'm mostly curious about the lacking webcam support on interpid (i think no one has webcam working on interpid - specially those gspca, the most known webcam format) - do jaunty has a solution for this problem? thanks and cheers, Paulo - On 2/3/09, Steve Langasek

Re: [shoebot-devel] Another typophile thread abot lettersoup

2009-02-09 Thread Paulo Silva
Dimitre Lima ( http://www.flickr.com/people/dimitre/ ) is an old contact i have from flickr! =) On 2/8/09, Dave Crossland d...@lab6.com wrote: http://typophile.com/node/54509 :-) ___ Shoebot-devel mailing list Shoebot-devel@lists.tinkerhouse.net

[shoebot-devel] shoebot identi.ca group created

2009-02-07 Thread Paulo Silva
http://identi.ca/group/shoebot ___ Shoebot-devel mailing list Shoebot-devel@lists.tinkerhouse.net http://lists.tinkerhouse.net/listinfo.cgi/shoebot-devel-tinkerhouse.net

Re: [shoebot-devel] E15:oGFx - another graphics program

2009-01-15 Thread Paulo Silva
well, before CLOG, Maeda's work were much more focused on Java (like his DBN, and what all became later to Proce55ing) - i'm affraid it uses Java instead of Python... On 1/16/09, Stuart Axon stua...@yahoo.com wrote: http://buza.mitplw.com/plw/ogfx.php While searching for info on nodebox

[shoebot-devel] Fwd: .po translation online templates from launchpad.net - received this...

2009-01-14 Thread Paulo Silva
forwarding in the case of bouncing back -- Forwarded message -- From: Jeroen Vermeulen j...@canonical.com Date: Wed, 14 Jan 2009 22:49:00 +0700 Subject: Re: [shoebot-devel] .po translation online templates from launchpad.net - received this... To: Paulo Silva nitrofur

Re: [shoebot-devel] Hello

2009-01-10 Thread Paulo Silva
i'm curious about it! please keep us informed of all experiments, ideas, feedback, etc. thanks! =) On 1/9/09, Pedro Ângelo pang...@virii-labs.org wrote: On Fri, 9 Jan 2009 21:56:48 + Paulo Silva nitrofur...@gmail.com wrote: is it about shoebot running from a server, which we post a code

Re: [shoebot-devel] shoebot mailing list on google groups

2009-01-09 Thread Paulo Silva
thanks to you all, and added rss as well! =) On 1/9/09, Pedro Ângelo pang...@virii-labs.org wrote: On Fri, 09 Jan 2009 15:15:06 + ricardo lafuente r...@sollec.org wrote: i admit i haven't checked, but i'm pretty convinced Google only hosts mailing lists, it doesn't mirror them. still,

Re: [shoebot-devel] sbot, cron and wallpapers

2009-01-09 Thread Paulo Silva
@lists.tinkerhouse.net Sent: Friday, January 9, 2009 8:32:11 PM Subject: Re: [shoebot-devel] sbot, cron and wallpapers On Sun, 14 Dec 2008 12:48:59 + Paulo Silva nitrofur...@gmail.com wrote: Hi! do someone could successfully use sbot with cron (or any gui-based tool like gnome-schedule

[shoebot-devel] shoebot mailing list on google groups

2009-01-04 Thread Paulo Silva
Hi! Do anyone have any idea of how to mirror shoebot mailing list in the google groups, and having the mailing list being postable from there? This would be for several reasons: 1- more visibility for Shoebot development 2- we can see rss feeds from google groups with readers like Liferea, etc. 3-

Re: [shoebot-devel] internationalization, and goodbye 2008

2009-01-04 Thread Paulo Silva
uploaded to https://translations.launchpad.net/shoebot it may be available in some hours (or days...), and would help on providing an easier translation contribution in more languages (depending on our contribution, of course...) On 1/1/09, architetto francesco fantoni hva - hermanitos verdes

Bug#494921: Fw: Re: jGaramond font license

2008-12-28 Thread Paulo Silva
an interesting webpage article about Garamond - http://barneycarroll.com/garamond.htm - which one is the more 'open'? Since there are lots of Garamond variations, would be there a place for an Open-Garamond? =) On 12/27/08, Paulo Silva nitrofur...@gmail.com wrote: Maybe replacing Garamond

Bug#494921: Fw: Re: jGaramond font license

2008-12-28 Thread Paulo Silva
an interesting webpage article about Garamond - http://barneycarroll.com/garamond.htm - which one is the more 'open'? Since there are lots of Garamond variations, would be there a place for an Open-Garamond? =) On 12/27/08, Paulo Silva nitrofur...@gmail.com wrote: Maybe replacing Garamond

Bug#494921: Fw: Re: jGaramond font license

2008-12-27 Thread Paulo Silva
Maybe replacing Garamond with Gentium would be the best choice, while there is not free alternate more close to Garamond Anyway, Claude Garamond died at year 1561 (http://en.wikipedia.org/wiki/Garamond), i can't doubt a free typeface based on his original drawings (if and when found) can be

Bug#494921: Fw: Re: jGaramond font license

2008-12-27 Thread Paulo Silva
Maybe replacing Garamond with Gentium would be the best choice, while there is not free alternate more close to Garamond Anyway, Claude Garamond died at year 1561 (http://en.wikipedia.org/wiki/Garamond), i can't doubt a free typeface based on his original drawings (if and when found) can be

Re: [shoebot-devel] Mouse working, mecurial not

2008-12-24 Thread Paulo Silva
i also had errors from mercurial, but only when trying to download into a long directory path (like in the 10th directory level with folders with around 20 characters each) - i had to use a temporary directory like '/mnt/sda4/shoebot/' just for it - maybe it causes the same when uploading, and btw

FBZX emulator now 100% GPL

2008-12-22 Thread Paulo Silva
being a Marat Fayzullin code, but now on 2.0 version, it were completelly replaced with one 100% GPL. http://www.rastersoft.com/fbzx.html Thanks you all people on all efforts and initiative on packaging it! =) Best regards, Paulo Silva -- To UNSUBSCRIBE, email to debian-wnpp-requ

Re: [shoebot-devel] fullscreen mode

2008-12-22 Thread Paulo Silva
great! =) i think it's a feature Nodebox hasn't anyway! =) On 12/22/08, architetto francesco fantoni hva - hermanitos verdes architetti france...@hermanitosverdes.org wrote: added fullscreen to sbot too, for use from commandline Il giorno lun, 22/12/2008 alle 14.19 +0100, architetto francesco

Re: [shoebot-devel] fullscreen mode

2008-12-22 Thread Paulo Silva
do the size values has something related to the command line below? xdpyinfo | grep -i dimension (i don't know how to do similar thing in python) On 12/22/08, architetto francesco fantoni hva - hermanitos verdes architetti france...@hermanitosverdes.org wrote: retrieving size seems to work, much

Re: [shoebot-devel] shoebot-ide - missing an About menu item?

2008-12-20 Thread Paulo Silva
+, Paulo Silva ha scritto: well, i have no idea how to display dialogs with python and gtk2 - would interesting maybe if we get borrow some simple about dialog from some other python/gtk2 app as well from google, i'm trying this: http://www.google.pt/search?q=python+gtk+about+dialog

Re: [shoebot-devel] shoebot-ide - missing an About menu item?

2008-12-20 Thread Paulo Silva
dlg = gtk.AboutDialog() brilliant! thanks! =) On 12/20/08, Paulo Silva nitrofur...@gmail.com wrote: awesome! - thanks a lot! i'm now downloading it for see what were done! thanks again! =) On 12/20/08, francesco fantoni france...@hermanitosverdes.org wrote: ok, i've made a standard gtk

Re: [shoebot-devel] Mouse events

2008-12-18 Thread Paulo Silva
first time i knew Shoebot were about to having it i think were when i shown Ricardo a sdlBasic example a bit like this one: http://www.youtube.com/watch?v=WzgVTMRncsI - would be possible having this on Shoebot? really? =) On 12/18/08, Dave Crossland d...@lab6.com wrote: Sweeet! :)

[shoebot-devel] on the installed Shoebot, where must be the lib (or libs) folder?

2008-12-18 Thread Paulo Silva
I'm having a doubt on where must be placed the lib (or libs) folder when we have Shoebot installed (by 'sudo setup.py install', or from .deb or tarballs) - must they be placed at '/usr/share/shoebot/' ? Thanks! =) ___ Shoebot-devel mailing list

Re: [shoebot-devel] Animation!

2008-12-18 Thread Paulo Silva
flash .ogg playerhttp://people.xiph.org/~arek/bzr/fogg.dev/as an example of how powerful HaXe is. Or should we just use flex-pypy http://code.google.com/p/flex-pypy/ ? On Tue, Dec 16, 2008 at 10:02 PM, Paulo Silva nitrofur...@gmail.com wrote: awesome! =) and the delicious surprise came

Re: [shoebot-devel] on the installed Shoebot, where must be the lib (or libs) folder?

2008-12-18 Thread Paulo Silva
should decide it and then change things in order to let shoebot find them. Actually i'm still a bit confused about paths in python... Il giorno gio, 18/12/2008 alle 14.24 +, Paulo Silva ha scritto: I'm having a doubt on where must be placed

Re: [shoebot-devel] standard out and standard error in a separate gtk window

2008-12-18 Thread Paulo Silva
it's great! =) btw, can we configure these colours if we want? would be awesome... - i'm affraid white over grey wouldn't be so readable on some displays, and white text on black background - at least for me - is a huge headache (for me even white drawings on black background most people used to

[shoebot-devel] pymetar and svg library (not working yet)

2008-12-17 Thread Paulo Silva
hi! =) here is the promissed (and not working yet) example with pymetar and svg library http://pastebin.com/f5deeeb1a the svg is still very incomplete - most regions missing index, larger territories not yet splitted into smaller regions, etc...

Re: [shoebot-devel] Animation!

2008-12-16 Thread Paulo Silva
animations with it (with each frame as keyframe), and Macromedia Flash crashes when you have more than 1000 keyframes with drawings in each... On 12/16/08, Dave Crossland d...@lab6.com wrote: 2008/12/16 Paulo Silva nitrofur...@gmail.com: using shoebot animation with swftools Or Gnash

Re: [shoebot-devel] HG repository format

2008-12-16 Thread Paulo Silva
know for me making a clone from it immediatelly as possible! =) Thanks, and if some problems of what i did appear, please let me know... Cheers, Paulo On 12/16/08, Paulo Silva nitrofur...@gmail.com wrote: Ricardo, http://freehg.org/u/nitrofurano/shoebot-ng/ i did a clone of your http

Re: [shoebot-devel] sbot, cron and wallpapers

2008-12-14 Thread Paulo Silva
on it! that script is all we need, with random values it should make for some really interesting desktop experiments, wow (: Paulo Silva wrote: Hi! do someone could successfully use sbot with cron (or any gui-based tool like gnome-schedule or whatever)? the command line used would be like

Re: [shoebot-devel] cam library? not yet

2008-12-14 Thread Paulo Silva
giorno sab, 13/12/2008 alle 21.24 +, Paulo Silva ha scritto: =O because two things: 1- it's very interesting using webcam on Shoebot, since i'm about to develop similar projects using webcam (Lafuente knows the code, since we talked about it a bit, a sdlBasic project regarding retrocoding

Re: [shoebot-devel] sbot, cron and wallpapers

2008-12-14 Thread Paulo Silva
'fortune' with text() inside a pretty composition? Paulo Silva wrote: i tried to do it on sdlBasic, unsuccessfully, in the same way it would be on shoebot as well - do someone is more experimented than us with cron? maybe Pedro Angelo? =) On 12/14/08, ricardo lafuente r...@sollec.org wrote: oh

Re: [shoebot-devel] found a Mercurial bug from our freehg Shoebot accounts

2008-12-14 Thread Paulo Silva
=) On 12/14/08, ricardo lafuente r...@sollec.org wrote: thanks for helping them fix it! :) Paulo Silva wrote: Maybe most of you remember weeks ago i had problems to download Shoebot stuff - specially from Fantoni and Lafuente - btw, it's a Mercurial bug about handling long directories (i

Re: [shoebot-devel] svg library, property added

2008-12-12 Thread Paulo Silva
(0,255),random(85,170),random(85,170)) drawpath(path.copy()) reset() On 12/12/08, Paulo Silva nitrofur...@gmail.com wrote: did it, and nothing yet... =( and thanks about the future fixes! =) svg = ximport(svg) size(500,500) #background(1,1,1) paths = svg.parse(open(svg/01b.svg).read

Re: [shoebot-devel] svg library, property added

2008-12-12 Thread Paulo Silva
)) drawpath(path.copy()) reset() Il giorno ven, 12/12/2008 alle 14.44 +, Paulo Silva ha scritto: did it, and nothing yet... =( and thanks about the future fixes! =) svg = ximport(svg) size(500,500) #background(1,1,1) paths = svg.parse(open(svg/01b.svg).read()) colormode(HSB

Re: [shoebot-devel] lib2geom

2008-12-12 Thread Paulo Silva
language to me ... Il giorno sab, 13/12/2008 alle 00.52 +, Paulo Silva ha scritto: =| sorry not being that skilled to help, and since i were curious to see it working (and using it, of course...) as well... =( On 12/13/08, architetto francesco fantoni hva - hermanitos verdes architetti

Re: [lwip-users] PPP, GPRS connection problem: Solved

2008-12-11 Thread Paulo Silva(OpenSoftware)
Kieran Mansley escreveu: On Wed, 2008-12-10 at 14:48 -0200, Paulo Silva(OpenSoftware) wrote: The changes are: In file ../lwip/src/include/lwip/opt.h do changes: PPP_SUPPORT as follow: /** * PPP_SUPPORT==1: Enable PPP. */ #ifndef PPP_SUPPORT #define PPP_SUPPORT 1

Re: [lwip-users] PPP, GPRS connection problem: Solved

2008-12-11 Thread Paulo Silva(OpenSoftware)
yueyue papa escreveu: I do not known how the problem is solved. Only changed for configeration file? Yes. But don't forget that we used the program from Peter Fodor, and with his code, the only problem was that no PAP was been sent, so when we set the PAP_SUPPORT, the code works, without

Re: [shoebot-devel] Hello

2008-12-11 Thread Paulo Silva
be welcome! =) Btw, about scribus plugin, the most i could do would patch one for providing results more closer to a MacOS-Classic tool named KeyTypeBook, for printing typeface catalogs (one typeface per page) - useful script for graphic designers... Btw, i'm curious about Emacs, since i know

Re: [shoebot-devel] sbot and repeat option

2008-12-11 Thread Paulo Silva
. ciao, francesco Il giorno gio, 11/12/2008 alle 09.52 +, Paulo Silva ha scritto: great! =) please show us some sample! =) -- architetto Francesco Fantoni HVA - Hermanitos Verdes Architetti l.go san giacomo, 38 I-41100 modena (italia) tel. fax. +39.059.217554 skype: hva_studio

Re: [shoebot-devel] sbot and repeat option

2008-12-11 Thread Paulo Silva
outputPath data, make sure you choose force repeat commands, otherwise the parser may fail. Il giorno gio, 11/12/2008 alle 19.30 +, Paulo Silva ha scritto: Thanks! =) - I really liked a lot that 'questo biglietto è una copia unica, generata automaticamente grazie a Shoebot' =) Besides

Re: [shoebot-devel] sbot and repeat option

2008-12-11 Thread Paulo Silva
/2008 alle 20.14 +, Paulo Silva ha scritto: i found no SvgOutput from Menu:File/InkscapePreferences... which Inkscape is yours? mine one is '0.46, built Oct 24 2008' - do this 'fixes' that 'transform' issue from Inkscape? pressuposed, on the svg library, i can get independent shapes (from

Re: [lwip-users] PPP, GPRS connection problem: Solved

2008-12-10 Thread Paulo Silva(OpenSoftware)
Alain M. escreveu: Hi Peter Fodor, we made your PPP example work :) :) :) It is just one config line that is missing. Paulo Silva will send it soon, he is the one that did all the testing... Kieran: would you consider including this example in contrib? if we can get Peter's permission

<    1   2   3   4   5   6   >