Lee B
|
Registered User
|
|
|
Nov 15 |
answered | Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? |
|
Nov 14 |
comment |
Favorite Django Tips & Features? Django's Signals are a must-have feature for me these days, when comparing web frameworks. Writing a loosely coupled forum, say, that can listen for, say, updates from a "signature" module, but not actually require that module to work, and that can also work with compatible modules implementing the same feature, is great. I don't know why signals aren't more well known and popular. |
|
Nov 14 |
comment |
Is change-tracking in ORMs a necessity or a luxury, in the context of web apps? This "change-tracking in ORMs" sounds suspiciously like transactions, or even simple caching before write-back of data. |
|
Nov 14 |
answered | Is change-tracking in ORMs a necessity or a luxury, in the context of web apps? |
|
Nov 10 |
comment |
Checking row and column for a word in python @Alex: GOOGLE's standard library?! Google didn't write the python libs. |
|
Nov 10 |
comment |
Need marquee text but in which we can stop on mouseover As Asaph suggested, you shouldn't really be using these tags at all, unless you're specifically intending something like a stock ticker. Even then, there are better ways to provide that kind of information. |
|
Nov 9 |
comment |
How to store arbitrary name/value key pairs in a Django model? Agreed. You should probably consider something like Redland library or rdflib (code.google.com/p/rdflib/wiki/IntroStore) instead of django's db layer. The real benefit of this will be in using specialised query languages, like SPARQL. |
|
Nov 9 |
comment |
What’s a good library to do computational geometry (like CGAL) in a garbage-collected language? Yep, and look into one of the C++ bindings generators (which binds C++ code to python), such as SIP. |
|
Nov 8 |
answered | Suggestions for gateway please |
|
Nov 8 |
comment |
How can you tell if a person is a programmer? It's not a C thing, it's a compsci/math thing. |
|
Nov 1 |
comment |
Centos or Debian as a server OS ? @Mark: your server host should provide console access as to supplement ssh. If you have that, and the ability to boot a CD image (even if you need to arrange that the hosting company "insert" one) then you'll be fine even if trouble occurs. But Debian warns you of all the difficulties even on the most complex upgrades, and tells you what to do. All you need to do is read the instructions, make notes, and (worst case scenario, maybe) type and run an instructed command or two once the upgrade completes. That's a rare situation too, most upgrades are much simpler (fully automated) affairs. |
|
Nov 1 |
comment |
Why do most programmers know nothing about hardware? -1, silly generalisation. I don't know any programmers who can't handle at least basic hardware. I presumed your question would be about knowing CPU registers, instruction cycles, etc., which would make a little more sense. Even then, I think most programmers use abstractions wisely whilst they work, and dig into the details when they need to. |
|
Oct 28 |
answered | How do apps that image web pages work? |
|
Oct 27 |
comment |
Programmatically obtaining the number of colors used in an image Arguably, any program is a more detailed restatement of the problem :) The question is whether the asker knew that, and whether it helps to tell him. I made a call based on how the question was written, and decided that he might not have known it. |
|
Oct 25 |
comment |
Automated testing for OpenGL application Using any particular library to implement the GUI shouldn't matter. Create a GraphicsContext class that abstracts the OpenGL Canvas/frame, and a GUI class that abstracts whatever GUI features you need. Then, the GUI class implementation can render to the display context implementation, but you app won't need to care how they're working together. |
|
Oct 25 |
answered | Programmatically obtaining the number of colors used in an image |
|
Oct 24 |
answered | C++ sync and backup framework |
|
Oct 24 |
comment |
Is C faster than C++? Well, I'm talking about the usual or even best practice associated with each language, of course. In C++, you're encouraged to use the STL including iterators, operator new, and so on. In C, on the other hand, you're encouraged to know the (albeit still slightly abstracted) memory layout of an array. This leads to very different code performance, and yes, a different level of coding. |
|
Oct 24 |
comment |
Any lightweight *nix environment for programming Don't get me wrong; Debian is easily my favourite distro. BUT...1.4G is HUGE for a basic coding environment. I used to run X on yggdrassil or slackware in about 12MB of memory (4MB of swap over what I actually had in physical RAM), and I think about 30MB of disk space. From the Walnut Creek CDROM advert: "Linux uses as little as 2 MB of hard disk space or as much as 680 MB." -- vectorbd.com/bfd/bbsinfo/walnut.inf |
|
Oct 24 |
awarded | ● Scholar |
|
Oct 24 |
comment |
Worker/Timeslot permutation/constraint filtering algorithm Thanks; good ideas here on breaking the problem down into days and by worker similarity etc. Also good suggestions on backtracking and all. Unfortunately I haven't had much time to work on it lately, but a friend has come up with some very elegant math to solve a big piece of the puzzle. Between his contributions, contributions here, and what I've already done, it should be done soon :) |
|
Oct 24 |
answered | Is C faster than C++? |
|
Oct 18 |
comment |
Simulator or Emulator? What is the difference? Be careful about trying to shoehorn WINE into an either/or of emulator or simulator. WINE is a compatibility layer, which makes binaries from one system run on the binary API layer of another system. You might call it an adaptor. I suppose simulator isn't a bad way to understand it either, but it's not really much closer than emulator. |
|
Oct 18 |
comment |
Simulator or Emulator? What is the difference? I think it would be safe to say that Virtual PC emulates a PC. HOW it emulates the PC is through virtualisation, but that's more of an implementation detail. You might argue that hardware virtualisation is a superset of emulation, in that can provide accelerated CPU support, exclusive hardware device access, etc. |
|
Oct 17 |
comment |
Python: Int not iterable errror +1 for suggesting that variable names match what they actually are. It's amazing how many bugs can be prevented just by having clear names. |
|
Oct 17 |
comment |
Being a cracker nightmare! Agreed. Getting into an arms race with full-time crackers would require becoming a full-time, foremost security expert. Even then, your software would stay uncracked for a month after release at best. If it's popular enough, that is --- which is unlikely to happen if you spend all your time on protection schemes. Most software protection gets in the way of real users, too. |
|
Oct 16 |
comment |
Where are constant variables stored in C? This is probably the one true answer (though it would be more helpful to provide popular implementation methods after pointing this out.) |
|
Oct 16 |
answered | Where are constant variables stored in C? |
|
Oct 16 |
comment |
Hire or No Hire ? -1, as asking people to name "THE three things" out of an arbitrary set is just arrogant and narrow-minded. |
|
Oct 16 |
comment |
Hire or No Hire ? I don't think asking someone to duplicate 8 characters onto a new piece of paper is much of a challenge ;) |
|
Oct 16 |
comment |
OOP in C, inheritance, and bugs -1, as it's perfectly valid (and commonplace even before C++) to use C in an OOP fashion. I mostly learnt OOP from studying C code, even if I didn't know what to call it back then. But yes, quite right that the function signatures are incompatible. Probably, the correct answer is to make lecturer begin with a speaker instance: struct Lecturer { struct Speaker parent; ...; } Then it's compatible with a speaker, only longer. |
|
Oct 15 |
answered | Git with ldap authorization |
|
Oct 14 |
comment |
Simple ‘for’ loop crashing program on final iteration I'd recommend < rather than !=. It's safer, since, if i somehow grows past size-1, the loop will still terminate. Granted, it "shouldn't happen" in this code, but "shouldn't happen" + inevitable bugs == "probably will happen sooner or later". |
|
Oct 14 |
answered | Is there a standard format for describing a flat file? |
|
Oct 14 |
comment |
urlopen error 10045, ‘address already in use’ while downloading in Python 2.5 on Windows You can't really know whether a file has changed on a remote system without either downloading the whole thing and generating a checksum, or running code on the remote system to generate a checksum and then download if the result has changed. I'd agree that rsync or a similar tool (deltacopy on windows, some library that implements rsync, a pure python implementation, whatever) would be your best bet. |
|
Oct 13 |
comment |
Is there a best way to size an NSImage to a maximum filesize? I don't do Cocoa development, but if you've gotten this far, then a binary search starting with an educated guess should get you an answer quickly. |
|
Oct 13 |
comment |
Are there any IDE’s or plugins to one that will expand/preprocess a macro and show their results inline without compiling? You can add it to the compiler flags in the IDE. I'm not sure if -E is the right flag or not, but there should be a flag to generate a file with the preprocessed code. You can then just open it in your editor. OR, just assign the gcc -E command to a tool button/tool menu in your (reasonably good) IDE, set it to display the command output, and run that tool on your open file whenever you need to. |
|
Oct 13 |
accepted | gmt or without gmt |
|
Oct 12 |
accepted | Best Tools for Web Development!? |
|
Oct 12 |
comment |
Python Clientform-can not get expexted result Oh, p.s.: as a general rule, never catch exceptions apart from those you actually care about and have a specific way to handle. If you're reading a file, and are aware that this file might be missing (read the docs for read() and it should warn you that a FileNotFound exception may be thrown), then you can decide you want to catch that particular problem and handle it. Other problems should be left for those who care. They are usually functions futher up the call stack (e.g., main() may want to catch KeyBoardInterrupt, rather than handle it in a low level read_file() function). |
|
Oct 12 |
comment |
Senior programming ‘guru’ who can’t program - should I find a different career? Correction: learn project management methodologies (read PMBOK for one), and then decide if you want to become a Project Manager. You might well be great, but please don't start managing people without knowing how to do it right, or you'll be risking their jobs (and sanity) as well as your own. |
|
Oct 12 |
comment |
When and how to use the builtin function property() in python That's true noam. On the other hand though, OOP is all about having objects that are black boxes, except for the interfaces they present, so one should probably assume that strange, magical things are going on beneath the surface ;) |
|
Oct 12 |
comment |
Worker/Timeslot permutation/constraint filtering algorithm Thanks for the insight :) p.s.: n is about 200 ;/ |
|
Oct 12 |
revised |
Worker/Timeslot permutation/constraint filtering algorithm improve problem description |
|
Oct 12 |
answered | When and how to use the builtin function property() in python |
|
Oct 12 |
revised |
Worker/Timeslot permutation/constraint filtering algorithm update code to match function signature change |
|
Oct 12 |
revised |
Best Tools for Web Development!? added 25 characters in body |
|
Oct 12 |
answered | gmt or without gmt |
|
Oct 12 |
answered | Implementing “Starts with” and “Ends with” queries with Google App Engine |
|
Oct 12 |
answered | Python Clientform-can not get expexted result |
