User Giovanni Galbo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T01:07:37Z http://stackoverflow.com/feeds/user/4050 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/646270/asp-net-mvc-custom-validation-message-for-value-types 5 ASP.NET MVC - Custom validation message for value types Giovanni Galbo 2009-03-14T17:07:56Z 2009-11-27T15:06:35Z <p>When I use UpdateModel or TryUpdateModel, the MVC framework is smart enough to know if you are trying to pass in a null into a value type (e.g. the user forgets to fill out the required Birth Day field) .</p> <p>Unfortunately, I don't know how to override the default message, "A value is required." in the summary into something more meaningful ("Please enter in your Birth Day").</p> <p>There has to be a way of doing this (without writing too much work-around code), but I can't find it. Any help?</p> <p><strong>EDIT</strong></p> <p>Also, I guess this would also be an issue for invalid conversions, e.g. BirthDay = "Hello".</p> http://stackoverflow.com/questions/1753459/using-linq-to-sql-entities-in-your-bll-or-ui/1753491#1753491 1 Answer by Giovanni Galbo for Using Linq-to-SQL entities in your BLL or UI? Giovanni Galbo 2009-11-18T03:42:29Z 2009-11-18T03:47:57Z <p>Basically what we did for a project was that we had a Business layer that did all of the "LINQing" to L2S objects... in essence centralizing all querying to one layer via "Manager Objects" (I guess these are somewhat akin to repositories). </p> <p>We did not use DTOs to map to L2S; as we didn't feel is was worth the effort in this project. Part of our logic was that as more and more ORMs support Iqueryable and similar syntax to L2S (e.g. entity framework), then it probably wouldn't be THAT bad to switch to a different ORM, so its not that bad of a sin, IMO.</p> http://stackoverflow.com/questions/1708911/net-team-best-practices-and-methods/1709346#1709346 1 Answer by Giovanni Galbo for .NET Team - Best Practices and Methods Giovanni Galbo 2009-11-10T16:40:17Z 2009-11-10T16:40:17Z <p>If possible, pair up junior members with more senior members. Either way, definitely have code reviews. I'd also encourage them to have scheduled workshops or discussions so that they can get more well-rounded skills and to increase their exposure to different areas that they might not currently be aware of.</p> <p>I'd also encourage them to go to user group meetings.</p> http://stackoverflow.com/questions/647266/asp-net-mvc-html-textbox-throws-object-reference-not-set-to-an-instance-of-a 8 ASP.NET MVC - Html.Textbox() throws "Object reference not set to an instance of an object" Giovanni Galbo 2009-03-15T04:01:46Z 2009-11-02T10:47:08Z <p>I've encountered a strange issue.... when I use UpdateModel() or TryUpdateModel() everything works fine. When I try binding myself (e.g. MyObject.FirstName = collection["FirstName"] I get a "Object reference not set to an instance of an object" error.</p> <p>It's a little hard to explain, so I'll present the code:</p> <pre><code> [HandleError] [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(FormCollection collection) { try { Model.Event evnt = new Redline.RedlineTimeAttack.Model.Event(); //When this is uncommented everything works fine. //TryUpdateModel&lt;Model.Event&gt;(evnt); //this will eventually lead to problems evnt.Description = collection["Description"]; evnt.EndDate = enddate; evnt.EventName = collection["EventName"]; evnt.IsActive = collection["IsActive"].Contains("true"); evnt.StartDate = startdate; evnt.TrackId = trackId; evnt.WebContent = collection["WebContent"]; if (!evnt.IsValid) { foreach (var error in evnt.GetRuleViolations()) { ModelState.AddModelError(error.PropertyName, error.ErrorMessage); } } //If there are no validation issues then no problem, redirecttoaction //works properly if (ModelState.IsValid) { model.Events.InsertOnSubmit(evnt); model.SubmitChanges(); ViewData["ControlMode"] = "Edit"; return RedirectToAction("Edit"); } else //returning to View so that user can correct issues causes a null reference error in the view (bombs at first Html.Textbox("ControlName")) { ViewData["Tracks"] = GetTracks(); return View("Create", evnt); } </code></pre> <p>}</p> <p>Here's the stack trace:</p> <p>System.NullReferenceException was unhandled by user code Message="Object reference not set to an instance of an object." Source="System.Web.Mvc" StackTrace: at System.Web.Mvc.HtmlHelper.GetModelStateValue(String key, Type destinationType) at System.Web.Mvc.Html.InputExtensions.InputHelper(HtmlHelper htmlHelper, InputType inputType, String name, Object value, Boolean useViewData, Boolean isChecked, Boolean setId, Boolean isExplicitValue, IDictionary<code>2 htmlAttributes) at System.Web.Mvc.Html.InputExtensions.TextBox(HtmlHelper htmlHelper, String name, Object value, IDictionary</code>2 htmlAttributes) at System.Web.Mvc.Html.InputExtensions.TextBox(HtmlHelper htmlHelper, String name) at ASP.views_event_create_aspx.__RenderContent2(HtmlTextWriter __w, Control parameterContainer) in d:\TFSProjects\Redline Time Attack\Main\Source\Redline.RedlineTimeAttack.Web\Views\Event\Create.aspx:line 18 at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) at System.Web.UI.Control.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) at ASP.views_shared_site_master.__Render__control1(HtmlTextWriter __w, Control parameterContainer) in d:\TFSProjects\Redline Time Attack\Main\Source\Redline.RedlineTimeAttack.Web\Views\Shared\Site.Master:line 29 at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) at System.Web.UI.Control.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) at System.Web.UI.Page.Render(HtmlTextWriter writer) at System.Web.Mvc.ViewPage.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) InnerException: </p> http://stackoverflow.com/questions/145110/c-performance-vs-java-c/145132#145132 0 Answer by Giovanni Galbo for C++ performance vs. Java/C# Giovanni Galbo 2008-09-28T03:26:52Z 2009-10-09T17:37:50Z <p>On top of what some others have said, from my understanding .NET and Java are better at memory allocation. E.g. they can compact memory as it gets fragmented while C++ cannot (natively, but it can if you're using a clever garbage collector).</p> http://stackoverflow.com/questions/45577/syntax-highlighting-for-html-markup-disappears-in-visual-studio-2008 1 Syntax highlighting for html markup disappears in Visual Studio 2008 Giovanni Galbo 2008-09-05T11:29:22Z 2009-10-06T19:08:37Z <p>This happened to me in Visual Studio 2008 pre and post 2008 sp1 on more than one computer and to someone else I know, so it can't be an isolated incident.</p> <p>Seemingly random, every so often I lose all syntax highlighting in my aspx page (the html) so that Visual Studio now looks like a really expensive version of notepad.</p> <p>Does anyone know why does happens? Better yet, anyone know how to fix it?</p> http://stackoverflow.com/questions/1492483/is-it-foolish-of-me-not-to-use-nhibernate-for-my-project/1492535#1492535 4 Answer by Giovanni Galbo for Is it foolish of me not to use NHibernate for my project? Giovanni Galbo 2009-09-29T13:24:44Z 2009-09-29T13:24:44Z <p>People tend to use frameworks that are already written because, well, they're already written (and tested).</p> <p>But there IS merit to rolling your own. Only you and your colleagues can make assumptions about your domain. A generic framework like NHibernate cannot make many assumptions, because that wouldn't make it very universal.</p> <p>When you roll your own, you can bake these assumptions into your framework, to make a more streamlined, natural API. That said, if you were starting over I would have suggested taking an existing framework and wrapping it to better suit your needs. But since you already have something and it works for you, I'm not sure that I would suggest swapping it out for something else.</p> http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development 79 How to get started in operating system development Giovanni Galbo 2008-09-04T04:28:09Z 2009-09-25T00:26:32Z <p>One thing I've always wanted to do is develop my very own operating system (not necessarily fancy like Linux or Windows, but better than a simple boot loader which I've already done).</p> <p>I'm having a hard time finding resources/guides that take you past writing a simple "Hello World" OS. </p> <p>I know lots of people will probably recommend I look at Linux or BSD; but the code base for systems like that is (presumably) so big that I wouldn't know where to start.</p> <p>Any suggestions?</p> <p>Update: To make it easier for people who land on this post through Google here are some OS development resources:</p> <p><a href="http://www.osix.net/modules/article/?id=359" rel="nofollow">Writing Your Own Operating System</a> (Thanks Adam)</p> <p><a href="http://www.linuxfromscratch.org/" rel="nofollow">Linux From Scratch</a> (Thanks John)</p> <p><a href="http://en.wikipedia.org/wiki/SharpOS%5F%28operating%5Fsystem%29" rel="nofollow">SharpOS (C# Operating System)</a> (Thanks lomaxx)</p> <p><a href="http://www.minix3.org/" rel="nofollow">Minix3</a> and <a href="http://minix1.woodhull.com/mxdownld.html" rel="nofollow">Minix2</a> (Thanks Mike)</p> <p><a href="http://wiki.osdev.org/Main%5FPage" rel="nofollow">OS Dev Wiki</a> and <a href="http://forum.osdev.org/" rel="nofollow">Forums</a> (Thanks Steve)</p> <p><a href="http://www.osdever.net/" rel="nofollow">BonaFide</a> (Thanks Steve)</p> <p><a href="http://osdever.net/bkerndev/Docs/intro.htm" rel="nofollow">Bran</a> (Thanks Steve)</p> <p><a href="http://www.jamesmolloy.co.uk/tutorial%5Fhtml/index.html" rel="nofollow">Roll your own toy UNIX-clone OS</a> (Thanks Steve)</p> <p>I also found this great resource on my own:</p> <p><a href="http://www.brokenthorn.com/Resources/OSDevIndex.html" rel="nofollow">Broken Thorn OS Development Series</a></p> <p>Other resources:</p> <p>basszero has a good suggestion, start with an early version of an open source OS and work with it: <a href="http://kerneltrap.org/node/14002" rel="nofollow">Linux: The 0.01 Release</a> and <a href="http://kerneltrap.org/files/linux-0.01.tar.bz2" rel="nofollow">http://kerneltrap.org/files/linux-0.01.tar.bz2</a></p> <p><strike>Steve found a blog post on how to setup an OS dev environment in Visual Studio: <a href="http://www.managed-world.com/archive/2006/09/10/90829.aspx" rel="nofollow">Writing Your Own OS With Visual Studio 2005</a></strike></p> <p>I found a nice resource named <a href="http://mikeos.berlios.de/" rel="nofollow">MikeOS</a>, "MikeOS is a learning tool to demonstrate how simple OSes work. It uses 16-bit real mode for BIOS access, so that it doesn't need complex drivers"</p> <p><em>Updated 11/14/08</em> </p> <p>I found some resources at <a href="http://www.freebyte.com/operatingsystems/#osprojects" rel="nofollow">Freebyte's Guide to...Free and non-free Operating Systems</a> that links to kits such as OSKit and ExOS library. These seem super useful in getting started in OS development.</p> <p><em>Updated 2/23/09</em></p> <p><a href="http://stackoverflow.com/users/42019/ric-tokyo">Ric Tokyo</a> recommended <a href="http://code.google.com/p/nanoos/" rel="nofollow">nanoos</a> in this <a href="http://stackoverflow.com/questions/580308/making-an-os-in-c/580362#580362">question</a>. Nanoos is an OS written in C++.</p> <p><em>Updated 3/9/09</em></p> <p>Dinah provided some useful Stack Overflow discussion of aspiring OS developers: <a href="http://stackoverflow.com/questions/340674/roadblocks-in-creating-a-custom-operating-system">Roadblocks in creating a custom operating system</a> discusses what pitfalls you might encounter while developing an OS and <a href="http://stackoverflow.com/questions/130065/os-development">OS Development</a> is a more general discussion.</p> <p><em>Updated 7/9/09</em></p> <p>LB provided a link to the <a href="http://www.scs.stanford.edu/07au-cs140/pintos/pintos.html" rel="nofollow">Pintos Project</a>, an education OS designed for students learning OS development.</p> <p><em>Updated 7/27/09 (Still going strong!)</em></p> <p>I stumbled upon an <a href="http://academicearth.org/courses/operating-systems-and-system-programming" rel="nofollow">online OS course</a> from Berkley featuring 23 lectures.</p> <p><a href="http://tomos.sourceforge.net/" rel="nofollow">TomOS</a> is a fork of <a href="http://mikeos.berlios.de/" rel="nofollow">MikeOS</a> that includes a little memory manager and mouse support. As MikeOS, it is designed to be an educational project. It is written in NASM assembler.</p> <p><em>Updated 8/4/09</em></p> <p>I found the <a href="http://www.cs.berkeley.edu/~kubitron/courses/cs162-F08/" rel="nofollow">slides and other materials</a> to go along with the online Berkeley lectures listed above. </p> <p><em>Updated 8/23/09</em></p> <p>All <a href="http://stackoverflow.com/questions/tagged/osdev">questions tagged osdev</a> on stackoverflow</p> <p><a href="http://www.eecs.harvard.edu/syrah/os161/" rel="nofollow">OS/161</a> is an academic OS written in c that runs on a simulated hardware. This OS is similar in Nachos. Thanks Novelocrat!</p> <p>tangurena recommends <a href="http://en.wikipedia.org/wiki/MicroC/OS-II" rel="nofollow">http://en.wikipedia.org/wiki/MicroC/OS-II</a>, an OS designed for embedded systems. There is a <a href="http://rads.stackoverflow.com/amzn/click/1578201039" rel="nofollow">companion book</a> as well.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0672327201" rel="nofollow">Linux Kernel Development</a> by Robert Love is suggested by Anders. It is a "widely acclaimed insider's look at the Linux kernel."</p> <p><em>Updated 9/18/2009</em></p> <p>Thanks Tim S. Van Haren for telling us about <a href="http://www.gocosmos.org/index.en.aspx" rel="nofollow">Cosmos</a>, an OS written entirely in c#.</p> <p>tgiphil tells us about <a href="http://www.codeplex.com/mosa" rel="nofollow">Managed Operating System Alliance (MOSA) Framework</a>, "a set of tools, specifications and source code to foster development of managed operating systems based on the Common Intermediate Language."</p> <p><em>Update 9/24/2009</em></p> <p>Steve found a couple resources for development on windows using Visual Studio, check out <a href="http://www.brokenthorn.com/Resources/OSDevMSVC.html" rel="nofollow">BrokenThorn's guide setup with VS 2005</a> or <a href="http://wiki.osdev.org/Visual%5FStudio" rel="nofollow">OSDev's VS Section</a>.</p> http://stackoverflow.com/questions/1379614/display-image-from-image-object-in-mvc/1379651#1379651 2 Answer by Giovanni Galbo for Display image from IMAGE object in MVC Giovanni Galbo 2009-09-04T14:33:33Z 2009-09-04T14:33:33Z <p>You can write a handler to stream images out and then reference the streamer in your image tag.</p> <p>For instance, you have <a href="http://myapp/media.ashx?imageId=10" rel="nofollow">http://myapp/media.ashx?imageId=10</a> stream out the image. In your page you reference like so: <code>&lt;img src="http://myapp/media.ashx?imageId=10"/&gt;</code>.</p> <p>This way you don't have to temporarily write to disk.</p> http://stackoverflow.com/questions/1319861/does-a-thin-data-access-layer-mainly-imply-writing-sql-by-hand/1319930#1319930 0 Answer by Giovanni Galbo for Does a "thin data access layer" mainly imply writing SQL by hand? Giovanni Galbo 2009-08-24T00:03:49Z 2009-08-24T00:03:49Z <p>I thought data access were always supposed to be thin... DALs aren't really the place to have logic. </p> <p>Maybe the person you talked to is talking about a combination of a business layer and a data access layer; where the business layer is non-existent (e.g. a very simple app, or perhaps all of the business rules are in the database, etc).</p> http://stackoverflow.com/questions/1317334/how-many-gas-stations-in-usa/1317366#1317366 8 Answer by Giovanni Galbo for How many gas stations in USA? Giovanni Galbo 2009-08-22T23:54:46Z 2009-08-23T00:13:17Z <p>Here's how I answer it: My town is in Queens, a boro of NYC. Its fairly congested, but nothing like Manhattan. I figure it falls somewhere inbetween the inner city and SmallTown, USA; so its probably an OK starting point.</p> <p>Population of my town is 29,000. Let's say there are 10 gas stations; that's 2900 people per gas station served.</p> <p>So let's use this ratio on the population of the US:</p> <p>320000000/2900 = 110344</p> <p>That accounts for local gas stations, but now we need to add in gas stations on the highways and such; after all our country is pretty big. Also my town is fairly urban, so smaller towns are probably not accounted for too well in my calculation so I added a 40% fudge factor: 110344 * 1.4 = 154481.</p> <p>The best number if found from a quick Google search was from 1998, "According to The Journal Of Petroleum Marketing, June, 1998 issue, there are 187,097 retail location selling motor fuel in the U.S."</p> <p>I'd say I came pretty close.</p> http://stackoverflow.com/questions/1224617/how-can-i-build-a-small-operating-system-on-an-old-desktop-computer/1317311#1317311 2 Answer by Giovanni Galbo for How can I build a small operating system on an old desktop computer? Giovanni Galbo 2009-08-22T23:27:44Z 2009-08-22T23:27:44Z <p>I maintain a list of resources on StackOverflow: <a href="http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development">How to get started in operating system development</a>. Please add new resources to it as you begin you're adventure (I'm about to begin :) )</p> http://stackoverflow.com/questions/1302859/what-does-good-modern-c-code-look-like 10 What does good, modern c code look like? Giovanni Galbo 2009-08-19T22:00:37Z 2009-08-22T22:25:31Z <p>I'm primarily a c#/.NET programmer, but the <a href="http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development">hobby project</a> that I am about to take on will involve coding in c.</p> <p>I know that there is a ton of c code out there, but its very hard to separate a well structured c project from a badly structured project if you did not "grow up" with the language. Can anyone point me toward a newer, non trivial (but not enormous) project that is considered a good example of how to structure c code?</p> <p><strong>Edit</strong></p> <p>If you cannot find a project, feel free to discuss in words how you think a c project should be structured.</p> http://stackoverflow.com/questions/1293273/how-do-i-get-a-path-suitable-for-storing-temporary-files/1293283#1293283 6 Answer by Giovanni Galbo for How do I get a path suitable for storing temporary files? Giovanni Galbo 2009-08-18T11:27:08Z 2009-08-18T11:27:08Z <p>From <a href="http://dotnetdud.blogspot.com/2008/10/how-to-get-temporary-folder-using-net-c.html" rel="nofollow">How to get Temporary Folder using .NET (C#)</a>:</p> <pre><code>string sPath; sPath = Path.GetTempPath(); Console.WriteLine("Temporary Path := " + sPath ); </code></pre> http://stackoverflow.com/questions/62268/error-consuming-web-service-from-winform-app-cannot-execute-a-program 0 Error consuming Web Service from Winform App - "Cannot execute a program..." Giovanni Galbo 2008-09-15T12:07:18Z 2009-08-14T05:36:50Z <p>I have a winform app that calls a web service to check for updates. This works in dev and it also works everywhere else I've tried it, just not on the installed copy on my machine (which happens to be the same in dev).</p> <p>The error is:</p> <p>Cannot execute a program. The command being executed was "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe" /noconfig /fullpaths @"C:\Documents and Settings\Giovanni.DOUBLE-AFSSZ043\Local Settings\Temp\squ8oock.cmdline".</p> <p>The firewall is disabled and I've looked for "C:\Documents and Settings\Giovanni.DOUBLE-AFSSZ043\Local Settings\Temp\squ8oock.cmdline" and it is not there. Note that every time I try to use the web service the ".cmdline" file is different, for example the second time I ran it it was "dae8rgen.cmdline." No matter what name it has, I can never find the file.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1275748/how-well-does-the-kindle-work-with-oreilly-safari 1 How well does the Kindle work with O'Reilly Safari? [closed] Giovanni Galbo 2009-08-14T02:28:56Z 2009-08-14T02:51:34Z <p>As many of you know, <a href="http://www.safaribooksonline.com/Corporate/Index/" rel="nofollow">Safari</a> is a service that offers online access to 100s of technical books (most of them programming books!).</p> <p>What I'm wondering is how the Safari experience is on a Kindle [DX]. I'm not talking about downloading a chapter to PDF and using it on the Kindle (this wouldn't be a bad option if downloads were not limited), but actually reading the book online.</p> <p>This <a href="http://support.safaribooksonline.com/al/12/2/article.asp?aid=1469&amp;c=12&amp;cp=5&amp;cpc=TKvN0Y442nJr412P03W5i0TtoO3RudHqcSeVI" rel="nofollow">page</a> explains how to get Safari to work on the Kindle, but it does not show you any screenshots or describe any major issues you might encounter, which sucks because we're talking about a $500 toy here.</p> http://stackoverflow.com/questions/1264170/how-do-you-keep-up-with-the-software-development-world/1264222#1264222 0 Answer by Giovanni Galbo for How do you keep up with the Software Development world? Giovanni Galbo 2009-08-12T04:33:40Z 2009-08-12T04:33:40Z <p>I think its most important to be aware of the concepts. Once you know the basics, picking up anything is much easier. </p> <p>Know the different language paradigms (even if you're only really good at a couple of them) and learn about design patterns. Design patterns often guide how libraries are laid out. Sometimes design patterns even help shape some of the features in new languages.</p> <p>Once you know the basics you'll be able to pick up newer languages and libraries because you'll have a better understanding of where the designers were coming from when making their decisions.</p> http://stackoverflow.com/questions/1257732/is-using-url-rewritting-pivotal-for-scaling-a-larger-app/1257782#1257782 1 Answer by Giovanni Galbo for Is Using URL Rewritting Pivotal for Scaling a Larger App Giovanni Galbo 2009-08-10T23:25:38Z 2009-08-10T23:25:38Z <p>URL rewriting is nice because it looks prettier, and makes it a tad easier for the user to see what the content he's about to read is about (although that's probably in a header anyway). Some argue that rewriting is better for SEO reasons. </p> <p>Still, rewriting is NOT pivotal for a large app. I'd say not having dead links and making it easy to find content is pivotal, not how pretty the URLs are. </p> <p>If anything its just a "nice to have" that is fairly trivial to implement - that's why everyone is doing it these days.</p> http://stackoverflow.com/questions/1158667/why-use-finally-in-try-catch/1158701#1158701 1 Answer by Giovanni Galbo for Why use Finally in Try ... Catch Giovanni Galbo 2009-07-21T11:41:47Z 2009-07-21T11:51:53Z <p>On top of what everyone else said, semantically I think that they are different. </p> <p>Code in the finally block clearly states that you're doing finalization type tasks for the content contained within the try-catch. I think this makes it clearer to read.</p> http://stackoverflow.com/questions/1148633/how-to-write-a-windows-application/1149094#1149094 0 Answer by Giovanni Galbo for How to Write a Windows Application? Giovanni Galbo 2009-07-19T02:24:47Z 2009-07-19T02:24:47Z <p>I disagree with a lot of the answers here... learning from the ground up is not a bad thing. </p> <p>I wouldn't go out and make a whole app in C, but certainly making a little app in C is a good way to both learn the language and to appreciate (or more likely, detest) the win32 API. </p> <p>Besides, you can't really appreciate what the newer languages/frameworks do for you if you don't experience the old painful way of doing things.</p> <p>That said, recognize that there are newer languages and frameworks out there and learn them as well; particularly if you're trying to land a job.</p> http://stackoverflow.com/questions/158986/how-to-relate-objects-from-multiple-contexts-using-the-entity-framework 1 How to relate objects from multiple contexts using the Entity Framework Giovanni Galbo 2008-10-01T18:21:08Z 2009-07-17T04:08:07Z <p>I am <strong>very</strong> new to the entity framework, so please bear with me...</p> <p>How can I relate two objects from different contexts together?</p> <p>The example below throws the following exception:</p> <blockquote> <p>System.InvalidOperationException: The relationship between the two objects cannot be defined because they are attached to different ObjectContext objects.</p> </blockquote> <pre><code> void MyFunction() { using (TCPSEntities model = new TCPSEntities()) { EmployeeRoles er = model.EmployeeRoles.First(p=&gt;p.EmployeeId == 123); er.Roles = GetDefaultRole(); model.SaveChanges(); } } private static Roles GetDefaultRole() { Roles r = null; using (TCPSEntities model = new TCPSEntities()) { r = model.Roles.First(p =&gt; p.RoleId == 1); } return r; } </code></pre> <p>Using one context is not an option because we are using the EF in an ASP.NET application.</p> http://stackoverflow.com/questions/1125301/is-firing-off-a-thread-a-valid-answer-to-simplifying-code/1125430#1125430 2 Answer by Giovanni Galbo for Is firing off a Thread a valid answer to simplifying code? Giovanni Galbo 2009-07-14T13:35:04Z 2009-07-14T13:35:04Z <p>Read up on <a href="http://en.wikipedia.org/wiki/Amdahl%27s%5Flaw" rel="nofollow">Amdahl's law</a>, best summarized by "The speedup of a program using multiple processors in parallel computing is limited by the time needed for the sequential fraction of the program."</p> <p>As it turns out, if only a small part of your app can run in parallel you won't get much gains, but potentially many hard-to-debug bugs.</p> http://stackoverflow.com/questions/1058188/what-next-to-reinvigorate-a-love-of-programming/1058288#1058288 3 Answer by Giovanni Galbo for What next to reinvigorate a love of programming? Giovanni Galbo 2009-06-29T13:25:39Z 2009-06-29T13:25:39Z <p>Like most people on SO, I tend to work mostly on Plain Jane business apps. To keep things fresh, on my own time I like to look into the "cooler" areas:</p> <ul> <li>Operating Systems</li> <li>Compilers</li> <li>AI</li> <li>Neural Networks</li> <li>Game Development</li> </ul> <p>Interestingly enough, quite a few things you pick up while playing around in those areas will help you in your day-to-day business programming tasks. They certainly help you "think out of the box" when the need arises.</p> http://stackoverflow.com/questions/984302/which-language-would-you-use-in-your-os/1051757#1051757 0 Answer by Giovanni Galbo for Which language would you use in your OS? Giovanni Galbo 2009-06-27T00:04:27Z 2009-06-27T00:04:27Z <p>If this isn't a hypothetical question, and you're looking to create your own OS, I'd probably go with C because most of the examples out there are written in C.</p> <p>Also, (And I haven't build an OS yet so take this with a grain of salt), I'm thinking that the c runtime libraries would be a lot easier to port to your new OS than say .NET.</p> http://stackoverflow.com/questions/604640/uploading-multiple-images-text-fields-in-asp-net-mvc 2 Uploading multiple images + text fields in ASP.NET MVC Giovanni Galbo 2009-03-03T00:26:04Z 2009-06-17T16:25:05Z <p>I'm very new to ASP.net MVC, so please be as descriptive as possible in your answer :)</p> <p>Let me simplify what I'm trying to do. Imagine I have a form where you want to enter some information about a car. The fields might be: Make, Model, Year, Image1, Image2.</p> <p>On the bottom of the form is a "Save" button. The associated Controller method will save Image1 and Image2 to disk, obtain their filenames and associate them with the car model, which will then be saved to the database.</p> <p>Any ideas?</p> <p>Thanks guys!</p> <p><strong>Edit</strong></p> <p><a href="http://stackoverflow.com/questions/604640/uploading-multiple-images-text-fields-in-asp-net-mvc/604720#604720">winob0t</a> got me most of the way there. The only outstanding issue is the following: Image1 and Image2 are not required fields, so I now I can save 0,1 or 2 images; but if the user only uploads 1 picture I have no way of knowing if it came from imageUpload1 or imageUpload2.</p> <p>Again, any help is appreciated!</p> http://stackoverflow.com/questions/995981/is-it-essential-to-understand-computers-to-be-a-good-programmer/996377#996377 1 Answer by Giovanni Galbo for Is it essential to understand computers to be a good programmer? Giovanni Galbo 2009-06-15T14:21:05Z 2009-06-15T14:21:05Z <p>As good as the level of abstraction, garbage collection, etc are these days, IMO you still need to know what is going on under the hood for any program that is non-trivial. </p> <p>Using .NET as an example... while it does a great job at hiding complexities from the programmer, the programmer can still get into trouble by doing things like:</p> <ul> <li>Not disposing of unmanaged resources</li> <li>Leaving objects in a state where they cannot be GC'ed (e.g. because of events still being subscribed to)</li> <li>Not being smart about how they fetch data (e.g. Fetch data from a gridview 1,000 times; one for each row in a gridview [this can happen if you do not use technologies like Linq to SQL correctly]).</li> </ul> <p>Even if you only use your "under the hood" knowledge 5% of the time; that knowledge will usually be what actually makes your application run correctly and with acceptable performance.</p> http://stackoverflow.com/questions/752035/prerequisite-knowledge-for-asp-net-mvc/958815#958815 2 Answer by Giovanni Galbo for Prerequisite knowledge for ASP.NET MVC Giovanni Galbo 2009-06-06T01:55:16Z 2009-06-06T01:55:16Z <p>If you don't already know Webforms, then stick to learning just MVC right now so that you don't confuse yourself. Webforms is a useful thing to know, and since you know Winforms already, it shouldn't be too hard to learn afterward.</p> <p>MVC and Webforms both work under ASP.NET, so a lot of things you'll learn while playing with MVC will carry over to Webforms.</p> http://stackoverflow.com/questions/925356/caching-a-binary-file-in-c/925432#925432 0 Answer by Giovanni Galbo for Caching a binary file in C# Giovanni Galbo 2009-05-29T10:53:58Z 2009-05-29T10:53:58Z <p>I don't know what exactly you're doing, but I offer this suggestion (which may or may not be viable depending on what you're doing):</p> <p>Instead of only caching the contents of the file, why don't you put the contents of the file in a nice strongly typed collection of items, and then cache that? It'll probably make searching for items a bit easier, and faster since there is no parsing involved.</p> http://stackoverflow.com/questions/301018/how-do-interrupts-in-multicore-multicpu-machines-work 5 How do interrupts in multicore/multicpu machines work? Giovanni Galbo 2008-11-19T04:51:02Z 2009-05-22T17:53:27Z <p>I recently started diving into low level OS programming. I am (very slowly) currently working through two older books, XINU and Build Your Own 32 Bit OS, as well as some resources suggested by the fine SO folks in my previous question, <a href="http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development">How to get started in operating system development</a>.</p> <p>It could just be that I haven't encountered it in any of those resources yet, but its probably because most of these resources were written before ubiquitous multicore systems, but what I'm wondering is how interrupts work in a multicore/multiprocessor system.</p> <p>For instance, say the DMA wants to signal that a file read operation is complete. Which processor/core acknowledges that an interrupt was signaled? Is it the processor/core that initiated the file read? Is it whichever processor/core that gets to it first?</p> <p>Sorry if this is a stupid question, I'm <em>very</em> new to this.</p> http://stackoverflow.com/questions/843779/why-am-i-able-to-assign-tasks-to-local-service-in-tfs-2008 0 Why am I able to assign tasks to LOCAL SERVICE in TFS 2008? Giovanni Galbo 2009-05-09T18:12:50Z 2009-05-10T04:06:10Z <p>I'm not 100% sure it wasn't always this way and I never noticed... but I'm pretty sure this is new and something got messed up somewhere.</p> <p>I am able to assign work items to a user named LOCAL SERVICE (see screenshot) in TFS 2008 (Workgroup Edition). This seems wrong, but I have no idea how to fix the issue.</p> <p>It's not the end of the world, but it's bugging me.</p> <p>Thanks in advance for any help.</p> <p><img src="http://img13.imageshack.us/img13/6296/tfsd.jpg" alt="TFS - LOCAL SERVICE user" /></p> http://stackoverflow.com/questions/1707473/what-is-best-book-for-asp-net-mvc/1707508#1707508 Comment by Giovanni Galbo on What is best book for ASP.NET MVC? Giovanni Galbo 2009-11-10T12:54:20Z 2009-11-10T12:54:20Z I thought this book was great. In general, when learning something new I prefer the Apress books... They provide a lot of detail but are still very accessible to new comers. http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development/43485#43485 Comment by Giovanni Galbo on How to get started in operating system development Giovanni Galbo 2009-09-18T11:25:34Z 2009-09-18T11:25:34Z FYI, this is from before the comment system was implimented http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development/43192#43192 Comment by Giovanni Galbo on How to get started in operating system development Giovanni Galbo 2009-09-18T11:21:10Z 2009-09-18T11:21:10Z FYI, this is from before the comment system was implimented http://stackoverflow.com/questions/1415394/what-differences-are-expected-of-xhtml5-versus-html5 Comment by Giovanni Galbo on What differences are expected of XHTML5 versus HTML5? Giovanni Galbo 2009-09-12T16:15:47Z 2009-09-12T16:15:47Z What happened to xhtml 2 to 4? http://stackoverflow.com/questions/1317334/how-many-gas-stations-in-usa/1317343#1317343 Comment by Giovanni Galbo on How many gas stations in USA? Giovanni Galbo 2009-08-23T00:26:21Z 2009-08-23T00:26:21Z I don't mind the estimation teasers too much... as long as you explain your answer you're OK (I hope). I hate the ones that have you flipping hypothetical switches to light bulbs you can't see and other nonsense. What makes it worse is that typically the interviewer is unimaginative, so if you don't give the same exact answer as the one he &quot;knows,&quot; then its wrong. http://stackoverflow.com/questions/1224617/how-can-i-build-a-small-operating-system-on-an-old-desktop-computer Comment by Giovanni Galbo on How can I build a small operating system on an old desktop computer? Giovanni Galbo 2009-08-22T23:19:29Z 2009-08-22T23:19:29Z @Max and @Tom, I got the bug too. I'm actually gearing up to start this time around :) http://stackoverflow.com/questions/1302859/what-does-good-modern-c-code-look-like/1303850#1303850 Comment by Giovanni Galbo on What does good, modern c code look like? Giovanni Galbo 2009-08-20T11:38:41Z 2009-08-20T11:38:41Z @Norman looks like the book is available on Safari. I must have skipped it over because it is 13 years old (assumed it wouldn't be &quot;modern code&quot;), but I'll check it out on your recommendation; thanks! http://stackoverflow.com/questions/1263995/what-apps-do-program-in-c-nowadays/1264024#1264024 Comment by Giovanni Galbo on What apps do program in C++ nowadays Giovanni Galbo 2009-08-12T04:37:56Z 2009-08-12T04:37:56Z I'm not really sure what point some of you guys are trying to make is. All of the desktop Windows &quot;killer apps&quot; that I can think of are 10+ years old, so of course they are C++. Pretty much all of the &quot;killer apps&quot; of the 2000s have been web apps; except for maybe iTunes, and that's by Apple... http://stackoverflow.com/questions/1221736/c-bus-error-using-different-compilation-arguments/1221746#1221746 Comment by Giovanni Galbo on C: Bus Error using different compilation arguments Giovanni Galbo 2009-08-03T11:16:22Z 2009-08-03T11:16:22Z @sudo bountiful: I'm not a C programmer, but won't calloc allocate and clear to 0? http://stackoverflow.com/questions/53423/what-virus-protection-internet-security-do-you-use-at-home-as-a-programmer Comment by Giovanni Galbo on What virus protection/internet security do you use at home as a programmer Giovanni Galbo 2009-07-27T00:05:43Z 2009-07-27T00:05:43Z @skaffman, I think so. At work I cannot disable or configure my antivirus, which blocks my apps from sending emails... which makes testing harder than it should be. http://stackoverflow.com/questions/1158667/why-use-finally-in-try-catch/1158711#1158711 Comment by Giovanni Galbo on Why use Finally in Try ... Catch Giovanni Galbo 2009-07-21T11:49:51Z 2009-07-21T11:49:51Z Unplugging the computer while in the middle of the try block will also cause the finally not to execute :) http://stackoverflow.com/questions/1123202/i-need-some-new-blogs-to-help-learn-my-new-langauge-its-c/1123654#1123654 Comment by Giovanni Galbo on I need some new blogs to help learn my new langauge (it's C). Giovanni Galbo 2009-07-15T14:55:54Z 2009-07-15T14:55:54Z I'm super-interested in a C blog... so get posting. http://stackoverflow.com/questions/1058188/what-next-to-reinvigorate-a-love-of-programming Comment by Giovanni Galbo on What next to reinvigorate a love of programming? Giovanni Galbo 2009-06-29T13:30:59Z 2009-06-29T13:30:59Z I'm not sure why some people don't like this question... after years of programming the same sorts of things over and over again it can get boring after a while. Asking for different approaches of how to rekindle the love for programming seems valid to me. http://stackoverflow.com/questions/1049369/will-you-still-support-ie6-when-writing-webpages/1049503#1049503 Comment by Giovanni Galbo on Will you still support IE6 when writing webpages? Giovanni Galbo 2009-06-26T14:42:06Z 2009-06-26T14:42:06Z sorry i didn't see it http://stackoverflow.com/questions/990954/thoughts-and-feedback-on-site-design Comment by Giovanni Galbo on Thoughts and feedback on site design? Giovanni Galbo 2009-06-13T16:24:03Z 2009-06-13T16:24:03Z While I appreciate that you're trying to improve your website... this question really isn't in the spirit of what StackOverflow is about. If you run into any programming related issues while creating the site however, this is the place to ask.