The result of a calculation before this calculation actually finished. Used in concurrent programming. Questions about future events are off-topic on Stack Overflow.
191
votes
78answers
9k views
Old Developers - any future? [closed]
I'm 44 now and I just love code!
And software and programming. And MSDN, and Communication of the ACM and Programmez (French magazine) and Stack Overflow and McConnell, Cwalina/Abrams, J. Skeet and ...
81
votes
13answers
12k views
C++ versus D
Is the D language a credible alternative to Java and C++? What will it take to become a credible alternative? Should I bother learning it? Does it deserve evangelizing?
The main reason I ask is that ...
39
votes
8answers
4k views
The Next-gen Databases
I'm learning traditional Relational Databases (with PostgreSQL) and doing some research I've come across some new types of databases. CouchDB, Drizzle, and Scalaris to name a few, what is going to be ...
36
votes
29answers
2k views
What optimizations today are going to be useless tomorrow? [closed]
I hope we all know by now that Premature optimization is the root of all evil.
One side of that quote means by optimizing you are increasing complexity and complexity is evil. The other less known ...
31
votes
42answers
2k views
If Desktop Computers were 1024 times faster what kind of software would we be writing? [closed]
Continuing along current trends we can expect our algorithms to run many times faster on Desktop Computers in 10 years (let's pick a number) 1024x faster.
Do you know of any algorithms that are ...
29
votes
4answers
607 views
Improving the JVM for Scala [closed]
What changes to the JVM would most benefit the Scala compiler and runtime?
The dynamic languages will benefit greatly in performance from the introduction of the InvokeDynamic byte code scheduled to ...
23
votes
6answers
1k views
I have been trying to wrap my head around the PyPy project. So, fast-foward 5-10 years in the future what will PyPy have to offer over CPython, Jython, and IronPython?
From what I have seen and read on the blogs PyPy is a very ambitious project. What are some advantages it will bring to the table over its siblings (CPython, Jython, and IronPython)? Is it speed, ...
23
votes
30answers
2k views
Will computers ever be too fast?
The PC I use today is a million times faster than the one I started programming on when I was in college. And yet it always seems - I am always waiting for something to get done...
Back then it ...
21
votes
10answers
1k views
Are design patterns really language weaknesses?
Should today's patterns be seen as defects or missing features in Java and C++?
Subroutine was a design pattern for machine language in the 50s and 60s.
Object-Oriented Class was a design pattern ...
19
votes
5answers
2k views
Clojure mutable storage types
I'm attempting to learn Clojure from the API and documentation available on the site. I'm a bit unclear about mutable storage in Clojure and I want to make sure my understanding is correct. Please let ...
18
votes
4answers
2k views
Client-side javascript to support promises, futures, etc
I'm really interested in implementing Promises and related features in client-side Javascript. From what I've seen, the focus in implementing these technologies in Javascript seems to be on ...
17
votes
3answers
2k views
Who is using Fortress programming language?
Fortress is developed by Sun.
Fortress is a new programming language
designed for high-performance
computing (HPC) with high
programmability. Fortress features
include:
Implicit ...
16
votes
26answers
5k views
Will Delphi be there in future? [closed]
Yes, there is a version 2009. I know Delphi has a big community since years (10 plus)and I believe you could create native windows exe before Visual Basic got to speed (with all its dll's nighmare). ...
16
votes
18answers
3k views
Is Perl worth it? [closed]
My boss has decided to use Perl as our (preferably) single, main development language.
For me, it just doesn't seem right. I'm asking on your opinion about it, as my feelings might be influenced by ...
15
votes
23answers
2k views
What would it take for people to move away from C++?
Even most people who like C++ admit that it has tons of warts not related to its niche as a systems/performance programming language. These include its antiquated module management system (header ...
12
votes
2answers
444 views
What are the differences between Deferred, Promise and Future?
What are the differences between Deferreds, Promises and Futures? Is there a generally approved theory behind all these three?
11
votes
2answers
712 views
How do Clojure futures and promises differ?
Both futures and promises block until they have calculated their values, so what is the difference between them?
11
votes
2answers
306 views
How are the interfaces going to be replaced/augmented by the closures in Java?
Java 7 will have closures ( finally ), and I wonder how the existing code using single method classes/interfaces ( like Runnable, Comparator, etc ) will be used now.
Would that code be replaced? ...
11
votes
7answers
629 views
10
votes
3answers
322 views
The strange case of multiple Futures in Scala
What's the the connection between those Future-related class and traits in Scala, and why are they sprinkled over different packages?
I have found those:
abstract class scala.actors.Future
object ...
9
votes
8answers
380 views
How can future programming languages better facilitate abstraction?
One of the key properties to designing comprehensible software (and, indeed, designing anything at all) is to develop a good set of abstractions. These days, those abstractions include things like ...
9
votes
4answers
2k views
Will JSON replace XML as a data format?
When I first saw XML, I thought it was basically a representation of trees. Then I thought: the important thing isn't that it's a particularly good representation of trees, but that it is one that ...
9
votes
7answers
597 views
UI Databinding: alternatives and future
UI Databinding aka transfer of information/data from the biz-layer/datamodel of an application to the UI and from the UI back to the datamodel, seams to be ignored a little by language and framework ...
8
votes
13answers
727 views
What is the most future proof programming environment today? [closed]
I'm often thinking of start writing an application in my spare time. The one thing that holds me back is the fear of having to abandon the project after 5 years because maintenance becomes unfeasible ...
7
votes
2answers
478 views
Why aren't my scala futures more efficient?
I'm running this scala code on a 32-bit quad-core Core2 system:
def job(i:Int,s:Int):Long = {
val r=(i to 500000000 by s).map(_.toLong).foldLeft(0L)(_+_)
println("Job "+i+" done")
r
}
import ...
7
votes
3answers
450 views
Futures in Haskell
Does Haskell have an equivalent of Alice's ability to bind a variable to a future?
val a = spawn foo;
where foo is some function.
I know Haskell supports channels and threads; I'm hoping for ...
7
votes
2answers
300 views
Understanding future/threading
I am trying useing futures for the first time. It seems smart that you can cancel a job but it is not working as expected. In the example below only the first job is cancelled. The rest are completed. ...
7
votes
3answers
501 views
What's the next big thing after LINQ? [closed]
I started using LINQ (Language Integrated Query) when it was still in beta, more specifically Microsoft .NET LINQ Preview (May 2006). Almost 4 years have passed and here we are using LINQ in a lot of ...
7
votes
21answers
1k views
What programming technique / practice done by you was ahead of its time? [closed]
I once built a very good web application in ASP (classic) back in 2001 and extensively used XmlHttpRequest object in it. (I was lucky that the clients were only using IE, and only IE supported this ...
6
votes
1answer
395 views
React for futures
I am trying to use a divide-and-conquer (aka fork/join) approach for a number crunching problem. Here is the code:
import scala.actors.Futures.future
private def compute( input: Input ):Result = {
...
6
votes
1answer
233 views
What happens when a Scala “Future” is garbage collected?
Say I have a Stream that's rather expensive to compute. I can easily create a thread that "computes ahead" just by writing something like
import scala.actors.Futures._
val s = future { stream.size }
...
5
votes
1answer
146 views
Concurrency - interrupting a Future without cancelling it
Is there any way to interrupt a Future without cancelling it?
java doc API:
boolean cancel (boolean mayInterruptIfRunning)
Attempts to cancel execution of this task. This attempt will fail if ...
5
votes
2answers
171 views
C++, Linux: error: conversion from ‘boost::unique_future<void>’ to non-scalar type ‘boost::shared_future<void>’ requested. how to get around it?
I try to work with boost thread futures. So as shown here we can get shared future from packaged task.
So I try such function on linux:
template <class task_return_t>
void pool_item( ...
5
votes
2answers
192 views
Pass multiple parameters to concurrent.futures.Executor.map?
The concurrent.futures.Executor.map takes a variable number of iterables from which the function given is called. How should I call it if I have a generator that produces tuples that are normally ...
5
votes
4answers
305 views
Out-of-order returns from Java Futures
The only model that I can come up with for running multiple similar processes (SIMD) using
Java Futures (java.util.concurrent.Future<T>) is as follows:
class Job extends Callable<T> {
...
5
votes
2answers
692 views
Does a wait on Scala Future block thread?
When I wait for result of Scala Future, does it behave more like receive, or like react, i.e. does it block a thread, or schedules a continuation after result if available?
5
votes
1answer
227 views
program hangs when using multiple futures with multiple remote actors
I start two remote actors on one host which just echo whatever is sent to them. I then create another actor which sends some number of messages (using !! ) to both actors and keep a List of Future ...
5
votes
10answers
855 views
What could be the next evolution after OOP?
Today we can look back on the evolution of computer science and see structural programming, functional programming, and finally object-oriented programming. Additionally, things like meta-programming ...
5
votes
16answers
884 views
Is Mac experience important for a future developer?
I would like to know if this is really helpful to have experience with Macs on the job market for developers with B.Sc.. I have been using Windows and Linux since the start of undergrads and I'm ...
5
votes
2answers
221 views
Proposing Glassfish to customers
With Sun being taken over by Oracle, Oracle will arguably gain control of Glassfish.
I do understand that Glassfish is community driven but most of the contributions do come out of Sun at this time.
...
5
votes
13answers
834 views
Where is Java going?
I'm an experienced Java programmer that for the last two years have
programmed for necessity in C# and Javascript. Now with this two languages
I have used some interesting features like closures and ...
5
votes
13answers
609 views
What's going to replace HTML & CSS & JS? [closed]
HTML and CSS are showing their age.
SASS generates CSS (because CSS isn't clean enough). Graphic Designers don't work in HTML, they work in graphics tools then have to translate it to HTML/CSS. ...
4
votes
2answers
129 views
Is Async await keyword equivalent to a ContinueWith lambda
Could someone please be kind enough to confirm if I have understood the Async await keyword correctly? (Using version 3 of the CTP)
Thus far I have worked out that inserting the await keyword prior ...
4
votes
2answers
96 views
How can I retrieve the first-completed Actor in a group of Actors in Scala?
I have a moderate number of long-running Actors and I wish to write a synchronous function that returns the first one of these that completes. I can do it with a spin-wait on futures (e.g.,:
while ...
4
votes
5answers
198 views
GPGPU: Still Bleeding Edge? [closed]
Is GPGPU ready for production and prototyping use, or would you still consider it mostly a research/bleeding edge technology? I work in the computational biology field and it's starting to attract ...
4
votes
2answers
290 views
Use case for Future.cancel(false)?
In what situation would one want to pass false for the mayInterruptIfRunning parameter to Future.cancel()?
If I understand correctly, if you pass false and the task is cancelled but the thread is not ...
4
votes
3answers
121 views
Future of community projects in .Net
I've been lately thinking about future of open source community projects in .Net.
What raises this problem is actually Microsoft devouring all those projects and replacing them with its own ones. ...
4
votes
3answers
639 views
WPF, Xaml and the future of MS Development
I am beginning to heavily invest in WPF and was wondering what those more knowledgeable than myself thought as to the wisdom of this decision. Is WPF the way forward?
4
votes
3answers
4k views
Multithreaded search operation
I have a method that takes an array of queries, and I need to run them against different search engine Web API's, such as Google's or Yahoo's. In order to parallelize the process, a thread is spawned ...
4
votes
9answers
2k views
The future of web-development (RIA vs. traditional HTML)
How do you see the future of the web development? will HTML, CSS and Ajax continue to lead the web-development or do you see a shift towards Rich Internet Applications (flex, silverlight & ...