User TimB - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:00:20Z http://stackoverflow.com/feeds/user/4193 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/851980/linux-programming-book/851983#851983 5 Answer by TimB for Linux Programming Book TimB 2009-05-12T09:41:47Z 2009-05-12T17:27:04Z <p>Although you've specifically asked for an up-to-date book, I think it's worth mentioning Advanced Programming in the UNIX(R) Environment (2nd Edition). It was released in 2005, and is an update of the classic first edition (released in 1992) by the late W. Richard Stevens. I'm familiar with the first edition, but haven't seen the second one.</p> <p>The first edition became a classic because it provided thorough yet clear descriptions of its topics, with copious code examples which were available for download. The second edition is updated to include Linux, FreeBSD and Mac OS X, and by all reports (e.g. reviews on Amazon) is just as good a book as the first edition.</p> <p><img src="http://www.kuvaboksi.fi/mediaobjects/orig/pub/2009/05/12/8143010478550291829orig.png" width="200"></p> http://stackoverflow.com/questions/527104/new-technology-in-web-developement/527142#527142 3 Answer by TimB for New technology in Web Developement TimB 2009-02-09T04:52:47Z 2009-02-09T04:52:47Z <p><a href="http://www.djangoproject.com/" rel="nofollow">Django</a> is another web application framework (like Ruby on Rails) that is getting a lot of attention.</p> <p>Of course, Django (like Rails) is a technology stack you could use <em>instead</em> of the Java/JSP technology you're already familiar with, rather than something to learn to use with Java/JSP.</p> http://stackoverflow.com/questions/471865/a-good-php-project-to-show-to-a-possible-employer/471904#471904 0 Answer by TimB for A good php project to show to a possible employer TimB 2009-01-23T04:44:13Z 2009-01-23T04:44:13Z <p>If I was interviewing, I'd much rather see real code written for a real client than something you just whipped up quickly for the interview. If you haven't had a job before, and no side projects to show either, then I'd certainly consider a programming project from uni/college.</p> <p>Programming is not just about what code you can write, but also about how well you can translate real-world requirements provided by another person into code.</p> http://stackoverflow.com/questions/471871/what-are-some-other-generic-http-clients-available/471892#471892 2 Answer by TimB for What are some other generic http clients available? TimB 2009-01-23T04:33:26Z 2009-01-23T04:33:26Z <p><a href="http://curl.haxx.se/" rel="nofollow">cURL</a> (a.k.a. libcurl). libcurl has bindings for about 40 different programming languages.</p> http://stackoverflow.com/questions/285383/apache-mod-rewrite-htaccess/285420#285420 4 Answer by TimB for Apache Mod Rewrite (.htaccess) TimB 2008-11-12T21:20:20Z 2008-11-12T21:20:20Z <p>I'm guessing that the problem is that the URL is being rewritten by the first rule, and then rewritten again by the second.</p> <p>The solution to that is to add the "last" flag to the first rule, like this:</p> <pre><code>RewriteRule ^/src/pub/(.*)$ /$1 [R,L] </code></pre> http://stackoverflow.com/questions/240333/how-do-you-measure-page-load-speed/241566#241566 0 Answer by TimB for How do you measure page load speed? TimB 2008-10-27T22:15:30Z 2008-10-27T22:15:30Z <p>In <a href="http://www.apple.com/safari/" rel="nofollow">Safari</a>, the <a href="http://www.macobserver.com/tip/2008/03/26.1.shtml" rel="nofollow">Network Timeline</a> (available under the Develop menu, which you have to specifically enable) gives useful information about loading time of individual page components, as well as showing when each component started loading. </p> http://stackoverflow.com/questions/238541/looking-for-books-on-information-science-information-retrieval/238677#238677 2 Answer by TimB for Looking for books on Information Science, Information Retrieval TimB 2008-10-26T21:40:25Z 2008-10-26T21:40:25Z <p><a href="http://rads.stackoverflow.com/amzn/click/1558605703" rel="nofollow">Managing Gigabytes - Witten, Moffat, and Bell</a>: a quite detailed look at some of the technologies behind information retrieval, text and image compression. (Disclaimer: my university supervisor is the second author.)</p> <p>You should also know about ACM's <a href="http://www.sigir.org/" rel="nofollow">SIGIR</a>, which organises an annual conference on information retrieval, and has a <a href="http://www.sigir.org/sigirlist/" rel="nofollow">mailing list</a> as well.</p> http://stackoverflow.com/questions/231592/knowing-the-plaintext-how-to-discover-the-encryption-scheme-used/231755#231755 2 Answer by TimB for Knowing the plaintext, how to discover the encryption scheme used? TimB 2008-10-23T22:16:26Z 2008-10-23T22:16:26Z <p>Depending on how much effort you want to put into it, you should be able to get somewhere. Start by reading up on <a href="http://en.wikipedia.org/wiki/Cryptanalysis" rel="nofollow">cryptanalysis</a>, in particular the <a href="http://en.wikipedia.org/wiki/Cryptanalysis#Methods_of_cryptanalysis" rel="nofollow">methods of cryptanalysis</a>.</p> <p>The things that will determine how easy this task will be are:</p> <ul> <li>how good the encryption method used is; if it's a recent, well-regarded method such as RSA or AES, you're probably out of luck</li> <li>how much ciphertext and plaintext you have -- the more the better</li> <li>what kind of data it is -- simple text is the easiest, while random data would be the hardest</li> <li>whether the data is all encrypted with the same key, or whether multiple keys have been used.</li> </ul> <p>The key to success is don't be disheartened; the history of cryptanalysis is filled with stories of supposedly unbreakable codes being cracked; perhaps the most famous is the Enigma machine from World War II, the cracking of which contributed to the development of modern computers.</p> http://stackoverflow.com/questions/212039/what-should-students-be-taught-first-when-first-learning-sorting-algorithms/227672#227672 0 Answer by TimB for What should students be taught first when first learning sorting algorithms? TimB 2008-10-22T21:51:40Z 2008-10-22T21:51:40Z <p>If you want to teach the concept of sorting, then I believe you must teach at least two different ways of sorting -- otherwise the students will think that sorting is just about the one way you taught them.</p> <p>I think the students would get the most value out of learning a classic O(n^2) algorithm (preferably insertion or selection sort, but please <strong>not</strong> bubble sort, which has no justification for being used in real applications), as well as a divide-and-conquer, O(nlogn) algorithm such as quicksort or merge sort.</p> <p>If you're worried that these sorts will be too hard to teach your students, have a look at <a href="http://csunplugged.org/index.php/en/07-sorting-algorithms-activitiesmenu-113" rel="nofollow">these activities</a> from <a href="http://csunplugged.org/" rel="nofollow">Computer Science Unplugged</a>, which are designed for elementary school students.</p> http://stackoverflow.com/questions/224396/should-i-look-at-version-control-systems-beyond-subversion/224432#224432 9 Answer by TimB for Should I look at version control systems beyond Subversion? TimB 2008-10-22T03:50:56Z 2008-10-22T03:50:56Z <p>Here are <a href="http://markmcb.com/2008/10/18/3-reasons-to-switch-to-git-from-subversion/" rel="nofollow">3 reasons to switch to git from Subversion</a> (from MarkMcB):</p> <ul> <li>Endless, easy, non-file-system-based, local branches</li> <li>Stashing temporary work</li> <li>Collaboration before public commits</li> </ul> <p>(Read the linked article for full explanations and direct comparisons of how to do the three things in both git and Subversion.)</p> http://stackoverflow.com/questions/223559/using-variables-for-class-names-in-python/223584#223584 1 Answer by TimB for Using Variables for Class Names in Python? TimB 2008-10-21T21:32:34Z 2008-10-21T21:50:22Z <p>If you have this:</p> <pre><code>class MyClass: def __init__(self): print "MyClass" </code></pre> <p>Then you usually do this:</p> <pre><code>&gt;&gt;&gt; x = MyClass() MyClass </code></pre> <p>But you could also do this, which is what I think you're asking:</p> <pre><code>&gt;&gt;&gt; a = "MyClass" &gt;&gt;&gt; y = eval(a)() MyClass </code></pre> <p>But, be very careful about where you get the string that you use "eval()" on -- if it's come from the user, you're essentially creating an enormous security hole.</p> http://stackoverflow.com/questions/220044/which-sort-algorithm-works-best-on-mostly-sorted-data/220736#220736 1 Answer by TimB for Which sort algorithm works best on mostly sorted data? TimB 2008-10-21T04:02:28Z 2008-10-21T04:02:28Z <p><a href="http://www.cs.mu.oz.au/~alistair/splaysort.c" rel="nofollow">Splaysort</a> is an obscure sorting method based on <a href="http://en.wikipedia.org/wiki/Splay_tree" rel="nofollow">splay trees</a>, a type of adaptive binary tree. Splaysort is good not only for partially sorted data, but also partially reverse-sorted data, or indeed any data that has any kind of pre-existing order. It is O(nlogn) in the general case, and O(n) in the case where the data is sorted in some way (forward, reverse, organ-pipe, etc.).</p> <p>Its great advantage over insertion sort is that it doesn't revert to O(n^2) behaviour when the data isn't sorted at all, so you don't need to be absolutely sure that the data is partially sorted before using it.</p> <p>Its disadvantage is the extra space overhead of the splay tree structure it needs, as well as the time required to build and destroy the splay tree. But depending on the size of data and amount of pre-sortedness that you expect, the overhead may be worth it for the increase in speed.</p> <p>A <a href="http://portal.acm.org/citation.cfm?id=230594" rel="nofollow">paper on splaysort</a> was published in Software--Practice &amp; Experience.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220180#220180 0 Answer by TimB for Is there a faster alternative to Google Analytics? TimB 2008-10-20T22:35:11Z 2008-10-20T22:35:11Z <p>I've previously had a quick look at <a href="http://haveamint.com/" rel="nofollow">Mint</a>, which looks interesting. But I have no information about the speed, and it costs $30 per site.</p> http://stackoverflow.com/questions/219853/entering-unicode-characters-in-latex/219975#219975 0 Answer by TimB for Entering Unicode characters in LaTeX TimB 2008-10-20T21:20:00Z 2008-10-20T21:20:00Z <p>Sorry, I'm not an expert on this, but hope I can at least provide some useful leads.</p> <p>A lot of the early multi-lingual support for LaTeX predates the widespread adoption of Unicode, although it looks like there's been some consolidation around Unicode recently. So you might find something useful in specific language support packages, e.g. <a href="http://cjk.ffii.org/" rel="nofollow">CJK LaTeX</a> (for Chinese, Japanese and Korean).</p> <p>It looks like <a href="http://www.unruh.de/DniQ/latex/unicode/" rel="nofollow">one Unicode package</a> for LaTeX is no longer supported, although it may still be the best thing out there.</p> <p>You might also have a look at the excellent book <a href="http://rads.stackoverflow.com/amzn/click/0201362996" rel="nofollow">The LaTeX Companion</a>, which includes a section on multilingual text.</p> http://stackoverflow.com/questions/217489/efficiency-algorithms-vs-system-specifications/217495#217495 1 Answer by TimB for efficiency /algorithms vs system specifications TimB 2008-10-20T04:06:12Z 2008-10-20T04:13:34Z <p>Yes, it does depend on system specification. One system might be 10 times faster than another, so it will run bubblesort and quicksort on a set of data 10 times faster than the other.</p> <p>But when you do analysis of algorithms, you often ignore constant factors like that, which is one thing that big-O notation does. So bubblesort is O(n^2) and quicksort is O(nlogn) (in the average case), and that holds no matter how fast your hardware is.</p> <p>The interesting thing is when you start comparing apples and oranges. If you're running bubblesort on your fast hardware, you may find it's faster than quicksort on the slow hardware -- but only up to a point. Eventually, with a large enough input set, the quicksort on the slow hardware is going to be faster than bubblesort on the fast hardware.</p> <p>If you want to start making comparisons like that, you need to do two things together: determine algorithmic complexity including the constant factors, and develop a speed model (e.g. how many iterations of a particular loop it can perform per second) for the actual hardware you're running on. One of the interesting things about Knuth's <a href="http://rads.stackoverflow.com/amzn/click/0201485419" rel="nofollow">Art of Computer Programming</a>, compared with other books on algorithms, is that he does both, so that for each algorithm he examines, he calculates how many units of execution time it will take for a given size of input on his (mythical) MIX computer. You could then adjust the calculation for faster or slower hardware -- something that big-O notation doesn't help with.</p> http://stackoverflow.com/questions/210781/pragmatic-information-security-textbooks/210803#210803 3 Answer by TimB for Pragmatic Information Security Textbooks TimB 2008-10-17T01:14:04Z 2008-10-17T01:14:04Z <p>Check out the answers to these related questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/27827/what-are-good-books-about-security-hacking-and-computer-forensics">What are good books about security, hacking, and computer forensics?</a></li> <li><a href="http://stackoverflow.com/questions/111248/how-can-i-stay-up-to-date-on-computer-especially-software-security">How can I stay up-to-date on computer (especially software) security?</a></li> </ul> http://stackoverflow.com/questions/210781/pragmatic-information-security-textbooks/210794#210794 3 Answer by TimB for Pragmatic Information Security Textbooks TimB 2008-10-17T01:08:49Z 2008-10-17T01:08:49Z <p>For web application security, <a href="http://rads.stackoverflow.com/amzn/click/0470170778" rel="nofollow">The Web Application Hacker's Handbook</a> has been recommended to me (although I haven't read it yet).</p> <p>There are other books in that series as well:</p> <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/0764578014" rel="nofollow">The Database Hacker's Handbook</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/047008023X" rel="nofollow">The Shellcoder's Handbook</a></li> </ul> <p>as well as a more general book: <a href="http://rads.stackoverflow.com/amzn/click/1593271441" rel="nofollow">Hacking: The Art of Exploitation</a>, 2nd Edition.</p> <p>If you really want to learn the details of making secure systems, you have to learn how systems are broken into, so these books seem to fit the bill.</p> http://stackoverflow.com/questions/210329/setting-performance-goals-for-developers/210479#210479 0 Answer by TimB for Setting Performance goals for Developers TimB 2008-10-16T22:05:53Z 2008-10-16T22:05:53Z <p>I suggest you read <a href="http://www.joelonsoftware.com/" rel="nofollow">Joel Spolsky</a>'s recent <a href="http://www.inc.com/magazine/20081001/how-hard-could-it-be-sins-of-commissions.html" rel="nofollow">article</a> in Inc.com on the subject of incentives. Here's the conclusion:</p> <blockquote> <p>We simply established as a rule the idea that gaming the incentive plan was wrong and unacceptable. Employees generally follow the rules you give them -- and if they don't, you can discipline them or, in extreme cases, dismiss them. The problem with most incentive systems is not that they are too complicated -- it's that they don't explicitly forbid the kind of shenanigans that will inevitably make them unsuccessful.</p> </blockquote> <p>But make sure you read the whole article.</p> http://stackoverflow.com/questions/206318/are-there-any-http-https-interception-tools-other-than-fiddler-charles-poster/210400#210400 0 Answer by TimB for Are there any HTTP/HTTPS interception tools other than Fiddler, Charles, Poster, and Achilles? TimB 2008-10-16T21:35:24Z 2008-10-16T21:35:24Z <p>Have a look at <a href="http://code.google.com/p/ratproxy/" rel="nofollow">ratproxy</a>. It may not be exactly what you're asking for, but is very useful in testing the security of your web app.</p> <p>Rather than intercepting HTTP and allowing you to edit or replay requests, it installs as a proxy and monitors the normal use of your web app, and then provides a report on possible security issues, along with their severity. It can also be configured to attempt active XSS or XSRF attacks where it thinks there is a vulnerability.</p> <p>The site says "Ratproxy is currently believed to support Linux, FreeBSD, MacOS X, and Windows (Cygwin) environments" but I've only used it on Linux.</p> http://stackoverflow.com/questions/207278/career-day-how-do-i-make-computer-programmer-sound-cool-to-8-year-olds/207434#207434 4 Answer by TimB for Career Day: how do I make "computer programmer" sound cool to 8 year olds? TimB 2008-10-16T04:15:53Z 2008-10-16T04:15:53Z <p>Don't try to make it sound cool -- at least, don't try to make it sound cool to everyone in the whole class, because it's doubtful you'll succeed.</p> <p>Your challenge should be to make it sound cool to the one or two kids in the class who might find it interesting and might have the aptitude, but might be discouraged because of peer pressure, or because their parents want them to be lawyers, etc. If you can reach those kids and convince them to get and stay interested in programming, then you will have succeeded.</p> http://stackoverflow.com/questions/91110/how-to-match-a-single-quote-in-sed/206963#206963 1 Answer by TimB for How to match a single quote in sed TimB 2008-10-16T00:05:12Z 2008-10-16T00:05:12Z <p>As noted in the comments to the question, it's not really about sed, but how to include a quote in a quoted string in a shell (e.g. bash).</p> <p>To clarify a previous answer, you need to escape the quote with a backslash, but you can't do that within a single-quoted expression. From the bash man page:</p> <blockquote> <p>Enclosing characters in single quotes preserves the literal value of each character within the quotes. A single quote may not occur between single quotes, even when preceded by a backslash.</p> </blockquote> <p>Therefore, you need to terminate the quoted expression, insert the escaped quote, and start a new quoted expression. The shell's quote removal does not add any extra spaces, so in effect you get string concatenation.</p> <p>So, to answer the original question of how to single quote the expression 'foo', you would do something like this:</p> <pre><code>sed -e '...'\''foo'\''...' </code></pre> <p>(where '...' is the rest of the sed expression).</p> <p>Overall, for the sake of readability, you'd be much better off changing the surrounding quotes to double quotes if at all possible:</p> <pre><code>sed -e "...'foo'..." </code></pre> <p>[As an example of the potential maintenance nightmare of the first (single quote) approach, note how StackOverflow's syntax highlighting colours the quotes, backslashes and other text -- it's definitely not correct.]</p> http://stackoverflow.com/questions/205957/how-to-deal-with-an-inept-and-self-centered-programmer/206918#206918 0 Answer by TimB for How to deal with an inept and self-centered programmer? TimB 2008-10-15T23:36:22Z 2008-10-15T23:36:22Z <p>It's rare that a technical solution might help what is fundamentally a "people" problem, but I think it might in this case.</p> <p>It sounds like some (not all) of the concerns you have about him could be clarified if you have a stricter testing regime, including unit testing and regression testing. If you can isolate his code changes, and show that before they were made, the code passed unit testing, and that after, the code failed some unit tests, that's a pretty clear indication that the problem is of his making, and he can't reasonably accuse others of making the changes that broke the code.</p> <p>Of course, if the hard evidence of the unit tests don't convince him (his response might be to say the unit tests are wrong), then you'll clearly have to treat it as a "person" issue and look at the suggestions in the other answers.</p> http://stackoverflow.com/questions/206734/why-do-attribute-references-act-like-this-with-python-inheritance/206800#206800 4 Answer by TimB for Why do attribute references act like this with Python inheritance? TimB 2008-10-15T22:40:10Z 2008-10-15T23:25:00Z <p>Note that part of the behaviour you're seeing is due to somedata being a dict, as opposed to a simple data type such as a boolean.</p> <p>For instance, see this different example, which behaves differently although it's very similar:</p> <pre><code>class the_base_class: somedata = False class subclassthing(the_base_class): def __init__(self): print self.somedata &gt;&gt;&gt; first = subclassthing() False &gt;&gt;&gt; first.somedata = True &gt;&gt;&gt; print first.somedata True &gt;&gt;&gt; second = subclassthing() False &gt;&gt;&gt; print first.somedata True &gt;&gt;&gt; del first &gt;&gt;&gt; del second &gt;&gt;&gt; third = subclassthing() False </code></pre> <p>The reason this example behaves differently from the one given in the question is because here first.somedata is being given a new value (the object True), whereas in the first example the dict object referenced by first.somedata (and also by the other subclass instances) is being modified.</p> <p>See Torsten Marek's comment to this answer for further clarification.</p> http://stackoverflow.com/questions/199906/becoming-a-ninja-developer/199964#199964 3 Answer by TimB for Becoming a ninja developer TimB 2008-10-14T03:51:59Z 2008-10-14T03:51:59Z <p>Find a mentor, or another programmer with a different programming background; meet regularly to review each other's code, discuss new things you've learned recently and projects you've been working on.</p> <p>It's all very well getting involved with complex open source projects, but constructive feedback is probably going to help you advance and improve faster.</p> http://stackoverflow.com/questions/199556/how-can-i-port-a-legacy-java-j2ee-website-to-a-modern-scripting-language-php-pyt/199593#199593 5 Answer by TimB for How can I port a legacy Java/J2EE website to a modern scripting language (PHP,Python/Django, etc)? TimB 2008-10-14T00:36:30Z 2008-10-14T00:36:30Z <p>Using an automated tool to "port" the web application will almost certainly guarantee that future programming efficiency will be minimised -- not improved.</p> <p>A good scripting language can help programming efficiency when used by good programmers who understand good coding practices in that language. Automated tools are usually not designed to output code that is elegent or well-written, only code that works.</p> <p>You'll only get an improvement in programming efficiency after you've put in the effort to re-implement the web app -- which, due to the time required for the reimplementation, may or may not result in an improvement overall.</p> http://stackoverflow.com/questions/70846/developers-bill-of-rights/199573#199573 1 Answer by TimB for Developers' Bill Of Rights TimB 2008-10-14T00:31:01Z 2008-10-14T00:31:01Z <p>Sorry, it's not one "right", but if companies just did the stuff recommended in <a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">Peopleware</a>, their developers wouldn't need to ask what their rights should be.</p> http://stackoverflow.com/questions/199486/what-is-the-best-book-on-css/199563#199563 5 Answer by TimB for What is the best book on CSS? TimB 2008-10-14T00:25:46Z 2008-10-14T00:25:46Z <p>My two recommendations:</p> <ul> <li><p><a href="http://rads.stackoverflow.com/amzn/click/0321303474" rel="nofollow">The Zen of CSS Design</a>; a fantastic demonstration of what's possible.</p></li> <li><p><a href="http://rads.stackoverflow.com/amzn/click/1590598040" rel="nofollow">Pro CSS and HTML Design Patterns</a>; a book that shows you what works reliably in most browsers, rather than everything defined in the various CSS standards.</p></li> </ul> http://stackoverflow.com/questions/199331/is-it-worth-learning-bash-when-i-know-perl/199342#199342 28 Answer by TimB for Is it worth learning BASH when I know Perl? TimB 2008-10-13T22:56:50Z 2008-10-13T22:56:50Z <p>Bash epitomises the spirit of UNIX -- combining multiple simple tools to solve a more complex problem, usually using pipes to direct the output of one command to the input of the next. This is a style of programming that I think it's worth knowing; too many people write a whole program to achieve something that can be done by combining a few existing tools on the command line.</p> <p>So yes, learn bash. Even if you don't end up using it much yourself, you'll also be able to read the many bash scripts that are key parts of most UNIX/Linux systems.</p> http://stackoverflow.com/questions/199277/best-practices-for-deploying-tools-scripts-to-production/199330#199330 1 Answer by TimB for Best practices for deploying tools & scripts to production? TimB 2008-10-13T22:51:31Z 2008-10-13T22:51:31Z <p>Create your own packages in the format your distribution uses, e.g. Debian packages (.deb). These can either be copied to each machine and installed manually, or you can set up your own repository, and add it to your list of sources.</p> <p>Your packages should be set up so that the scripts they contain consult a configuration file, which is different on each host, depending on what scripts need to be run on each.</p> <p>To tie it all together, you can create a meta package that just depends on each of the other packages you create. That way, when you set up a new server, you install that one meta package, and the other packages are brought in as dependencies.</p> <p>Although this process sounds a bit complicated, if you have many scripts and many hosts to deploy them to, it can really pay off in the long run.</p> http://stackoverflow.com/questions/199252/what-is-the-best-way-to-manage-permissions-for-a-web-application-bitmask-or-dat/199297#199297 1 Answer by TimB for What is the best way to manage permissions for a web application - bitmask or database table? TimB 2008-10-13T22:41:05Z 2008-10-13T22:41:05Z <p>I've seen a number of somewhat limited permissions systems similar to what you're suggesting -- as well as some truly terrible systems. In some simple situations they can be acceptable, as long as the application doesn't get more complex. However, in so many cases, they do get more complicated, and the systems have to be rewritten to accommodate the required functionality.</p> <p>If you think you might someday need the expressiveness, I'd go with a full ACL (access control list) system with users and groups (or roles). That is, each thing governed by permissions (e.g. "manage users", "manage products") has an ACL, which is a list of all users and groups that have access to it. Then users are either added directly to the relevant ACLs, or added to a group that's already a member of an ACL.</p> <p>Although ACL suggests a list implementation, you'd be better off with a table; <a href="http://stackoverflow.com/questions/199252/what-is-the-best-way-to-manage-permissions-for-a-web-application-bitmask-or-dat#199287">this answer</a> is a good way.</p> http://stackoverflow.com/questions/151711/carbon-vs-cocoa-is-carbon-a-dead-end-with-os-x/151723#151723 Comment by TimB on Carbon vs Cocoa, is Carbon a dead end with OS X? TimB 2009-06-19T01:43:35Z 2009-06-19T01:43:35Z Link seems fine now. http://stackoverflow.com/questions/131989/how-do-i-get-a-list-of-all-subdomains-of-a-domain/132014#132014 Comment by TimB on How do I get a list of all subdomains of a domain? TimB 2009-03-17T01:37:29Z 2009-03-17T01:37:29Z Yes, bortzmeyer, you're absolutely correct, I meant a.some_domain.com, etc. I can't believe I wrote it with &quot;@&quot;, and that it took nearly 5 months before someone picked it up! http://stackoverflow.com/questions/285383/apache-mod-rewrite-htaccess Comment by TimB on Apache Mod Rewrite (.htaccess) TimB 2008-11-12T21:13:42Z 2008-11-12T21:13:42Z What does your attempt do that isn't correct? Some examples (both correct and incorrect) would help to understand what you're after. http://stackoverflow.com/questions/238728/security-is-it-ok-to-send-a-username-and-password-via-http-get/238769#238769 Comment by TimB on Security - is it ok to send a username and password via HTTP GET? TimB 2008-10-26T23:17:55Z 2008-10-26T23:17:55Z ... assuming you're in the US, of course. But other countries may have similar requirements. http://stackoverflow.com/questions/228495/using-wild-card-subdomains-with-mod-rewrite Comment by TimB on Using Wild Card Subdomains With Mod Rewrite? TimB 2008-10-23T04:11:50Z 2008-10-23T04:11:50Z Did you mean &quot;Can anyone tell me how to make it so that www and nothing go to the main site...&quot;? http://stackoverflow.com/questions/224009/how-to-manage-session-variables-in-a-web-cluster/224019#224019 Comment by TimB on How to manage session variables in a web cluster? TimB 2008-10-22T01:17:51Z 2008-10-22T01:17:51Z memcached lets you cache (note, not store -- it's not guaranteed to be persistent) data for a given key. So, you'd take the session key from the client request and lookup the session data from memcached. It's fast, so the one instance could be shared by all members of the cluster. http://stackoverflow.com/questions/223559/using-variables-for-class-names-in-python Comment by TimB on Using Variables for Class Names in Python? TimB 2008-10-21T21:51:43Z 2008-10-21T21:51:43Z I'd be interested to hear why you need to do this -- I think there might be a more Pythonic way which doesn't require variable class names. http://stackoverflow.com/questions/219999/how-can-i-encrypt-password-data-in-a-database-using-php/220011#220011 Comment by TimB on How can I encrypt password data in a database using PHP? TimB 2008-10-20T23:08:57Z 2008-10-20T23:08:57Z According to vt's answer, phpass implements the BCrypt scheme as described in that article. Here's the link to save you the trouble: <a href="http://www.openwall.com/phpass/" rel="nofollow">openwall.com/phpass</a> http://stackoverflow.com/questions/219999/how-can-i-encrypt-password-data-in-a-database-using-php/220082#220082 Comment by TimB on How can I encrypt password data in a database using PHP? TimB 2008-10-20T23:06:44Z 2008-10-20T23:06:44Z Note that at the end of the second post linked above, Jeff has included an update with a now-broken link to an article by Thomas Ptacek. But it's the same article linked from AviewAnew's reply, and is an absolute must read: <a href="http://www.securityfocus.com/blogs/262" rel="nofollow">securityfocus.com/blogs/262</a>. Also, see vt's answer about phpass. http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217508#217508 Comment by TimB on Best algorithm for determining the high and low in an array of numbers? TimB 2008-10-20T04:19:30Z 2008-10-20T04:19:30Z That's assuming that the extra code complexity (due to the extra branches) doesn't slow things down. Oh, and O(3n/2) == O(2n) == O(n) -- you have to use something other than big-O notation to measure a constant factor difference. http://stackoverflow.com/questions/25305/for-those-that-demand-those-elusive-badges/92784#92784 Comment by TimB on For those that demand those elusive badges TimB 2008-10-13T22:43:46Z 2008-10-13T22:43:46Z TonJ, the reference was to this: <a href="http://en.wikipedia.org/wiki/Office_Space" rel="nofollow">en.wikipedia.org/wiki/Office_Space</a> http://stackoverflow.com/questions/190190/what-is-the-best-way-to-get-your-new-commercial-software-product-some-exposure Comment by TimB on What is the best way to get your new commercial software product some exposure? TimB 2008-10-10T05:17:00Z 2008-10-10T05:17:00Z What's the market for the software? Home users, commercial, education? You'd want to do things differently depending on the market. http://stackoverflow.com/questions/190135/open-source-random-number-generation-algorithm-in-c Comment by TimB on Open source random number generation algorithm in C++? TimB 2008-10-10T05:12:25Z 2008-10-10T05:12:25Z Why wouldn't you just give the records sequential unique keys for the new DB? I can't see what benefit using random keys gives you. http://stackoverflow.com/questions/189468/identifying-the-season-from-the-date-using-java Comment by TimB on Identifying the season from the Date using Java TimB 2008-10-09T22:53:47Z 2008-10-09T22:53:47Z And what about the southern hemisphere? You know our seasons are reversed, don't you? http://stackoverflow.com/questions/185451/quick-and-dirty-way-to-ensure-only-one-instance-of-a-shell-script-is-running-at-a/185466#185466 Comment by TimB on Quick-and-dirty way to ensure only one instance of a shell script is running at a time TimB 2008-10-09T00:32:59Z 2008-10-09T00:32:59Z This may or may not be an issue, depending on how it's used, but there's a race condition between testing for the lock and creating it, so that two scripts could both be started at the same time. If one terminates first, the other will stay running with no lock file.