1
vote
3answers
105 views
String formatting expressions (Python)
String formatting expressions:
'This is %d %s example!' % (1, 'nice')
String formatting method calls:
'This is {0} {1} example!'.format(1, 'nice')
I personally prefer the met …
8
votes
8answers
334 views
Are “<i>” and “<b>” tags actually deprecated?
I've read that <i> and <b> tags are advised against in favor of <strong> and <em> respectively. However I'm curious though, are these tags actually depreca …
0
votes
6answers
71 views
deprecated function’s usage
Why are certain functions in PHP (such as eregi) deprecated? I normally use eregi for email validation.
Should I use it, or is there another function that can be used in its place …
13
votes
2answers
644 views
Best practice to mark deprecated code in Ruby?
I'd like to mark a method as deprecated, so the people using it can easily check their code and catch up. In Java you set @Deprecated and everybody knows what this means.
So is th …
8
votes
1answer
121 views
How can I mark Perl code as deprecated?
In my project I'm currently preparing a step-by-step move from legacy code to new, properly-designed and tested modules. Since not every fellow programmer follows closely what I do …
54
votes
33answers
3k views
What Linux/Unix commands are outdated and have powerful alternatives?
Today I discovered you can make less act like tail -f.
less filename, then press Shift-F to start follow mode.
Just like tail, but you have all the added features of less - like …
4
votes
8answers
267 views
Will the <b> and <i> tags ever become deprecated?
(This is more of a curiousity question than any pending disaster :D )
So the <b> and <i> tags have been around since near the beginning of the web (I assume). But now …
1
vote
2answers
50 views
When, if ever, would you expect classes marked as obsolete to be removed from the .NET framework?
As we approach the 4th major release of the .NET framework we are likely to see an increase in the number of classes and methods marked as obsolete (to indicate they are deprecated …
1
vote
2answers
40 views
Python Deprecation Warnings with Monostate __new__ — Can someone explain why?
Hi all,
I have a basic Monostate with Python 2.6.
class Borg(object):
__shared_state = {}
def __new__(cls, *args, **kwargs):
self = object.__new__(cls, *args, **k …
15
votes
4answers
368 views
How can I make my Ruby on Rails 2.3.4 application “Rails 3-ready”
I'm developing an application with Ruby on Rails that I want to maintain for at least a few years, so I'm concerned about the next version coming up soon.
Going from Rails 1 to Ra …
0
votes
1answer
134 views
ListFieldCallback deprecated
I am using 4.3.0 of the Blackberry JDE.
I have created a ListField object and populated it by overriding ListFieldCallback.
It works but I am getting a compile warning that ListFi …
3
votes
2answers
460 views
BaseException.message deprecated in Python 2.6
I get a warning that BaseException.message is deprecated in Python 2.6 when I use the following user-defined exception:
class MyException(Exception):
def __init__(self, message): …
1
vote
2answers
401 views
How to avoid deprecation warning by replacing session_unregister with $SESSION[]?
I just installed PHP 5.3 and am weeding out consequent "deprecated" warnings.
It says session_unregister() is deprecated in:
session_unregister($serverWideUniqueIdCode);
and th …
2
votes
4answers
200 views
OpenGL: What’s the deal with deprecation?
OpenGL 3.0 and 3.1 have deprecated quite a few features I find essential. In particular, the use of fixed function in shaders.
Can anyone explain what's really the deal with that?
…
3
votes
3answers
464 views
Is os.popen really deprecated in Python 2.6?
The on-line documentation states that os.popen is now deprecated. All other deprecated functions duly raise a DeprecationWarning. For instance:
>>> import os
>>> …
