Tagged Questions
The future-proof tag has no wiki summary.
26
votes
4answers
932 views
Is bitcoin protocol future-proof?
Bitcoin makes an intensive use of cryptography to do everything: coin mining, authenticating transactions, etc.
I wonder if it is built future-proof, i.e. which will allow stronger algorithms to be ...
15
votes
4answers
257 views
Design tips for a program to be run in 25 years [closed]
If creating an application (that does mostly data processing) that needs to be run now and maybe (maybe not) 10 or 25 years later, what design tips are out there for such applications?
The general ...
10
votes
2answers
5k views
boost::lock_guard vs boost::mutex::scoped_lock
Which is preferred boost::lock_guard or boost::mutex::scoped_lock?
I'm using Boost.Thread with the hope to move to C++0x threading when it becomes available.
Is scoped_lock part of the next c++ ...
5
votes
3answers
75 views
Extension Methods forward compatible
With extension methods we can easily add methods to any type. Obviously this opens the possibility in a future version of .net the extension method could no longer get called (for example the type now ...
5
votes
4answers
235 views
Perl Script Portability and Future Proofing
Due to pressure from outside our group, we have to port over one hundred Perl scripts from Sparc to x86. This means changing dozens of shebang lines from #!/home/Perl/bin/perl -w to something else, ...
4
votes
2answers
298 views
(unicode error) 'unicodeescape' codec can't decode bytes - string with '\u'
Writing my code for Python 2.6, but with Python 3 in mind, I thought it was a good idea to put
from __future__ import unicode_literals
at the top of some modules. In other words, I am asking for ...
4
votes
6answers
118 views
What are some options for future proofing your application?
I am looking at minimizing the future impact on a yet to be written application. I am trying to avoid any 3rd party products, and even avoid operating system specific calls. Can anybody suggest other ...
3
votes
3answers
90 views
Future proofing client-server code?
We have a web based client-server product. The client is expected to be used in the upwards of 1M users (a famous company is going to use it).
Our server is set up in the cloud. One of the major ...
2
votes
1answer
92 views
Why is using JavaScript to plan Q1 year 22034 unreliable in Safari?
There is something fishy about the calculation of far future dates when done on the browser side (Safari 5.0.1), passing strings into the Date() constructor:
I narrowed it down to the February-March ...
2
votes
9answers
775 views
If WPF died, would anybody notice? [closed]
I just came across Tim Anderson's latest blog entry about MS' future regarding HTML5, Silverlight, WPF, and wonder, where is this all going.
My personal experience is that I have never seen a WPF ...
2
votes
5answers
264 views
Strategy for coping with database identity/autonumber maxing out
Autonumber fields (e.g. "identity" in SQL Server) are a common method for providing a unique key for a database table. However, given that they are quite common, at some point in the future we'll be ...
1
vote
4answers
36 views
Are there any javascript libraries that don't require updating when new browser versions come out?
In my work I use dojo, and the experience I've had is that when a major browser upgrade occurs, some parts of the old version of dojo will break. In order to keep the web app working in the latest ...
1
vote
2answers
85 views
Recommend a future-proof cross-platform server platform, scalable up and down
An application dealing with CPU-intensive text processing needs to run on several server platforms (as many as possible, but Windows and Linux only is good enough), and if possible mobile platforms as ...
1
vote
8answers
104 views
How to program an application with unknown future modifications and features?
Background
I'm not new to programming, however I am when it comes to handling clients and their needs. Here's my history with my current client: I inherited a PHP application with it being 2/3 ...
1
vote
1answer
61 views
Infrastructure: models as an external to an application to avoid stored procedures
My thoughts:
I absolutely despise stored procedures for various reasons: cost, scalability, and compatibility.
Cost: I can get 2-3 good light weight web application servers for the cost of one ...
0
votes
3answers
77 views
Is Array.toString() guaranteed to remain as is in ActionScript 3?
Is it fine to display the output of Array.toString() to the user, or is there a possibility that the string format could change in future versions of ActionScript 3 or other compilers?
0
votes
1answer
30 views
Add an attribute or create a new level in the XML heirachy?
I am currently working on an XML document that was written for an XML heirachy with only 2 levels. Right now, I want to add a one-to-many categorization to it that would break most of the code that ...
0
votes
2answers
84 views
When to sacrifice backwards compatibility?
Basically I am wondering about having this behavior in an app where the newer versions require the content created with the older version to be (automatically) converted to the newer version format, ...
0
votes
3answers
60 views
usage of ajax in a product
Say I've been tasked to architect a product that will have a browser-based front end.
The sales team wants a snazzy app. The product management team want to make the product cost effective (right ...
0
votes
3answers
53 views
how can I future-proof migration of a ADO.net local data layer to a future web based interface (web-service or REST)?
BACKGROUND: I am working on a .NET WinForms application now (C#) with an ADO.net database for the data layer.
QUESTION: How an I develop this now such that it would be easy to migrate to a model ...
-1
votes
1answer
49 views
What signs can help predict the future proofness of a technology?
When starting a new software project, the choice of platform, programming language, framework and libraries is crucial, because nobody wants to be forced to re-implement the application after a few ...