User Stephen Bailey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T13:28:12Zhttp://stackoverflow.com/feeds/user/15385http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/887198/erlang-takeover-failing-after-successful-failover1Erlang Takeover failing after successful FailoverStephen Bailey2009-05-20T10:29:09Z2009-07-21T09:28:28Z
<p>I have an application distributed over 2 nodes. When I halt() the first node the failover works perfectly, but ( sometimes ? ) when I restart the first node the takeover fails and the application crashes since start_link returns already started.</p>
<pre><code>SUPERVISOR REPORT <0.60.0> 2009-05-20 12:12:01
===============================================================================
Reporting supervisor {local,twitter_server_supervisor}
Child process
errorContext start_error
reason {already_started,<2415.62.0>}
pid undefined
name tag1
start_function {twitter_server,start_link,[]}
restart_type permanent
shutdown 10000
child_type worker
ok
</code></pre>
<p>My app</p>
<pre><code>start(_Type, Args)->
twitter_server_supervisor:start_link( Args ).
stop( _State )->
ok.
</code></pre>
<p>My supervisor :</p>
<pre><code>start_link( Args ) ->
supervisor:start_link( {local,?MODULE}, ?MODULE, Args ).
</code></pre>
<p>Both nodes are using the same sys.config file. </p>
<p>What am I not understanding about this process that the above should not work ?</p>
http://stackoverflow.com/questions/60278/git-commit-text-file/466803#4668031Answer by Stephen Bailey for Git commit text file?Stephen Bailey2009-01-21T20:20:31Z2009-07-20T05:29:22Z<p>As all have said this is just where you add your commit comment - but for some it may still be confusing esp if you have not configured your editor settings, and you are not aware of what <a href="http://en.wikipedia.org/wiki/Vi" rel="nofollow">VI</a> is : then you could be in for a shock, because you will think you are still in the GIT-Bash</p>
<p>In that case you are in fact in a text editor with some interesting ways of dealing with things and <a href="http://www.tuxfiles.org/linuxhelp/vimcheat.html" rel="nofollow">this set of commands</a> may help you out so that you can get past your first commit and then configure an editor you are familiar with or use it as an opportunity to learn how to use it.</p>
http://stackoverflow.com/questions/908718/why-cant-i-start-a-named-erlang-node-in-windows/909034#9090342Answer by Stephen Bailey for Why can't I start a named Erlang node in Windows?Stephen Bailey2009-05-26T05:16:41Z2009-05-26T05:16:41Z<p>I think that you will find that you have started a node by that name already. Try shutting down all your Erlang console windows and try again. </p>
http://stackoverflow.com/questions/872198/erlang-rpc-to-a-node-with-output-on-that-node2Erlang : RPC to a node with output on that nodeStephen Bailey2009-05-16T11:05:29Z2009-05-17T20:32:56Z
<p>Is there a way to make an rpc call to a node, but have the output displayed on that node, not just on the calling node ( in fact I would not be too bothered if the calling node did not display the output ).</p>
<p>While I understand that I can use </p>
<pre><code>rpc:call( Node, erlang, display, [ someTerm ] ).
</code></pre>
<p>and that will display "someTerm" on Node, what I really want is to get the result of an executed method displayed on the remote node terminal, so that given the attempt to run ls on Node :</p>
<pre><code>rpc:call( Node, c, ls, [] ).
</code></pre>
<p>it will actually write the results the folder contents to the terminal of Node.</p>
<p>The idea being that I can drive a presentation from a single node, but have the nodes I am driving display the history of actions on them.</p>
http://stackoverflow.com/questions/208100/how-do-i-get-srcsrv-with-svnindex-cmd-to-index-extern-files1How do I get Srcsrv with SVNindex.cmd to index extern files ?Stephen Bailey2008-10-16T10:55:47Z2009-03-09T10:00:21Z
<p>I have recently made use of the SrcSrv feature in the <a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx" rel="nofollow">Debugging Tools For Windows</a>, but have noticed that when I index the pdb with <strong>SVNIndex.cmd</strong> it does not pick up any of the files that are from an <a href="http://svnbook.red-bean.com/en/1.0/ch07s03.html" rel="nofollow">external link</a>. </p>
<p>Any suggestions ?</p>
http://stackoverflow.com/questions/616404/source-control-multiple-repositories-for-the-same-project/616613#616613-1Answer by Stephen Bailey for Source Control: Multiple repositories for the same project Stephen Bailey2009-03-05T21:04:45Z2009-03-05T21:04:45Z<p>From a pure SVN perspective nope, you can only have one .svn folder which points to only 1 repo in your working folder.</p>
<p>You can make use of post-commit-hooks on your svn repo to try and keep both repos in sync.. but really you just have the wrong tool if that is what you want.</p>
<p>The problem your are describing is at its heart a distributed version control system like GIT. Which allows you to make commits locally and also to push it to a remote repository. </p>
<p>You could even use GIT locally and SVN as your remote repo if you were so inclined.</p>
<ul>
<li>see <a href="http://git-scm.com/" rel="nofollow">GIT</a> for the tool</li>
<li>see <a href="https://github.com/" rel="nofollow">GitHub</a> for free public hosting </li>
</ul>
http://stackoverflow.com/questions/594698/how-do-i-explain-loose-coupling-and-information-hiding-to-a-new-programmer/616539#6165390Answer by Stephen Bailey for How do I explain loose coupling and information hiding to a new programmer?Stephen Bailey2009-03-05T20:46:53Z2009-03-05T20:46:53Z<p>Just like the move from 16 bit to 32 bit windows applications where processes were given their own address space. This stopped any other process from being able to kill your application when it "accidently" walked over your data.</p>
<p>Moving processes to different address spaces was like treating each process as a class, and <strong>hiding</strong> the memory internally and <strong>decoupling</strong> the processes by forcing interprocess communication to only happen via an expected interface ( eg Windows Messages ).</p>
http://stackoverflow.com/questions/120764/ideal-size-working-area-per-developer3Ideal size working area per developerStephen Bailey2008-09-23T12:46:04Z2009-03-04T08:38:31Z
<p>What would you say is the idea size physical work area per developer ? Not the size of the desktop :-)</p>
http://stackoverflow.com/questions/542832/wix-merge-module-trying-to-use-var-project-targetfilename/542925#5429250Answer by Stephen Bailey for WIX Merge Module : Trying to use $(var.Project.TargetFileName)Stephen Bailey2009-02-12T19:45:35Z2009-02-12T19:45:35Z<p>Good practice dictates that you always assume this is your issue and it is not a bug, but after a lot of wasted time I though I would just check, and, it looks like it might be because this is not supported for C++ projects (which mine is )</p>
<p>From WIX3 <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1975405&group_id=105970&atid=642714" rel="nofollow">bug report page</a></p>
<blockquote>
<p>Date: 2008-10-17 14:53 Sender:
jasongin Any C++ project is not
MSBuild. C++ projects in VS use a
different project system that is more
difficult to interoperate with. That's
why Votive v3 does not yet support
references to C++ projects. We know
C++ project references is an important
feature, but it's not done yet. The
work is tracked by feature request
1585281.</p>
</blockquote>
<p>This is an <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1585281&group_id=105970&atid=642717" rel="nofollow">open feature request</a>.. but has been for a long time now it seems, so not sure if it will ever be fixed :-(</p>
http://stackoverflow.com/questions/542832/wix-merge-module-trying-to-use-var-project-targetfilename0WIX Merge Module : Trying to use $(var.Project.TargetFileName)Stephen Bailey2009-02-12T19:17:52Z2009-02-12T19:45:35Z
<p>I have created a simple Wix 3 Merge Module in VS 2005 ( .wxs )</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Module Id="TestMergeModule" Language="1033" Version="1.0.0.0">
<Package Id="ef2a568e-a8db-4213-a211-9261c26031aa" Manufacturer="Me" InstallerVersion="200" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="MergeRedirectFolder">
<Component Id="Test_ModuleComponent" Guid="{1081C5BC-106E-4b89-B14F-FFA71B0987E1}">
<File Id="Test" Name="$(var.Project.TargetFileName)" Source="$(var.Project.TargetPath)" DiskId="1" />
</Component>
</Directory>
</Directory>
</Module>
</Wix>
</code></pre>
<p>And I have added the project "Project" as a reference to this Merge Module, however I continue to get this error </p>
<pre><code>Error 7 Undefined preprocessor variable '$(var.Project.TargetFileName)'.
</code></pre>
<p>Any suggestions, I am sure I am just missing the obvious here.</p>
http://stackoverflow.com/questions/508610/how-do-you-manage-your-time-as-a-team-leader/508795#5087952Answer by Stephen Bailey for How do you manage your time as a team leader?Stephen Bailey2009-02-03T20:30:12Z2009-02-04T05:28:27Z<p>I have 3 pieces of advice for you :</p>
<p>1) Take control of your email. It is likely that this is the first place that changes, from a few mails a day to an insane amt : see my answer to this Question <a href="http://stackoverflow.com/questions/181986/what-is-the-best-way-to-organise-e-mails-in-ms-outlook/195942#195942">How to organize your mail</a> </p>
<p>2) Understand your role has now changed. You are now primarily a innovation catalyst, since innovation happens in the white spaces between the organogram and that is where you must operate - to do this you need to get NOT BUSY ( delegate )</p>
<p>3) Don't get lost is the white space and lose touch with the actual development, keep doing it, but don't get on the critical path.</p>
http://stackoverflow.com/questions/491206/erlang-building-dynamic-file-names1Erlang Building Dynamic File NamesStephen Bailey2009-01-29T10:54:56Z2009-01-29T11:11:23Z
<p>I am trying to create a file with a name based on an integer value from a function, clearly below does not work but gives you the idea :</p>
<pre><code>getValue() -> 1.
createFile() ->
{ok, File} = file:open( getValue(), [write]),
io:format(File,"Test~n"),
file:close(File).
</code></pre>
<p>This ought to be simple, even with Erlangs lack of support for strings, so I must just be missing something obvious ( as is the price of being new to something ) :</p>
http://stackoverflow.com/questions/341696/explaining-svn-to-non-programmers/341842#3418426Answer by Stephen Bailey for Explaining SVN to non-programmersStephen Bailey2008-12-04T19:58:05Z2008-12-04T21:58:04Z<p>As I read it there are 2 things here. 1 teaching them the concept, and 2 teaching them how to use SVN. </p>
<p>Generally keep it simple and the complexity will take care of its self in time and use.</p>
<ol>
<li><p>Simply, SVN is a backup of what you are working on, but cunningly only saves the changes you make not every version you save to it, this keeps it small and easily allow you to compare changes over time.</p></li>
<li><p>There is no substitute for practical experience here, show them how to checkout, update and checkin. I would suggest you use Tortoise SVN as the learning curve is greatly reduced.</p></li>
</ol>
<p>To keep things simple I would set up their own branch they can commit to, so they don't need to understand that yet, and you just manage the merges in the background. But soon they will get the hang of it!</p>
http://stackoverflow.com/questions/326318/what-do-you-do-to-learn-shortcuts/326567#3265673Answer by Stephen Bailey for What do you do to learn shortcuts?Stephen Bailey2008-11-28T20:17:06Z2008-11-28T20:17:06Z<p>Just do it one function at a time! It must become part of your flow, if you are looking up the information in a cheat sheet, then you are wasting your time and missing the point.</p>
<p>You only need to learn these the keyboard shortcuts for the operations you do a lot, and in those cases it does not take learning you just get it with repetition. </p>
<p>The more you do this, the quicker you find out that keyboard short cuts are like UI design they all tend to follow the same pattern, and it does not take long before you can assume the keyboard shortcuts and be correct.</p>
<p>Despite the questionable study quoted by @Dan, if you need inspiration, just watch a keyboard user and someone who is not, the key difference is not really speed, it is the time spent context switching between the task at hand and getting where you need to go or doing what you need to do.</p>
http://stackoverflow.com/questions/326412/is-it-inappropriate-to-bring-my-own-larger-monitor-into-the-office/326525#3265250Answer by Stephen Bailey for Is it inappropriate to bring my own larger monitor into the office?Stephen Bailey2008-11-28T19:52:10Z2008-11-28T19:52:10Z<p>It is a sad state of affairs when there is caution when a craftsman wants to bring a superior tool to do his craft.</p>
<p>That is like saying, hey don't don't sharpen your axe, cause we all have blunt ones, and that would be unfair. As if they were not all on the same side anyway.</p>
<p>I acknowledge that there may be legal constraints as suggested by @Dan Dyer, but surely the company in question ought to see this as a cost saving, for just the price of some maintenance, they get to allow their developer to work with a better tools and get all the benefits as describe by @Ken G.</p>
<p>..but enough ranting... </p>
<p>Like everyone else, I would encourage it, but do it in a way that respects the authority and responsibility of the people you are working for, that is part of being a professional as much as using the correct tools. Just let them know that you just want to do the best job you can.</p>
http://stackoverflow.com/questions/326429/what-version-control-system-is-most-trivial-to-set-up-and-use-for-toy-projects/326505#3265052Answer by Stephen Bailey for What version-control system is most trivial to set up and use for toy projects?Stephen Bailey2008-11-28T19:36:17Z2008-11-28T19:36:17Z<p>If you are looking for something that is really really esay to set up, then why not go for the free SVN hosting option, you don't have to set up a thing!</p>
<p>Sadly the two older ones that everyone would have pointed you to being Assembla, Unfuddle, have dropped support for their free hosting ( or at lest if you want them to private ), but you can still use <a href="http://www.origo.ethz.ch/" rel="nofollow">Origo</a> this give you both open and closed hosting.</p>
<p>The advantage of this is that you can own all the projects and follow them all, and easily control the people who have access, and you don't have to worry about right for creating repos.</p>
<p>If you do go this route, and you want to eliminate complexity then you must use a GUI svn application to make learning near trivial ( since I doubt there will be much merging going on ). I would recommend <a href="http://tortoisesvn.tigris.org/" rel="nofollow">tortoisesvn</a>, slips right into your windows explorer context menu.</p>
http://stackoverflow.com/questions/212990/simple-c-uml-w-reverse-engineering/213699#213699-1Answer by Stephen Bailey for Simple C++ UML w/ reverse engineeringStephen Bailey2008-10-17T20:19:01Z2008-10-17T20:19:01Z<p>Not the answer you are looking for, but if the UML is that simple, then just write the code by hand, you will have far more control over you project in the long run. If you are wanting to use this as a technique to save large amts of repetitive typing, then on the face of it is sound like you may have a design problem to be addressed first.</p>
<p>I am slightly biased, as I would also say that if the UML is too complex then write the code yourself anyway, in fact I would seldom recommend generating code from UML.</p>
<p>UML is a modeling tool, it is not a programming language and should be language agnostic. You need be clear that those 2 concepts are different. Just because in your UML Model have a conceptual class, does not mean that when it comes to implementing that model that you need to create it as a class for various reasons ( Performance, Language constraints etc )</p>
<p>In short, let the design tools help you design, and the dev tools dev.</p>
http://stackoverflow.com/questions/181986/what-is-the-best-way-to-organise-e-mails-in-ms-outlook/195942#1959422Answer by Stephen Bailey for What is the best way to organise e-mails in MS Outlook?Stephen Bailey2008-10-12T20:00:40Z2008-10-13T14:39:00Z<p>Depending on the amt of mail you receive I have 2 strategies that can be used together:</p>
<p>1) <strong>As most people suggest above, use your inbox as your todo list, and keep it clean. have 1 folder for Archived mails, and use all the search tools for searching!</strong></p>
<p>2) <strong>If you get HUGE amts of mail, then use a filter to move mails that you are only CC'ed on to another folder. Then only check that folder N times a day ( I used N=3, morning, lunch & home time )</strong></p>
<p>You will be amazed how much time it saves you, esp if you find that you feel drawn to reading mails that are in your Inbox trying to keep you Inbox clean.</p>
<p>This stop non-urgent mails from disrupting your flow, and is just quicker because you can now read the entire thread of the conversion by the people who were in the TO list. </p>
<p>HTH</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/84668#846680Answer by Stephen Bailey for What's Your Motto As A Developer/Programmer?Stephen Bailey2008-09-17T15:42:41Z2008-09-17T15:42:41Z<p>Depnds on the day : </p>
<p>Good Day = Truism : <strong>"Single Stepping your code is the ONLY way"</strong></p>
<p>Bady Day = Sarcasim : <strong>"What could possibly go wrong?</strong></p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/81457#814578Answer by Stephen Bailey for How to setup access control in SVN?Stephen Bailey2008-09-17T09:29:50Z2008-09-17T14:16:28Z<p>In your <strong>svn\repos\YourRepo\conf</strong> folder you will find 2 files <strong>authz</strong> and <strong>passwd</strong> these are the 2 you need to adjust.</p>
<p>In the <strong>passwd</strong> file you need to add some username and passwords. I assume you have already done this since you have people using it</p>
<pre><code>[users]
User1=password1
User2=password2
</code></pre>
<p>Then you want to assign permissions accordingly with the <strong>authz</strong> file :</p>
<p>Create the conceptual groups you want, and add people to it</p>
<pre><code>[groups]
allaccess = user1
someacces = user2
</code></pre>
<p>Then choose what access they have from both the permissions and projec level</p>
<p>So lets give our all access guys all access from the root</p>
<pre><code>[/]
@allacces = rw
</code></pre>
<p>But only give our someaccess guys only read access to some lower level project :</p>
<pre><code>[/someproject]
@someaccess = r
</code></pre>
<p>You will also find some simple documentation in the <strong>authz</strong> and <strong>passwd</strong> files.</p>
http://stackoverflow.com/questions/887198/erlang-takeover-failing-after-successful-failoverComment by Stephen Bailey on Erlang Takeover failing after successful FailoverStephen Bailey2009-05-21T05:15:26Z2009-05-21T05:15:26ZIt is the standard result I get with rb:show(N) on a windows box with erl_12B.
The only other variations I have seen is if you make the call via rpc, then the output is flooded with node names ? What are you seeing ?http://stackoverflow.com/questions/872198/erlang-rpc-to-a-node-with-output-on-that-node/873242#873242Comment by Stephen Bailey on Erlang : RPC to a node with output on that nodeStephen Bailey2009-05-17T06:25:45Z2009-05-17T06:25:45Zapologies.. I expressed that very poorly - I have re-expressedhttp://stackoverflow.com/questions/208100/how-do-i-get-srcsrv-with-svnindex-cmd-to-index-extern-files/625620#625620Comment by Stephen Bailey on How do I get Srcsrv with SVNindex.cmd to index extern files ?Stephen Bailey2009-03-16T21:53:32Z2009-03-16T21:53:32ZThanks muchly, will add it to my build scripts :-)http://stackoverflow.com/questions/145228/what-could-make-erlang-more-popular-and-widespread/232836#232836Comment by Stephen Bailey on What could make Erlang more popular and widespread?Stephen Bailey2009-03-09T19:57:11Z2009-03-09T19:57:11ZI buy everything up until the "..gaining some kind of traction, stopped". If it is good it will grow and you will find out what you are missing and try it out. But why would you want to stop natural traction if it starts to happen? Does that not imply it is something worth looking a then ?http://stackoverflow.com/questions/208100/how-do-i-get-srcsrv-with-svnindex-cmd-to-index-extern-files/625620#625620Comment by Stephen Bailey on How do I get Srcsrv with SVNindex.cmd to index extern files ?Stephen Bailey2009-03-09T19:40:50Z2009-03-09T19:40:50ZCome on - you know you want to add the perl script in here :-)http://stackoverflow.com/questions/508610/how-do-you-manage-your-time-as-a-team-leader/508795#508795Comment by Stephen Bailey on How do you manage your time as a team leader?Stephen Bailey2009-02-04T06:59:11Z2009-02-04T06:59:11ZOkay I was inspired here is the blog I have always wanted to write on innovation in the white spaces : <a href="http://www.blog.stackingit.com/2009/02/innovation-happens-in-white-spaces.html" rel="nofollow">blog.stackingit.com/2009/02/…</a>http://stackoverflow.com/questions/508610/how-do-you-manage-your-time-as-a-team-leader/508795#508795Comment by Stephen Bailey on How do you manage your time as a team leader?Stephen Bailey2009-02-03T20:33:36Z2009-02-03T20:33:36ZI really need to blog the idea of innovation in the white spaces of the organagram at some point, but I hope the picture is clear.. innovation happens outside the typical work flow, and middle management ( with time ) is perfectly placed to effectively do this.http://stackoverflow.com/questions/491206/erlang-building-dynamic-file-names/491222#491222Comment by Stephen Bailey on Erlang Building Dynamic File NamesStephen Bailey2009-01-29T11:08:53Z2009-01-29T11:08:53ZSpot on, ( except for a missing bracket ). Thanks - what makes it worse is I thought I tried that <i>sigh</i>...http://stackoverflow.com/questions/208100/how-do-i-get-srcsrv-with-svnindex-cmd-to-index-extern-files/447415#447415Comment by Stephen Bailey on How do I get Srcsrv with SVNindex.cmd to index extern files ?Stephen Bailey2009-01-21T20:25:53Z2009-01-21T20:25:53ZNope, has not been that NB to me yet.. but as for the zero source files, things I have noticed are that you must index from the absolute path that you did the build, not just the same source in a different location. Hope that helps a bit. Please let me know if you get any joy on the externhttp://stackoverflow.com/questions/326318/what-do-you-do-to-learn-shortcuts/326346#326346Comment by Stephen Bailey on What do you do to learn shortcuts?Stephen Bailey2008-11-28T20:04:16Z2008-11-28T20:04:16ZLet pretend for a second that this section is true "...It takes two seconds to decide upon which special-function key to press..." it can only be true for a person who has never used the function Key before! If that were true, the following their logic, it would be faster to type with a mouse!http://stackoverflow.com/questions/181986/what-is-the-best-way-to-organise-e-mails-in-ms-outlook/195942#195942Comment by Stephen Bailey on What is the best way to organise e-mails in MS Outlook?Stephen Bailey2008-11-27T07:46:32Z2008-11-27T07:46:32ZRelated to this, I recently blogged ( <a href="http://www.blog.stackingit.com/2008/11/why-email-makes-you-think-you-are.html" rel="nofollow">blog.stackingit.com/2008/11/…</a>) about choosing not to mail as a powerful way to "manage" your mailhttp://stackoverflow.com/questions/305990/what-is-the-optimal-productivity-stack-for-developers/306066#306066Comment by Stephen Bailey on What is the optimal productivity stack for developers?Stephen Bailey2008-11-21T08:50:07Z2008-11-21T08:50:07ZI Agree totally here, there is no optimal, it is simply about using anything that will help you optimize away anything that stops you thinking about the problem you are trying to solve.http://stackoverflow.com/questions/205003/is-it-wrong-to-go-to-interviews-while-employedComment by Stephen Bailey on Is it wrong to go to interviews while employed?Stephen Bailey2008-10-16T14:40:14Z2008-10-16T14:40:14ZI take it then you assume that your employer does not use StackOverflow else, well basically you have just told them :-)http://stackoverflow.com/questions/195954/rating-answers-for-old-questions/196849#196849Comment by Stephen Bailey on Rating Answers for old questionsStephen Bailey2008-10-13T07:01:11Z2008-10-13T07:01:11ZThat is why I would not typically mark an answer as the correct one, because who am I to say that is correct ( I might do it however if I though that the votes were wrong... but really that is anti community )http://stackoverflow.com/questions/195954/rating-answers-for-old-questions/196009#196009Comment by Stephen Bailey on Rating Answers for old questionsStephen Bailey2008-10-12T20:36:48Z2008-10-12T20:36:48ZIt is not the points that I am interested in, but the value I find in the relative vote that answers are given. I typically read them to be the community opinion on a question. So typically I look at the highest scoring and the negative scores to see what people think is good and terrible.