User Christian Lescuyer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T18:26:05Zhttp://stackoverflow.com/feeds/user/341http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2509/what-are-the-primary-differences-between-tdd-and-bdd/2548#254817Answer by Christian Lescuyer for What are the primary differences between TDD and BDD?Christian Lescuyer2008-08-05T16:36:53Z2009-10-18T16:29:18Z<p>I understand BDD to be more about <strong>specification</strong> than <strong>testing</strong>. It is linked to Domain Driven Design (don't you love these *DD acronyms?). </p>
<p>It is linked with a certain way to write user stories, including high-level tests. An example by <a href="http://tomtenthij.co.uk/2008/1/25/rspec-plain-text-story-runner-on-a-fresh-rails-app" rel="nofollow">Tom ten Thij</a>:</p>
<pre><code>Story: User logging in
As a user
I want to login with my details
So that I can get access to the site
Scenario: User uses wrong password
Given a username 'jdoe'
And a password 'letmein'
When the user logs in with username and password
Then the login form should be shown again
</code></pre>
<p>(In his article, Tom goes on to directly execute this test specification in Ruby.)</p>
<p>The pope of BDD is <a href="http://dannorth.net/" rel="nofollow">Dan North</a>. You'll find a great introduction in his <a href="http://dannorth.net/introducing-bdd" rel="nofollow">Introducing BDD</a> article.</p>
<p>You will find a comparison of BDD and TDD in this <a href="http://video.google.com/videoplay?docid=8135690990081075324" rel="nofollow">video</a>. Also an opinion about DBB as "TDD done right" by <a href="http://codebetter.com/blogs/jeremy.miller/archive/2007/09/06/bdd-tdd-and-the-other-double-d-s.aspx" rel="nofollow">Jeremy D. Miller</a></p>
http://stackoverflow.com/questions/1346478/cannot-install-ruby-on-centos/1346760#13467601Answer by Christian Lescuyer for Cannot install Ruby on CentOSChristian Lescuyer2009-08-28T12:38:13Z2009-08-28T12:38:13Z<p>For Ruby <strong>1.8.6</strong> I had to add another repository.</p>
<p>Create /etc/yum.repos.d/ruby.repo and add the following:</p>
<pre><code>[ruby]
name=ruby
baseurl=http://repo.premiumhelp.eu/ruby/
gpgcheck=0
enabled=0
</code></pre>
<p>Then</p>
<pre><code>yum --eneblerepo=ruby install ruby
</code></pre>
<p>From <a href="https://www.centos.org/modules/newbb/viewtopic.php?topic%5Fid=11821" rel="nofollow">www.centos.org forums</a>.</p>
<p>Don't bother installing rubygems this way, it's obsolete.</p>
http://stackoverflow.com/questions/662220/how-to-change-the-pop-up-position-of-the-jquery-datepicker-control/1346680#13466802Answer by Christian Lescuyer for How to change the pop-up position of the jQuery DatePicker controlChristian Lescuyer2009-08-28T12:23:39Z2009-08-28T12:23:39Z<p>I do it directly in the CSS:</p>
<pre><code>.ui-datepicker {
margin-left: 100px;
z-index: 1000;
}
</code></pre>
<p>My date input fields are all 100px wide. I also added the z-index so the calendar also appears above AJAX popups.</p>
<p>I don't modify the jquery-ui CSS file; I overload the class in my main CSS file, so I can change the theme or update the widget without having to re-enter my specific mods.</p>
http://stackoverflow.com/questions/817167/whats-the-best-way-to-notify-a-non-web-application-about-a-change-on-a-web-page/817267#8172673Answer by Christian Lescuyer for What's the best way to notify a non-web application about a change on a web page?Christian Lescuyer2009-05-03T15:02:01Z2009-05-03T15:02:01Z<p>I can see two ways:</p>
<ul>
<li>Your desktop application polls the web app</li>
<li>Your web app notifies the desktop application</li>
</ul>
<p>Your web app could publish an RSS feed, but your desktop app will still have to poll the feed every 10 s.</p>
<p>The traffic need not be huge: if you use an HTTP <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.4" rel="nofollow">HEAD</a> request, you'll get a small packet with the date of the last modification (conveniently named <em>Last-Modified</em>).</p>
http://stackoverflow.com/questions/816469/how-do-you-figure-out-what-the-older-versions-are-for-a-particular-ruby-gem/816954#8169540Answer by Christian Lescuyer for How do you figure out what the older versions are for a particular Ruby Gem?Christian Lescuyer2009-05-03T12:36:46Z2009-05-03T12:36:46Z<p>And if you want to know the old versions you have installed, use gem list:</p>
<pre><code>$ gem list
*** LOCAL GEMS ***
actionmailer (2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.1.2, 2.1.1, 2.1.0, 2.0.2)
actionpack (2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.1.2, 2.1.1, 2.1.0, 2.0.2)
activerecord (2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.1.2, 2.1.1, 2.1.0, 2.0.2)
...
</code></pre>
http://stackoverflow.com/questions/197678/is-there-a-way-for-ruby-accessors-to-return-something-other-than-the-set-variable3Is there a way for Ruby accessors to return something other than the set variable?Christian Lescuyer2008-10-13T14:06:34Z2009-04-08T18:33:09Z
<p>I want to do some checking in a writer accessor. My first idea was returning a boolean.</p>
<pre><code>class MyClass
def var=(var)
@var = var
# some checking
return true
end
end
m = MyClass.new
retval = (m.var = 'foo')
=> "foo"
</code></pre>
<p>Can I set a return value in a writer accessor? If yes, how can I get this value?</p>
http://stackoverflow.com/questions/395214/eer-model-pharmacy/395357#3953570Answer by Christian Lescuyer for EER Model ... PharmacyChristian Lescuyer2008-12-27T20:14:50Z2008-12-27T20:14:50Z<p>I have no idea what a database schema for a pharmacy would be, but you will find lots of examples on <a href="http://www.databaseanswers.org/data_models/" rel="nofollow">http://www.databaseanswers.org/data_models/</a>. </p>
<p>They do propose pharmacy related stuff, for example <a href="http://www.databaseanswers.org/data_models/pharmacies_and_prescriptions/index.htm" rel="nofollow">Pharmacies and Prescriptions</a>.</p>
http://stackoverflow.com/questions/383058/rails-schema-creation-problem/383357#3833571Answer by Christian Lescuyer for Rails Schema creation problemChristian Lescuyer2008-12-20T14:21:27Z2008-12-20T14:21:27Z<p>As I use foreign key constraints, I use the SQL format for migrations. In <em>environment.rb</em>:</p>
<pre><code># Use SQL instead of Active Record's schema dumper when creating the test database.
# This is necessary if your schema can't be completely dumped by the schema dumper,
# like if you have constraints or database-specific column types
config.active_record.schema_format = :sql
</code></pre>
http://stackoverflow.com/questions/371728/how-can-i-permanently-prevent-excel-from-setting-all-new-documents-to-r1c1-mode/371804#3718040Answer by Christian Lescuyer for How can I permanently prevent Excel from setting all new documents to R1C1 mode?Christian Lescuyer2008-12-16T16:19:43Z2008-12-16T16:19:43Z<p>I suppose the template has been saved with the R1C1 option. Maybe you can open it, change the option and overwrite the original template?</p>
http://stackoverflow.com/questions/164095/need-help-improving-a-ruby-dsl-for-controlling-an-arduino-controlled-drink-dispen/365747#3657471Answer by Christian Lescuyer for Need help improving a Ruby DSL for controlling an Arduino controlled drink dispenser (bar monkey)Christian Lescuyer2008-12-13T21:16:24Z2008-12-13T21:16:24Z<p>If you want the recipe to look more natural, why not (from the same recipe Orion Ewards used, thanks!):</p>
<pre><code>Recipe for Long Island Iced Tea #1
Ingredients:
1/2 oz Vodka
1/2 oz Tequila
1/2 oz Light Rum
1/2 oz Gin
1 Dash Coca-Cola
# ignored Twist of Lemon Peel (or Lime)
</code></pre>
<p>Then add <a href="http://treetop.rubyforge.org/" rel="nofollow">Treetop</a> to the mix. You could have rules such as:</p>
<pre><code>grammar Cocktail
rule cocktail
title ingredients
end
rule title
'Recipe for' S text:(.*) EOF
end
rule ingredients
ingredient+
end
rule ingredient
qty S liquid
end
# ...
end
</code></pre>
<p>Which the treetop compiler will transform into a nice ruby module. Then:</p>
<pre><code>parser = CocktailParser.new
r = parser.parse(recipe)
</code></pre>
http://stackoverflow.com/questions/365380/large-primary-key-1-billion-rows-mysql-innodb/365710#3657100Answer by Christian Lescuyer for Large primary key: 1+ billion rows mySQL + InnoDB?Christian Lescuyer2008-12-13T20:52:48Z2008-12-13T20:52:48Z<p>There is a good comparison of storage engines on MySQL Dev zone:</p>
<ul>
<li><a href="http://dev.mysql.com/tech-resources/articles/storage-engine/part_1.html" rel="nofollow">MySQL Storage Engine Architecture, Part 1: An Overview</a></li>
<li><a href="http://dev.mysql.com/tech-resources/articles/storage-engine/part_2.html" rel="nofollow">MySQL Storage Engine Architecture, Part 2: An In-Depth Look</a></li>
<li><a href="http://dev.mysql.com/tech-resources/articles/storage-engine/part_3.html" rel="nofollow">MySQL Storage Engine Architecture, Part 3: Details and Comparison</a></li>
</ul>
<p>From your description I would say MyISAM would be better, but it depends quite a lot on the compared reading and writing patterns of your app.</p>
http://stackoverflow.com/questions/365603/firefox-plugin-to-copy-text-with-its-formatting-intelligently/365680#3656800Answer by Christian Lescuyer for Firefox plugin to copy text with its formatting Intelligently?Christian Lescuyer2008-12-13T20:29:10Z2008-12-13T20:29:10Z<p>I think the copy operation does this already. If I copy this page and paste it in a WYSIWYG editor such as TinyMCE (included in Wordpress), I get the formatting. For example the text of this page is (as pasted):</p>
<pre><code><h2><a href="http://stackoverflow.com/questions/365603/firefox-plugin-to-copy-text-with-its-formatting-intelligently">Firefox plugin to copy text with its formatting Intelligently?</a></h2>
</code></pre>
<p>The HTML markup is copied, but not external CSS. I suspect creating a piece of CSS that would apply to your standalone snippet of code the style it had within the DOM hierarchy would be horribly difficult if at all possible. </p>
http://stackoverflow.com/questions/354454/release-deployment-maintenance-process-for-a-web-service/354589#3545890Answer by Christian Lescuyer for Release/Deployment/Maintenance process for a web serviceChristian Lescuyer2008-12-09T23:13:42Z2008-12-09T23:13:42Z<p>Denis Hennessy wrote a fine summary. As for tools, have a look at <a href="http://www.capify.org/" rel="nofollow">Capistrano</a>.</p>
http://stackoverflow.com/questions/354547/print-ruby-object-members/354578#3545786Answer by Christian Lescuyer for Print Ruby object membersChristian Lescuyer2008-12-09T23:08:27Z2008-12-09T23:08:27Z<p>Possibly:</p>
<pre><code>puts variable.inspect
</code></pre>
http://stackoverflow.com/questions/333462/rails-routing-controller-action-change/333570#3335704Answer by Christian Lescuyer for rails routing controller action changeChristian Lescuyer2008-12-02T10:29:03Z2008-12-02T10:29:03Z<p>Try this:</p>
<pre><code>map.ask_question '/questions/ask', :controller => 'questions', :action => 'new'
</code></pre>
<p>Then you'll have a named route and you can:</p>
<pre><code>link_to "Ask a question", ask_question_path
</code></pre>
http://stackoverflow.com/questions/326277/rails-calling-a-model-class-in-a-library1Rails: calling a model class in a library Christian Lescuyer2008-11-28T17:30:49Z2008-12-01T10:20:48Z
<p>I'm trying to verify that a parameter is an instance of a specific class in Rails:</p>
<pre><code>def schedule(action, *args)
if arg.is_a? Aircraft
...
end
end
</code></pre>
<p>I'm doing this in a library class (the file is in <em>lib/</em>) and I get an <strong>uninitialized constant Aircraft</strong> error. Aircraft is a model class, with a corresponding <em>aircraft.rb</em> file in <em>app/models</em>.</p>
<p>Can I use model classes and instances in a library? How?</p>
<p><hr /></p>
<p><strong>Error context:</strong></p>
<p>The error happens in RSpec tests; the code works in the browser. I tried requiring the model in the *<em>spec.rb</em> file, no success at the moment.</p>
http://stackoverflow.com/questions/302369/wolframs-rule-34-in-xkcd/302621#3026214Answer by Christian Lescuyer for Wolfram's Rule 34 in XKCDChristian Lescuyer2008-11-19T17:04:34Z2008-11-19T17:04:34Z<p>If you want to look at the source:</p>
<ul>
<li>Detailed properties of rule 34: <a href="http://atlas.wolfram.com/01/01/34/01_01_1_34.html" rel="nofollow">http://atlas.wolfram.com/01/01/34/01_01_1_34.html</a></li>
<li>Behaviour of rule 34: <a href="http://atlas.wolfram.com/01/01/34/" rel="nofollow">http://atlas.wolfram.com/01/01/34/</a></li>
<li>Hilighted rules (Wolfram selection): <a href="http://atlas.wolfram.com/01/01/" rel="nofollow">http://atlas.wolfram.com/01/01/</a></li>
<li>Index of all 256 rules: <a href="http://atlas.wolfram.com/01/01/rulelist.html" rel="nofollow">http://atlas.wolfram.com/01/01/rulelist.html</a></li>
</ul>
<p>The <a href="http://rads.stackoverflow.com/amzn/click/1579550088" rel="nofollow">book</a> contains thousands of nice little diagrams.</p>
http://stackoverflow.com/questions/302459/what-is-a-programming-idiom/302561#3025612Answer by Christian Lescuyer for What is a programming idiom?Christian Lescuyer2008-11-19T16:49:26Z2008-11-19T16:49:26Z<p>A programming idiom is the usual way to code a task in a specific language. For example a loop is often written like this in C:</p>
<pre><code>for (i=0; i<10; i++)
</code></pre>
<p>PHP will understand a similar construct:</p>
<pre><code>for ($i = 1; $i <= 10; $i++)
</code></pre>
<p>But it is discouraged in PHP for looping over an array. In this case you would use:</p>
<pre><code>foreach ($arr as $value)
</code></pre>
<p>Whereas in Ruby, you would use:</p>
<pre><code>(1..10).each
</code></pre>
<p>for the loop, or:</p>
<pre><code>array.each
</code></pre>
<p>There are many many possibilities to write a loop in those languages. Using the idiom makes it immediately identifiable by experienced readers. They can then spend their time on more important problems.</p>
http://stackoverflow.com/questions/295936/how-could-i-nice-capistrano-deployment/296329#2963290Answer by Christian Lescuyer for How could I 'nice' Capistrano deployment ?Christian Lescuyer2008-11-17T17:53:38Z2008-11-17T17:53:38Z<p>Not sure about <strong>cp</strong>. Don't you use an SCM?</p>
<p>I tried with my setup (I use subversion) and this seems to work. In <em>deploy.rb</em>, add:</p>
<pre><code>set :scm_command, "nice -19 svn"
</code></pre>
<p>It seems somewhat more difficult if you don't use an SCM, you'll have to overload checkout() in <em>deploy/scm/none.rb</em>.</p>
http://stackoverflow.com/questions/286321/how-can-i-emulate-put-delete-for-rails-and-gwt/286463#2864632Answer by Christian Lescuyer for How can I emulate PUT/DELETE for Rails and GWT?Christian Lescuyer2008-11-13T07:46:36Z2008-11-13T07:46:36Z<p>Rails does this with hidden attributes. The easiest way to figure this out would be to create a new rails application, generate a scaffold and have a look at the HTML in a browser.</p>
<p>Try this:</p>
<pre><code>rails jp
cd jp
./script/generate scaffold RequestBuilder name:string
rake db:migrate
./script/server
</code></pre>
<p>Then navigate to <a href="http://localhost:3000/request_builders" rel="nofollow">http://localhost:3000/request_builders</a>, click on New and have a look at the HTML. You'll see something like:</p>
<pre><code><form action="/request_builders" class="new_request_builder"
id="new_request_builder" method="post">
<div style="margin:0;padding:0">
<input name="authenticity_token" type="hidden" value="e76..." />
</div>
</code></pre>
<p>This is a creation, method is POST. Enter a name, save then Edit:</p>
<pre><code><form action="/request_builders/1" class="edit_request_builder"
id="edit_request_builder_1" method="post">
<div style="margin:0;padding:0">
<input name="_method" type="hidden" value="put" />
<input name="authenticity_token" type="hidden" value="e76..." />
</div>
</code></pre>
<p>Of course the form is sent with POST, but Rails hads a hidden field to simulate a PUT request. Same for deletion, but the scaffold will do it with a bit of Javascript:</p>
<pre><code>var m = document.createElement('input');
m.setAttribute('type', 'hidden');
m.setAttribute('name', '_method');
m.setAttribute('value', 'delete');
</code></pre>
<p>To have this work with another front-end, you'll have to both:</p>
<ul>
<li>Use the same style URL such as /request_builders/1 (RESTful URLs)</li>
<li>Include the hidden fields (Rails trick)</li>
</ul>
http://stackoverflow.com/questions/261455/using-backticks-around-field-names/261484#2614840Answer by Christian Lescuyer for Using backticks around field namesChristian Lescuyer2008-11-04T10:40:28Z2008-11-04T10:40:28Z<p>There isn't anything wrong if you keep using MYSQL, except maybe the visual fuziness of the queries. But they do allow the use of reserved keywords or embedded spaces as table and column names. This is a no-no with most database engines and will prevent any migration at a later time.</p>
<p>As for easy reading, many people use caps for SQL keywords, eg.</p>
<pre><code>SELECT some_fied, some_other_field FROM whatever WHERE id IS NULL;
</code></pre>
http://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div/252880#2528802Answer by Christian Lescuyer for Center Align on a Absolutely Positioned DivChristian Lescuyer2008-10-31T08:31:11Z2008-10-31T08:31:11Z<p>Dave Shea (mezzoblue) has written a good article on the subject with explanations and examples:
<a href="http://www.mezzoblue.com/tests/centered-css/" rel="nofollow">Horizontally Centered Absolute Positioning</a></p>
http://stackoverflow.com/questions/247626/how-can-i-set-cron-to-run-certain-commands-every-one-and-a-half-hours/247749#2477490Answer by Christian Lescuyer for How can I set cron to run certain commands every one and a half hours?Christian Lescuyer2008-10-29T17:47:56Z2008-10-29T17:47:56Z<p>You could also use <a href="http://fcron.free.fr/" rel="nofollow">fcron</a> which also accepts more complex time specifications such as :</p>
<pre><code>@ 01h30 my_cmd
</code></pre>
http://stackoverflow.com/questions/214378/how-can-i-locate-the-default-style-sheet-for-a-browser/214807#214807-1Answer by Christian Lescuyer for How can I locate the default style sheet for a browser?Christian Lescuyer2008-10-18T09:23:54Z2008-10-18T09:23:54Z<p>The default stylesheet is generally not available. I recommend starting your own stylesheet with a "reset styles" part, or including reset styles in a style sheet you load first. Eg.</p>
<pre><code><link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/reset.css"></link>
<link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/general.css"></link>
</code></pre>
<p>Eric Meyer ("the" Eric, just <a href="http://www.google.com/search?q=eric" rel="nofollow">google Eric</a>) offers a battle tested and widely used reset style sheet here: <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/" rel="nofollow">http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/</a></p>
http://stackoverflow.com/questions/210645/restricting-file-downloads/210672#2106721Answer by Christian Lescuyer for Restricting file downloadsChristian Lescuyer2008-10-16T23:43:28Z2008-10-16T23:43:28Z<p>You can have the URL be an authorization code for the buyer. You get her to log in again, check which file the code is for, then pipe the file to her. Here is an exemple of PHP code from osCommerce (I wrote that a long time ago).</p>
<pre><code>// Now send the file with header() magic
header("Expires: Mon, 26 Nov 1962 00:00:00 GMT");
header("Last-Modified: " . gmdate("D,d M Y H:i:s") . " GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Content-Type: Application/octet-stream");
header("Content-disposition: attachment; filename=" . $downloads['orders_products_filename']);
if (DOWNLOAD_BY_REDIRECT == 'true') {
// This will work only on Unix/Linux hosts
tep_unlink_temp_dir(DIR_FS_DOWNLOAD_PUBLIC);
$tempdir = tep_random_name();
umask(0000);
mkdir(DIR_FS_DOWNLOAD_PUBLIC . $tempdir, 0777);
symlink(DIR_FS_DOWNLOAD . $downloads['orders_products_filename'], DIR_FS_DOWNLOAD_PUBLIC . $tempdir . '/' . $downloads['orders_products_filename']);
if (file_exists(DIR_FS_DOWNLOAD_PUBLIC . $tempdir . '/' . $downloads['orders_products_filename'])) {
tep_redirect(tep_href_link(DIR_WS_DOWNLOAD_PUBLIC . $tempdir . '/' . $downloads['orders_products_filename']));
}
}
</code></pre>
http://stackoverflow.com/questions/209979/are-semantics-and-syntax-the-same/210044#21004412Answer by Christian Lescuyer for Are semantics and syntax the same?Christian Lescuyer2008-10-16T19:57:27Z2008-10-16T19:57:27Z<p>Syntax is the grammar. It describes the way to construct a correct sentence. For example, <em>this water is triangular</em> is syntactically correct.</p>
<p>Semantics relates to the meaning. <em>this water is triangular</em> does not mean anything, though the grammar is ok.</p>
<p>Talking about the <a href="http://en.wikipedia.org/wiki/Semantic_Web" rel="nofollow">semantic web</a> has become trendy recently. The idea is to enhance the markup (structural with HTML) with additional data so computer could make sense of the web pages more easily.</p>
http://stackoverflow.com/questions/209953/organisation-of-routes-in-rails-restfulauthentication-session-and-login0Organisation of routes in Rails -- restful_authentication, session and /loginChristian Lescuyer2008-10-16T19:37:37Z2008-10-16T19:47:53Z
<p>I am struggling with the route setup for a Rails application. I have installed restful_authentication and mostly followed the instructions. I have set up the routes this way:</p>
<pre><code>map.login '/login', :controller => 'sessions', :action => 'new'
map.logout '/logout', :controller => 'sessions', :action => 'destroy'
map.resource :session
</code></pre>
<p>If you're not logged in, you're redirected to <a href="http://localhost:3000/session/new" rel="nofollow">http://localhost:3000/session/new</a>.
It makes some kind of sense, as the code in lib/authenticated_system.rb says <code>redirect_to new_session_path</code>.</p>
<p>But I thought the routes mapping was supposed to work both ways (code to URL and URL to code). Can someone explain? Thanks</p>
http://stackoverflow.com/questions/209495/best-ruby-idiom-for-nil-or-zero/209797#20979713Answer by Christian Lescuyer for Best ruby idiom for "nil or zero"Christian Lescuyer2008-10-16T18:55:03Z2008-10-16T18:55:03Z<p>Objects have a <em>nil?</em> method. See api <a href="http://www.ruby-doc.org/core/classes/Object.html#M000340" rel="nofollow">here</a>.</p>
<pre><code>if (val.nil? or val == 0)
[do something]
end
</code></pre>
<p>Or, for just one instruction:</p>
<pre><code>[do something] if (val.nil? or val == 0)
</code></pre>
http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence3Algorithm to calculate next set in sequenceChristian Lescuyer2008-10-02T14:52:33Z2008-10-14T14:57:28Z
<p>I am looking for an algorithm to calculate the next set of operations in a sequence. Here is the simple definition of the sequence.</p>
<ol>
<li>Task 1A will be done every 500 hours</li>
<li>Task 2A will be done every 1000 hours</li>
<li>Task 3A will be done every 1500 hours</li>
</ol>
<p>So at t=500, do 1A. At t=1000, do both 1A and 2A, at t=1500 do 1A and 3A, but not 2A as 1500 is not a multiple of 1000. You get the idea.</p>
<p>It would be quite easy if I had the actual time, but I don't. What I have is the history of tasks (eg last time a [1A+2A] was done). </p>
<p>Knowing last time (eg [1A+2A]) is not enough to decide:</p>
<ul>
<li>[1A+2A] could be at t=1000: next is [1A+3A] at t=1500</li>
<li>[1A+2A] could be at t=5000: next is [1A] at t=5500</li>
</ul>
<p>Is there an algorithm for this? It looks like a familiar problem (some sort of sieve?) but I can't seem to find a solution.</p>
<p>Also it must "scale" as I actually have more than 3 tasks.</p>
http://stackoverflow.com/questions/195889/apache-development-config-on-os-x-again/195940#1959400Answer by Christian Lescuyer for Apache development config on OS X (again)Christian Lescuyer2008-10-12T19:58:11Z2008-10-12T19:58:11Z<p>Can you try:</p>
<pre><code>ServerName 172.16.3.111
NameVirtualHost *:80
<VirtualHost *:80>
ServerName site1.local
ServerAlias site1
ServerAlias www.site1.local
DocumentRoot /Users/kevin/AppsDev/site1/htdocs
</VirtualHost>
</code></pre>
http://stackoverflow.com/questions/373002/better-ruby-markdown-interpreter/373034#373034Comment by Christian Lescuyer on Better ruby markdown interpreter?Christian Lescuyer2009-08-29T11:52:55Z2009-08-29T11:52:55ZIt isn't anymore. It now uses the C discount library.
<a href="http://www.deveiate.org/projects/BlueCloth" rel="nofollow">deveiate.org/projects/BlueCloth</a>http://stackoverflow.com/questions/383058/rails-schema-creation-problemComment by Christian Lescuyer on Rails Schema creation problemChristian Lescuyer2009-01-02T08:22:58Z2009-01-02T08:22:58ZDid you delete schema.rb? You should get a .sql file instead, but I think the old schema.rb still lies around.http://stackoverflow.com/questions/333462/rails-routing-controller-action-change/333570#333570Comment by Christian Lescuyer on rails routing controller action changeChristian Lescuyer2008-12-04T16:57:36Z2008-12-04T16:57:36Z@Valve it will go to the questions controller with action new. It is RESTful indeed as you're using both the URL and request type.
@Gaius you're right. To prevent users from going to /questions/new you have to remove the default route at the end of the routes.rb file.http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/60759#60759Comment by Christian Lescuyer on Best way to handle user account authentication and passwordsChristian Lescuyer2008-12-04T13:29:00Z2008-12-04T13:29:00ZBrian, not if the hash algorithm includes the username.http://stackoverflow.com/questions/142407/what-is-the-best-way-to-start-unit-and-functional-testing-of-a-ruby-rails-website/142540#142540Comment by Christian Lescuyer on What is the best way to start Unit and Functional testing of a Ruby Rails website?Christian Lescuyer2008-12-02T10:34:53Z2008-12-02T10:34:53ZThe second API for acceptance tests has been taken out of RSpec and is now called "cucumber".http://stackoverflow.com/questions/226478/shoulda-testing-workflow-from-the-trenches/229208#229208Comment by Christian Lescuyer on Shoulda testing workflow from the trenchesChristian Lescuyer2008-12-02T10:33:00Z2008-12-02T10:33:00Z"autotest" is now "autospec" with recent RSpec versions.http://stackoverflow.com/questions/326277/rails-calling-a-model-class-in-a-library/326471#326471Comment by Christian Lescuyer on Rails: calling a model class in a library Christian Lescuyer2008-11-29T13:37:50Z2008-11-29T13:37:50ZAh, thank you very much! You pointed me in the right direction: it works perfectly well in the browser. I didn't try it yet because I'm doing TDD: it breaks in RSpec. I'll amend the question.http://stackoverflow.com/questions/295860/why-do-people-use-tarballs/296011#296011Comment by Christian Lescuyer on Why do people use tarballs?Christian Lescuyer2008-11-17T18:04:21Z2008-11-17T18:04:21ZActually, it's the other way round: zip is built in Windows <i>now</i> because it was prevalent in DOS and early versions of Windows.http://stackoverflow.com/questions/209953/organisation-of-routes-in-rails-restfulauthentication-session-and-login/209989#209989Comment by Christian Lescuyer on Organisation of routes in Rails -- restful_authentication, session and /loginChristian Lescuyer2008-10-16T20:02:01Z2008-10-16T20:02:01ZI understand map.login does not create new_session_path (I understood this, as my code blew up) but login_path. I'll replace new_session_path with login_path in the lib. Thanks.http://stackoverflow.com/questions/197678/is-there-a-way-for-ruby-accessors-to-return-something-other-than-the-set-variable/197724#197724Comment by Christian Lescuyer on Is there a way for Ruby accessors to return something other than the set variable?Christian Lescuyer2008-10-13T14:25:16Z2008-10-13T14:25:16ZI need some checking before I save the value, which is why I'm not using attr_accessor.
Yes, you understood my question. A better question might be "how should the class respond to an invalid value?" http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/195931#195931Comment by Christian Lescuyer on Algorithm to calculate next set in sequenceChristian Lescuyer2008-10-12T20:01:23Z2008-10-12T20:01:23ZVery interesting, thanks!http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/162806#162806Comment by Christian Lescuyer on Algorithm to calculate next set in sequenceChristian Lescuyer2008-10-12T20:00:32Z2008-10-12T20:00:32ZOK, I'll try this. Thanks!http://stackoverflow.com/questions/167542/how-do-i-declare-a-multi-column-pk-in-mysql/167553#167553Comment by Christian Lescuyer on How do I declare a multi-column PK in MySQLChristian Lescuyer2008-10-03T16:09:30Z2008-10-03T16:09:30ZThere's only one primary key in this example.http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/162825#162825Comment by Christian Lescuyer on Algorithm to calculate next set in sequenceChristian Lescuyer2008-10-02T16:02:34Z2008-10-02T16:02:34ZOops. It repeats every 96 intervals, a bit too much to manage.http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/162806#162806Comment by Christian Lescuyer on Algorithm to calculate next set in sequenceChristian Lescuyer2008-10-02T15:55:56Z2008-10-02T15:55:56ZLast two times is enough for 3 tasks, but I have more (7 tasks right now). Thanks for the idea.