User Brendan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:58:10Zhttp://stackoverflow.com/feeds/user/199http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1576/what-should-a-longtime-windows-user-know-when-starting-to-use-linux/1596#159618Answer by Brendan for What should a longtime Windows user know when starting to use Linux?Brendan2008-08-04T21:16:47Z2009-11-25T18:19:55Z<p>Seeing that this seems to be a web host, you will probably want to know:</p>
<ul>
<li><b>How to start/stop/restart the webserver</b> (Distro/server dependent. Try <code>/etc/init.d/apache restart</code> to restart.)</li>
<li><b>How to check the logs</b> (Distro/server dependent. Try <code>less /var/www/apache.log</code>)</li>
<li><b>How to access MySQL directly</b> (<code>mysql -u myusername -p</code> and <code>mysqladmin</code>)</li>
<li><b>How to upload/download files</b> (Probably using SFTP on the client end)</li>
<li><b>How to edit the webserver configuration</b> (Probably <code>nano /etc/apache2/httpd.conf</code>)</li>
<li><b>How to check/edit UNIX permissions and ownership</b> (<code>ls -l</code> to check and <code>chmod XXXX files</code> and <code>chown newower.newgroup files</code> to change)</li>
</ul>
<p>These are all using complete guesses for file locations etc. and assume that you are using Apache. A bit of investigation is probably needed for your particular setup.</p>
<p>A special mention goes to permissions. This causes much of the headaches with running CGI's and security. Below is a rough guide to what permissions should be set.</p>
<ul>
<li>PHP files: readable by web-server (<code>chmod 640 filename.php</code>)</li>
<li>CGI scripts: executable by webserver (<code>chmod 750 filename.cgi</code>)</li>
<li>Static web files: readable by webserver (<code>chmod 640 filename.html</code>)</li>
<li>Directories: executable by webserver (<code>chmod 750 directoryname</code>)</li>
</ul>
<p>These settings assume that the webserver process is running as a user who belongs to the same group as the webserver files (this is likely the setup on a managed host).</p>
<p>A final headache that may cause trouble is that Linux is case sensitive. When serving static files from Apache, by default you will need to include any weird capitalisation. It's generally a good idea to stick to lower-case and underscores/hyphens for naming directories and files.</p>
http://stackoverflow.com/questions/1792807/how-to-treat-a-returned-stored-string-like-a-raw-string-in-python0How to treat a returned/stored string like a raw string in Python?Brendan2009-11-24T20:43:44Z2009-11-24T21:54:21Z
<p>I am trying to <code>.split()</code> a hex string i.e. <code>'\xff\x00'</code> to get a list i.e. <code>['ff', '00']</code> </p>
<p>This works if I split on a raw string literal i.e. <code>r'\xff\x00'</code> using <code>.split('\\x')</code> but not if I split on a hex string stored in a variable or returned from a function (which I presume is not a raw string)</p>
<p>How do I convert or at least 'cast' a stored/returned string as a raw string?</p>
http://stackoverflow.com/questions/1613249/numpy-comparing-elements-in-two-arrays/1707249#17072490Answer by Brendan for NumPy: Comparing Elements in Two ArraysBrendan2009-11-10T11:21:00Z2009-11-10T11:21:00Z<p>What about the following?
<code><pre>
>>> a = array([1,2,3,4,5,6])
>>> b = array([1,4,5])
>>> c = array([x in b for x in a])
>>> c
array([ True, False, False, True, True, False], dtype=bool)
</pre></code></p>
<p>Perhaps this uses loops though? I'm not fully up to speed with Numpy yet...</p>
http://stackoverflow.com/questions/16067/prototyping-hybrid-python-code8Prototyping hybrid Python codeBrendan2008-08-19T12:32:38Z2009-11-02T13:49:49Z
<p>I have been mulling over writing a peak fitting library for a while. I know Python fairly well and plan on implementing everything in Python to begin with but envisage that I may have to re-implement some core routines in a compiled language eventually.</p>
<p>IIRC, one of Python's original remits was as a prototyping language, however Python is pretty liberal in allowing functions, functors, objects to be passed to functions and methods, whereas I suspect the same is not true of say C or Fortran.</p>
<p>What should I know about designing functions/classes which I envisage will have to interface into the compiled language? And how much of these potential problems are dealt with by libraries such as cTypes, bgen, <a href="http://www.swig.org/" rel="nofollow">SWIG</a>, <a href="http://www.boost.org/doc/libs/1_35_0/libs/python/doc/index.html" rel="nofollow">Boost.Python</a>, <a href="http://cython.org/" rel="nofollow">Cython</a> or <a href="http://www.riverbankcomputing.co.uk/software/sip/intro" rel="nofollow">Python SIP</a>?</p>
<p>For this particular use case, (a fitting library) I imagine allowing users to define mathematical functions (Guassian, Lorentzian etc.) as Python functions which can then to be passed an interpreted by the compiled code fitting library. Passing and returning arrays is also essential.</p>
http://stackoverflow.com/questions/691217/how-do-i-order-referenced-objects-from-a-google-app-engine-datastore-query2How do I order referenced objects from a Google App Engine Datastore query?Brendan2009-03-27T19:40:03Z2009-10-09T13:52:23Z
<p>I have <code>Exhibit</code> objects which reference <code>Gallery</code> objects both of which are stored in the Google App Engine Datastore.</p>
<p>How do I order the <code>Exhibit</code> collection on each <code>Gallery</code> object when I get around to iterating over the values (ultimately in a Django template)?</p>
<p>i.e. this does not work</p>
<pre><code>
class Gallery(db.Model):
title = db.StringProperty()
position = db.IntegerProperty()
class Exhibit(db.Model):
gallery = db.ReferenceProperty(Gallery, collection_name='exhibits')
title = db.StringProperty()
position = db.IntegerProperty()
galleries = db.GqlQuery('SELECT * FROM Gallery ORDER BY position')
for gallery in galleries:
gallery.exhibits.order('position')
# ... send galleries off the the Django template
</code></pre>
<p>When rendered in the template, the galleries are correctly ordered but the exhibits are not.</p>
http://stackoverflow.com/questions/144639/how-do-i-order-citations-by-appearance-using-bibtex6How do I order citations by appearance using BibTeX?Brendan2008-09-27T22:34:06Z2009-10-03T22:29:33Z
<p>By default (using th <code>plain</code> style) BibTeX orders citations alphabetically. How do I order the citations by order of appearance in the document?</p>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/1654#165421Answer by Brendan for What good technology podcasts are out there?Brendan2008-08-04T22:26:29Z2009-09-14T09:17:33Z<p>In the Stack Overflow podcast <a href="http://www.se-radio.net/" rel="nofollow">SE-radio</a> was mentioned. It's pretty in depth.</p>
<p>Also if you are an aspiring JavaScript developer, the Douglas Crockford "The JavaScript Programming Language" and "Advanced JavaScript" talks on <a href="http://developer.yahoo.com/yui/theater/" rel="nofollow">YUI Developer Theatre</a> are excellent. There are a few other gems on the podcast too.</p>
http://stackoverflow.com/questions/1378145/designing-an-mdi-style-interface-in-cocoa0Designing an MDI style interface in CocoaBrendan2009-09-04T09:24:25Z2009-09-04T11:44:08Z
<p>I have an application that works on the concept of 'workspaces' that will eventually be ported to Cocoa.</p>
<p>In the current Windows incarnation the each workspace is an MDI window which can contains sub windows. These sub windows need to be easily separated, visually, from sub windows in other workspaces since workspace state is saved (not the sub windows).</p>
<p>In Cocoa there is no such thing as an MDI which achieves this separation, instead windows are intermingled, making it unclear if, when you save a workspace state, which windows are associated with it. Moreover, when dragging sub windows between workspaces there is no MDI area onto which you can drop the sub windows.</p>
<p>How are these design challenges overcome in Cocoa? Tabbed interfaces (like Safari for example) preclude easy drag and drop between sub windows, a window for each document like in Excel has the problems listed above...</p>
<p>Any ideas? Links to discussions on the topic?</p>
http://stackoverflow.com/questions/1245512/why-does-readln-not-assign-values-to-all-my-variables-in-delphi2Why does ReadLn not assign values to all my variables in Delphi?Brendan2009-08-07T15:43:31Z2009-08-16T10:16:19Z
<p>When using Delphi's <code>ReadLn</code> to read values from a tab-delimited file into a series of variables, why do some of the variables not get assigned to appropriate value when I step through the debugger?</p>
<p>i.e.</p>
<p><pre><code>
x, y, z: Integer;
...
ReadLn(fh, x, y, z);
MessageBox(int2Str(y));
...
</pre></code></p>
<p>Only <code>y</code> has a value, x and z are 0 ...</p>
<p><b>Note:</b> This was edited after Mason Wheeler's entirely valid answer</p>
http://stackoverflow.com/questions/1245512/why-does-readln-not-assign-values-to-all-my-variables-in-delphi/1255723#12557230Answer by Brendan for Why does ReadLn not assign values to all my variables in Delphi?Brendan2009-08-10T15:56:45Z2009-08-16T09:44:39Z<p>This is a symptom of a more general gotcha, in particular trying to debug the values of unused variables. </p>
<p>In Short: <b>By default, the compiler optimises away unused variables</b></p>
<p>If when writing code incrementally, you decide to debug and find out, say, that the <code>ReadLn</code> procedure is reading in the variables correctly, you may find that the values are empty or 0. Unless the variables are used later in the code - which may not be the case if you are debugging as you write each line - the compiler appears to optimise them away.</p>
<p>I used <code>ReadLn</code> in the example since it may well be that you want to use data in the second column of a csv file and so have to create various throwaway variables that are not used. When checking the values of the throwaway variables, you then find that they do not contain what you expect!</p>
<p>In the above example you can force the debugger to load the vlaues by simply 'using' the variables later in the code, i.e.</p>
<pre><code>
x, y, z: Integer;
...
ReadLn(fh, x, y, z);
MessageBox(int2Str(y));
MessageBox(int2Str(x));
MessageBox(int2Str(z));
...
</code></pre>
<p>Now, mousover will reveal the values of <code>y</code> and <code>z</code> as well</p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/188482#1884820Answer by Brendan for Good excuses NOT to use version controlBrendan2008-10-09T18:16:04Z2009-08-14T20:07:48Z<p>Actual reasons against the adoption of version control,</p>
<ul>
<li>Because it is a new concept to learn which is more complicated than a shared folder</li>
</ul>
<p>Reasons which make version control less compelling,</p>
<ul>
<li>Shared folders copied locally, although have less functionality, <i>do actually work</i> fine for certain codebases</li>
<li>Certain types of coding projects have relatively little use for versioning, namely code that is <em>isolated</em> and <em>static</em> i.e. written by a single programmer using very little shared code, that does not need to be developed once working</li>
<li>Because the admins won't allow it across the network</li>
</ul>
<p>For the casual programmers - those to whom programming is just a tool, such as many of the people I work with (scientists) - much of the work is hackish and small scale with relatively little shared code, there may be a dozen other things that are more likely to fail outside the code which could also be eliminated with better practices.</p>
<p>As a colleague put it, "we don't get published for writing beautiful code".</p>
http://stackoverflow.com/questions/1069454/how-to-get-matlab-to-recognise-newly-added-static-methods2How to get MATLAB to recognise newly added static methods?Brendan2009-07-01T14:31:03Z2009-07-01T20:31:30Z
<p>I am using classes and static methods to 'scope' functions in a namespace, similar to C#. However, every time I add a new method to a class, at first it is not found. I have to restart the MATLAB environment (2007a) for the new methods to be recognised.</p>
<p>Surely there is an 'update' or 'refresh' type command that I can use so that I do not have to restart the MATLAB environment each time I add a function?</p>
http://stackoverflow.com/questions/489425/adding-columns-to-a-datatable-bound-to-a-datagridview-does-not-update-the-view1Adding columns to a DataTable bound to a DataGridView does not update the viewBrendan2009-01-28T21:19:00Z2009-06-24T17:35:42Z
<p>I have a DataTable which is populated from a CSV file then, using a DataGridView the data is edited in memory. As far as I understand the programmatic editing of the data should be done on the DataTable where the user editing is done via. the DataGridView.</p>
<p>However when I add columns programmatically to the DataTable, it is not reflected automatically in the DataGridView and I suspect the converse is also true.</p>
<p>How do you keep the two concurrent? I thought the idea of data binding was that this was automatic ...</p>
<p>Here is the relevant setup code - <code>WorksheetGridView</code> subclasses <code>DataGridView</code></p>
<pre><code>
// Can access data directly
public DataTable data = new DataTable();
public WorksheetGridView()
{
InitializeComponent();
// Allow copying from table to clipboard
this.ClipboardCopyMode = DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
// TODO: how to allow both row and column selects?
//this.SelectionMode = DataGridViewSelectionMode.ColumnHeaderSelect;
// Load up a blank DataTable to hold user inputted data
int i;
const int numBlankRows = Config.Application.DefaultNumRows;
const int numBlankCols = Config.Application.DefaultNumCols;
// TODO: Figure out how to include this as a config variable
DBNull dfltCellContent = DBNull.Value;
DataRow tmpRow;
// Add columns - i used for naming
for (i = 0; i < numBlankCols; i++)
{
this.AddColumn(i);
}
// Add rows
for (i = 0; i < numBlankRows; i++)
{
tmpRow = this.data.NewRow();
// Fill cells with something (i.e. blank cells)
foreach (DataColumn col in this.data.Columns)
{
tmpRow[col.ColumnName] = DBNull.Value;
}
this.data.Rows.Add(tmpRow);
}
// Link data to the view
this.DataSource = this.data;
}
private void AddColumn(int colIndex)
{
// Adds a column to the data array
DataColumn tmpCol;
tmpCol = new DataColumn();
tmpCol.DataType = Type.GetType(Config.Application.DataType);
tmpCol.ColumnName = "C" + colIndex.ToString();
tmpCol.ReadOnly = false;
tmpCol.Unique = false;
tmpCol.AllowDBNull = true;
this.data.Columns.Add(tmpCol);
}
</code></pre>
<p>The bit that doesn't work is later when I call <code>AddColumn</code> for instance in this code to handle pasting tab-delimited data,</p>
<pre><code>
public void PasteToCells(string mode)
{
// TODO: Write paste code
int i;
if (Clipboard.ContainsText())
{
string clipBoardContent = Clipboard.GetText();
using (CsvReader pastedCsvReader = new CsvReader(
new StringReader(clipBoardContent), false, '\t'))
{
// TODO: If more rows/cols than in data table then expand accordingly
int numPastedCols = pastedCsvReader.FieldCount;
int currRowIndex, currColumnIndex;
GetSelectedInsertPoint(out currRowIndex, out currColumnIndex);
// Make space for columns if needed
if (mode == "insertcols")
{
int baseIndex = this.data.Columns.Count;
for (i = 0; i < numPastedCols; i++)
{
//this.Columns.Add
// TODO: Doesn't work yet - do you edit the DataGridView and reflect to DataTable or vise-versa?
this.AddColumn(baseIndex + i);
}
}
while (pastedCsvReader.ReadNextRecord())
{
// Make space for rows (row by row) if needed
if (mode == "insertrows")
{
this.data.NewRow();
// TODO: Add a row
}
// Populate the cells with valid pasted text
for (i = 0; i < numPastedCols; i++)
{
this.data.Rows[currRowIndex][currColumnIndex + i] = ConvertCellContent(pastedCsvReader[i]);
}
currRowIndex = currRowIndex + 1;
}
}
}
else
{
// TODO: Do nothing?
Console.WriteLine("No text on clipboard");
}
}
</code></pre>
<p>I tried the example given below and it does work. However when I try and do this the horizontal scroll bar expands and contracts briefly but the table in the subclassed <code>DataGridView</code> is not updated. The column is however in the <code>DataTable</code> though - for example I cannot add a column of the same name, the column count reflects the extra columns too. Is there perhaps a designer option that might constrict the updating of the <code>DataGridView</code>?</p>
<p>Also adding rows works fine.</p>
<p><b>SOLVED:</b></p>
<p>The <code>AutoGeneratedColumns</code> was set to <code>false</code> in the designer code despite being <code>true</code> in the properties dialog (and set explicitly in the code). The initial columns were generated programmatically and so should not have appeared however this was not picked up on since the designer code also continued to generate 'designed in' columns that were originally used for debugging.</p>
<p>Moral: Check the autogenerated code!</p>
<p>In addition to this, see <a href="http://stackoverflow.com/questions/499321/" rel="nofollow">this post</a> and <a href="http://stackoverflow.com/questions/530176/" rel="nofollow">this post</a></p>
http://stackoverflow.com/questions/499321/changing-column-order-in-datatable-bound-to-datagridview-does-not-reflect-in-the1Changing column order in DataTable bound to DataGridView does not reflect in the viewBrendan2009-01-31T18:47:40Z2009-06-24T17:29:40Z
<p>When the application is run, the <code>DataGridView</code> is bound to a <code>DataTable</code>. Later I add more columns to the <code>DataTable</code> programmatically and it is reflected in the underlying data - i.e. the column Ordinals are as they should be. However this is not reflected in the <code>DataGridView</code>. Instead columns are appended onto the originally generated set.</p>
<p>This example demonstrates,</p>
<pre><code>
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public DataTable data = new DataTable();
private void button1_Click(object sender, EventArgs e)
{
this.dataGridView1.DataSource = data;
int i;
for (i = 0; i < 5; i++)
{
this.data.Columns.Add(i.ToString());
}
}
private void button2_Click(object sender, EventArgs e)
{
DataColumn foo = new DataColumn();
this.data.Columns.Add(foo);
foo.SetOrdinal(0);
}
private void button3_Click(object sender, EventArgs e)
{
foreach (DataColumn tmpCol in this.data.Columns)
{
Console.WriteLine("{0} : {1}", tmpCol.ColumnName, tmpCol.Ordinal);
}
}
}
</code></pre>
<p>Button 1 generates the columns, button 2 adds a column and sets the ordinal to 0 so it should be first in the grid, button 3 displays the ordinals of the columns and shows they are how they should be in the <code>DataTable</code>.</p>
http://stackoverflow.com/questions/20735/useful-vim-features/20820#2082013Answer by Brendan for Useful Vim featuresBrendan2008-08-21T19:07:47Z2009-05-11T16:10:55Z<p>In my <code>.vimrc</code>,</p>
<ul>
<li>Spelling on: <code>set spell spelllang=en_gb</code></li>
<li>Syntax highlighting on (autodetect): <code>syn on</code></li>
<li>Configuration of tabs (substitute to spaces - won't say how many)</li>
</ul>
<p>I had some abbreviation configured in the past for C style box comments and skeletons of HTML pages etc. like TextMate users seem to like (<code>ab <abbreviation> <full text></code>) but I edit such a variety of text files that I stopped bothering to do this.</p>
<p>When editing,</p>
<ul>
<li>Replacing a word (<code>ce</code>)</li>
<li>Search (<code>/<search term></code>) then replace a word coupled with the repeat edit (<code>.</code>) to do a quick search and replace.</li>
<li>Character twiddling (<code>xp</code>) a lot</li>
<li>Deleting lines (<code>dd</code>), words (<code>dw</code>) or sentences (<code>df.</code>) and pasting (<code>p</code> or <code>P</code>)</li>
<li>Undo (<code>u</code>, redo <code>^R</code>)</li>
<li>Setting marks (<code>ma</code>) and jumping to them (<code>'a</code>)</li>
<li>Macros occasionally (<code>qa <coding sequence>q</code> and then <code>@a</code> to replay)</li>
<li>Bracket matching (place on on bracket then <code>%</code>)</li>
<li>Visual mode selection (<code>v</code> or <code>V</code>) – what I miss most in plain vi</li>
<li>Window splitting (<code>:split</code> to open, <code>^w-</code> to maximise, <code>^wk</code> or ^wj to switch)</li>
<li>Indenting blocks (Select then <code>></code>)</li>
<li>Correct spelling (<code>z=</code>)</li>
<li>Jumping to a line number (:<number>) for debugging</li>
<li>Function/variable complete (<code>^N</code>)</li>
</ul>
<p>Hardly use anything else to be frank. Pretty vanilla stuff, none of the more complex features really stuck ;-)</p>
http://stackoverflow.com/questions/831417/how-do-you-reset-a-c-net-textreader-cursor-back-to-the-start-point3How do you reset a C# .NET TextReader cursor back to the start point?Brendan2009-05-06T19:51:08Z2009-05-06T20:46:14Z
<p>I have a method that takes either a <code>StringReader</code> instance (reading from the clipboard) or a <code>StreamReader</code> instance (reading from a file) and, at present, casts either one as a <code>TextReader</code> instance.</p>
<p>I need it to 'pre-read' some of the source input, then reset the cursor back to the start. I do not necessarily have the original filename. How to I do this?</p>
<p>There is mention of the <code>Seek</code> method of <code>System.IO.Stream</code> but this is not implemented in <code>TextReader</code>, although it is in <code>StreamReader</code> through the <code>Basestream</code> property. However <code>StringReader</code> does not have a <code>BaseStream</code> property</p>
http://stackoverflow.com/questions/1574/gtk-ssh-client-for-linux0Gtk SSH client for Linux?Brendan2008-08-04T20:49:02Z2009-05-04T14:13:01Z
<p>I realise purists would say "use the command-line" but this is the age of Ubuntu and since I spend most of my time behind a proxy server I find it easier to configure and use PuTTY on Windows than configure ssh with connect.c</p>
<p>I also realise PuTTY is available on Linux but it seems to use some weird GUI widget set that is rather nasty to use.</p>
<p>So, is there a nice GtK front-end for ssh that I could download and use on Linux in Gnome?</p>
http://stackoverflow.com/questions/769152/how-to-pause-program-execution-until-button-press/769173#7691730Answer by Brendan for How to pause program execution until button press?Brendan2009-04-20T16:57:41Z2009-04-20T16:57:41Z<p>You could launch a dialog which is what we do, a simple message box would be OK, i.e.</p>
<pre><code>
procedure TForm1.Pause1Click(Sender: TObject);
begin
// A dialog box will halt thread execution
Windows.MessageBox(0, 'Paused ...' + sLineBreak + 'Press Enter to Continue',
'', MB_OK);
end;
</code></pre>
<p>This probably only halts the current thread though, if you have more than one thread, you may want to try something more involved.</p>
http://stackoverflow.com/questions/254407/how-do-i-include-a-newline-character-in-a-string-in-delphi3How do I include a newline character in a string in Delphi?Brendan2008-10-31T18:10:05Z2009-04-09T14:52:21Z
<p>I want to create a string that spans multiple lines to assign to a Label Caption property. How is this done in Delphi?</p>
http://stackoverflow.com/questions/645932/how-to-convert-an-image-i-e-pdf-for-use-in-a-latex-document3How to convert an image (i.e. pdf) for use in a LaTeX document?Brendan2009-03-14T13:47:45Z2009-03-31T19:51:47Z
<p>What is the preferred way to convert various images, bitmap and vector, for use in a LaTeX and PDFLaTeX document?</p>
<p>There are many ways to do this, some make use of standard inclusions in the various LaTeX packages, others give better results.</p>
http://stackoverflow.com/questions/38239/practices-for-programming-in-a-scientific-environment/670051#6700512Answer by Brendan for Practices for programming in a scientific environment?Brendan2009-03-21T21:41:06Z2009-03-21T21:41:06Z<p>I work as a physicist in a UK university.</p>
<p>Perhaps I should emphasise that different areas of research have different emphasis on programming. Particle physicists (like dmckee) do computational modelling almost exclusively and may collaborate on large software projects, whereas people in fields like my own (condensed matter) write code relatively infrequently. I suspect most scientists fall into the latter camp. I would say coding skills are usually seen as useful in physics, but not essential, much like physics/maths skills are seen as useful for programmers but not essential. With this in mind...</p>
<ul>
<li>What languages/environments have you used for developing scientific software, esp. data analysis? What libraries? (E.g., what do you use for plotting?)</li>
</ul>
<p>Commonly data analysis and plotting is done using generic data analysis packages such as <a href="http://www.wavemetrics.com/" rel="nofollow">IGOR Pro</a>, <a href="http://www.originlab.com/" rel="nofollow">ORIGIN</a>, <a href="http://www.synergy.com/" rel="nofollow">Kaleidegraph</a> which can be thought of as 'Excel plus'. These packages typically have a scripting language that can be used to automate. More specialist analysis may have a dedicated utility for the job that generally will have been written a long time ago, no-one has the source for and is pretty buggy. Some more techie types might use the languages that have been mentioned (Python, R, MatLab with Gnuplot for plotting).</p>
<p>Control software is commonly done in LabVIEW, although we actually use Delphi which is somewhat unusual.</p>
<ul>
<li>Was there any training for people without any significant background in programming?</li>
</ul>
<p>I've been to seminars on grid computing, 3D visualisation, learning Boost etc. given by both universities I've been at. As an undergraduate we were taught VBA for Excel and MatLab but C/MatLab/LabVIEW is more common.</p>
<ul>
<li>Did you have anything like version control, bug tracking?</li>
</ul>
<p>No, although people do have personal development setups. Our code base is in a shared folder on a 'server' which is kept current with a synching tool.</p>
<ul>
<li>How would you go about trying to create a decent environment for programming, without getting too much in the way of the individual scientists (esp. physicists are stubborn people!)</li>
</ul>
<p>One step at a time! I am trying to replace the shared folder with something a bit more solid, perhaps finding a SVN client which mimics the current synching tools behaviour would help.</p>
<p>I'd say though on the whole, for most natural science projects, time is generally better spent doing research!</p>
http://stackoverflow.com/questions/662731/net-text-delimited-libraries/662778#6627781Answer by Brendan for .net Text delimited libraries?Brendan2009-03-19T15:54:17Z2009-03-19T15:54:17Z<p>There are no built in CSV readers in .NET for c#, however there are third party libraries available. </p>
<ul>
<li><a href="http://filehelpers.sourceforge.net/" rel="nofollow">FileHelpers</a> is good for ORM type stuff but no good for arbitrary columns formats, like what Excel can deal with.</li>
<li><a href="http://www.codeproject.com/KB/database/CsvReader.aspx" rel="nofollow">CsvReader</a> on CodeProject is not bad but this is missing some features such as handling fixed length fields and using strings as delimiters.</li>
</ul>
http://stackoverflow.com/questions/313519/whats-the-coolest-machine-youve-ever-worked-on/646007#6460073Answer by Brendan for What's the coolest machine you've ever worked on?Brendan2009-03-14T14:46:29Z2009-03-14T14:46:29Z<p>In the picture is a fridge that cools down to 0.3 deg above absolute zero by evaporating helium 3 - a very rare helium isotope. We used it to measure heat capacity of superconductors but now is being used for other general purpose low temperature experiments.</p>
<p><img src="http://www.phy.bris.ac.uk/people/arnold%5Fbj/heliox.jpg" alt="Heliox fridge" /></p>
<p>Incidentally the rack on the right is controlled via a GPIB bus and some hackish Delphi code.</p>
http://stackoverflow.com/questions/645932/how-to-convert-an-image-i-e-pdf-for-use-in-a-latex-document/645949#6459490Answer by Brendan for How to convert an image (i.e. pdf) for use in a LaTeX document?Brendan2009-03-14T13:57:05Z2009-03-14T13:57:05Z<p>My current preferred way is using <code>bmeps</code> and <code>epstopdf</code> included in MikTeX. For the generation of pdf and eps versions of a png.</p>
<p>In a file called <code>convertimage.bat</code>,</p>
<pre><code>
bmeps -p3 -c -e8f -tpng %1.png > %1.eps
epstopdf %1.eps
</code></pre>
<p>Use by including in the path and writing <code>convertimage.bat filenameminusextension</code></p>
<p>Include in the documents using,</p>
<pre><code>
\begin{figure}[h]
\begin{center}
\includegraphics[scale=0.25]{path/to/fileminuxextension}
\caption{My caption here}
\label{somelabelforreference}
\end{center}
\end{figure}
</code></pre>
http://stackoverflow.com/questions/598627/how-do-you-cache-a-row-without-raising-a-row-provided-already-belongs-to-a-datag1How do you cache a row without raising a "Row provided already belongs to a DataGridView" error?Brendan2009-02-28T20:28:43Z2009-03-01T08:41:21Z
<p>I want to cache a <code>DataGridView</code> row between 'refreshes' i.e. between a <code>Rows.Clear()</code> and a <code>Columns.Clear()</code>. However it seems that calling the <code>Clear()</code> methods does not unbind the data from the <code>DataGridView</code> instance, An example,</p>
<pre><code>
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
DataGridViewRow cachedRow = new DataGridViewRow();
private void button1_Click(object sender, EventArgs e)
{
this.dataGridView1.Rows.Clear();
this.dataGridView1.Columns.Clear();
DataGridViewColumn aColumn = new DataGridViewTextBoxColumn();
this.dataGridView1.Columns.Add(aColumn);
this.dataGridView1.Rows.Add(cachedRow);
}
}
</code></pre>
<p>This is done on a Form containing a <code>DataGridView</code> and a <code>Button</code>. Clicking the button twice gives the "Row provided already belongs to a DataGridView" error.</p>
<p>There has been some discussion online about this that suggests that it may be a bug, however this was around 2004.</p>
http://stackoverflow.com/questions/227/whats-the-best-way-to-generate-a-tag-cloud-from-an-array-using-h1-through-h6-f/676#6769Answer by Brendan for What's the best way to generate a tag cloud from an array? (using h1 through h6 for sizing)Brendan2008-08-03T13:01:24Z2009-02-23T19:20:59Z<p>Perhaps this is a little academic and OT but hX tags are probably not the best choice for a tag cloud for reasons of document structure and all that sort of thing ...</p>
<p>Maybe spans or an ol with appropriate class attributes (plus some css)?</p>
http://stackoverflow.com/questions/36498/how-do-i-send-email-from-the-command-line/36548#365482Answer by Brendan for How do I Send Email from the Command Line?Brendan2008-08-31T01:38:03Z2009-02-18T11:24:28Z<p>IIRC you'll also have to configure a mail transfer agent (MTA) to use <code>mail</code> or most email libraries. <a href="http://www.sendmail.org/" rel="nofollow">Sendmail</a> is the most well known but is a real pig when it comes to configuration. <a href="http://www.exim.org/" rel="nofollow">Exim</a>, <a href="http://www.qmail.org/" rel="nofollow">Qmail</a> and <a href="http://www.postfix.org/" rel="nofollow">Postfix</a> are all popular alternatives that are a bit more modern.</p>
<p>There are also more lightweight MTAs that are only able to send out mail, not receive it: nullmailer, mstmp, ssmtp, etc.</p>
<p>Postfix is default for Ubuntu. <a href="https://help.ubuntu.com/community/Postfix" rel="nofollow">This wiki article</a> describes how to configure it - be sure to only allow forwarding from your local address!</p>
http://stackoverflow.com/questions/557909/mathematical-problem-loop-or-recursive/557919#5579197Answer by Brendan for Mathematical problem: loop or recursiveBrendan2009-02-17T17:41:39Z2009-02-17T18:10:47Z<p>You could just get the binary representation of the number - a 1 means include that power of 2, a zero means don't</p>
<p>i.e.</p>
<pre><code>
$binary_number = decbin($test_number);
$binary_string = "${binary_number}";
for ($i = 0; $i < strlen($binary_string); $i++) {
if ($binary_string[strlen($binary_string) - $i - 1] == "1") {
$num_out = pow(2, $i);
print "${num_out} ";
}
}
</code></pre>
<p>This is tested and work ok but there are probably better ways of doing syntactically in PHP.</p>
http://stackoverflow.com/questions/530176/how-do-you-prevent-the-visual-studio-designer-auto-generating-columns-in-a-datagr2How do you prevent the Visual Studio designer auto-generating columns in a DataGridView?Brendan2009-02-09T21:55:03Z2009-02-10T22:47:56Z
<p>I generate all my columns in a subclassed <code>DataGridView</code> programmatically. However Visual Studio 2008 keeps reading my constructor class (which populates a <code>DataTable</code> with empty content and binds it to the <code>DataGridView</code>) and generates code for the columns in the <code>InitializeComponent</code> method - in the process setting <code>AutoGenerateColumns</code> to <code>false</code>.</p>
<p>This causes errors in design-time compilation which are only solved by manually going into the design code and deleting all references to these autogenerated columns.</p>
<p>How can I stop it doing this?</p>
<p><b>I have tried:</b></p>
<ul>
<li>Making the control 'Frozen'</li>
<li>Setting the <code>DataGridView</code> instantiated object <code>protected</code> (suggested in a previous post which referred to <a href="http://weblogs.asp.net/rweigelt/archive/2003/09/24/28984.aspx" rel="nofollow">this site</a>)</li>
</ul>
http://stackoverflow.com/questions/530176/how-do-you-prevent-the-visual-studio-designer-auto-generating-columns-in-a-datagr/534603#5346030Answer by Brendan for How do you prevent the Visual Studio designer auto-generating columns in a DataGridView?Brendan2009-02-10T22:47:56Z2009-02-10T22:47:56Z<p>Mark was right. The Designer looks at the constructor for this autogenerating behaviour. Here is how I got around it.</p>
<p>Took the code which constructs/binds the DataTable to the DataGridView out of the constructor and placed it in a method.</p>
<p>Using the <code>Load</code> event on the containing form - which holds multiple <code>DataGridView</code>s call the <code>BindData()</code> method on each instance,</p>
<pre><code>
List<Control> childControls = Misc.Misc.GetAllChildControls(this);
foreach (Control ctrl in childControls) {
if (ctrl is WorksheetGridView) {
WorksheetGridView wsgv = ctrl as WorksheetGridView;
wsgv.BindData();
}
}
</code></pre>
<p>where <code>GetAllChildControls</code> is a method in a helper class</p>
<p><pre><code>
internal static List<Control> GetAllChildControls(Control topControl)
{
List<Control> ctrlStore = new List<Control>();
ctrlStore.Add(topControl);
if (topControl.HasChildren)
{
foreach (Control ctrl in topControl.Controls)
{
ctrlStore.AddRange(GetAllChildControls(ctrl)); }
}
}
return ctrlStore;
}
</pre></code></p>
<p>Sorry if this is explicit but I never want to forget how to do this!</p>
http://stackoverflow.com/questions/1792807/how-to-treat-a-returned-stored-string-like-a-raw-string-in-python/1792821#1792821Comment by Brendan on How to treat a returned/stored string like a raw string in Python?Brendan2009-11-24T21:10:24Z2009-11-24T21:10:24ZAh ok, so each hex value is a 'single' character. <code>ord()</code> returns the integer worth i.e. ff -> 255. The <code>x</code> in a Python string format renders the hex representation of an integer (sans the <code>\x</code>) and the <code>0</code> pads it with zeroes and the <code>2</code> specifies the width. See <a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations" rel="nofollow">docs.python.org/library/…</a>http://stackoverflow.com/questions/1792807/how-to-treat-a-returned-stored-string-like-a-raw-string-in-python/1792821#1792821Comment by Brendan on How to treat a returned/stored string like a raw string in Python?Brendan2009-11-24T20:50:57Z2009-11-24T20:50:57ZWow, thanks, that works. It may take me a bit to realise why...http://stackoverflow.com/questions/1792807/how-to-treat-a-returned-stored-string-like-a-raw-string-in-python/1792812#1792812Comment by Brendan on How to treat a returned/stored string like a raw string in Python?Brendan2009-11-24T20:48:01Z2009-11-24T20:48:01ZThe <code>str()</code> doesn't make any difference I'm afraid...http://stackoverflow.com/questions/370357/python-variable-scope-question/370363#370363Comment by Brendan on Python variable scope questionBrendan2009-11-17T20:54:05Z2009-11-17T20:54:05ZAh 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?http://stackoverflow.com/questions/1496/what-are-the-preferred-versions-of-vim-and-emacs-on-osx/1517#1517Comment by Brendan on What are the preferred versions of Vim and Emacs on OSX?Brendan2009-10-12T16:12:14Z2009-10-12T16:12:14ZHere 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 - <a href="http://groups.google.com/group/vim_mac/browse_thread/thread/34a3e23bcc9ee977" rel="nofollow">groups.google.com/group/vim_mac/…</a>http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/188482#188482Comment by Brendan on Good excuses NOT to use version controlBrendan2009-08-15T14:41:48Z2009-08-15T14:41:48ZI 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...http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/188482#188482Comment by Brendan on Good excuses NOT to use version controlBrendan2009-08-14T20:13:40Z2009-08-14T20:13:40ZI edited to rephrase that lack of network access makes the argument less compelling rather than being a reason why not to adopthttp://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/188482#188482Comment by Brendan on Good excuses NOT to use version controlBrendan2009-08-14T19:48:02Z2009-08-14T19:48:02ZYep, 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) http://stackoverflow.com/questions/1245512/why-does-readln-not-assign-values-to-all-my-variables-in-delphi/1255723#1255723Comment by Brendan on Why does ReadLn not assign values to all my variables in Delphi?Brendan2009-08-10T17:11:59Z2009-08-10T17:11:59ZThat's not a bad idea - thanks!http://stackoverflow.com/questions/1245512/why-does-readln-not-assign-values-to-all-my-variables-in-delphi/1246110#1246110Comment by Brendan on Why does ReadLn not assign values to all my variables in Delphi?Brendan2009-08-10T15:38:30Z2009-08-10T15:38:30ZThat's true, I should perhaps modify the example to make it more clear ...http://stackoverflow.com/questions/1245512/why-does-readln-not-assign-values-to-all-my-variables-in-delphiComment by Brendan on Why does ReadLn not assign values to all my variables in Delphi?Brendan2009-08-07T15:45:22Z2009-08-07T15:45:22ZI actually know the answer, I put this up for posterity. I'll give it a day for someone else to win some points ;-)http://stackoverflow.com/questions/1069454/how-to-get-matlab-to-recognise-newly-added-static-methods/1069568#1069568Comment by Brendan on How to get MATLAB to recognise newly added static methods?Brendan2009-07-01T20:24:48Z2009-07-01T20:24:48ZTried rehash, none of the options work. Think that clear classes is the only way, cheers!http://stackoverflow.com/questions/1069454/how-to-get-matlab-to-recognise-newly-added-static-methods/1070975#1070975Comment by Brendan on How to get MATLAB to recognise newly added static methods?Brendan2009-07-01T20:22:02Z2009-07-01T20:22:02ZI'm afraid this doesn't work, it accepts it without error but the class is not updatedhttp://stackoverflow.com/questions/1069454/how-to-get-matlab-to-recognise-newly-added-static-methods/1069568#1069568Comment by Brendan on How to get MATLAB to recognise newly added static methods?Brendan2009-07-01T15:56:14Z2009-07-01T15:56:14ZThat does work, thanks! Is it possible though to do this on an individual class?http://stackoverflow.com/questions/20735/useful-vim-features/20820#20820Comment by Brendan on Useful Vim featuresBrendan2009-05-11T16:10:42Z2009-05-11T16:10:42ZAh, sorry, there should be three 'l's in spelllang, I've changed the andswer as appropriate