Dustin

6,672
Reputation
421 views

Registered User

Name Dustin
Member for 1 year
Seen 22 hours ago
Website
Location US
Age 32
I write code.
8h
awarded  Nice Answer
Nov
23
answered How do I cache a find in a controller using memcache?
Nov
23
awarded  Yearling
Nov
22
answered Tornado and Python 3.x
Nov
22
comment If you had the time and inclination to create a programming language, what characteristics would it have?
I wrote a scripting language like this a while back. I called it psh or "pourne shell" as a bourne shell with parallel for loops. It worked wonderfully for me. I should clean up the page I had for it and put the repo up somewhere.
Nov
22
comment Distributed caching on 64-bit Windows machines
capttofu on github is doing the most with it right now. The biggest part is making a build run consistently on Windows. We do have preliminary releases over at labs.northscale.com but they haven't been brought into the master branches just yet.
Nov
21
answered Hudson infinite loop polling for changes in Git repository?
Nov
21
answered Distributed caching on 64-bit Windows machines
Nov
20
answered Memcached Writes Extremely Slow
Nov
20
comment In git, how do I remove a commit from one branch and apply it to a different branch?
Steps 1+2 == git revert
Nov
20
answered How big can Erlang DETS be and what to do if its too small?
Nov
20
answered git and empty folders
Nov
19
answered Referencing the child of a commit in Git
Nov
19
answered Git in a company - hosting own ‘server’
Nov
19
comment Git in a company - hosting own ‘server’
Step 1: Don't write "git" in all caps. :/ It's not an acronym, just a word.
Nov
18
comment Where can I find a Vim syntax file for the go language?
It comes with one. Please look first.
Nov
18
comment Are there really any production issues in using memcached in Windows?
It's not just yet. We are hoping to get it in the normal memcached build infrastructure to ensure it can be supported first.
Nov
18
accepted Are there really any production issues in using memcached in Windows?
Nov
17
awarded  Nice Answer
Nov
17
answered Are there really any production issues in using memcached in Windows?
Nov
17
comment Is libevent required for building memcached for Windows?
If you don't use libevent, you're not compiling memcached as we distribute at memcached.org but something that someone's gone through some effort to port an older version that is no longer maintained.
Nov
14
accepted Git pull from several repos in one command
Nov
14
answered minimum work size of a goroutine
Nov
13
comment Memcached crashing under moderate load
Which version of memcached? Is the server crashing or the client? Have you captured stats while this is running?
Nov
13
answered Is libevent required for building memcached for Windows?
Nov
12
answered Git pull from several repos in one command
Nov
12
answered enyim and memcached : NOT_STORED errors
Nov
10
accepted Using Git, show all commits that are in one branch, but not the other(s)
Nov
10
answered Using Git, show all commits that are in one branch, but not the other(s)
Nov
10
answered How can I get my C code to automatically print out its Git version hash?
Nov
7
answered How do I see if memcached is already running on my chosen port?
Nov
7
answered Adding authentication to beanstalkd from Python (or any UNIX) client
Nov
6
accepted accessing memcached stats via cmemcache or django returns warning
Nov
5
answered accessing memcached stats via cmemcache or django returns warning
Nov
4
comment How to get the current node name in an erlang cluster?
Please note that people come here to have conversations, leave evidence to help others, and build reputation by providing good answers. Asking someone to email you an answer out of the system is somewhat rude.
Nov
4
answered How to get the current node name in an erlang cluster?
Nov
4
revised How to get the current node name in an erlang cluster?
Cleaned up the formatting and tags.
Nov
4
answered How to cherry-pick multiple commits
Nov
3
answered A multithreaded queue in Python
Nov
2
comment How to make a git repository read-only?
666 is world readable and writable files. 776 is world and group readable, writable and executable and other users read and write. Not sure where you got the numbers you're recommending, but they're generally dangerous.
Nov
2
comment identifying sub-class at run time
I think instanceof is a better approach, but you get my vote for pointing out that this is really a sign that the design is quite wrong.
Nov
2
answered erlang list manipulation
Oct
31
answered git merge results in duplicate commits on published branch
Oct
30
accepted Getting MMIX repo for CVS/Git
Oct
30
answered Getting MMIX repo for CVS/Git
Oct
29
comment Local branches with Bazaar?
I think the "cd" part of that validated the "branches just being separate directories" part of the question. Branches are less useful if I have to reconfigure my tools when I change branches.
Oct
29
answered git question. How can I push 1 commit without the other?
Oct
26
comment Is there a memcache “catalog”?
(and sorry for spelling principle wrong)
Oct
26
comment Is there a memcache “catalog”?
Memory for a particular application comes and goes in memcached. The app taking up most memory can change throughout the day. The one that's the most active is likely to be using more memory than the one that's the least active. It's pretty easy to get rails to log access so you can at least get a feel. Watch eviction stats and you'll know whether it even matters.
Oct
26
accepted Is there a memcache “catalog”?