User Alexandre Brisebois - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T00:22:45Zhttp://stackoverflow.com/feeds/user/18619http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/139988/advice-for-someone-who-wants-to-start-in-business-intelligence10Advice for someone who wants to start in Business Intelligence?Alexandre Brisebois2008-09-26T14:48:48Z2009-12-14T17:09:58Z
<p>What advice would you have for someone who wants to start in the BI (Business Intelligence) domain? </p>
<p>I where and what I should start with: Books, Blogs, WebCasts...
What I should pay attention to and what I should stay away from.</p>
<p>Are the Microsoft technologies worth while ?</p>
http://stackoverflow.com/questions/152238/how-can-i-distribute-a-wcf-peer-to-peer-application-over-the-internet1How can I distribute a WCF Peer to Peer application over the Internet?Alexandre Brisebois2008-09-30T08:30:33Z2009-12-06T13:38:43Z
<p>Can someone point me in the right direction? I wish to distribute a WCF peer to peer cloud over the internet. So far I've seen examples of how it works on the same subnet. I wish to push it a little further.</p>
http://stackoverflow.com/questions/105515/f-and-enterprise-software3F# and Enterprise SoftwareAlexandre Brisebois2008-09-19T20:49:11Z2009-11-17T04:14:01Z
<p>Being a C# developer since version 1.0, F# has captured my free time for the past few weeks. Computers are now sold with 2, 4 .. Cores and multi-threading is not always simple to accomplish. </p>
<p>At the moment I see that F# has great potential for complicated and or heavy workloads.
Do you think that F# will (once RTM) become an important player in the Enterprise Software market?</p>
http://stackoverflow.com/questions/1746065/which-timer-object-should-i-use-in-long-running-processes-in-net0Which Timer object should I use in long running processes in .Net?Alexandre Brisebois2009-11-17T01:40:28Z2009-11-17T02:03:17Z
<p>Which Timer object should I use in long running processes in .Net?</p>
<p>The timer will be used in a Windows Service, and I wish to find the best fit performance wise.</p>
http://stackoverflow.com/questions/1661783/minimizing-mvc-memory-consumption-footprint0Minimizing MVC memory consumption footprintAlexandre Brisebois2009-11-02T14:59:43Z2009-11-13T02:15:09Z
<p>How can I minimize the footprint of a website built using MVC. My application currently runs at around 20mb, I'd like to reduce it if possible.</p>
<p>Edit: I've switched hosts, problem solved.</p>
http://stackoverflow.com/questions/286748/abcpdf-7-converting-html-to-pdf-but-only-getting-the-first-page-converted1abcPDF 7 converting HTML to PDF but only getting the first page convertedAlexandre Brisebois2008-11-13T10:26:36Z2009-11-13T01:05:31Z
<p>I'm currently using abcPDF 7 to convert HTML to PDF. This is done via an ASPX page where I override the Render method.</p>
<pre><code>Doc theDoc = new Doc();
theDoc.SetInfo(0, "License", m_License );
theDoc.HtmlOptions.Paged = true;
theDoc.HtmlOptions.Timeout = 1000000;
string callUrl = "http:// my app page";
theDoc.AddImageUrl(callUrl);
Response.Clear();
Response.Cache.SetCacheability(HttpCacheability.Private);
Response.AddHeader("Content-Disposition", "attachment; filename=" + sFile + ".pdf");
Response.ContentType = "application/octet-stream";
theDoc.Save(Response.OutputStream);
Response.Flush();
</code></pre>
<p>This works perfectly for the first page but then truncates the page and does not continue rendering the remaining pages. </p>
<p>Does anyone know why it stops after a page?</p>
http://stackoverflow.com/questions/1554663/composing-linq-to-entity-query-from-multiple-parameters1Composing Linq to Entity Query from multiple parametersAlexandre Brisebois2009-10-12T13:42:46Z2009-10-16T10:17:15Z
<p>I'm currently building a detailed search and I am trying to figure out how to compose my Linq query to my Entity.</p>
<p>basically I have users that can select 1* items in a list control.
the part I can't wrap my head around is the following:</p>
<p>how can I dynamically build a <strong>Where</strong> AND( field is equal to this OR field is equal to this OR...) clause
where the number of items is variant.</p>
<p>database <strong>Domain</strong> Field sample content : '26, 21, 22, 100, 164, 130'</p>
<p><strong>Example</strong>: (The idea is to be able to generate this depending on the number of items selected)</p>
<pre><code>Offre.Where(o=> o.Domain.Contains("26") || o.Domain.Contains("100") )
Offre.Where(o=> o.Domain.Contains("26") )
Offre.Where(o=> o.Domain.Contains("26") || o.Domain.Contains("100") || o.Domain.Contains("22") )
</code></pre>
<p>then I can easily have the resulting query as an IQueryable and add on to this object to build my query.</p>
<p>can someone point me inthe right direction for my AND ( OR .. OR ) clause ?</p>
http://stackoverflow.com/questions/1554663/composing-linq-to-entity-query-from-multiple-parameters/1554759#15547591Answer by Alexandre Brisebois for Composing Linq to Entity Query from multiple parametersAlexandre Brisebois2009-10-12T14:02:32Z2009-10-16T10:17:15Z<p><a href="http://social.msdn.microsoft.com/forums/en-US/adodotnetentityframework/thread/095745fe-dcf0-4142-b684-b7e4a1ab59f0/" rel="nofollow">To work around this restriction, you can manually construct an expression (Source)</a></p>
<p><strong>C#</strong></p>
<pre><code>static Expression<Func<TElement, bool>> BuildContainsExpression<TElement, TValue>(
Expression<Func<TElement, TValue>> valueSelector, IEnumerable<TValue> values)
{
if (null == valueSelector) { throw new ArgumentNullException("valueSelector"); }
if (null == values) { throw new ArgumentNullException("values"); }
ParameterExpression p = valueSelector.Parameters.Single();
// p => valueSelector(p) == values[0] || valueSelector(p) == ...
if (!values.Any())
{
return e => false;
}
var equals = values.Select(value => (Expression)Expression.Equal(valueSelector.Body, Expression.Constant(value, typeof(TValue))));
var body = equals.Aggregate<Expression>((accumulate, equal) => Expression.Or(accumulate, equal));
return Expression.Lambda<Func<TElement, bool>>(body, p);
}
</code></pre>
<p>Using this utility method,</p>
<pre><code>var query2 = context.Entities.Where(BuildContainsExpression<Entity, int>(e => e.ID, ids));
</code></pre>
<p><strong>VB.Net</strong></p>
<pre><code>Public Shared Function BuildContainsExpression(Of TElement, TValue)( _
ByVal valueSelector As Expression(Of Func(Of TElement, TValue)), _
ByVal values As IEnumerable(Of TValue) _
) As Expression(Of Func(Of TElement, Boolean))
' validate arguments
If IsNothing(valueSelector) Then Throw New ArgumentNullException("valueSelector")
If IsNothing(values) Then Throw New ArgumentNullException("values")
Dim p As ParameterExpression = valueSelector.Parameters.Single()
If Not values.Any Then
Return _
Function(e) False
End If
Dim equals = values.Select( _
Function(v) _
Expression.Equal(valueSelector.Body, Expression.Constant(v, GetType(TValue))) _
)
Dim body = equals.Aggregate( _
Function(accumulate, equal) _
Expression.Or(accumulate, equal) _
)
Return Expression.Lambda(Of Func(Of TElement, Boolean))(body, p)
End Function
</code></pre>
<p>Using this utility method</p>
<pre><code> Dim query = m_data. Offer
If (selectedSectors.Count > 0) Then
query = query.Where(BuildContainsExpression(Function(o As Offer) o.Value, selectedSectors))
End If
</code></pre>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school67What is the most important thing you weren't taught in school?Alexandre Brisebois2008-11-03T12:57:13Z2009-10-15T12:46:18Z
<p>What is the most important thing you weren't taught in school? </p>
<p>What topics are missing from the CS/IS education?</p>
<p><strong>Posted so far</strong></p>
<ul>
<li>How to sell an idea</li>
</ul>
<p>Principles:</p>
<ul>
<li>Often, good enough is better than perfect.</li>
<li>Making mistakes is actually a Good
Thing™ -- as long as they're new
mistakes.</li>
<li>If a user can break your code they
will.</li>
<li>In the Real World™ they're all
open-book exams</li>
<li>Self confidence is way more important in getting ahead than intelligence.</li>
<li>Always prefer simplicity over
complexity. The best code is the
code that you don't write.</li>
<li>You never know when you'll meet someone again ... or where. It's always worthwhile to treat people with respect and kindness.</li>
<li>Be aware of what you don't know and don't be afraid to ask questions when you need to</li>
</ul>
<p>Missing knowledge:</p>
<ul>
<li>How to communicate effectively.</li>
<li>Lack of source control</li>
<li>Lack of Softskills experience</li>
<li>How to productize code</li>
<li>How to write secure code</li>
<li>How to formulate problems</li>
<li>How to self-measurement. To evaluate ones true competences and market worth.</li>
<li>How to debug code</li>
<li>How important is backup</li>
<li>How to read code on a large scale (being able to adapt and build upon existing projects)</li>
<li>Good Regular expressions comprehention</li>
<li>How to teach others effectively</li>
<li>TDD/Unit testing</li>
<li>Critical thinking</li>
<li>How to integrate different skills and languages in a single project</li>
</ul>
http://stackoverflow.com/questions/1571508/email-content-of-asp-net-page/1571543#15715431Answer by Alexandre Brisebois for Email content of Asp.Net pageAlexandre Brisebois2009-10-15T10:34:08Z2009-10-15T12:06:49Z<p>I find what you are describing to have a lot of overhead. Does your email template stay prety much the same? if so why not simply have a simple html template with html 3 code. Then simply read this file from disk and replace specific peices (ie. ##Name##) with the dynamic content. This way you have complete control over the html being sent via email and you can control what users input.</p>
<p>this would also limit the amout of work to make the html compatible with email clients.</p>
<p><strong>Clarification</strong>: In the preceding suggestion, I propose that the UI implementation and the Email implementation be distinct, this in turn allows to to compose the email with more flexibility. Without using </p>
<pre><code>mailableContent.RenderControl(htmlWriter);
</code></pre>
<p>this also allows you to compose the contents of the <strong>ListView</strong> to your specifications.</p>
http://stackoverflow.com/questions/1571160/hello-im-very-new-to-wpf-and-also-to-progamming-i-need-to-do-project-on-barcode/1571177#15711771Answer by Alexandre Brisebois for Hello im very new to Wpf and also to progamming. I need to do project on barcode generation.Alexandre Brisebois2009-10-15T09:09:32Z2009-10-15T09:09:32Z<p>What kinds of barcodes do you need to generate? Since classic barcodes are fonts, you will need to find the right font.</p>
<p>you can also convert the C# code to VB using this tool :
<a href="http://www.developerfusion.com/tools/convert/vb-to-csharp/" rel="nofollow">http://www.developerfusion.com/tools/convert/vb-to-csharp/</a></p>
http://stackoverflow.com/questions/1555818/scope-of-httpcontext-current-items0Scope of HttpContext.Current.ItemsAlexandre Brisebois2009-10-12T17:19:12Z2009-10-12T17:53:53Z
<p>Are the <code>HttpContext.Current.Items</code> lost when a <code>Server.Transfer();</code> occurs?</p>
<p>If so what is the best way for me to send information to another page
without going through the Session?</p>
http://stackoverflow.com/questions/1530421/naming-them-entities-to-make-sense/1530436#15304361Answer by Alexandre Brisebois for Naming them entities to make senseAlexandre Brisebois2009-10-07T09:07:25Z2009-10-07T09:07:25Z<p>I would tend to agree on the two first present in the list. the last one may be a set or a single entity.</p>
<p>Customer (entity) Customers (setname) Customer (navigation property)</p>
http://stackoverflow.com/questions/242639/is-it-possible-to-build-an-email-reader-for-the-zune3Is it possible to build an email reader for the Zune ?Alexandre Brisebois2008-10-28T09:25:45Z2009-10-06T11:36:10Z
<p>Is it possible to build an email reader for the Zune through XNA ?</p>
<p>Version 3.0 allows us to connect to the Market place and download music directly from the Zune hence the nature of my question.</p>
<p>Edit: Buy a ZuneHD</p>
http://stackoverflow.com/questions/1520549/entity-framework-get-latest-records-in-list-of-records-with-date/1520567#15205670Answer by Alexandre Brisebois for Entity framework get latest records in list of records with dateAlexandre Brisebois2009-10-05T14:52:11Z2009-10-05T14:52:11Z<p>this can be done, but we may need more information to help you out.
for example a scema or table structure. table columnd names, table name...</p>
http://stackoverflow.com/questions/1513477/mass-mailing-html-newsletter-in-asp-net/1513488#15134880Answer by Alexandre Brisebois for Mass mailing HTML-newsletter in Asp.NetAlexandre Brisebois2009-10-03T11:02:47Z2009-10-03T11:09:22Z<p>yes you will need to send the emails one by one if you want a unique unsubscribe link for each client. you may send the same email to everyone if you put a textbox on the page where people can unsubscribe by typing in their emails.</p>
<p>as for the email being sent out, you have the right idea. you need to host the images on your server and call these from you html. </p>
<p>the html must be basic html 3.0 or something of the sort. this will ensure that most email clients will properly render your email.</p>
<p>be extra careful when making a mailing list, it can be very easy to get banned from certain servers such as google or hotmail.</p>
http://stackoverflow.com/questions/1497391/what-tool-can-i-use-to-convert-c-3-to-vb-net-9-net-3-50What tool can I use to convert C# 3 to VB.Net 9 .Net 3.5?Alexandre Brisebois2009-09-30T10:54:10Z2009-09-30T14:39:22Z
<p>What tool can I use to convert C# 3 to VB.Net 9 .Net 3.5?</p>
http://stackoverflow.com/questions/217961/serializing-and-deserializing-expression-trees-in-c3Serializing and Deserializing Expression Trees in C#Alexandre Brisebois2008-10-20T10:04:41Z2009-09-28T09:57:31Z
<p>Is there a way to Deserialize Expressions in C#, I would like to store Expressions in a Database and load them at run time.</p>
http://stackoverflow.com/questions/1426249/what-is-the-difference-between-web-service-and-remoting/1426267#14262670Answer by Alexandre Brisebois for What is the difference between web service and remoting?Alexandre Brisebois2009-09-15T10:03:58Z2009-09-15T10:11:03Z<p>WebServices are a form of remoting, since you are effectively executing code else where or on the same machine outside of you AppDomain.</p>
<p>Remoting (InterProcess) on the same machine or over the network, is different in the sence that you Marshal your object between AppDomain/ platform boundries through transparent proxies and serialization. Remoting comes with its complexities and can easily become very complexe. WCF has made things much simpler to maintain. Performance wise, I haven't compared both approaches and would definitely be interested to see how both fare in an InterProcess context. Since WCF can communicate with binary bindings and is not limited to the HTTP Protocol.</p>
<p>WCF has made this much simpler using Pipes for InterProcess communication.</p>
<p>In the end WebServices used to communicate via port 80 (standard) HTTP and Remoting could communicate via predefined ports and channels using different serialization formatters.</p>
<p>They have now been upgraded by WCF which now provides methods for these types of communications.</p>
http://stackoverflow.com/questions/1408746/url-rewriting-temporary-solution-asp-net-3-5/1410084#14100841Answer by Alexandre Brisebois for URL Rewriting, Temporary Solution, ASP.Net 3.5Alexandre Brisebois2009-09-11T10:01:50Z2009-09-13T10:00:43Z<ul>
<li><a href="http://4guysfromrolla.com/articles/051309-1.aspx" rel="nofollow">Using ASP.NET Routing Without
ASP.NET MVC</a> </li>
<li><a href="http://blogs.msdn.com/mikeormond/archive/2008/05/14/using-asp-net-routing-independent-of-mvc.aspx" rel="nofollow">Using ASP.NET
Routing Independent of MVC</a></li>
</ul>
<blockquote>
<p>this is part of .Net 3.5 and is the
same mechanism used by MVC</p>
</blockquote>
<p>This makes your life easy, due to the fact that everything is held in the HttpContext.CurrentContext.Items[""] </p>
<p>I have adapted this code for a few project where I have an XML configuration file. I then use this file to build the <strong>RouteCollection</strong>. This code has also been easily extended to handle 301 redirects for SEO. </p>
<p>This method is also loaded once in your AppPool and removes the need to parse xml files and configurations for every call. This so far has been the best solution for me performance wise.</p>
<p>If you need any assistance please let me know. I will gladly lend a hand.</p>
<p>Edit : <strong>13/09/09</strong></p>
<p>I have not run into that problem yet since I usually handle the membership / authentication verification in every page. I usually have a control or method I call on the page to validate/ authorize a user. My clients rarely use the ASP.Net membership, they usually rely on proprietary sub systems which we need to connect to. </p>
<p>I have extended the examples provided in the above links so that I can write one xml routing table which gets loaded when the application starts up or when I force a RouteCollection update. </p>
<p>so far this has proven itself to work pretty well.
this can also allow for a change in routes while the application is running, with no down time.</p>
http://stackoverflow.com/questions/1404213/normalizing-my-webpage-url-for-seo/1405066#14050660Answer by Alexandre Brisebois for Normalizing my webpage URL for SEOAlexandre Brisebois2009-09-10T12:41:27Z2009-09-11T10:13:02Z<ul>
<li><a href="http://4guysfromrolla.com/articles/051309-1.aspx" rel="nofollow">Using ASP.NET Routing Without
ASP.NET MVC</a> </li>
<li><a href="http://blogs.msdn.com/mikeormond/archive/2008/05/14/using-asp-net-routing-independent-of-mvc.aspx" rel="nofollow">Using ASP.NET
Routing Independent of MVC</a></li>
</ul>
<blockquote>
<p>this is part of .Net 3.5 and is the
same mechanism used by MVC</p>
</blockquote>
<p>This makes your life easy, due to the fact that everything is held in the HttpContext.CurrentContext.Items[""] </p>
<p>I have adapted this code for a few project where I have an XML configuration file. I then use this file to build the <strong>RouteCollection</strong>. This code has also been easily extended to handle 301 redirects for SEO. </p>
<p>This method is also loaded once in your AppPool and removes the need to parse xml files and configurations for every call. This so far has been the best solution for me performance wise.</p>
<p>If you need any assistance please let me know. I will gladly lend a hand.</p>
http://stackoverflow.com/questions/66117/asp-net-common-gotchas/1405123#14051230Answer by Alexandre Brisebois for ASP.NET - Common GotchasAlexandre Brisebois2009-09-10T12:55:35Z2009-09-10T12:55:35Z<p>If you are running Classic ASP applications in the same Virtual Directory as you ASP.Net application, the fist hit on the application must be on an ASP.Net page. This will ensure that the AppPool be built with the right context configurations. If the first page to be hit is a Classic ASP page, the results may vary from application to application. In general the AppPool is configured to use the latest framework.</p>
http://stackoverflow.com/questions/1393148/programming-psychology-when-why-and-how-long-are-your-totaly-unmotivated-phases/1394741#13947414Answer by Alexandre Brisebois for Programming-psychology: When, why and how long are your totaly unmotivated-phases?Alexandre Brisebois2009-09-08T15:44:57Z2009-09-08T15:58:10Z<p>I beleive that for someone who is very ethical about what they produce, that once we are told to go against our personal ethics / quality control, we easily become unmotivated due to the fact, that we are not satisfied with what we produce.</p>
<p>To be face with projects where you need to start coding something for yesterday, but nothing is defined. To simply know that you will be rewriting everything is depressing and unmotivating.</p>
http://stackoverflow.com/questions/511378/net-static-methods-and-its-effects-on-concurrency1.Net Static Methods and it's effects on Concurrency ?Alexandre Brisebois2009-02-04T13:34:52Z2009-07-31T15:44:34Z
<p>I am currently building an API which will be used by a webservice. </p>
<p>I was wondering what performance issues I could meet if I built my API using a large amount of <strong>static methods</strong>.</p>
<p>The original idea was to build expert objects which act as services.</p>
<p>In a single user environment this approach was great!
But I will soon need to port this to a multi/concurrent user environment.</p>
<p>What kind of performance issues might i encounter with this kind of architecture?</p>
<p>Best regards,</p>
<p><strong>Edit:</strong></p>
<p>The static methods hold no static variables and have no side effects. They simply execute a normal routine where everything is instantiated. (ie. vars and objects)</p>
http://stackoverflow.com/questions/340762/which-languages-support-tail-recursion-optimization4Which languages support tail recursion optimization?Alexandre Brisebois2008-12-04T14:29:42Z2009-07-28T19:20:57Z
<p>which languages support tail recursion optimization?</p>
http://stackoverflow.com/questions/925095/does-visual-studio-2010-professional-have-sequence-diagrams0Does Visual Studio 2010 Professional have Sequence Diagrams?Alexandre Brisebois2009-05-29T09:07:38Z2009-07-08T12:04:22Z
<p>Does Visual Studio 2010 Professional have the Diagramming support announced on the web?
Do I need to install the TS version to be able to get these features ?</p>
http://stackoverflow.com/questions/950670/importing-a-dmp-file-created-by-datapump-into-oracle-express-10g0Importing a dmp file created by DataPump into Oracle Express 10gAlexandre Brisebois2009-06-04T13:40:55Z2009-06-05T09:12:12Z
<p>How do i go about importing a .dmp file created by DataPump into Oracle Express 10g</p>
http://stackoverflow.com/questions/950670/importing-a-dmp-file-created-by-datapump-into-oracle-express-10g/954961#9549610Answer by Alexandre Brisebois for Importing a dmp file created by DataPump into Oracle Express 10gAlexandre Brisebois2009-06-05T09:12:12Z2009-06-05T09:12:12Z<p><a href="http://www.oracle-base.com/articles/10g/OracleDataPump10g.php" rel="nofollow">Source and More Information</a></p>
<p>Place the dump files in C:\oraclexe\app\oracle\admin\XE\dpdump</p>
<p>Schema Imports</p>
<p>impdp -user-/-pass- schemas=-schema- directory=-directory- dumpfile=-file.dmp- </p>
<p>i.e:</p>
<p>impdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.log</p>
<ul>
<li>you may need to remap</li>
</ul>
http://stackoverflow.com/questions/931664/what-is-your-opinion-about-uml/931716#9317160Answer by Alexandre Brisebois for What is your opinion about UML?Alexandre Brisebois2009-05-31T09:19:02Z2009-05-31T09:19:02Z<p>UML can be good or bad... too much of anything can be bad.</p>
<p>UML is a good tool to help you understand the concepts, as well as the domain in which you are working. It can become a very useful tool to communicate with the domain experts and the functional experts. It will also help you visualise your solution and greatly reduce the amount of headaches you will encounter as you build your solution. </p>
<p>Too much UML can also be a bad thing, the best way to go about it, is to model the parts of the solutions which are complicated to grasp or somewhat complex. Modeling the general solution will help give a bird’s eye view and a better understand as a whole of the solution. Then create a model of the areas where a deeper understanding is required.
Small projects do not absolutely need to be modeled. Larger projects on the other hand may require modeling in order to be able to communicate the right information to others.</p>
<p>Very complete Models are often seen as bad because they are valid for a very short time. For models to be of value they need to be kept up to date with the code. In many cases this becomes an extra task no one wishes to fulfill. A good way to go about this is to use tools which synchronize the models to your code. </p>
<p>From the youngest age, we are extremely good at describing things by drawing them. Many of us loose this ability as we learn to read and write, but deep down we are often very visual. The fact is, when we say that when we are stuck on something, the best way to find a solution is to leave it alone for a while, or talk about your problem to someone else. The simple fact of explaining it to someone will often enough give you the answers because to explain something you need to understand it. Once something is understood and that you have taken in the subtleties, solutions seem simple. Modeling can be used to achieve the same result, by helping you sort out the ideas and concepts. Once it’s on paper it gets much simpler to explain. </p>
<p>Paper, Whiteboards and Napkins are often you best friend! They will help you remember and gain a deeper understanding of your ideas and concepts.</p>
http://stackoverflow.com/questions/925095/does-visual-studio-2010-professional-have-sequence-diagrams/931665#9316650Answer by Alexandre Brisebois for Does Visual Studio 2010 Professional have Sequence Diagrams?Alexandre Brisebois2009-05-31T08:48:26Z2009-05-31T08:48:26Z<p>The Modeling tools can be found in the TS Version of Visual Studio 2010 Beta 1.</p>
http://stackoverflow.com/questions/152238/how-can-i-distribute-a-wcf-peer-to-peer-application-over-the-internet/1855419#1855419Comment by Alexandre Brisebois on How can I distribute a WCF Peer to Peer application over the Internet?Alexandre Brisebois2009-12-13T12:37:55Z2009-12-13T12:37:55Zno this is not a distribution problem. the problem is related to the actual technology. the peer to peer binding is limited to a subnet.http://stackoverflow.com/questions/465775/where-can-i-get-plinq-for-vs-2008/465794#465794Comment by Alexandre Brisebois on Where can I get PLinq for VS 2008?Alexandre Brisebois2009-11-19T10:35:01Z2009-11-19T10:35:01Zevent though this is a CTP release it works great !http://stackoverflow.com/questions/286748/abcpdf-7-converting-html-to-pdf-but-only-getting-the-first-page-converted/1726501#1726501Comment by Alexandre Brisebois on abcPDF 7 converting HTML to PDF but only getting the first page convertedAlexandre Brisebois2009-11-13T02:10:42Z2009-11-13T02:10:42ZThe second in the answer provided by schnaader contains the code in peices. Thanks for posting your code. I;m sure this will help many people.http://stackoverflow.com/questions/1661783/minimizing-mvc-memory-consumption-footprint/1661831#1661831Comment by Alexandre Brisebois on Minimizing MVC memory consumption footprintAlexandre Brisebois2009-11-02T20:37:08Z2009-11-02T20:37:08ZThats the problem, I currently have an extremely limited server, with just about 1gbhttp://stackoverflow.com/questions/1636247/genetic-algorithmimplementing-hamiltonian-cycle-algorithmComment by Alexandre Brisebois on genetic algorithmimplementing hamiltonian cycle algorithmAlexandre Brisebois2009-10-28T10:07:08Z2009-10-28T10:07:08Zis this a Language specific question ?http://stackoverflow.com/questions/1636247/genetic-algorithmimplementing-hamiltonian-cycle-algorithmComment by Alexandre Brisebois on genetic algorithmimplementing hamiltonian cycle algorithmAlexandre Brisebois2009-10-28T10:03:56Z2009-10-28T10:03:56Zwhat is the exact Question?http://stackoverflow.com/questions/1584628/big-websites-using-asp-net-mvc/1584811#1584811Comment by Alexandre Brisebois on 'Big' websites using ASP.NET MVCAlexandre Brisebois2009-10-26T12:52:58Z2009-10-26T12:52:58Zhe mentioned SO in the question.http://stackoverflow.com/questions/1607168/taking-over-someone-elses-codeComment by Alexandre Brisebois on Taking over someone else's codeAlexandre Brisebois2009-10-22T14:00:17Z2009-10-22T14:00:17ZThis seems to be the norm where I currently work... You're on the right path. In times like these I never say <i>Yes</i> to anything upfront, I usually say I'll try.http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/1572144#1572144Comment by Alexandre Brisebois on What is the most important thing you weren't taught in school?Alexandre Brisebois2009-10-16T09:58:55Z2009-10-16T09:58:55ZI think its a balanced mix of both.http://stackoverflow.com/questions/129777/how-do-you-deal-with-clients-who-have-no-processes-have-no-methodology-and-ask-f/129865#129865Comment by Alexandre Brisebois on How do you deal with clients who have no processes, have no methodology and ask for things to be done for yesterday?Alexandre Brisebois2009-10-15T12:28:19Z2009-10-15T12:28:19ZCommunication is key. Good project management is also key in these situations. It is especially important to define an iteration scope and to stick to it.http://stackoverflow.com/questions/129777/how-do-you-deal-with-clients-who-have-no-processes-have-no-methodology-and-ask-f/129791#129791Comment by Alexandre Brisebois on How do you deal with clients who have no processes, have no methodology and ask for things to be done for yesterday?Alexandre Brisebois2009-10-15T12:25:53Z2009-10-15T12:25:53ZSometimes, the problem may come from lack of experience or personnel. A good solution could be hiring an external consultant to organize and follow the project. They may also be called upon to guide the client through the development life-cycle. It may be hard for a company to admit that they are in need of such a service, but I'm sure that this would resolve many issues encountered when dealing with customers in the context of the question.http://stackoverflow.com/questions/1571508/email-content-of-asp-net-page/1571543#1571543Comment by Alexandre Brisebois on Email content of Asp.Net pageAlexandre Brisebois2009-10-15T11:58:16Z2009-10-15T11:58:16ZI'll take a second go at it, I'm not sure I understood the question.http://stackoverflow.com/questions/1571125/how-to-create-a-floating-div-in-bho-dynamicallyComment by Alexandre Brisebois on How to create a floating div in BHO dynamically?Alexandre Brisebois2009-10-15T10:25:17Z2009-10-15T10:25:17Z- What is BHO ?http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/998388#998388Comment by Alexandre Brisebois on What is the most important thing you weren't taught in school?Alexandre Brisebois2009-10-13T09:19:10Z2009-10-13T09:19:10ZSearch engines are your friendshttp://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/998563#998563Comment by Alexandre Brisebois on What is the most important thing you weren't taught in school?Alexandre Brisebois2009-10-13T09:18:26Z2009-10-13T09:18:26Zthen again we make our own luck :)