User Lee B - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:47:54Zhttp://stackoverflow.com/feeds/user/69148http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/1737161#17371610Answer by Lee B for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?Lee B2009-11-15T10:15:05Z2009-11-15T10:15:05Z<p>Very simply, since networks obey prescribed rules, the results are not random.</p>
<p>The webcam idea sounds (slightly) reasonable. Linux people often recommend simply using the random noise from a soundcard which has no mic attached.</p>
http://stackoverflow.com/questions/1732755/is-change-tracking-in-orms-a-necessity-or-a-luxury-in-the-context-of-web-apps/1732779#17327790Answer by Lee B for Is change-tracking in ORMs a necessity or a luxury, in the context of web apps?Lee B2009-11-14T00:36:57Z2009-11-14T00:36:57Z<p>A simpler (business, not technical) question would be: does anyone need to audit changes on the site? Usually, even for many sites that currently don't implement change tracking, the answer is YES --- a disgruntled employee or an abusive user could delete or change information , and there needs to be a way to track down the responsible person, the change, and the version before.</p>
http://stackoverflow.com/questions/1698004/suggestions-for-gateway-please/1698019#16980191Answer by Lee B for Suggestions for gateway pleaseLee B2009-11-08T21:45:23Z2009-11-08T21:45:23Z<p>Don't hard-code for one solution; they could change prices or policies at any time, making your business difficult. Instead, use a payment gateway abstraction library, such as this one: </p>
<p><a href="http://www.phpfour.com/blog/2009/02/php-payment-gateway-library-for-paypal-authorizenet-and-2checkout/" rel="nofollow">http://www.phpfour.com/blog/2009/02/php-payment-gateway-library-for-paypal-authorizenet-and-2checkout/</a></p>
http://stackoverflow.com/questions/1639787/how-do-apps-that-image-web-pages-work/1639847#16398471Answer by Lee B for How do apps that image web pages work?Lee B2009-10-28T20:16:54Z2009-10-28T20:16:54Z<p>It's possible that they use some rendering engines from browsers and ask them to render to a canvas that's attached to a raw bitmap, and then just save the bitmap. I expect most of them -- in particular, the ones that specifically say their layout is IE layout, etc. -- just tell the browser to load a page, then find the handle to the browser window, figure out where the internal canvas area is (you can do this with some widget toolkits, and also with some accessibility APIs), and then use normal screenshot techniques to get a bitmap of that area.</p>
http://stackoverflow.com/questions/1620262/programmatically-obtaining-the-number-of-colors-used-in-an-image/1620328#16203281Answer by Lee B for Programmatically obtaining the number of colors used in an imageLee B2009-10-25T08:09:15Z2009-10-25T08:09:15Z<p>Alnitak's solution is nice :) I really should get to know netpbm and imagemagick etc. better some time.</p>
<p>Just FYI, as a simple and very general solution: loop through each pixel in the image, getting the r,g,b color values as a single integer. Look for that integer in a list. If it's not there, add it. When finished with all the pixels, print the number of colors in the list.</p>
<p>If you want to count occurences, use a hashmap/dictionary instead of a simple list, incrementing the key's value (a counter) if found in the dictionary already. If not found, add it with a starting counter value of 1.</p>
http://stackoverflow.com/questions/1619120/c-sync-and-backup-framework/1619246#16192460Answer by Lee B for C++ sync and backup frameworkLee B2009-10-24T21:50:09Z2009-10-24T21:50:09Z<p>Yep, rsync:</p>
<p><a href="http://librsync.sourceforge.net/" rel="nofollow">http://librsync.sourceforge.net/</a></p>
<p>Or if you really want a complete backup (rather than sync) codebase, use the source of rdiff-backup.</p>
http://stackoverflow.com/questions/1618957/is-c-faster-than-c/1619065#16190650Answer by Lee B for Is C faster than C++?Lee B2009-10-24T20:49:22Z2009-10-24T20:49:22Z<p>Generally, hand-crafted code for a specific platform, by an expert in that platform, will be faster in C than in C++, because, very simply, C lets you think at a lower level, closer to the actual instructions that are executed.</p>
<p>However, the other side of the argument is that C++ is a higher-level language, allowing you to communicate with the compiler and standard library code in a more direct way. Since the compiler and standard libraries are more expert than most programmers, they are often better placed to implement fast code FOR you, than if you tried to do it yourself. This becomes especially true if you're talking about multiple platforms, or even different CPUs in the same family.</p>
<p>Of course, then there is the question of which is the faster language to learn well enough to use optimally. I'd argue that C++ is very complex for what it does. Personally, I loved C as a low-level language, but if I'm looking for something higher-level, I don't really consider C++ these days; I go straight to higher levels still, like python.</p>
<p>p.s.: if you want to research this further, look into Vala -- a relatively new language which is a lot like C#, but has performance better than C++, and much closer to C. It's implemented in C, and based on relatively modern object-oriented C programming techniques, so that should tell you something.</p>
http://stackoverflow.com/questions/1576489/where-are-constant-variables-stored-in-c/1576512#15765121Answer by Lee B for Where are constant variables stored in C?Lee B2009-10-16T06:53:03Z2009-10-16T06:53:03Z<p>This is mostly an educated guess, but I'd say that constants are usually stored in the actual CPU instructions of your compiled program, as immediate data. So in other words, most instructions include space for the address to get data from, but if it's a constant, the space can hold the value itself.</p>
http://stackoverflow.com/questions/1573722/git-with-ldap-authorization/1573841#15738412Answer by Lee B for Git with ldap authorizationLee B2009-10-15T17:21:15Z2009-10-15T17:21:15Z<p>Should work:</p>
<ul>
<li><p>Access git repos over SSH using standard logins (nothing unusual here).</p></li>
<li><p>Make your git repos have access permissions for a certain group, which particular logins have membership of.</p></li>
<li><p>Use pam-ldap to make your standard login system work with LDAP.</p></li>
</ul>
<p>If there's a more specific way, that JUST checks ldap without affecting the rest of your system? I don't know, but it's probably possible with a pre-commit hook, or something like that.</p>
http://stackoverflow.com/questions/1568267/is-there-a-standard-format-for-describing-a-flat-file/1568576#15685760Answer by Lee B for Is there a standard format for describing a flat file?Lee B2009-10-14T19:51:48Z2009-10-14T19:51:48Z<p>The only similar thing I know of is Hachoir, which can currently parse 70 file formats:</p>
<p><a href="http://hachoir.org/wiki/hachoir-parser" rel="nofollow">http://hachoir.org/wiki/hachoir-parser</a></p>
<p>I'm not sure if it really counts as a declarative language, since it's plugin parser based, but it seems to work, and is extensible, which may meet your needs just fine.</p>
<p>As an aside, there are interesting standardised, extensible flat-file FORMATS, such as IFF (Interchange File Format).</p>
http://stackoverflow.com/questions/1554366/worker-timeslot-permutation-constraint-filtering-algorithm4Worker/Timeslot permutation/constraint filtering algorithmLee B2009-10-12T12:41:52Z2009-10-12T15:58:43Z
<p>Hope you can help me out with this guys. It's not help with work -- it's for a charity of very hard working volunteers, who could really use a less confusing/annoying timetable system than what they currently have.</p>
<p>If anyone knows of a good third-party app which (certainly) automate this, that would almost as good. Just... please don't suggest random timetabling stuff such as the ones for booking classrooms, as I don't think they can do this.</p>
<p>Thanks in advance for reading; I know it's a big post. I'm trying to do my best to document this clearly though, and to show that I've made efforts on my own.</p>
<h2>Problem</h2>
<p>I need a worker/timeslot scheduling algorithm which generates shifts for workers, which meets the following criteria:</p>
<p><strong>Input Data</strong></p>
<pre><code>import datetime.datetime as dt
class DateRange:
def __init__(self, start, end):
self.start = start
self.end = end
class Shift:
def __init__(self, range, min, max):
self.range = range
self.min_workers = min
self.max_workers = max
tue_9th_10pm = dt(2009, 1, 9, 22, 0)
wed_10th_4am = dt(2009, 1, 10, 4, 0)
wed_10th_10am = dt(2009, 1, 10, 10, 0)
shift_1_times = Range(tue_9th_10pm, wed_10th_4am)
shift_2_times = Range(wed_10th_4am, wed_10th_10am)
shift_3_times = Range(wed_10th_10am, wed_10th_2pm)
shift_1 = Shift(shift_1_times, 2,3) # allows 3, requires 2, but only 2 available
shift_2 = Shift(shift_2_times, 2,2) # allows 2
shift_3 = Shift(shift_3_times, 2,3) # allows 3, requires 2, 3 available
shifts = ( shift_1, shift_2, shift_3 )
joe_avail = [ shift_1, shift_2 ]
bob_avail = [ shift_1, shift_3 ]
sam_avail = [ shift_2 ]
amy_avail = [ shift_2 ]
ned_avail = [ shift_2, shift_3 ]
max_avail = [ shift_3 ]
jim_avail = [ shift_3 ]
joe = Worker('joe', joe_avail)
bob = Worker('bob', bob_avail)
sam = Worker('sam', sam_avail)
ned = Worker('ned', ned_avail)
max = Worker('max', max_avail)
amy = Worker('amy', amy_avail)
jim = Worker('jim', jim_avail)
workers = ( joe, bob, sam, ned, max, amy, jim )
</code></pre>
<h2>Processing</h2>
<p>From above, <em>shifts</em> and <em>workers</em> are the two main input variables to process</p>
<p>Each shift has a minimum and maximum number of workers needed. Filling the minimum requirements for a shift is crucial to success, but if all else fails, a rota with gaps to be filled manually is better than "error" :) The main algorithmic issue is that there shouldn't be unnecessary gaps, when enough workers are available.</p>
<p>Ideally, the maximum number of workers for a shift would be filled, but this is the lowest priority relative to other constraints, so if anything has to give, it should be this.</p>
<p><strong>Flexible constraints</strong></p>
<p>These are a little flexible, and their boundaries can be pushed a little if a "perfect" solution can't be found. This flexibility should be a last resort though, rather than being exploited randomly. Ideally, the flexibility would be configurable with a "fudge_factor" variable, or similar.</p>
<ul>
<li>There is a minimum time period
between two shifts. So, a worker
shouldn't be scheduled for two shifts
in the same day, for instance.</li>
<li>There are a maximum number of shifts a
worker can do in a given time period
(say, a month)</li>
<li>There are a maximum number of certain
shifts that can be done in a month
(say, overnight shifts)</li>
</ul>
<p><strong>Nice to have, but not necessary</strong></p>
<p>If you can come up with an algorithm which does the above and includes any/all of these, I'll be seriously impressed and grateful. Even an add-on script to do these bits separately would be great too.</p>
<ul>
<li><p>Overlapping shifts. For instance,
it would be good to be able to specify
a "front desk" shift and a "back office"
shift that both occur at the same time.
This could be done with separate invocations
of the program with different shift data,
except that the constraints about scheduling
people for multiple shifts in a given time
period would be missed.</p></li>
<li><p>Minimum reschedule time period for workers specifiable
on a per-worker (rather than global) basis. For instance,
if Joe is feeling overworked or is dealing with personal issues,
or is a beginner learning the ropes, we might want to schedule him
less often than other workers.</p></li>
<li><p>Some automated/random/fair way of selecting staff to fill minimum
shift numbers when no available workers fit.</p></li>
<li><p>Some way of handling sudden cancellations, and just filling the gaps
without rearranging other shifts.</p></li>
</ul>
<h2>Output Test</h2>
<p>Probably, the algorithm should generate as many matching Solutions as possible, where each Solution looks like this:</p>
<pre><code>class Solution:
def __init__(self, shifts_workers):
"""shifts_workers -- a dictionary of shift objects as keys, and a
a lists of workers filling the shift as values."""
assert isinstance(dict, shifts_workers)
self.shifts_workers = shifts_workers
</code></pre>
<p>Here's a test function for an individual solution, given the above data. I <em>think</em> this is right, but I'd appreciate some peer review on it too.</p>
<pre><code>def check_solution(solution):
assert isinstance(Solution, solution)
def shift_check(shift, workers, workers_allowed):
assert isinstance(Shift, shift):
assert isinstance(list, workers):
assert isinstance(list, workers_allowed)
num_workers = len(workers)
assert num_workers >= shift.min_workers
assert num_workers <= shift.max_workers
for w in workers_allowed:
assert w in workers
shifts_workers = solution.shifts_workers
# all shifts should be covered
assert len(shifts_workers.keys()) == 3
assert shift1 in shifts_workers.keys()
assert shift2 in shifts_workers.keys()
assert shift3 in shifts_workers.keys()
# shift_1 should be covered by 2 people - joe, and bob
shift_check(shift_1, shifts_workers[shift_1], (joe, bob))
# shift_2 should be covered by 2 people - sam and amy
shift_check(shift_2, shifts_workers[shift_2], (sam, amy))
# shift_3 should be covered by 3 people - ned, max, and jim
shift_check(shift_3, shifts_workers[shift_3], (ned,max,jim))
</code></pre>
<h2>Attempts</h2>
<p>I've tried implementing this with a Genetic Algorithm, but can't seem to get it tuned quite right, so although the basic principle seems to work on single shifts, it can't solve even easy cases with a few shifts and a few workers.</p>
<p>My latest attempt is to generate every possible permutation as a solution, then whittle down the permutations that don't meet the constraints. This seems to work much more quickly, and has gotten me further, but I'm using python 2.6's itertools.product() to help generate the permutations, and I can't quite get it right. It wouldn't surprise me if there are many bugs as, honestly, the problem doesn't fit in my head that well :)</p>
<p>Currently my code for this is in two files: models.py and rota.py. models.py looks like:</p>
<pre><code># -*- coding: utf-8 -*-
class Shift:
def __init__(self, start_datetime, end_datetime, min_coverage, max_coverage):
self.start = start_datetime
self.end = end_datetime
self.duration = self.end - self.start
self.min_coverage = min_coverage
self.max_coverage = max_coverage
def __repr__(self):
return "<Shift %s--%s (%r<x<%r)" % (self.start, self.end, self.min_coverage, self.max_coverage)
class Duty:
def __init__(self, worker, shift, slot):
self.worker = worker
self.shift = shift
self.slot = slot
def __repr__(self):
return "<Duty worker=%r shift=%r slot=%d>" % (self.worker, self.shift, self.slot)
def dump(self, indent=4, depth=1):
ind = " " * (indent * depth)
print ind + "<Duty shift=%s slot=%s" % (self.shift, self.slot)
self.worker.dump(indent=indent, depth=depth+1)
print ind + ">"
class Avail:
def __init__(self, start_time, end_time):
self.start = start_time
self.end = end_time
def __repr__(self):
return "<%s to %s>" % (self.start, self.end)
class Worker:
def __init__(self, name, availabilities):
self.name = name
self.availabilities = availabilities
def __repr__(self):
return "<Worker %s Avail=%r>" % (self.name, self.availabilities)
def dump(self, indent=4, depth=1):
ind = " " * (indent * depth)
print ind + "<Worker %s" % self.name
for avail in self.availabilities:
print ind + " " * indent + repr(avail)
print ind + ">"
def available_for_shift(self, shift):
for a in self.availabilities:
if shift.start >= a.start and shift.end <= a.end:
return True
print "Worker %s not available for %r (Availability: %r)" % (self.name, shift, self.availabilities)
return False
class Solution:
def __init__(self, shifts):
self._shifts = list(shifts)
def __repr__(self):
return "<Solution: shifts=%r>" % self._shifts
def duties(self):
d = []
for s in self._shifts:
for x in s:
yield x
def shifts(self):
return list(set([ d.shift for d in self.duties() ]))
def dump_shift(self, s, indent=4, depth=1):
ind = " " * (indent * depth)
print ind + "<ShiftList"
for duty in s:
duty.dump(indent=indent, depth=depth+1)
print ind + ">"
def dump(self, indent=4, depth=1):
ind = " " * (indent * depth)
print ind + "<Solution"
for s in self._shifts:
self.dump_shift(s, indent=indent, depth=depth+1)
print ind + ">"
class Env:
def __init__(self, shifts, workers):
self.shifts = shifts
self.workers = workers
self.fittest = None
self.generation = 0
class DisplayContext:
def __init__(self, env):
self.env = env
def status(self, msg, *args):
raise NotImplementedError()
def cleanup(self):
pass
def update(self):
pass
</code></pre>
<p>and rota.py looks like:</p>
<pre><code>#!/usr/bin/env python2.6
# -*- coding: utf-8 -*-
from datetime import datetime as dt
am2 = dt(2009, 10, 1, 2, 0)
am8 = dt(2009, 10, 1, 8, 0)
pm12 = dt(2009, 10, 1, 12, 0)
def duties_for_all_workers(shifts, workers):
from models import Duty
duties = []
# for all shifts
for shift in shifts:
# for all slots
for cov in range(shift.min_coverage, shift.max_coverage):
for slot in range(cov):
# for all workers
for worker in workers:
# generate a duty
duty = Duty(worker, shift, slot+1)
duties.append(duty)
return duties
def filter_duties_for_shift(duties, shift):
matching_duties = [ d for d in duties if d.shift == shift ]
for m in matching_duties:
yield m
def duty_permutations(shifts, duties):
from itertools import product
# build a list of shifts
shift_perms = []
for shift in shifts:
shift_duty_perms = []
for slot in range(shift.max_coverage):
slot_duties = [ d for d in duties if d.shift == shift and d.slot == (slot+1) ]
shift_duty_perms.append(slot_duties)
shift_perms.append(shift_duty_perms)
all_perms = ( shift_perms, shift_duty_perms )
# generate all possible duties for all shifts
perms = list(product(*shift_perms))
return perms
def solutions_for_duty_permutations(permutations):
from models import Solution
res = []
for duties in permutations:
sol = Solution(duties)
res.append(sol)
return res
def find_clashing_duties(duty, duties):
"""Find duties for the same worker that are too close together"""
from datetime import timedelta
one_day = timedelta(days=1)
one_day_before = duty.shift.start - one_day
one_day_after = duty.shift.end + one_day
for d in [ ds for ds in duties if ds.worker == duty.worker ]:
# skip the duty we're considering, as it can't clash with itself
if duty == d:
continue
clashes = False
# check if dates are too close to another shift
if d.shift.start >= one_day_before and d.shift.start <= one_day_after:
clashes = True
# check if slots collide with another shift
if d.slot == duty.slot:
clashes = True
if clashes:
yield d
def filter_unwanted_shifts(solutions):
from models import Solution
print "possibly unwanted:", solutions
new_solutions = []
new_duties = []
for sol in solutions:
for duty in sol.duties():
duty_ok = True
if not duty.worker.available_for_shift(duty.shift):
duty_ok = False
if duty_ok:
print "duty OK:"
duty.dump(depth=1)
new_duties.append(duty)
else:
print "duty **NOT** OK:"
duty.dump(depth=1)
shifts = set([ d.shift for d in new_duties ])
shift_lists = []
for s in shifts:
shift_duties = [ d for d in new_duties if d.shift == s ]
shift_lists.append(shift_duties)
new_solutions.append(Solution(shift_lists))
return new_solutions
def filter_clashing_duties(solutions):
new_solutions = []
for sol in solutions:
solution_ok = True
for duty in sol.duties():
num_clashing_duties = len(set(find_clashing_duties(duty, sol.duties())))
# check if many duties collide with this one (and thus we should delete this one
if num_clashing_duties > 0:
solution_ok = False
break
if solution_ok:
new_solutions.append(sol)
return new_solutions
def filter_incomplete_shifts(solutions):
new_solutions = []
shift_duty_count = {}
for sol in solutions:
solution_ok = True
for shift in set([ duty.shift for duty in sol.duties() ]):
shift_duties = [ d for d in sol.duties() if d.shift == shift ]
num_workers = len(set([ d.worker for d in shift_duties ]))
if num_workers < shift.min_coverage:
solution_ok = False
if solution_ok:
new_solutions.append(sol)
return new_solutions
def filter_solutions(solutions, workers):
# filter permutations ############################
# for each solution
solutions = filter_unwanted_shifts(solutions)
solutions = filter_clashing_duties(solutions)
solutions = filter_incomplete_shifts(solutions)
return solutions
def prioritise_solutions(solutions):
# TODO: not implemented!
return solutions
# prioritise solutions ############################
# for all solutions
# score according to number of staff on a duty
# score according to male/female staff
# score according to skill/background diversity
# score according to when staff last on shift
# sort all solutions by score
def solve_duties(shifts, duties, workers):
# ramify all possible duties #########################
perms = duty_permutations(shifts, duties)
solutions = solutions_for_duty_permutations(perms)
solutions = filter_solutions(solutions, workers)
solutions = prioritise_solutions(solutions)
return solutions
def load_shifts():
from models import Shift
shifts = [
Shift(am2, am8, 2, 3),
Shift(am8, pm12, 2, 3),
]
return shifts
def load_workers():
from models import Avail, Worker
joe_avail = ( Avail(am2, am8), )
sam_avail = ( Avail(am2, am8), )
ned_avail = ( Avail(am2, am8), )
bob_avail = ( Avail(am8, pm12), )
max_avail = ( Avail(am8, pm12), )
joe = Worker("joe", joe_avail)
sam = Worker("sam", sam_avail)
ned = Worker("ned", sam_avail)
bob = Worker("bob", bob_avail)
max = Worker("max", max_avail)
return (joe, sam, ned, bob, max)
def main():
import sys
shifts = load_shifts()
workers = load_workers()
duties = duties_for_all_workers(shifts, workers)
solutions = solve_duties(shifts, duties, workers)
if len(solutions) == 0:
print "Sorry, can't solve this. Perhaps you need more staff available, or"
print "simpler duty constraints?"
sys.exit(20)
else:
print "Solved. Solutions found:"
for sol in solutions:
sol.dump()
if __name__ == "__main__":
main()
</code></pre>
<p>Snipping the debugging output before the result, this currently gives:</p>
<pre><code>Solved. Solutions found:
<Solution
<ShiftList
<Duty shift=<Shift 2009-10-01 02:00:00--2009-10-01 08:00:00 (2<x<3) slot=1
<Worker joe
<2009-10-01 02:00:00 to 2009-10-01 08:00:00>
>
>
<Duty shift=<Shift 2009-10-01 02:00:00--2009-10-01 08:00:00 (2<x<3) slot=1
<Worker sam
<2009-10-01 02:00:00 to 2009-10-01 08:00:00>
>
>
<Duty shift=<Shift 2009-10-01 02:00:00--2009-10-01 08:00:00 (2<x<3) slot=1
<Worker ned
<2009-10-01 02:00:00 to 2009-10-01 08:00:00>
>
>
>
<ShiftList
<Duty shift=<Shift 2009-10-01 08:00:00--2009-10-01 12:00:00 (2<x<3) slot=1
<Worker bob
<2009-10-01 08:00:00 to 2009-10-01 12:00:00>
>
>
<Duty shift=<Shift 2009-10-01 08:00:00--2009-10-01 12:00:00 (2<x<3) slot=1
<Worker max
<2009-10-01 08:00:00 to 2009-10-01 12:00:00>
>
>
>
>
</code></pre>
http://stackoverflow.com/questions/1554546/when-and-how-to-use-the-builtin-function-property-in-python/1554753#15547531Answer by Lee B for When and how to use the builtin function property() in pythonLee B2009-10-12T14:01:05Z2009-10-12T14:01:05Z<blockquote>
<p>but hiding the fact that a.b=2 isn't a
simple assignment looks like a recipe
for trouble</p>
</blockquote>
<p>You're not hiding that fact though; that fact was never there to begin with. This is python -- a high-level language; not assembly. Few of the "simple" statements in it boil down to single CPU instructions. To read simplicity into an assignment is to read things that aren't there.</p>
<p>When you say x.b = c, probably all you should think is that "whatever just happened, x.b should now be c".</p>
http://stackoverflow.com/questions/1554499/best-tools-for-web-development/1554567#15545672Answer by Lee B for Best Tools for Web Development!?Lee B2009-10-12T13:23:59Z2009-10-12T13:43:25Z<p>Your question reads like one from someone new to web development, so I'll proceed on that basis. Please ignore and accept my apologies if this is all too basic for you.</p>
<p>Basically I want two things from an IDE:</p>
<ul>
<li>a list of files that I'm working on, so I can double-click one to open it.</li>
<li>a fast, responsive, capable editor with syntax highlighting and features like macros, regex replace, etc.</li>
</ul>
<p>On Windows, TextPad is enough to acheive this. On Linux, KATE and GEdit are nice. On OS X, TextMate rocks. On Windows, there's a clone of TextMate, called E-TextEditor, but it's (inexpensive) payware and seems a little rough around the edges. Never tried it though. Most of these are really just text editors, but have plugins available to do the file listing part.</p>
<p>Once you have a decent IDE/editor, then for HTML/CSS, you just need to actually learn the markup languages well enough to do it without helpers, and have (multiple) browser(s) to test with.</p>
<p>Frankly, so-called "tools" like Dreamweaver just get in my way. And that's allowing for the fact that they're much better now than they used to be.</p>
<p>As for more professional solutions... you might want to look into web applications (as opposed to scripts in languages like PHP) and Python/Ruby programming with Django/Rails eventually. I'd recommend Python/Django out of the two, but may be biased. My point is that learning to write actual web applications rather than just web pages and scripts will put you in a whole different league, with much faster ways to build things, and much more options of what you can build.</p>
http://stackoverflow.com/questions/1554557/gmt-or-without-gmt/1554652#15546521Answer by Lee B for gmt or without gmtLee B2009-10-12T13:41:04Z2009-10-12T13:41:04Z<p>It's a good point, but consider the case when 1 day ago suggests "yesterday", and it's currently 1:05am for some user. I suppose if you're using days = hours % 24 rather than days = datediff(then, now).days, then it would work fine.</p>
<p>I think the issue is: how accurate does your site need to be? If it's for medical readings, so someone can know when their medication is due, then yes, you want to account for timezones properly, and give accurate times rather than just "x ago". If it's just for "joe said hi two days ago", though, then it's not a big deal.</p>
http://stackoverflow.com/questions/1554600/implementing-starts-with-and-ends-with-queries-with-google-app-engine/1554615#15546151Answer by Lee B for Implementing "Starts with" and "Ends with" queries with Google App EngineLee B2009-10-12T13:34:07Z2009-10-12T13:34:07Z<p>Seems you can't do it for the general case, but can do it for prefix searches (starts with):</p>
<p><a href="http://stackoverflow.com/questions/1402769/wildcard-search-on-appengine-in-python">http://stackoverflow.com/questions/1402769/wildcard-search-on-appengine-in-python</a></p>
http://stackoverflow.com/questions/1554534/python-clientform-can-not-get-expexted-result/1554607#15546070Answer by Lee B for Python Clientform-can not get expexted resultLee B2009-10-12T13:31:32Z2009-10-12T13:31:32Z<p>Never used it, but I've had success with the python mechanize module, if it turns out to be a fault in clientform.</p>
<p>However, as a first step, I'd suggest removing your try...except wrapper. What you're basically doing is saying "catch any error, then ignore the actual error and print 'Unsuccessful Query' instead". Not helpful for debugging. The exception will stop the program and print a useful error message, if you don't get in its way.</p>
http://stackoverflow.com/questions/1554558/best-way-to-create-an-environment-object-in-c/1554580#1554580-1Answer by Lee B for Best way to create an Environment object in C++Lee B2009-10-12T13:26:17Z2009-10-12T13:26:17Z<p>Sounds like you want a singleton pattern. This will let you create and use one object/instance of a class, but no more, even if you access it many times. See:</p>
<p><a href="http://www.infernodevelopment.com/singleton-c" rel="nofollow">http://www.infernodevelopment.com/singleton-c</a></p>
http://stackoverflow.com/questions/1554180/why-is-the-if-statement-considered-evil/1554420#15544203Answer by Lee B for Why is the 'if' statement considered evil?Lee B2009-10-12T12:54:37Z2009-10-12T12:54:37Z<p>Predicates come from logical/declarative programming languages, like PROLOG. For certain classes of problems, like constraint solving, they are arguably superior to a lot of drawn out step-by-step if-this-do-that-then-do-this crap. Problems that would be long and complex to solve in imperative languages can be done in just a few lines in PROLOG.</p>
<p>There's also the issue of scalable programming (due to the move towards multicore, the web, etc.). If statements and imperative programming in general tend to be in step-by-step order, and not scaleable. Logical declarations and lambda calculus though, describe how a problem can be solved, and what pieces it can be broken down into. As a result, the interpreter/processor executing that code can efficiently break the code into pieces, and distribute it across multiple CPUs/cores/threads/servers.</p>
<p>Definitely not useful everywhere; I'd hate to try writing a device driver with predicates instead of if statements. But yes, I think the main point is probably sound, and worth at least getting familiar with, if not using all the time.</p>
http://stackoverflow.com/questions/1552156/java-is-it-possible-to-print-text-that-can-be-edited-by-the-user-for-console-p/1552258#15522581Answer by Lee B for Java - Is it possible to print text that can be edited by the user (for console programs)Lee B2009-10-12T00:59:32Z2009-10-12T00:59:32Z<p>There are various options for this, in order of simplicity and portability to features and complexity:</p>
<ol>
<li><p>Simply prompt for the information, reading a complete (return-terminated) line of response, and allow the normal terminal input facilities to be used for basic editing.</p></li>
<li><p>Use something like the gnu readline library to allow more advanced editing. You still won't have widgets (text input boxes at specific places on screen) as such though. There's a java implementation here: <a href="http://java-readline.sourceforge.net/" rel="nofollow">http://java-readline.sourceforge.net/</a></p></li>
<li><p>Use something like ncurses to specifically position the cursor, print text labels, handle keypresses, and implement your own text input box. Not fun.</p></li>
<li><p>Use a textual user interface library (TUI), like this one: <a href="http://www.bmsi.com/tuipeer/" rel="nofollow">http://www.bmsi.com/tuipeer/</a></p></li>
</ol>
http://stackoverflow.com/questions/1541375/what-are-the-alternatives-to-google-analytics/1541425#15414250Answer by Lee B for What are the Alternatives to Google AnalyticsLee B2009-10-09T01:39:29Z2009-10-09T01:39:29Z<p>The biggest, most obvious, most usual alternative is to simply do it yourself. Your webserver needs to log requests for security etc. anyway, so it's not a big deal to run something like webalizer on those logs. You won't get the quick, easy access to advanced information like paths users take through the site, btu that can be determined if you care enough. You do gain one huge benefit though: privacy of your own data.</p>
http://stackoverflow.com/questions/1538750/is-there-a-standard-name-for-this-function/1539357#15393570Answer by Lee B for Is there a standard name for this function?Lee B2009-10-08T17:35:41Z2009-10-08T17:35:41Z<p>I posted this in a comment above, but the formatting got messed up, so here it is again for clarity:</p>
<pre><code>def identical_results(l, func):
return reduce(lamdba x,y: x and y, map(func, l))
</code></pre>
http://stackoverflow.com/questions/1536704/unix-command-used-through-make-file/1537269#15372690Answer by Lee B for Unix command used through Make file Lee B2009-10-08T11:35:46Z2009-10-08T11:35:46Z<p>It's very unclear what you're asking. It seems that you want to execute a shell command through your application. If so, make is irrelevant, unless it's make that you're trying to run through your application.</p>
<p>Anyway. Most languages have a standard library call named "system" which executes commands as thought they were typed into a shell. You can also get the return code of the application to see if it ran successfully. There are variations which allow you to set the input and output files (to pipe I/O out or back into your application directly).</p>
http://stackoverflow.com/questions/1536442/what-is-imapact-of-caching-images-on-overall-sites-performance-small-200x150-s/1537175#15371751Answer by Lee B for What is imapact of caching images on overall sites performance ? (small 200x150 size images, total 50 such images) Lee B2009-10-08T11:19:22Z2009-10-08T11:19:22Z<p>Generally, the first step to higher performance would be to move images out of the DB, and simply have urls in the DB. You can then have your site serve those images as static files, very quickly. The OS/server should automatically cache according to available memory. This also has a number of other advantages:</p>
<ul>
<li><p>You can easily put a caching proxy server in front of the real web server, for even higher performance or load balancing.</p></li>
<li><p>You can move the static file server to an entirely different webserver (or cluster of webservers) from the actual webapp. Again, load balancing, but also tuning of servers (performance and security) for different specialised tasks.</p></li>
<li><p>You can put the files on a redundant, scaleable, high-performance NAS.</p></li>
<li><p>You can do all of the above, in any combination.</p></li>
<li><p>Since they'll be static files, not from a DB, other caching proxies (say, at a big ISP) will store them for you, reducing your bandwidth, and increasing performance for users.</p></li>
</ul>
<p>p.s.: given all the advantages of this small seperation of static files and dynamic database information, you could learn a lot about orthogonal system design from this example ;)</p>
http://stackoverflow.com/questions/1534450/c-or-python-for-c-programmer/1534729#15347291Answer by Lee B for C++ or Python for C# programmer?Lee B2009-10-07T23:12:49Z2009-10-07T23:12:49Z<p>C# is a little closer to Java and C++ than it is to Python, so learn Python first out of the two.</p>
<p>However, my advice would be:</p>
<ul>
<li><p>Stick with your current language and learn more techniques, such as a wider range of algorithms, functional programming, design by contract, unit testing, OOAD, etc.</p></li>
<li><p>learn C (focus on figuring out pointers, multi-dimensional arrays, data structures like linked lists, and resource management like memory allocation/deallocation, file handles, etc)</p></li>
<li><p>learn Assembly (on a modern platform with a flat memory architecture, but doing low-level stuff like talking to hardware or drawing on a canvas)</p></li>
<li><p>learn Python or Ruby. Chances are, you'll stick with one of these for a while, knowing all of the above, unless some hot new language has come along by then.</p></li>
</ul>
http://stackoverflow.com/questions/1527393/what-is-orthogonality/1528400#15284001Answer by Lee B for What is "Orthogonality"?Lee B2009-10-06T22:18:30Z2009-10-06T22:18:30Z<p>Most of the answers are very long-winded, and even obscure. The point is: if a tool is orthogonal, it can be added, replaced, or removed, in favor of better tools, without screwing everything else up.</p>
<p>It's the difference between a carpenter having a hammer and a saw, which can be used for hammering or sawing, or having some new-fangled hammer/saw combo, which is designed to saw wood, then hammer it together. Either will work for sawing and then hammering together, but if you get some task that requires sawing, but not hammering, then only the orthogonal tools will work. Likewise, if you need to screw instead of hammering, you won't need to throw away your saw, if it's orthogonal (not mixed up with) your hammer.</p>
<p>The classic example is unix command line tools: you have one tool for getting the contents of a disk (dd), another for filtering lines from the file (grep), another for writing those lines to a file (cat), etc. These can all be mixed and matched at will.</p>
http://stackoverflow.com/questions/1523483/does-gcc-support-long-long-int/1524790#15247901Answer by Lee B for Does GCC support long long int?Lee B2009-10-06T10:31:04Z2009-10-06T10:31:04Z<p>long longs are well supported, and have been for a long long time [sorry]. As I understand it, this should have been 128 bit on 64-bit platforms, but for compatibility/portability reasons in GCC, has standardised on a 64-bit width.</p>
<p>See also: (u)int128_t, and this <a href="http://www.x86-64.org/pipermail/discuss/2005-August/006412.html" rel="nofollow">discussion on GCC's 128-bit integer support</a></p>
http://stackoverflow.com/questions/1450810/linux-vs-windows-programming/1451641#14516419Answer by Lee B for Linux vs Windows Programming?Lee B2009-09-20T18:17:44Z2009-09-20T18:17:44Z<p>For C++, KDevelop 4.x and Qt are about as good as it gets. Make sure you're using the KATE editing component for KDevelop, and you'll have a very nice editor. It also supports RAD, with Qt's very good, very modern, portable GUI toolkit, project configuration management, debugging, and some other features you'd miss if they were gone.</p>
<p>I'd also recommend a look at developing with PyQt4 (python + qt4) using the Eric4 IDE. If you want rapid cross-platform development with modern tools, this is it.</p>
http://stackoverflow.com/questions/1451240/how-do-you-organize-your-development-environment/1451541#14515410Answer by Lee B for How do you organize your development environmentLee B2009-09-20T17:38:37Z2009-09-20T17:38:37Z<p>I have everything in a version control repositories (nb: a very reassuring set of files to have, and to have tested backups of). On my dev machines, I have Projects folder for checked out current/recent work, and a Projects/Archives folder for older checkouts which I'm not currently working on. When I need third-party libraries for a project, they go into a third_party folder inside each project. These are tracked a git submodules, which gives me the exact software versions that are known to work with that project, but also easy updating in different projects, hacking if some library doesn't do quite what I need, etc. The idea with that is that each project should be self-contained and portable between machines as far as reasonable for reliability etc.</p>
http://stackoverflow.com/questions/1451216/how-to-recruit-great-developers/1451499#14514990Answer by Lee B for How to Recruit Great Developers?Lee B2009-09-20T17:20:48Z2009-09-20T17:20:48Z<p>Aside from all the stuff people have mentioned above (an despite a few things mentioned above), one other thing is also very important: do NOT make your company sound like it takes itself ultra-seriously, or has unreasonable expectations.</p>
<p>It's a joyful thing to be a great coder who can exceed expectations on the first day, swap languages and other technologies at the drop of a hat, and enjoy a little praise for hard work well done. It's quite another thing though, to read a job advert saying that to work in your little company, I must be able to exceed expectations, know 5 specific languages (requiring any specific language is almost stupid in itself), and be an expert in BSD Make version 3.1.</p>
<p>If you want reasonable people with strong core qualities, post reasonable ads, which focus on core qualities. Otherwise, you'll just show that you don't know how to appreciate a skilled individual, and that working there would be frustrating at best.</p>
http://stackoverflow.com/questions/1447268/does-an-arbitrary-instruction-pointer-reside-in-a-specific-function/1447298#14472981Answer by Lee B for Does an arbitrary instruction pointer reside in a specific function?Lee B2009-09-19T00:11:00Z2009-09-20T00:21:40Z<p>OK, I haven't done assembly in about 15 years. Back then, I didn't do very much. Also, it was 680x0 asm. BUT...</p>
<p>Don't you just need to put a label before and after the function, take their addresses, subtract them for the function length, and then just compare the IP? I've seen the former done. The latter seems obvious.</p>
<p>If you're doing this in C, look first for debugging support --- ChrisW is spot on with map files, but also see if your C compiler's standard library provides anything for this low-level stuff -- most compilers provide tools for analysing the stack etc., for instance, even though it's not standard. Otherwise, try just using inline assembly, or wrapping the C function with an assembly file and a empty wrapper function with those labels.</p>
http://stackoverflow.com/questions/550632/favorite-django-tips-features/1300107#1300107Comment by Lee B on Favorite Django Tips & Features?Lee B2009-11-14T22:34:45Z2009-11-14T22:34:45ZDjango'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.http://stackoverflow.com/questions/1732755/is-change-tracking-in-orms-a-necessity-or-a-luxury-in-the-context-of-web-apps/1734356#1734356Comment by Lee B on Is change-tracking in ORMs a necessity or a luxury, in the context of web apps?Lee B2009-11-14T21:13:50Z2009-11-14T21:13:50ZThis "change-tracking in ORMs" sounds suspiciously like transactions, or even simple caching before write-back of data.http://stackoverflow.com/questions/1705933/checking-row-and-column-for-a-word-in-python/1705968#1705968Comment by Lee B on Checking row and column for a word in pythonLee B2009-11-10T07:06:53Z2009-11-10T07:06:53Z@Alex: GOOGLE's standard library?! Google didn't write the python libs.http://stackoverflow.com/questions/1705896/need-marquee-text-but-in-which-we-can-stop-on-mouseoverComment by Lee B on Need marquee text but in which we can stop on mouseoverLee B2009-11-10T07:03:57Z2009-11-10T07:03:57ZAs 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.http://stackoverflow.com/questions/1641008/how-to-store-arbitrary-name-value-key-pairs-in-a-django-model/1641039#1641039Comment by Lee B on How to store arbitrary name/value key pairs in a Django model?Lee B2009-11-09T07:03:43Z2009-11-09T07:03:43ZAgreed. You should probably consider something like Redland library or rdflib (<a href="http://code.google.com/p/rdflib/wiki/IntroStore" rel="nofollow">code.google.com/p/rdflib/wiki/IntroStore</a>) instead of django's db layer. The real benefit of this will be in using specialised query languages, like SPARQL.http://stackoverflow.com/questions/1517192/whats-a-good-library-to-do-computational-geometry-like-cgal-in-a-garbage-colle/1517213#1517213Comment by Lee B on What's a good library to do computational geometry (like CGAL) in a garbage-collected language?Lee B2009-11-09T06:53:44Z2009-11-09T06:53:44ZYep, and look into one of the C++ bindings generators (which binds C++ code to python), such as SIP.http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895303#895303Comment by Lee B on How can you tell if a person is a programmer?Lee B2009-11-08T19:24:42Z2009-11-08T19:24:42ZIt's not a C thing, it's a compsci/math thing.http://stackoverflow.com/questions/62222/centos-or-debian-as-a-server-os/129556#129556Comment by Lee B on Centos or Debian as a server OS ? Lee B2009-11-01T23:10:41Z2009-11-01T23:10:41Z@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.http://stackoverflow.com/questions/1657067/why-do-most-programmers-know-nothing-about-hardwareComment by Lee B on Why do most programmers know nothing about hardware?Lee B2009-11-01T13:08:18Z2009-11-01T13:08:18Z-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.http://stackoverflow.com/questions/1620262/programmatically-obtaining-the-number-of-colors-used-in-an-image/1620328#1620328Comment by Lee B on Programmatically obtaining the number of colors used in an imageLee B2009-10-27T21:55:37Z2009-10-27T21:55:37ZArguably, 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.http://stackoverflow.com/questions/1586230/automated-testing-for-opengl-application/1603872#1603872Comment by Lee B on Automated testing for OpenGL applicationLee B2009-10-25T11:41:46Z2009-10-25T11:41:46ZUsing 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.http://stackoverflow.com/questions/1618957/is-c-faster-than-c/1619065#1619065Comment by Lee B on Is C faster than C++?Lee B2009-10-24T21:20:25Z2009-10-24T21:20:25ZWell, 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.http://stackoverflow.com/questions/1618888/how-can-i-sort-a-linked-list-in-c/1618931#1618931Comment by Lee B on How can I sort a linked list in C ?Lee B2009-10-24T21:16:34Z2009-10-24T21:16:34ZI may be wrong, but I'm concerned that it may not be portable to allocate memory and fill it with pointers without dealing with memory alignment and things like that.http://stackoverflow.com/questions/1618933/any-lightweight-nix-environment-for-programming/1618940#1618940Comment by Lee B on Any lightweight *nix environment for programmingLee B2009-10-24T21:09:59Z2009-10-24T21:09:59ZDon'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." -- <a href="http://www.vectorbd.com/bfd/bbsinfo/walnut.inf" rel="nofollow">vectorbd.com/bfd/bbsinfo/walnut.inf</a>http://stackoverflow.com/questions/1554366/worker-timeslot-permutation-constraint-filtering-algorithm/1555386#1555386Comment by Lee B on Worker/Timeslot permutation/constraint filtering algorithmLee B2009-10-24T21:01:27Z2009-10-24T21:01:27ZThanks; 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 :)