[Vala] simple echo client server example

2009-09-01 Thread Reid Thompson
Could someone point me to, or post, a simple tcp echo client server example using the current vala bindings? thanks, reid ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] simple echo client server example

2009-09-04 Thread Reid Thompson
On Fri, 2009-09-04 at 04:02 +0500, Ildar Mulyukov wrote: On 01.09.2009 18:55:00, Reid Thompson wrote: Could someone point me to, or post, a simple tcp echo client server example using the current vala bindings? http://live.gnome.org/Vala/GIONetworkingSample That's great! Thank you very

Re: [Vala] simple echo client server example

2009-09-09 Thread Reid Thompson
On Tue, 2009-09-01 at 09:55 -0400, Reid Thompson wrote: Could someone point me to, or post, a simple tcp echo client server example using the current vala bindings? thanks, reid Could someone help me understand what I'm missing in trying to get a simple socket server running? Thanks, reid

Re: [Vala] simple echo client server example

2009-09-10 Thread Reid Thompson
On Thu, 2009-09-10 at 08:35 +0200, Frederik wrote: Reid Thompson wrote: Could someone help me understand what I'm missing in trying to get a simple socket server running? Hi, both of your code examples work very well. What problems did you encounter? Best regards, Frederik

[Vala] Anyone know of a vala postgresql hello world example?

2009-10-01 Thread Reid Thompson
Thanks, reid ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] Anyone know of a vala postgresql hello world example?

2009-10-02 Thread Reid Thompson
On Fri, 2009-10-02 at 11:12 +0300, jp0...@jippii.fi wrote: -X -lpq Thank you -- my first error = not having the above in my compilation command. Plus a not very good understanding yet of implying/understanding how to use the information in the vapi files. reid

Re: [Vala] Icon for Vala

2009-10-07 Thread Reid Thompson
On Tue, 2009-10-06 at 19:10 +0200, Philip Van Hoof wrote: Sorry but, I associate Vala with what I think Jürg associates it with. Although he defends that this ain't true, I still think it is this: http://www.hollywoodjesus.com/images/games/ValaTealc.jpg Some more footage:

Re: [Vala] Libxml2 being nicer?

2009-11-11 Thread Reid Thompson
On Tue, 2009-11-10 at 23:54 -0800, Joseph Montanez wrote: I am a php / c++ developer and trying my hand at vala. I am trying to get html parsed but libxml is very strict on reading it and failing to initialize my document. Is there a way to have libxml let up on on the parsing errors and just

Re: [Vala] Fwd: Vala - generates code at runtime

2010-02-10 Thread Reid Thompson
On Thu, 2010-02-11 at 01:22 +1100, Fredderic Unpenstein wrote: On 10 February 2010 09:29, jideel jid...@free.fr wrote: Thanks for your response. You're probably right, perhaps it's not the right tool. Sounds to me like you might be able to get away with just a few key functions in a

[Vala] example request

2010-02-23 Thread Reid Thompson
Would someone be willing to post a glade-3 gtkbuilder based copy of the Toolbar, Scrollable Text View and File Chooser example found at http://live.gnome.org/Vala/GTKSample ? I can't seem to grasp it -- I can't seem to get the buffer text into the textview. Thanks, reid

Re: [Vala] example request

2010-02-25 Thread Reid Thompson
On Tue, 2010-02-23 at 23:56 +0100, Frederik wrote: see attachment, Thank you. I may have some follow on questions. I use scratchpad as a 'scratchpad' constantly, unfortunately it doesn't compile with the latest versions of vala. And it's a bit complex for me to try to work out the compile

Re: [Vala] Gentoo overlay

2011-01-26 Thread Reid Thompson
On Wed, 2011-01-26 at 16:56 +0300, Gavrilov Maksim wrote: Hi all, Good news for Gentoo users! My Vala overlay was added to layman's official overlay list, so you can easily add it to get latest Vala and Dova ebuilds. More information at http://code.google.com/p/gentoo-vala/ You can

Re: [Vala] [Geani] Is Dead?

2011-05-23 Thread Reid Thompson
On 05/23/2011 12:32 PM, craf wrote: About Vala I found lots of information, but I found Geanie only fragments of it. http://live.gnome.org/Genie (Code only to learn the basics, using console). http://jamiemcc.livejournal.com/11749.html(The blog's creator, not updated since 2008)

Re: [Vala] Gee LinkedList Problem : Memory allocation fails when list size 1000000

2011-06-14 Thread Reid Thompson
On 06/14/2011 02:30 AM, Serge Hulne wrote: Example: NB : The example hereunder works perfectly with a number of elements= 100,000 but crashes if one when the number of elements to insert in the List is= 1000,000 . var L = new LinkedListpair?( (EqualFunc) equals); // Insert in

