TokenMacGuy
|
Registered User
|
|
|
12h |
comment |
get `object.__doc__` as raw string @Mark Byers: '\\d\d' contains an invalid escape sequence. the string python stores is equivalent to r'\d\d'. specifically, when python reads the literal, it transforms the first escape to a single backslash, but the second escape is just kept untransformed. If you want to store the string \\d\d then you need to either use a raw string: r'\\d\d' or escape the string correctly yourself: '\\\\d\\d' |
|
14h |
answered | get `object.__doc__` as raw string |
|
14h |
comment |
Best git repository hosting for commercial project? I like the idea of having a backup repository, but I also think, especially with dvcs, that blessing a single repository as 'mainline' is often valuable. If you want that, then a nicer approach might be to use a lower level backup solution, allowing pulls to happen anywhere, but only one cloned copy is writable. |
|
16h |
comment |
Where does C++ standard define the value range of float types? I'm not sure I agree with the premise that 32 bit will become 'distasteful' as even now, 8 bit processors see substantial use in the embedded realm. 32 bit will probably stay mainstream in handset devices for a long time |
|
2d |
comment |
.NET Garbage Collection. That's not quite an accurate description of generational garbage collection, which the comic depicts. A generational garbage collector will mark objects that have survived some number of collection passes (usually just 1 pass) so that it knows not to waste much time collecting them. Most garbage will always be objects that are allocated, used once and no longer needed, and so any objects that outlast a single collection are simply unlikely to be collectable. The garbage collector will still, occasionally check old objects for collectability, just not as often as new objects. |
|
2d |
comment |
.NET Garbage Collection. Is "Fair Game" the technical term for collectible garbage? It should be! |
|
2d |
awarded | ● Necromancer |
|
Nov 27 |
awarded | ● Good Answer |
|
Nov 25 |
accepted | Unit tests for 3rd-party libraries |
|
Nov 24 |
accepted | Google Maps not rendering completely on page? |
|
Nov 24 |
revised |
how come in php superclasses can access protected methods of their subclasses? retag |
|
Nov 24 |
answered | move c++ program to foreground |
|
Nov 23 |
answered | Ever had to “dumb down” for a job? |
|
Nov 22 |
answered | expand users table with django |
|
Nov 22 |
answered | Google Maps not rendering completely on page? |
|
Nov 21 |
comment |
What is a programming language? the distinction between artificial and natural languages is that a natural language evolves organically based on the need of the society that speaks it. An artificial language is purpose built by one or a few people, with intent to use the language in a way that existing languages are unsuited. Mathematical notation is a natural language, having evolved over centuries according to need, and is learned bit by bit as needed. Esperanto is an artificial language, purpose built (by committee!) as a universal spoken human language. |
|
Nov 19 |
awarded | ● Nice Answer |
|
Nov 17 |
comment |
Hidden features of Python @recursive: I defy you to produce a list comprehension/generator expression that performs the action of reduce() |
|
Nov 17 |
comment |
Hidden features of Python Any langauge that doesn't have first class functions (or at least some good substitute, like C function pointers) it is a misfeature. It is completely unbearable to go without. |
|
Nov 17 |
comment |
Hidden features of Python +1 'backslash salad' |
|
Nov 17 |
comment |
Hidden features of Python If this is too ugly for you to cope with, you can write the very same thing as str.join('',list_of_strings) but other pythonistas may scorn you for trying to write java. |
|
Nov 17 |
comment |
Hidden features of Python @shylent: Exceptions should be exceptional. For that reason they are optimized for the case that they are not thrown. If you expect the condition to occur in the course of normal processing, you should use another method |
|
Nov 17 |
comment |
Hidden features of Python +1 first one I actually did not know about. |
|
Nov 17 |
comment |
Hidden features of Python worth noting that the _ is available only in interactive mode. when running scripts from a file, _ has no special meaning. |
|
Nov 16 |
revised |
DFA based regular expression matching - how to get all matches! bad example |
|
Nov 12 |
comment |
Should Programmers Use Decompilers? @reinier: decompiled code is, exactly as you say, disappointing. The answer I tried to give was mostly about what you actually can do with a decompiler. |
|
Nov 10 |
comment |
For C/C++, When is it beneficial not to use Object Oriented Programming? The answer to this question is probably not related to the programming language you have tagged it under |
|
Nov 10 |
comment |
Python Form Processing alternatives this one is different enough from django to be quite interesting. +1 |
|
Nov 10 |
comment |
Python Form Processing alternatives Ah, this might be just the thing! +1 very informative |
|
Nov 10 |
comment |
Python Form Processing alternatives I'm not rejecting django-forms exactly, but my need for it is narrow enough that it makes sense to me to really consider the options, if I have any. If none of the solutions are at least as simple as django for hand-made forms, then that's what I intend to use. |
|
Nov 10 |
asked | Python Form Processing alternatives |
|
Nov 9 |
comment |
What’s the easiest way to convert Wiki markup to HTML? a python equivalent also exists: freewisdom.org/projects/python-markdown/… |
|
Nov 8 |
accepted | Which database should I use to store records, and how should I use it? |
|
Nov 8 |
revised |
Which database should I use to store records, and how should I use it? differences between key-value/relational |
|
Nov 8 |
revised |
Which database should I use to store records, and how should I use it? mmmmm, bacon |
|
Nov 8 |
answered | Which database should I use to store records, and how should I use it? |
|
Nov 8 |
comment |
How to compile C++ under Ubuntu Linux? the reason why make serial-rob.c doesn't work, is because that file is already made, it's there already. on the other hand, when make looks for a file named serial-rob, it's not there, but it has an implicit rule for making *.c into *.o and that into just * |
|
Nov 8 |
comment |
How to get the webpage source code using C# +1 there's no good reason why this answer is lower rep than mine. |
|
Nov 8 |
comment |
Importing files in Python from __init__.py If you have a question, you should post it as a question. This is not an answer to the question that was asked in this post. |
|
Nov 8 |
comment |
How to get the webpage source code using C# I don't know how to do that in C#, but I'm positive it is about as easy as a normal GET request. |
|
Nov 8 |
answered | How to get the webpage source code using C# |
|
Nov 8 |
comment |
What’s the best way to implement an ‘enum’ in Python? +1, this isn't a horrible way to do something that i've never wanted to do. |
|
Nov 8 |
comment |
Is it okay to start the layout of a website with a photoshop mockup? I agree with this post, save one point. Inkscape is simply not a substitute for Illustrator. It pains me that there is no decent open source alternative to illustrator. |
|
Nov 5 |
answered | Why byte b = (byte) 0xFF is equals to integer -1? |
|
Nov 5 |
answered | Why use a templating engine with a framework? |
|
Nov 5 |
accepted | Get file creation time with Python on linux |
|
Nov 5 |
comment |
Computing article abstracts This should do the trick. thanks! |
|
Nov 4 |
revised |
Computing article abstracts added 298 characters in body |
|
Nov 4 |
answered | algorithm for list identification and parsing |
|
Nov 4 |
comment |
algorithm for list identification and parsing This is what I would have suggested (if you hadn't done so already), although it has the problem of not really rejecting anything, which the asker needs. |
