Brendan

3,762
reputation
249 views

Registered User

name Brendan
member for 1 year
seen Dec 9 at 15:18
website
location Bristol, England
age 27
Amatuer programmer. Briefly a software tester, then a server admin. Now a physics researcher.
Dec
7
revised What’s the coolest machine you’ve ever worked on?
added some links
Dec
7
revised What should a longtime Windows user know when starting to use Linux?
minor typo
Dec
7
accepted Why does ReadLn not assign values to all my variables in Delphi?
Nov
24
comment How to treat a returned/stored string like a raw string in Python?
Ah ok, so each hex value is a 'single' character. ord() returns the integer worth i.e. ff -> 255. The x in a Python string format renders the hex representation of an integer (sans the \x) and the 0 pads it with zeroes and the 2 specifies the width. See docs.python.org/library/…
Nov
24
comment How to treat a returned/stored string like a raw string in Python?
Wow, thanks, that works. It may take me a bit to realise why...
Nov
24
asked How to treat a returned/stored string like a raw string in Python?
Nov
20
awarded  Notable Question
Nov
19
awarded  Popular Question
Nov
17
comment Python variable scope question
Ah that 'nonlocal' keyword was exactly what I was looking for, it seemed Python was missing this. Presumably this 'cascades' through each enclosing scope that imports the variable using this keyword?
Nov
10
answered NumPy: Comparing Elements in Two Arrays
Nov
7
awarded  Critic
Nov
6
awarded  Notable Question
Oct
19
awarded  Popular Question
Oct
12
comment What are the preferred versions of Vim and Emacs on OSX?
Here is the link to the mailing list message on the TextMate style file browser, it seems some of the wind has gone from the sails of late - groups.google.com/group/vim_mac/…
Sep
26
revised Exporting data to CSV format
moved text out of code block
Sep
21
awarded  Popular Question
Sep
4
asked Designing an MDI style interface in Cocoa
Aug
22
revised What is the most useful .net library you’ve found?
Added links
Aug
16
revised What good technology podcasts are out there?
Updated a couple of the URLs
Aug
16
revised Why does ReadLn not assign values to all my variables in Delphi?
added brief summary for the impatient
Aug
15
comment Good excuses NOT to use version control
I really enjoy using Mercurial for that reason, the concept of 'rewinding' back to a previous version really makes sense - I haven't tried git yet but then that's another story...
Aug
14
comment Good excuses NOT to use version control
I edited to rephrase that lack of network access makes the argument less compelling rather than being a reason why not to adopt
Aug
14
revised Good excuses NOT to use version control
Categorised reasons
Aug
14
comment Good excuses NOT to use version control
Yep, I use Mercurial and SVN at the moment for personal projects, but the argument for source control is less compelling for group development if network admins won't allow it over a network (but do allow shared folders)
Aug
10
comment Why does ReadLn not assign values to all my variables in Delphi?
That's not a bad idea - thanks!
Aug
10
answered Why does ReadLn not assign values to all my variables in Delphi?
Aug
10
revised Why does ReadLn not assign values to all my variables in Delphi?
Clarified that the variables to be read into are numeric, not strings; added 66 characters in body; edited body
Aug
10
comment Why does ReadLn not assign values to all my variables in Delphi?
That's true, I should perhaps modify the example to make it more clear ...
Aug
7
comment Why does ReadLn not assign values to all my variables in Delphi?
I actually know the answer, I put this up for posterity. I'll give it a day for someone else to win some points ;-)
Aug
7
asked Why does ReadLn not assign values to all my variables in Delphi?
Aug
4
awarded  Popular Question
Aug
4
awarded  Yearling
Jul
23
awarded  Notable Question
Jul
14
revised Good excuses NOT to use version control
removed false statement about having to include 'trunk' etc.
Jul
14
awarded  Popular Question
Jul
6
awarded  Notable Question
Jul
1
comment How to get MATLAB to recognise newly added static methods?
Tried rehash, none of the options work. Think that clear classes is the only way, cheers!
Jul
1
comment How to get MATLAB to recognise newly added static methods?
I'm afraid this doesn't work, it accepts it without error but the class is not updated
Jul
1
comment How to get MATLAB to recognise newly added static methods?
That does work, thanks! Is it possible though to do this on an individual class?
Jul
1
asked How to get MATLAB to recognise newly added static methods?