Re: [Vala] Gee LinkedList Problem : Memory allocation fails when list size 1000000

2011-06-14 Thread Reid Thompson
On 06/14/2011 09:17 AM, Serge Hulne wrote: No : my Mac Mini has 2GB of RAM, 1.5 of which are currently free. My guess is that the code of linkedlist.c (from libgee) is not (yet) entirely portable between Linux and Mac. Perhaps int should be changed by uint or long in the code of linkedlist.c

Re: [Vala] [ANNOUNCE] New software in Gentoo overlay

2011-06-20 Thread Reid Thompson
On 06/18/2011 05:59 PM, Gavrilov Maksim wrote: I'm proud to present list of new software included in Gentoo overlay since last announce in January: * Valencia * Gtkaml * VTG * Val(a)IDE * Xnoise xnoise does not appear to be part of the overlay?

Re: [Vala] Iterating over enums

2011-09-30 Thread Reid Thompson
On Fri, 2011-09-30 at 11:45 +0200, tomw wrote: Hi, I'm trying to get enum values based upon a match to their string representation. To do that, I would need to iterate over the enums. I was wondering whether there is a simple way of doing it without creating an array first? Thanks,

Re: [Vala] Date format

2011-10-25 Thread Reid Thompson
On Mon, 2011-10-24 at 22:33 +0200, rastersoft wrote: How can I get the current date format to be able to print it in the right order? Apologies if this is a duplicate -- from my end it looks like my initial response may have failed to send. slightly modified from

Re: [Vala] Date format

2011-10-25 Thread Reid Thompson
2005, and check the output: if there's a 3 as the first number, then the order is month/day/year; if not, it's day/month/year. Unfortunately, that's an extremely ugly hack. So I want to know if is there a straightforward way of doing this. Thanks. El 25/10/11 15:35, Reid Thompson escribió

Re: [Vala] Date format

2011-10-25 Thread Reid Thompson
a 3 as the first number, then the order is month/day/year; if not, it's day/month/year. Unfortunately, that's an extremely ugly hack. So I want to know if is there a straightforward way of doing this. Thanks. El 25/10/11 15:35, Reid Thompson escribió: On Mon, 2011-10-24 at 22:33 +0200

Re: [Vala] OFF - choose a database.

2011-12-27 Thread Reid Thompson
On 12/27/2011 10:50 AM, Brian Duffy wrote: Does it require much concurrent db access while accessing over the network? I like sqlite for local db storage. It could be a good choice on the server as well if you are not planning on servicing multiple concurrent connections. Probably, I would use

Re: [Vala] howto invoke an external process

2012-02-17 Thread Reid Thompson
On Fri, 2012-02-17 at 12:43 -0500, D.H. Bahr wrote: Hello everyone, this is my first email to the list. I've been looking at Vala for a while now, and I like all I see. I just a have a question right now: Is it possible to spawn an external process from Vala code in a manner similar to

Re: [Vala] X11 and pointers help

2012-02-25 Thread Reid Thompson
On Fri, 2012-01-13 at 17:20 +, Andrew Higginson wrote: void* list; uint* list; https://mail.gnome.org/archives/commits-list/2011-July/msg10793.html ___ vala-list mailing list vala-list@gnome.org

Re: [Vala] Is there any way to deserialize something into object in vala?

2012-05-31 Thread Reid Thompson
On Thu, 2012-03-22 at 09:15 +0100, mar...@saepia.net wrote: I need to create a sort of abstraction layer between the database and my vala app. It would be great if it was possible to interate over my class properties, read they type etc. and dynamically map fields from the DB to the

[Vala] are there any bindings to / example with gnupg / gpg?

2013-10-10 Thread Reid Thompson
___ vala-list mailing list vala-list@gnome.org https://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] Reading last n lines from file

2015-10-28 Thread Reid Thompson
On Wed, 2015-10-07 at 10:16 -0400, Serge Hooge wrote: > Hello, folks. > > I am currently writing a small program with Vala/ncurses and I have > suddenly found the need to read last n lines of a constantly changing > file for display in an ncurses window. > > What would be the easiest way to go

Re: [Vala] Using databases with Vala

2018-03-12 Thread Reid Thompson
On Thu, 2018-03-08 at 21:03 -0500, Steven Oliver wrote: > [EXTERNAL SOURCE] > > > > I want to begin working an application that would have a database, > specifically SQLite, as a back-end. I know that at some point sqlheavy >

Re: [Vala] Using databases with Vala

2018-03-12 Thread Reid Thompson
On Thu, 2018-03-08 at 21:03 -0500, Steven Oliver wrote: > [EXTERNAL SOURCE] > > > > I want to begin working an application that would have a database, > specifically SQLite, as a back-end. I know that at some point sqlheavy >