May 2010
29 posts
5 tags
Symantec Endpoint Protection Installation and...
Common topics and support resources
Microsoft Small Business Server 2003 Best Practices If installing on an older machine (or virtual machine) make sure that your system meets the minimum requirements:
Processor Dual-Core / Dual CPU Memory 2GB RAM (installed in the machine) Disk Space ...
4 tags
Windows Deployment Overview
Scenario #1. you work for a company that is purchasing lots of new computers and it is your responsibility to set them all up with fairly similar configurations.
Scenario #2. Alternatively, you could have a need to recycle old machines with a fresh installation of windows and all the standard applications.
Anyone who has been in either of the aforementioned situations knows how tedious manual...
April 2010
19 posts
3 tags
Django: portal-style application for universities →
MyUni is a portal-style web application for Universities, offering students a central location to access all the relevant information about their course, modules, assignments, and staff members. It was originally designed for the University of Nottingham’s Computer Science department.
3 tags
3 tags
1 tag
2 tags
3 tags
Minimal Django →
siliconchaos:
I work daily with Django and love it, but after reading about Flask I got a small case of microframework envy. Why can’t Django development scale down as well as it scales up, and let a beginner have…
It’s so great when folks question the tedium of ‘the way things are’ and figure out how to simplify tasks. Like eliminating the need for a project in django- why...
3 tags
3 tags
12 Super JavaScript Animation Frameworks →
Wow, things change soo fast- I remember when JavaScript was invented, then it was taboo to use it, now it seems like it is better than sliced bread! There are some really impressive frameworks on this list. Some that I had not even heard of!
3 tags
3 tags
Using the Google App Engine Helper for Django →
4 tags
Django on Google App Engine in 13 simple steps →
3 tags
Django-powered Blog on GAE →
4 tags
5 tags
http://en.wikipedia.org/wiki/Rabin–Karp_string_search_algorithm
–
function RabinKarpSet(string s[1..n], set of string subs, m) {
set hsubs := emptySet
for each sub in subs
insert hash(sub[1..m]) into hsubs
hs := hash(s[1..m])
for i from 1 to n-m+1
if hs ∈ hsubs
if s[i..i+m-1] = a substring with hash hs
...
4 tags
3 tags
5 tags
Deploy time text-image generation with Django →
brv8:
Great article on generating text-images with Django at deploy time. Nice layout too…