Advertisement
Nickname
achilleas
Registered since:
February 2, 2005
Short bio:
 
Home page:
 
Total posts:
674

Forum posts by Achilleas Margaritis:

45 pages [ Previous 1 ... 30 31 32 33 34 35 36 37 38 39 40 Next ]
Posted in Weblogs Forum, Sep 9, 2006, 2:16 AM
Chris,Computer science is not only about mathematics, it is also about solving practical problems...in that context, a mathematical definition of a computer term is highly reduntant when the context dictates a practical approach.
Posted in Articles Forum, Sep 7, 2006, 3:14 AM
I never had any aha moments...C++ was always a struggle for me...an endless chase of pointers, analysis of crashes, and things like that!
Posted in Java Community News, Sep 4, 2006, 4:07 AM
> Is it a great problem in your actual practical> experience?> > 'cause in mine, it isn't. I have had very occasional> problems with tasks created from pipes etc breaking down> with OS and software updates because there wasn't a> defined API to work with. This is a very very small part> of my day to day issues, though, and a much greater>...
Posted in Java Community News, Aug 30, 2006, 9:21 PM
> To accomplish multiple concurrent tasks, Java> developers would use threads, not independent processes.> Arkin believes that these approaches result in different> scalability characteristics of an application:> > > Multi-threaded developers tend to scale through> objects, libraries and frameworks. When you focus on the> components around you,...
Posted in Articles Forum, Aug 30, 2006, 9:13 PM
What is the point of all these 'most important' articles?
Posted in Articles Forum, Aug 28, 2006, 8:41 PM
> We have leveraged great productive> use out of the nuts and bolts features of boost: CRC,> regular expressions, date/time, shared_ptr, and function> to name a few.Which Qt contains, along with gui, database, xml, filesystem, drawing, memory management, threads, I/O, sockets, html, etc.
Posted in Weblogs Forum, Aug 27, 2006, 11:31 PM
> For instance, I'm tempted to use a garbage collecter every> so often, but I know that garbage collectors have> drawbacks (mainly, you can't guarantee when an object will> be collected, so you generally can't guarantee when the> finalizer will be run, so you can't use the finalizer to> run code that needs to be run at a specific point in>...
Posted in Articles Forum, Aug 24, 2006, 9:35 PM
> I agree, Qt is wonderful. And two years ago I might have> agreed with you about Boost. But shared_ptr, function,> and bind (and other Boost goodies) are opening up a new> world.I disagree. Plenty of well-designed robust functionality is more important than elegant software tricks; Java is preferred for its rich API, above all.In other words,...
Posted in Articles Forum, Aug 23, 2006, 10:45 PM
> I don't agree with that at all. In a desktop application> you're not supposed to be able to access any intermediate> step (page / url) directly. You don't bookmark them and> you certainly don't pass the locations around.Choosing a specific page to view is no different than choosing a specific window from a list (as a concept, not as an...
Posted in Weblogs Forum, Aug 23, 2006, 10:33 PM
Personally, I don't use all the new features of Java. I am against feature creep. But every little thing helps, and if programming becomes easier with closures, then why not?
Posted in Java Community News, Aug 23, 2006, 10:30 PM
Very true...unfortunately. At least some coders get paid well.
Posted in Articles Forum, Aug 23, 2006, 10:29 PM
I wouldn't put boost in there. Boost is a good library, but I really doubt it is that important, considering that the functionality it provides is not what most projects require. I would put Qt in there, which is by far the best programming toolkit.
Posted in Articles Forum, Aug 20, 2006, 10:09 PM
> I think this very dependent on the application that you're> developing, the intended users and the preferences of the> developers.Indeed, but most apps have some common ground, especially apps with a user interface (i.e. most apps today).> > I for one don't look at web applications as just another> GUI client with the same event model as...
Posted in Weblogs Forum, Aug 17, 2006, 10:45 PM
> Could you write the contracts for these functions? I'd> like to prove that the recursion will stop if you don't> have circular lists/trees.First approach:int count_leaves(l) { ensure(l does not belong in set of values referenced by l); if (l == null) return 0; if (l is not a list) return 1; return count_leaves(l) + count_leaves(next(l)); }...
Posted in Articles Forum, Aug 17, 2006, 10:00 PM
I forgot to add my opinion about continuations: I do not see how they are necessary, in the context of an event-driven GUI (again, like Echo2). Maybe they are necessary when the user has the choice to make a mess of the application using the browser controls...
45 pages [ Previous 1 ... 30 31 32 33 34 35 36 37 38 39 40 Next ]
Advertisement