User Cristian Libardo - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T06:07:53Zhttp://stackoverflow.com/feeds/user/16526http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/282308/asp-net-2-0-gridview-columns-dependant-on-multiple-columns-in-the-bound-result-se/282324#2823241Answer by Cristian Libardo for ASP.net 2.0 GridView Columns dependant on multiple columns in the bound result setCristian Libardo2008-11-11T22:13:55Z2009-10-08T17:26:39Z<p>Have you tried TemplateField in combination with Eval?</p>
<pre><code><asp:TemplateField>
<ItemTemplate>
<a href='<%#Eval("PublicIP")/<%# Eval("Customer") %>'>Go to site</a>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
http://stackoverflow.com/questions/1119033/domain-driven-class-design/1119374#11193741Answer by Cristian Libardo for domain driven class designCristian Libardo2009-07-13T13:15:01Z2009-07-13T13:15:01Z<p>While I'm not certain the problem you're describing really benefits from a domain driven approach you still can enjoy C# classes and a mapping layer between them and the database. Here's a few products that can help you in this task:</p>
<ul>
<li>Linq to SQL (built-in visual studio, easy to set up)</li>
<li>NHibernate (POCO support, many features)</li>
<li>Entity Framework</li>
</ul>
http://stackoverflow.com/questions/562655/extending-the-attributes-inspector-in-interface-builder0Extending the attributes inspector in interface builderCristian Libardo2009-02-18T20:18:41Z2009-06-15T03:40:24Z
<p>Is it possible to extend the interface builder's attribute inspector with additional attributes for custom classes inheriting from UIView?</p>
http://stackoverflow.com/questions/986982/replace-doesnt-work/986992#98699210Answer by Cristian Libardo for Replace("/", "_"); doesnt workCristian Libardo2009-06-12T14:40:22Z2009-06-12T14:40:22Z<p>You probably want to do this:</p>
<pre><code>FileName = FileName.Replace("//", "")...
</code></pre>
http://stackoverflow.com/questions/726654/what-are-the-dangers-of-using-a-singleton-in-a-multithreaded-application/726892#7268922Answer by Cristian Libardo for What are the Dangers of using a Singleton in a multithreaded applicationCristian Libardo2009-04-07T17:55:58Z2009-04-07T17:55:58Z<p>You need to ensure that each method in the logger are safe to run concurrently, i.e. that they don't write to shared state without proper locking.</p>
http://stackoverflow.com/questions/693545/is-it-possible-to-add-an-anchor-to-a-form-post-get/693624#6936240Answer by Cristian Libardo for Is it possible to add an anchor to a FORM post/get?Cristian Libardo2009-03-28T22:11:53Z2009-03-28T22:11:53Z<p>I've been used this to retain the fragment across postbacks:</p>
<pre><code> var f = document.forms[0];
var index = f.action.indexOf("#");
if(index>0)
f.action = f.action.substr(0,index) + "#" + tabId;
else
f.action += "#" + tabId;
</code></pre>
http://stackoverflow.com/questions/651077/is-it-possible-to-pass-properties-between-msbuild-projects/651082#6510821Answer by Cristian Libardo for Is it possible to pass properties between MSBuild projects?Cristian Libardo2009-03-16T16:11:13Z2009-03-16T16:11:13Z<p>One way to do it is to pass properties as you call the next script, e.g.</p>
<pre><code><MSBuild Projects="another.proj" Properties="PropertyName=$(Foo)" />
</code></pre>
http://stackoverflow.com/questions/606652/how-can-i-create-different-dlls-in-one-project/606810#6068101Answer by Cristian Libardo for How can I create different DLLs in one project?Cristian Libardo2009-03-03T15:22:45Z2009-03-03T15:22:45Z<p>I havn't tried this myself so take it as a friendly suggestion. Try manually editing your .csproj adding or uncommenting the BeforeBuild target with a snipped inspired from the following:</p>
<pre><code><Target Name="BeforeBuild">
<AssemblyName Condition="'$(Configuration)' == 'Release'">MyReleaseName</AssemblyName>
<AssemblyName Condition="'$(Configuration)' == 'Debug'">MyDebugName</AssemblyName>
</Target>
</code></pre>
http://stackoverflow.com/questions/598832/in-ddd-what-are-the-actual-advantages-of-value-objects/598845#5988451Answer by Cristian Libardo for In DDD, what are the actual advantages of value objects?Cristian Libardo2009-02-28T22:58:44Z2009-02-28T22:58:44Z<p>Think of it as a reusable component. You can make it into a home address, work address without much extra effort. You can use it to decouple other systems from the person entity. Say you introduce a business entity. It will also have an adress.</p>
<p>Related to this subject is another important subject: composition vs. inheritance</p>
http://stackoverflow.com/questions/310376/unordered-lists-and-accessability4Unordered lists and accessabilityCristian Libardo2008-11-21T22:08:40Z2009-02-27T21:59:26Z
<p>Many (most?) sites aiming for accessability and standards compliance use unordered lists for their navigation. Does this make the site more accessible or does it just provide useful elements for styling?</p>
<p>I don't mind them, and I have been using unordered lists in this way. It's just that, when I remove the styling from a page to try to gauge it's accessability, it strikes me that it could just as well could be plain links. Where does this come from?</p>
http://stackoverflow.com/questions/509686/nhibernate-programmatic-mapping-file-loading-with-embedded-resources/509709#5097091Answer by Cristian Libardo for NHibernate programmatic mapping file loading with embedded resourcesCristian Libardo2009-02-04T01:04:53Z2009-02-04T01:04:53Z<p>I might be missing your crucial point. NHibernate is quite flexible in how you can feed it the mapping files. e.g.</p>
<pre><code>cfg.AddInputStream(assembly.GetManifestResourceStream("MyNamespace.MyEmbeddedresource.hbm.xml"));
</code></pre>
<p>or a custom built xml string:</p>
<pre><code>cfg.AddXml(myCustomBuildXmlString);
</code></pre>
<p>You can also add mappings programmatically directly but that's a bit trickier.</p>
http://stackoverflow.com/questions/395526/quick-question-about-a-naming-convention-for-a-c-cms/480592#4805920Answer by Cristian Libardo for Quick question about a naming convention for a C# CMSCristian Libardo2009-01-26T17:21:52Z2009-01-26T17:21:52Z<p>I'm thinking the "page" you're referring as the application's equivalent of a database record. As others are saying this it's a rather loaded term. Here's a few random ideas:</p>
<ul>
<li>Node </li>
<li>View</li>
<li>PageRecord</li>
<li>CmsPage</li>
<li>WebDocument</li>
<li>ContentPage</li>
</ul>
<p>Your choice should try to convey the essence of the object type. I'd avoid putting the product name into the class name. I prefer namespaces for that.</p>
http://stackoverflow.com/questions/480498/asp-net-asplinkbutton-with-javascript-disabled/480528#4805280Answer by Cristian Libardo for ASP.NET: asp:LinkButton with Javascript disabled?Cristian Libardo2009-01-26T17:07:13Z2009-01-26T17:07:13Z<p>Just an idea:</p>
<p>Render an input button and use javascript to change it into a link. The button would work for non-javascript enabled browser and become a link for those who have javascript.</p>
http://stackoverflow.com/questions/474838/click-once-vs-shortcut/474886#4748861Answer by Cristian Libardo for Click once Vs ShortcutCristian Libardo2009-01-23T22:35:17Z2009-01-23T22:35:17Z<p>Sharing the file on a network drive could cause your file locking griefs and possibly not work at all depending on the security policy and windows version.</p>
http://stackoverflow.com/questions/466572/what-reporting-is-available-for-svn/466615#4666150Answer by Cristian Libardo for What reporting is available for svn?Cristian Libardo2009-01-21T19:21:41Z2009-01-21T19:21:41Z<p>Take a look at <a href="http://www.codesaga.com/" rel="nofollow">codesaga</a>. It makes a good job of visualizing source control commits. I can't vouch for the reporting part.</p>
http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti/458936#4589366Answer by Cristian Libardo for Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?Cristian Libardo2009-01-19T19:54:53Z2009-01-19T19:54:53Z<p>You should stop worrying and learn to love the ORM. Abstractions such as these will help us focus our skills and make advances in the field.</p>
<p>There is still plenty of room to take advantage of the functional skills you have acquired and apply them in the application layer. This is in fact one of the strengths of LINQ to SQL over other ORM's.</p>
<p>I can only agree with many of the other comments. The time you save, you can focus on refining your domain model and make a better application. And, once you've pinpointed the bottleneck, use to create optimized SQL.</p>
<p>What might not be immediately obvious is that the ORM comes with a number of features that are really nice. The identity map that helps avoid loading items over and over, lazy loading helps you express the domain with less plumbing and the unit of work helps you track changes and optimize database writes.</p>
http://stackoverflow.com/questions/453036/ui-composition-in-asp-net-mvc4UI composition in ASP.NET MVCCristian Libardo2009-01-17T09:13:08Z2009-01-18T09:20:42Z
<p>How would you go about supporting external composable parts in an ASP.NET MVC view?</p>
<p>What do I mean by this? Think either "login box on every page" or "iGoogle". It's stuff that needs to be in certain places that is external to each controller/view.</p>
<p>One approach at this would be adding components in the view like so: </p>
<pre><code><% foreach (var component in GetComponents()) {%>
<%= Html.RenderPartial(component.ViewName, component.ViewData)%>
<%} %>
</code></pre>
<p>In the example above I'm looking for a good way to have the viewname and viewdata delivered by each component's controller and not the controller of the view they are displayed on. Any totally different solution you can suggest would also be of interest. Filters, WebForms, etc.</p>
<p><strong>Update:</strong> I'll try to explain what I'm trying to wrap my head around with an example. I'll pick the login functionality.</p>
<p>In a typical webforms application this could be a user control that retrieves the <em>appropriate data</em> in the load event of the page's life cycle and updates some UI controls. Upon click the page would post back and we can act upon the <em>posted information</em> in the click event in the same user control.</p>
<p>As of my current understanding of the ASP.NET MVC style the controller that <strong>first accepts the request</strong> would retrieve the <em>appropriate data</em> and pass it to the view which in turn would pass it along to the login partial view. The login view would define a form whose post action is directed at the login action of the login controller. The <em>posted information</em> is used by the login action and we can choose to pass the request along to the original controller using some nifty scheme.</p>
<p>I assume there is a smarter approach than the above that doesn't require I put controller logic in a view/a master page.</p>
http://stackoverflow.com/questions/453032/what-is-page-loadcomplete-meant-for-in-practice/453041#4530411Answer by Cristian Libardo for What is Page.LoadComplete meant for (in practice)Cristian Libardo2009-01-17T09:15:30Z2009-01-17T09:15:30Z<p>Say you have multiple controls that prepare some data in the load event. If you want to take action on that data in the load step of the ASP.NET lifecycle you need to have a way to execute after all the other load's have run. Hence the "load complete". There's also an "init complete".</p>
http://stackoverflow.com/questions/448281/c-httpmodule-to-handle-pseudo-subdomains/448309#4483092Answer by Cristian Libardo for c# httpmodule to handle pseudo subdomainsCristian Libardo2009-01-15T20:22:39Z2009-01-15T20:22:39Z<p>You can check the domain at any time. Where to do it dependings on your application's goals. E.g. if you want to serve different pages depending on the domain you could do like this:</p>
<pre><code>public class MyModule : IHttpModule
{
public void Dispose()
{
}
public void Init(HttpApplication context)
{
context.BeginRequest += context_BeginRequest;
}
void context_BeginRequest(object sender, EventArgs e)
{
HttpApplication app = sender as HttpApplication;
string host = app.Request.Url.Host;
if(host == "first.domain.com")
{
app.Context.RewritePath("~/First.aspx");
}
}
}
</code></pre>
http://stackoverflow.com/questions/448266/is-there-a-net-ioc-that-prefers-convention-over-configuration/448282#4482823Answer by Cristian Libardo for Is there a .NET IoC that prefers convention over configuration?Cristian Libardo2009-01-15T20:15:21Z2009-01-15T20:15:21Z<p>I think you'll will find this feature in most of the containers out there. Take a look at <a href="http://blog.ashmind.com/index.php/2008/08/19/comparing-net-di-ioc-frameworks-part-1/" rel="nofollow">this blog post</a>. It's slightly aged but it will give you an idea. By now the active containers probably have better support.</p>
http://stackoverflow.com/questions/443968/in-net-is-there-an-opposite-function-to-server-htmlencode/443979#4439794Answer by Cristian Libardo for In .net, is there an opposite function to Server.HTMLEncode() ?Cristian Libardo2009-01-14T17:44:47Z2009-01-14T17:44:47Z<p>You didn't see a HtmlDecode in the same place you found the HtmlEncode?</p>
http://stackoverflow.com/questions/437751/c-run-function-when-user-exits/437754#4377544Answer by Cristian Libardo for C# Run Function when User ExitsCristian Libardo2009-01-13T02:12:15Z2009-01-13T02:12:15Z<p>It's a windows forms applications, isn't it? You can use this event:</p>
<pre><code>System.Windows.Forms.Application.ApplicationExit += ...
</code></pre>
http://stackoverflow.com/questions/437704/searching-large-data-all-numeric-1-billion-bytes-in-php/437742#4377420Answer by Cristian Libardo for Searching large data, all numeric, 1 billion bytes in PHPCristian Libardo2009-01-13T01:58:35Z2009-01-13T01:58:35Z<p>You should definitely get a girlfriend. Besides helping you spend your time better it can grow fat without bursting. Oh, and the same goes for databases.</p>
http://stackoverflow.com/questions/437728/recursive-file-search-in-net/437733#43773311Answer by Cristian Libardo for Recursive File Search in .netCristian Libardo2009-01-13T01:54:28Z2009-01-13T01:54:28Z<pre><code>System.IO.Directory.GetFiles(@"c:\", "*.xml", SearchOption.AllDirectories);
</code></pre>
http://stackoverflow.com/questions/419566/reclaim-snatched-domain-name2Reclaim snatched domain nameCristian Libardo2009-01-07T08:27:26Z2009-01-11T12:21:12Z
<p>I'm looking for options to get back a domain name that just expired and was re-registered by an unknown link farmer. </p>
<p>Between extended holidays, bank and hosting provider's opening hours and me the domain wasn't renewed and was quickly scooped up elsewhere.</p>
<ol>
<li>How can I get hold of the new registrator (My contact information still appears in the whois databases)?</li>
<li>Is it possible to appeal to any authority to claim ownership?</li>
<li>Is it possible to contact google about removing the page from the search engines?</li>
</ol>
http://stackoverflow.com/questions/431138/should-you-lock-resources-when-reading-values/431161#4311613Answer by Cristian Libardo for Should you lock resources when reading values?Cristian Libardo2009-01-10T15:49:12Z2009-01-10T15:49:12Z<p>From MSDN:</p>
<blockquote>
<p>A Queue<(Of <(T>)>) can support
multiple readers concurrently, as long
as the collection is not modified.
Even so, enumerating through a
collection is intrinsically not a
thread-safe procedure. To guarantee
thread safety during enumeration, you
can lock the collection during the
entire enumeration. To allow the
collection to be accessed by multiple
threads for reading and writing, you
must implement your own
synchronization.</p>
</blockquote>
<p>You should ensure no reader is active while an item is queued (a lock is probably a good idea).</p>
<p>Looking at the count in reflector reveals a read from a private field. This can be okay depending on what you do with the value. This means you shouldn't do stuff like this (without proper locking):</p>
<pre><code>if(queue.Count > 0)
queue.Dequeue();
</code></pre>
http://stackoverflow.com/questions/430330/how-to-you-inspect-or-look-for-net-attributes/430341#4303413Answer by Cristian Libardo for How to you inspect or look for .NET attributes?Cristian Libardo2009-01-10T01:32:02Z2009-01-10T01:32:02Z<p>You could write a LINQ-query:</p>
<pre><code>var availableTaks = typeof (TaskStatus).GetFields(BindingFlags.Static | BindingFlags.GetField | BindingFlags.Public)
.Where(f => f.GetCustomAttributes(typeof (ObsoleteAttribute), false).Length == 0);
foreach(var task in availableTaks)
Console.WriteLine(task);
</code></pre>
http://stackoverflow.com/questions/425818/are-there-any-open-source-code-generation-projects-out-there/425888#4258882Answer by Cristian Libardo for Are there any open-source code-generation projects out there?Cristian Libardo2009-01-08T20:52:57Z2009-01-08T20:52:57Z<p>Have you looked at <a href="http://www.mygenerationsoftware.com/" rel="nofollow">mygeneration</a>? It's not exactly open source but it's free, and the scripts are totally open. The most common usage is to generate the data layer given a database schema, but you can be more creative than that.</p>
http://stackoverflow.com/questions/422411/linq-to-sql-generalization/422505#4225052Answer by Cristian Libardo for LINQ to SQL, GeneralizationCristian Libardo2009-01-07T22:42:08Z2009-01-07T22:42:08Z<p>The typical pattern is one controller per table. How about repartitioning the variability into multiple controller classes using a common base class? Something like this:</p>
<pre><code>public abstract class ExceptionsBaseController<T> : Controller where T:class
{
protected abstract Table<T> ExceptionsTable { get; }
public virtual ActionResult List()
{
var items = ExceptionsTable;
return View(items);
}
}
</code></pre>
<p>One benefit as I see it would be easier to handle differences between the exception classes and add new ones. It probably won't help your total code line count though, but maybe it can awake ideas.</p>
http://stackoverflow.com/questions/406569/is-there-an-free-or-cheap-issue-tracking-software-that-allow-you-hide-some-issu/406769#4067690Answer by Cristian Libardo for Is there an free (or cheap) issue tracking software that allow you hide some issues to some member groups?Cristian Libardo2009-01-02T13:20:20Z2009-01-02T13:20:20Z<p>If I recall correctly <a href="http://www.mantisbt.org/" rel="nofollow">mantis</a> does fit your requirements.</p>
http://stackoverflow.com/questions/341208/help-i-need-a-hidden-field-in-an-net-repeater-control/341222#341222Comment by Cristian Libardo on Help - I need a hidden field in an .NET Repeater control. Cristian Libardo2009-06-03T20:53:56Z2009-06-03T20:53:56Zwhat did you try and how do you perceive it doesn't work?http://stackoverflow.com/questions/693545/is-it-possible-to-add-an-anchor-to-a-form-post-get/693624#693624Comment by Cristian Libardo on Is it possible to add an anchor to a FORM post/get?Cristian Libardo2009-03-30T08:49:57Z2009-03-30T08:49:57ZHave you tried linking the page in the form action?http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti/458936#458936Comment by Cristian Libardo on Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?Cristian Libardo2009-01-19T20:47:45Z2009-01-19T20:47:45Z@ledorfier: I can agree in teory, in practice ORM's work very well
@rally: that was a reference to a popular movie =)
@rally again: Inverse that and you get that abstractions most of the time are a good thing, but sure, there will always be the "other" 5%http://stackoverflow.com/questions/453036/ui-composition-in-asp-net-mvc/454862#454862Comment by Cristian Libardo on UI composition in ASP.NET MVCCristian Libardo2009-01-18T10:45:52Z2009-01-18T10:45:52ZThose futures might just be what I was looking for. I'll check it out. Thanks.http://stackoverflow.com/questions/453036/ui-composition-in-asp-net-mvcComment by Cristian Libardo on UI composition in ASP.NET MVCCristian Libardo2009-01-18T10:43:33Z2009-01-18T10:43:33Z@Spike: Sorry for misleading you (voted you up). I suppose it's an architectural question and I find it hard to express such ideas. I'm honestly curious though. I'm considering MVC for a project and this is one of the challenges I'll have the pleasure to deal with. http://stackoverflow.com/questions/453163/c-method-call-delegationComment by Cristian Libardo on C# method call delegationCristian Libardo2009-01-17T11:46:42Z2009-01-17T11:46:42ZIf you're generating the code do you really need to involve expressions at all?
??? => return GenericClass.GenericHandler<bool,int>(forReal)http://stackoverflow.com/questions/453036/ui-composition-in-asp-net-mvc/453117#453117Comment by Cristian Libardo on UI composition in ASP.NET MVCCristian Libardo2009-01-17T11:39:12Z2009-01-17T11:39:12ZThanks for answering. It's a good idea, but I don't think it answers what I'm really after. E.g. How would I prevent controller logic from leaking into the master page using this approach? I've updated the question to better explain myself.http://stackoverflow.com/questions/448281/c-httpmodule-to-handle-pseudo-subdomains/448380#448380Comment by Cristian Libardo on c# httpmodule to handle pseudo subdomainsCristian Libardo2009-01-15T21:50:31Z2009-01-15T21:50:31ZDon't know sorry. Are you expecting a lot of users?http://stackoverflow.com/questions/437704/searching-large-data-all-numeric-1-billion-bytes-in-php/437742#437742Comment by Cristian Libardo on Searching large data, all numeric, 1 billion bytes in PHPCristian Libardo2009-01-15T13:14:37Z2009-01-15T13:14:37ZIf this isn't possible should consider a large in-memory cache.http://stackoverflow.com/questions/437704/searching-large-data-all-numeric-1-billion-bytes-in-php/437742#437742Comment by Cristian Libardo on Searching large data, all numeric, 1 billion bytes in PHPCristian Libardo2009-01-15T13:14:01Z2009-01-15T13:14:01ZI might have misinterpreted your question. Do you have a long sequence of random-looking data? To apply some any form of indexing there must be some underlying order to help you know where to start looking. A telephone catalogue uses the letters of the name.http://stackoverflow.com/questions/437704/searching-large-data-all-numeric-1-billion-bytes-in-php/437742#437742Comment by Cristian Libardo on Searching large data, all numeric, 1 billion bytes in PHPCristian Libardo2009-01-13T02:13:13Z2009-01-13T02:13:13ZDatabase or girlfriend? ;)http://stackoverflow.com/questions/419566/reclaim-snatched-domain-name/419735#419735Comment by Cristian Libardo on Reclaim snatched domain nameCristian Libardo2009-01-07T20:11:55Z2009-01-07T20:11:55ZYeah =) I feel rather noobish. Seeing those affiliate links gave me the wrong idea.http://stackoverflow.com/questions/419566/reclaim-snatched-domain-name/419735#419735Comment by Cristian Libardo on Reclaim snatched domain nameCristian Libardo2009-01-07T11:23:40Z2009-01-07T11:23:40ZThanks, I appreciate your answer. The registrar would be the hosting provider I initially used to register? The specific domain name is n2cms.comhttp://stackoverflow.com/questions/419566/reclaim-snatched-domain-name/419644#419644Comment by Cristian Libardo on Reclaim snatched domain nameCristian Libardo2009-01-07T11:21:44Z2009-01-07T11:21:44ZThanks for the advice, it's a .com domain and it expired jan 4th.http://stackoverflow.com/questions/400146/is-adding-runatserver-to-html-tags-to-get-relative-path-in-asp-net-an-elegant/400162#400162Comment by Cristian Libardo on Is Adding runat="server" to HTML tags to get relative path in ASP.net an elegant solution?Cristian Libardo2009-01-01T22:02:19Z2009-01-01T22:02:19ZI say go for it. I don't think the enableviewstate will do any difference unless you set the href in page load. ASP.NET doesn't usually store viewstate for attributes set before "begin tracking viewstate" which happens sometime before load.