User camflan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T05:16:22Zhttp://stackoverflow.com/feeds/user/22445http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128529/ideas-for-a-scary-programming-halloween-costume/232587#2325870Answer by camflan for Ideas for a scary programming Halloween costume?camflan2008-10-24T05:50:50Z2008-10-24T05:50:50Z<p>infinite loop</p>
http://stackoverflow.com/questions/164847/what-is-in-your-vimrc/185960#1859600Answer by camflan for What is in your .vimrc?camflan2008-10-09T04:48:12Z2008-10-09T04:48:12Z<p><a href="http://media.camronflanders.com/.vimrc" rel="nofollow">my .vimrc</a>. My word swap function is usually a big hit.</p>
http://stackoverflow.com/questions/168283/when-do-you-use-an-ide/168363#1683630Answer by camflan for When do you use an IDE?camflan2008-10-03T18:58:11Z2008-10-03T18:58:11Z<p>I use vim for <em>everything</em> except Objective-C stuff, which I use xCode for. The Interface builder, error checking, debugging are quite valuable.</p>
<p>However, I use a InputManager to let me use vim commands/key bindings in xCode, so I never <em>really</em> leave vim for anything ;)</p>
http://stackoverflow.com/questions/168303/how-to-enforce-locking-workstation-when-leaving-is-this-important/168346#1683460Answer by camflan for How to enforce locking workstation when leaving? Is this important?camflan2008-10-03T18:55:23Z2008-10-03T18:55:23Z<p>We are required to at work, and we enforce it ourselves. Mass chats are started professing love for people, emails are sent, backgrounds are changed, etc. Gotta love the first day when it happens to a new hire, everyone is sure to leave a nice note :)</p>
http://stackoverflow.com/questions/159797/is-ruby-a-functional-language/159907#1599071Answer by camflan for Is Ruby a functional language?camflan2008-10-01T21:48:53Z2008-10-01T21:48:53Z<p>Ruby is an object-oriented language, that can support other paradigms (functional, imperative, etc). However, since everything in Ruby is an object, it's primarily an OO language.</p>
<p>example:</p>
<p>"hello".reverse() = "olleh", every string is a string object instance and so on and so forth.</p>
<p>Read up <a href="http://www.ruby-lang.org/en/about/" rel="nofollow">here</a> or <a href="http://en.wikipedia.org/wiki/Ruby_programming_language" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/159137/getting-mac-address/159150#1591501Answer by camflan for Getting MAC Addresscamflan2008-10-01T18:55:14Z2008-10-01T18:55:14Z<p>I haven't personally used this, but it looks like it's exactly what you want.</p>
<p><a href="http://pypi.python.org/pypi/netifaces/0.4" rel="nofollow">Python netifaces</a></p>
http://stackoverflow.com/questions/154897/what-do-you-do-if-you-cannot-resolve-a-bug/154931#1549311Answer by camflan for What do you do if you cannot resolve a bug?camflan2008-09-30T20:31:46Z2008-09-30T20:31:46Z<p>I honestly cannot recall a bug that I couldn't fix. It may cause a lot of refactoring, or may take a while, but I've never had one that I can't get rid of. If it takes me more than an hour to track it down then it's almost always something <em>really</em> stupid and small like looking right past that <code>:</code> that should've been a <code>;</code>, etc.</p>
<p>In python, if I'm using an editor that isn't mine, or maybe it's someone else's code, I use <code>retab!</code> in vim, or paste into something like pastie to check indentation (if I don't have vim available).</p>
<p>If it's not a crasher/deal breaker, then I move on and come back with a fresh pair of eyes.</p>
<p>Oh, and you can <em>never</em>, <em>ever</em> have too much logging.</p>
http://stackoverflow.com/questions/154245/editing-a-text-buffer/154316#1543160Answer by camflan for Editing a text buffer...camflan2008-09-30T18:25:17Z2008-09-30T18:25:17Z<p>check out vim, it's open-source. poke around in it to see how it handles what you want.</p>
http://stackoverflow.com/questions/151024/how-can-i-upgrade-the-console-version-of-vim-on-os-x/151236#1512361Answer by camflan for How can I upgrade the *console* version of vim on OS X?camflan2008-09-29T23:53:30Z2008-09-29T23:53:30Z<p>Can also symlink your new binary to /usr/local/bin/</p>
http://stackoverflow.com/questions/150764/are-regexes-really-maintainable/150790#1507901Answer by camflan for Are regexes really maintainable?camflan2008-09-29T21:32:13Z2008-09-29T21:54:51Z<p>famous quote about regexes: </p>
<blockquote>
<p>"Some people, when confronted with a problem, think
“I know, I'll use regular expressions.” Now they have two problems." -- Jamie Zawinski</p>
</blockquote>
<p>When I do use regexes, I find them to be maintainable, but they are used in special cases. There is usually a better, non-regex method for doing almost everything.</p>
http://stackoverflow.com/questions/150588/how-much-difference-does-blob-or-text-make-in-comparison-with-varchar/150618#1506180Answer by camflan for How much difference does BLOB or TEXT make in comparison with VARCHAR()?camflan2008-09-29T20:56:30Z2008-09-29T20:56:30Z<p>use TEXT if you want it treated as a character string, with a character set.<br />
use BLOB if you want it treated as a binary string, without a character set.</p>
<p>I recommend using TEXT.</p>
http://stackoverflow.com/questions/150577/which-browser-has-the-best-support-for-html-5-currently/150593#1505935Answer by camflan for Which browser has the best support for HTML 5 currently?camflan2008-09-29T20:50:55Z2008-09-29T20:50:55Z<p>Ones that are built using a recent webkit build, and Presto.</p>
<p>Safari 3.1 for webkit<br />
Opera for Presto.</p>
<p>I'm pretty sure firefox will start supporting html5 partially in 3.1</p>
<p>All support is extremely partial. Check <a href="http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(HTML_5)" rel="nofollow">here for information on what is supported.</a></p>
http://stackoverflow.com/questions/150505/django-capturing-url-parameters-in-request-get/150518#15051810Answer by camflan for Django: Capturing url parameters in request.GET camflan2008-09-29T20:31:43Z2008-09-29T20:31:43Z<p>If your url is something like <a href="http://domain/search/?q=haha" rel="nofollow">http://domain/search/?q=haha</a>, then you would use <code>request.GET.get('q', '')</code>.</p>
<p>q is the parameter you want, and '' is the default value if q isn't found.</p>
<p>If you are instead just configuring your URLconf, then your captures from the regex are passed to the function as arguments (or named arguments).</p>
<p>such as</p>
<pre><code>(r'^user/(?P<username>\w{0,50})/$', views.profile_page,),
</code></pre>
<p>then in your views.py you would have </p>
<pre><code>def profile_page(request, username):
</code></pre>
http://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone/150449#1504494Answer by camflan for How do I detect when someone shakes an iPhone?camflan2008-09-29T20:16:00Z2008-09-29T20:16:00Z<p>Check out the GLPaint example.</p>
http://stackoverflow.com/questions/141372/how-to-emulate-emacs-transpose-words-in-vim/141824#1418244Answer by camflan for How to emulate Emacs’ transpose-words in Vim?camflan2008-09-26T20:38:07Z2008-09-29T20:10:32Z<p>These are from my .vimrc and work well for me.</p>
<pre><code>" swap two words
:vnoremap <C-X> <Esc>`.``gvP``P
" Swap word with next word
nmap <silent> gw "_yiw:s/\(\%#\w\+\)\(\_W\+\)\(\w\+\)/\3\2\1/<cr><c-o><c-l> *N*
</code></pre>
http://stackoverflow.com/questions/147451/what-are-valid-characters-for-creating-a-multipart-form-boundary/147469#1474690Answer by camflan for What are valid characters for creating a multipart form boundary?camflan2008-09-29T04:03:30Z2008-09-29T04:03:30Z<p>There are no rules as of the content of the boundary but as it must not occur in any of the parts of your message content is usually a randomly generated sequence of numbers, letters or combination of both in order to guarantee uniqueness and differentiate from any possible dictionary words. So as you start your message each data type section is separated by “–” followed by the boundary sequence and the content type + encoding. After the last section “–” followed by the boundary followed by “–” is used to delimit the end of the message. The way multipart content works is by specifying a boundary in the “Content-type:” header of your email. The boundary is used to separate the different content types and looks something like this:</p>
<pre><code>Content-type: multipart/mixed; boundary="fU3W4Vzr4G3D54f3"
</code></pre>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/146176#1461762Answer by camflan for What are your favorite Vim tricks?camflan2008-09-28T16:10:56Z2008-09-28T16:10:56Z<p>Using Esc all the time is going to cause RSI or something, I'm sure...plus its not fast enough for me.</p>
<p>Instead, in my .vimrc I have </p>
<pre><code>map! ii <Esc>
</code></pre>
<p>For the <em>very</em> few times I need to type 'ii', I just need to type i 3 times, which types one i, exits to normal mode, then another i to type a 2nd i.</p>
http://stackoverflow.com/questions/85277/how-do-i-enable-more-than-8-bit-colors-in-terminal-app/141717#1417170Answer by camflan for How do I enable more than 8-bit colors in Terminal.app?camflan2008-09-26T20:20:46Z2008-09-26T20:20:46Z<p>Sounds like you want <a href="http://code.google.com/p/macvim/" rel="nofollow">MacVim</a></p>
http://stackoverflow.com/questions/141487/is-there-an-easy-way-to-populate-slugfield-from-charfield/141554#1415547Answer by camflan for Is there an easy way to populate SlugField from CharField?camflan2008-09-26T19:51:46Z2008-09-26T19:51:46Z<p>for Admin in 1.0, you'd need to use</p>
<pre><code>prepopulated_fields = {'slug':('title',),}
</code></pre>
<p>in your admin.py</p>
<p>Your key in the prepopulated_fields dictionary is the field you want filled, and the value is a tuple of fields you want concatenated.</p>
<p>Outside of admin, you can use the <code>slugify</code> function in your views.
In templates, you can use the <code>|slugify</code> filter.</p>
http://stackoverflow.com/questions/82653/is-there-any-list-of-blog-engines-written-in-django/141214#1412141Answer by camflan for Is there any list of blog engines, written in Django?camflan2008-09-26T18:46:29Z2008-09-26T18:46:29Z<p>Nathan Borror has a great package of 'basic apps' that has a blog. These are well written, well documented apps that you should try out, get ideas from, etc.</p>
<p><a href="http://code.google.com/p/django-basic-apps/" rel="nofollow">http://code.google.com/p/django-basic-apps/</a></p>
http://stackoverflow.com/questions/107288/is-quicksilver-dead/141173#1411730Answer by camflan for Is QuickSilver dead?camflan2008-09-26T18:35:53Z2008-09-26T18:35:53Z<p>There are a couple branches out there that are active, I think I'm currently running B56 and loving it. I have too many scripts, triggers, objects that I rely on daily...I would be lost without it.</p>
http://stackoverflow.com/questions/140707/web-development-ide-suggestions/141004#1410040Answer by camflan for Web Development IDE Suggestionscamflan2008-09-26T17:59:50Z2008-09-26T17:59:50Z<p>Vim. If you need features either write them yourself or download from the thousands of plugins out there.</p>
<p>NERDTree for file/directory/project/ IDE type file browsing.
XMLedit for html/xhtml/xml tags, helps with autoclosing, matching, etc.</p>
<p>Macros will make you happy all day long.</p>
http://stackoverflow.com/questions/139180/listing-all-functions-in-a-python-module/139193#13919313Answer by camflan for listing all functions in a python modulecamflan2008-09-26T12:40:20Z2008-09-26T12:40:20Z<p>You can use <code>dir(module)</code> to see all available methods/attributes. Also check out PyDocs.</p>
http://stackoverflow.com/questions/134629/how-do-i-use-django-core-urlresolvers-reverse-with-a-function-reference-instead-o/136721#1367210Answer by camflan for How do I use django.core.urlresolvers.reverse with a function reference instead of a named URL pattern?camflan2008-09-25T22:55:44Z2008-09-25T22:55:44Z<p>Jack M.'s example is nearly correct.</p>
<p>It needs to be a url function, not a tuple, if you want to use named urls.</p>
<pre><code>url(r'^no_monkeys/$', 'views.noMonkeys', {}, "no-monkeys"),
</code></pre>
http://stackoverflow.com/questions/135029/what-ide-would-you-recommend-for-python-development/136700#1367003Answer by camflan for What IDE would you recommend for Python development?camflan2008-09-25T22:52:13Z2008-09-25T22:52:13Z<p>Vim (or gVim, or MacVim). </p>
<p>Free, <em>very</em> powerful. You can write your own functions, macros, extensions, etc in minutes and expand it's functionality. There are tons of plugins and a strong, die-hard community.</p>
http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/136683#1366831Answer by camflan for Python web development - with or without a frameworkcamflan2008-09-25T22:47:33Z2008-09-25T22:47:33Z<p>Django makes it possible to whip out a website rapidly, that's for sure. You don't need to be a Python master to use it, and since it's very pythonic in it's design, and there is not really any "magic" going on, it will help you learn Python along the way.</p>
<p>Start with the examples, check out some django screencasts from TwiD and you'll be on your way.</p>
<p>Start slow, tweaking the admin, and playing with it via shell is the way to start. Once you have a handle on the ORM and get how things work, start building the real stuff!</p>
<p>The framework isn't going to cause any performance problems, like S. Lott said, it's code you don't have to maintain, and that's the best kind.</p>
http://stackoverflow.com/questions/262657/the-coolest-server-names/262790#262790Comment by camflan on The Coolest Server Namescamflan2008-11-06T21:32:56Z2008-11-06T21:32:56ZShould keep sins for domino/windows servers and virtues for *nix servers :)http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/83630#83630Comment by camflan on The single most useful Emacs featurecamflan2008-10-28T15:01:43Z2008-10-28T15:01:43Z:g/regex in vim will do the same thing ;)http://stackoverflow.com/questions/167439/how-do-i-enter-a-pound-sterling-character-into-the-python-interactive-shell-oComment by camflan on How do I enter a pound sterling character (£) into the Python interactive shell on Mac OS X?camflan2008-10-03T15:41:30Z2008-10-03T15:41:30ZDo you have any key bindings? might want to check your .bashrc, .bash_profile, etc as well.http://stackoverflow.com/questions/167120/removing-a-subset-of-a-dict-from-within-a-list/167134#167134Comment by camflan on Removing a subset of a dict from within a listcamflan2008-10-03T15:34:25Z2008-10-03T15:34:25Znice tip, dict.pop is oft-forgotten.http://stackoverflow.com/questions/135029/what-ide-would-you-recommend-for-python-development/136700#136700Comment by camflan on What IDE would you recommend for Python development?camflan2008-09-30T00:03:27Z2008-09-30T00:03:27ZMy point was that it's better than any IDE, and with enough carefully chosen plugins, it <i>look</i> like one. (since it can already easily function as one).http://stackoverflow.com/questions/150764/are-regexes-really-maintainable/150812#150812Comment by camflan on Are regexes really maintainable?camflan2008-09-29T21:36:57Z2008-09-29T21:36:57ZPython does this implicitly :)http://stackoverflow.com/questions/150764/are-regexes-really-maintainable/150786#150786Comment by camflan on Are regexes really maintainable?camflan2008-09-29T21:32:56Z2008-09-29T21:32:56ZRegular expressions are actually quite expensive..but you are right, they are powerful.http://stackoverflow.com/questions/150505/django-capturing-url-parameters-in-request-get/150518#150518Comment by camflan on Django: Capturing url parameters in request.GET camflan2008-09-29T21:01:28Z2008-09-29T21:01:28ZNo problem. use request.GET if you submit a form using GET, use request.POST if you submit a form using POST, and if you just want to configure URLs to have variable sections, then it's a URLconf/view argument.http://stackoverflow.com/questions/150505/django-capturing-url-parameters-in-request-get/150518#150518Comment by camflan on Django: Capturing url parameters in request.GET camflan2008-09-29T20:46:58Z2008-09-29T20:46:58ZCheck the second part of my response regarding your URLconf and regex captures.http://stackoverflow.com/questions/147451/what-are-valid-characters-for-creating-a-multipart-form-boundary/147469#147469Comment by camflan on What are valid characters for creating a multipart form boundary?camflan2008-09-29T04:15:15Z2008-09-29T04:15:15ZWell, the rule is that it cannot occur within thing message you are submitting. I suppose it was worded wrong, but a down vote? pssh :Phttp://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi/74672#74672Comment by camflan on What is the best way to force yourself to master vi?camflan2008-09-28T16:27:58Z2008-09-28T16:27:58ZI learned it at work and I couldn't avoid a productivity hit. It did help having a vimmer next to me to continuously ask questions. Find someone who knows vim well and make friends with them! Quickly look at the nav keys and get a handle on the modes. Try it out in 15 min chunks, you'll get it.http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/96181#96181Comment by camflan on What are your favorite Vim tricks?camflan2008-09-28T16:12:38Z2008-09-28T16:12:38ZActually <code>100@<key></code> plays the macro 100 times, not for 100 lines. It's a small but important difference. If your macro doesn't advance to the next line then you just keep applying the cahnge to the same line over and over, or if your macro is based on found words, multiple lines, etc it will vary.http://stackoverflow.com/questions/73319/duplicate-a-whole-line-in-vim/73357#73357Comment by camflan on Duplicate a whole line in Vimcamflan2008-09-28T15:55:01Z2008-09-28T15:55:01ZCan also use capital Y to copy the whole line.http://stackoverflow.com/questions/143714/is-there-any-difference-between-string-and-string-in-python/143726#143726Comment by camflan on Is there any difference between "string" and 'string' in Python?camflan2008-09-27T18:17:38Z2008-09-27T18:17:38Zand triple quoted strings are primarily meant for multiline comments.http://stackoverflow.com/questions/36901/what-does-and-do-for-python-parameters/36908#36908Comment by camflan on What does ** and * do for python parameters?camflan2008-09-27T16:26:04Z2008-09-27T16:26:04ZYou might want to mention that you can name them anything you want, the <i>, *</i> indicates whether its positional args or keyword args. ie. you could name them *foo and **bar.