Kurt
|
Registered User
|
Just some random guy ya know. Or maybe you don't know.
|
|
Dec 15 |
comment |
Manage a day-to-day business with a web app? not really a programming question |
|
Dec 5 |
answered | How I can optimize this slow query? |
|
Dec 3 |
comment |
Speeding Up the First Page Load in django You'd still have the same problem with memcached (time to instantiate first object). |
|
Dec 2 |
answered | how to find the owner of a file or directory in python |
|
Nov 29 |
comment |
foreach and multidimensional arrays [TAC] => Array Err... |
|
Nov 17 |
comment |
what are queue access concurrency solutions? Which it has now had for some time: -b <dir> Use a binlog to keep jobs on persistent storage in <dir>. Upon startup, beanstalkd will recover any binlog that is present in <dir>, then, during normal operation, append new jobs and changes in state to the binlog. |
|
Nov 15 |
comment |
Find all htaccess files on server Server fault maybe, not a programming question |
|
Nov 7 |
comment |
Adding authentication to beanstalkd from Python (or any UNIX) client That's not always possible (holding a connection open forever). In any event the reason I ask here is it's not a complete deal breaker, and I also want a solution I can apply now, this is also for an article I'm writing and saying "here's how to secure it.." is a lot better than "the devs are thinking of adding support for foo... someday maybe. Until then good luck!" =) Editors hate that sort of stuff (a.k.a. "This is left as an exercise to the reader"). |
|
Nov 7 |
comment |
Adding authentication to beanstalkd from Python (or any UNIX) client I like things to be closed up and as secure as possible by default, onion layer security. I would like to avoid adding a layer of administrative overhead that's in a totally different system (i.e. firewall) and keep the access controls within beanstalkd/application or do it in such a way that you don't have to fiddle with system settings everytime you want a change (i.e. with SSL the stunnel needs to be fiddled, which is an application level issue, the firewall is a system level issue). |
|
Nov 7 |
asked | Adding authentication to beanstalkd from Python (or any UNIX) client |
|
Nov 2 |
comment |
How would you design this DB? Make sure the random number space is big enough otherwise I may be able to guess them, this means having 100-1000 times the address space you need (so 3-4 extra digits). So for you it sounds like you could safely issue a few million/tens of millions of cards, something to keep in mind. |
|
Nov 2 |
comment |
read string backwards and terminate at first ‘/’ The question is poorly worded, should be "How do I extract the filename from a path." |
|
Oct 30 |
answered | Impact of IDNs on web developers? |
|
Oct 30 |
comment |
What are some good open source ecommerce applications with subscription support? not a programming question |
|
Oct 30 |
comment |
Does a pronounceable encoding exist ? If you're using long strings of digits PLEASE put a dash in every 4 characters so that people can use their well trained short memory (credit card #'s, phone #'s) to read digits in groupings of 4. |
|
Oct 30 |
comment |
Does a pronounceable encoding exist ? Then I would just go with hex encoding, 0-9, a-f, most people can read/pronounce those without to much trouble. |
|
Oct 30 |
answered | Does a pronounceable encoding exist ? |
|
Oct 28 |
comment |
Should entry level programmers be able to answer FizzBuzz? Do you also look at how they triage it (assuming this is allowed)? |
|
Oct 28 |
comment |
Should entry level programmers be able to answer FizzBuzz? @David There's nothing inherently wrong with C++ for web based services depending on what they are doing (integrating with existing C++ code for example), but I suspect yeah you'd end up in a corner with no way out. |
|
Oct 26 |
comment |
Remote SQL Server? This belongs on serverfault.com |
|
Oct 25 |
revised |
Which key:value store to use with Python? Added benchmark info for memcached and memcachedb |
|
Oct 25 |
comment |
Which key:value store to use with Python? One of the best pages I've seen so far. |
|
Oct 25 |
comment |
Which key:value store to use with Python? Nice, I wouldn't have thought to use "persistence" as a keyword but it makes sense. |
|
Oct 25 |
awarded | ● Yearling |
|
Oct 24 |
revised |
Which key:value store to use with Python? updated question |
|
Oct 24 |
comment |
Which key:value store to use with Python? I'm looking for caveats/etc, updated question. |
|
Oct 24 |
comment |
Which key:value store to use with Python? Efficiency (latency mostly, remote = slow) and cost, I'd rather run it locally. |
|
Oct 24 |
asked | Which key:value store to use with Python? |
|
Oct 20 |
answered | Python: How can I know which exceptions might be thrown from a method call |
|
Oct 19 |
answered | Is there a low-tack adhesive tape available for creating Scrum story boards? |
|
Oct 18 |
comment |
Tomcat and MySql on VPS Assuming pricing is 2 servers = $2X and one 512 meg server = $2x and in all other respects they are the same the 2 small servers get you more cpu/disk, but increased overhead (MySQL is no longer local, it's on another VPS which may or may not be on the same physical box. OTOH with two machines you can build some redundancy in (i.e. MySQL master/slave to hot backup the data). |
|
Oct 13 |
comment |
Cannot log in to server after SSH port change Not ap rogramming question, superuser.com perhaps? |
|
Oct 11 |
comment |
Efficient storage of and access to web pages with Python Because I'm not overly familiar with Sphinx =). I just assumed it was a "normal" search engine. As for content yeah I plan to try and limit it to text only based on extension and content-type headers (I can't see fault with that other than a malicious site/very misconfigured site). |
|
Oct 10 |
asked | Efficient storage of and access to web pages with Python |
|
Oct 1 |
comment |
Amazon - EC2 cost? What he said. They have a calculator. |
|
Sep 26 |
revised |
Python variables edited tags |
|
Sep 23 |
comment |
Asynchronous method call in Python ? If it's a computationally expensive function threading won't get you anything (it will probably make things slower actually) since a Python process is limited to one CPU core due to the GIL. |
|
Sep 22 |
answered | Using select/poll/kqueue/kevent to watch a directory for new files |
|
Sep 22 |
answered | Which process was responsible for an event signalled by inotify? |
|
Sep 20 |
comment |
Open source as a speed breaker to my project Where's the programming question? This is more appropriate for managementoverflow.com or the daily WTF I think. |
|
Sep 15 |
awarded | ● Popular Question |
|
Sep 14 |
comment |
How to forward port to router using python… Huh. You need to restate the question more clearly. |
|
Sep 11 |
comment |
What non-programming books should programmers read? Thank goodness for word processing software. When Steinbeck wrote the book he got halfway through and changed the direction completely, but didn't rewrite the first half so it basically reads like two half finished books stapled together. |
|
Sep 11 |
comment |
What non-programming books should programmers read? Simplistic advice largely. |
|
Sep 11 |
comment |
What non-programming books should programmers read? This book simply talks about economic arbitrage (get cheap people in developing countries to do work) and that's pretty much it. Apart from going over how to sell junk online cheaply it didn't really have much to say. |
|
Sep 6 |
answered | Simple code to install a subversion repository on a linux server |
|
Sep 6 |
comment |
MySQL Certification Practice Questions certificationoverflow.com perhaps? |
|
Aug 2 |
answered | Trappings MySQL Warnings on Calls Wrapped in Classes — Python |
|
Jul 22 |
answered | How can I get DNS records for a domain in python? |
|
Jul 22 |
answered | Running multiple proccesses in Python |
