User vmarquez - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T16:34:25Zhttp://stackoverflow.com/feeds/user/10740http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1612612/enterprise-architect-hide-foreign-key-labels-in-database-diagram0Enterprise Architect: Hide Foreign Key Labels in Database Diagram?vmarquez2009-10-23T10:35:20Z2009-11-19T23:40:27Z
<p>I am using Sparx Systems Enterprise Architect 7 Professional and I can not find a way to hide the labels from Foreign Keys Associations in Database Diagrams.</p>
<p>Yes, I know I can right-click each of the connectors and use the "Set Visibility" option from the context menu but I guess there must be a per-diagram or golabal setting to do it.</p>
<p>Thank you for your time.</p>
http://stackoverflow.com/questions/1612612/enterprise-architect-hide-foreign-key-labels-in-database-diagram/1767388#17673880Answer by vmarquez for Enterprise Architect: Hide Foreign Key Labels in Database Diagram?vmarquez2009-11-19T23:40:27Z2009-11-19T23:40:27Z<p>Ok, I do not why I did not see the option previously. Today it just jumped on me.</p>
<p>The answer on how to hide all labels from a diagram is right-click on the diagram, select Properties... Connectors Tab... Check the option "Suppress All Connector Labels".</p>
<p>I am using Sparx System's Enterprise Architect v 7.0.</p>
http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-page0Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-09T05:43:19Z2009-11-14T22:41:22Z
<p>I think somewere I saw an example about this but can not find it anymore:</p>
<p>Is there was a way to override a Page_Init() event on a global basis without creating a new MyCustomPage class inherited from Page?</p>
<p>I was in the hope that there were some way to make global overrides to Page without subclassing Page (without the need to inherith my pages from the subclass). I was thinking about something about the lines of Global.asax, but for Page.</p>
<p>This is the code I want to be run at PreInit in every page:</p>
<pre>
' Change Culture's ShortDate to "dd/mmm/yyyy" for es-MX.
If CultureInfo.CurrentCulture.Name = "es-MX" Then
Dim info As CultureInfo = CultureInfo.CurrentCulture.Clone
info.DateTimeFormat.ShortDatePattern = "dd/MMM/yyyy"
System.Threading.Thread.CurrentThread.CurrentCulture = info
info = Nothing
End If
</pre>
<p>Thanks in advance for your time.</p>
<p>Edit:</p>
<p>As of today, there have been 2 perfectly good solutions (for my case) offered below. I have selected one of those as accepted answer even I will be currently using the other solution. This is because the one I will be using was offered as a comment by @Simon to this question.</p>
<p>The solution was to place my code in Global.asax as:</p>
<pre>
Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
' Configure ShortDatePattern as "dd/MMM/yyyy" for es-MX to avoid month-day confusions when both are numeric.
If CultureInfo.CurrentCulture.Name = "es-MX" Then
Dim oCultureInfo As CultureInfo = CultureInfo.CurrentCulture.Clone
oCultureInfo.DateTimeFormat.ShortDatePattern = "dd/MMM/yyyy"
System.Threading.Thread.CurrentThread.CurrentCulture = oCultureInfo
oCultureInfo = Nothing
End If
End Sub
</pre>
<p>In my question I asked how to override Page_Init() without sub-classing Page. This seemed to cause some confusion. The reason is I am creating a project template with lot's of typically required functionality already in place (as User Admin, Rights Management, etc.).</p>
<p>For projects created with this template, I want to default to es-MX Culture and to modify ShortDatePattern to display months in abbreviated month names. As this is a project template I want to save my programmers from the need to implement their pages inheriting from a custom class. It just feels "weird" to me to imposing sub-classing for pages at this (project template) level.</p>
<p>The other solution. The one I marked as accepted was provided by @Ishtar. I have already implemented it and it works perfectly and falls within my needs. The only thing missing in the example code he provided is the need to call MyBase.OnInit(e).</p>
<p>I want to thank everyone who offered solutions and comments and a very special thank you to @Ishtar who provided an initial answer and stayed with this subject as I rejected it for my needs. Then he provided a second answer who proved right (the one marked as accepted).</p>
http://stackoverflow.com/questions/1355456/how-do-i-auto-select-an-input-field-when-i-load-a-page/1355466#13554661Answer by vmarquez for How do I auto select an input field when I load a page?vmarquez2009-08-31T01:46:13Z2009-08-31T01:46:13Z<p>Use:</p>
<p>someObject.focus()</p>
<p>Reference:</p>
<p><a href="http://www.w3schools.com/HTMLDOM/met%5Fanchor%5Ffocus.asp" rel="nofollow">http://www.w3schools.com/HTMLDOM/met%5Fanchor%5Ffocus.asp</a></p>
http://stackoverflow.com/questions/678820/call-a-number-using-skype-in-a-webpage/678868#6788681Answer by vmarquez for call a number using skype in a webpagevmarquez2009-03-24T19:24:47Z2009-03-24T19:24:47Z<p>This is the format for the link:</p>
<pre><code><a href="skype:echo123?call">Click</a> (make a call to echo123)
</code></pre>
<p>It will work provided the visitor have Skype installed.</p>
<p>You can find all the options and an alternative javascript to redirect the user to download skype is he/she does not have Skype installed.</p>
<p><a href="http://www.skype.com/share/buttons/advanced.html" rel="nofollow">http://www.skype.com/share/buttons/advanced.html</a></p>
http://stackoverflow.com/questions/668048/what-datetime-format-is-this/668835#6688353Answer by vmarquez for What datetime format is this?vmarquez2009-03-21T06:03:51Z2009-03-22T15:48:51Z<p>Are you sure that values correspond to 09/07/2007? </p>
<p>I ask because 1088631936 are the number of seconds since Linux (et al) zero date: 01/01/1970 00:00:00 to 06/30/2004 21:45:36.</p>
<p>Seems to me reasonable to think the value are seconds since this usual zero date. </p>
<p>Edit: I know it is very possible for this not to be the correct answer. It is just one approach (a valid one) but I think more info is needed (see the comments). Editing this (again) to bring the question to the front in the hope of somebody else to answer it or give ideas. Me: with a fairness, sportive and sharing spirit :D</p>
http://stackoverflow.com/questions/668921/foreign-key-refering-to-primary-keys-across-multiple-tables/668930#6689300Answer by vmarquez for Foreign key refering to primary keys across multiple tables?vmarquez2009-03-21T07:43:41Z2009-03-21T07:43:41Z<p>Yes, it is possible. You will need to define 2 FKs for 3rd table. Each FK pointing to the required field(s) of one table (ie 1 FK per foreign table).</p>
http://stackoverflow.com/questions/664531/i-was-just-asked-to-make-a-clone-of-a-youtube-like-site/664581#6645811Answer by vmarquez for i was just asked to make a clone of a youtube-like site.. vmarquez2009-03-20T00:41:56Z2009-03-20T00:41:56Z<p>In general, it is not advisable to do rough estimations because the result will be wrong. You would be under estimating because of a lot of things.</p>
<p>In this case (and just because you are certain the task is impossible given the cost requirement) you could do a rough estimation where you divide the project in specific tasks and maybe milestones with time and resources required for each. Give this estimation to your friend and tell him that is a first-approach/very-rough-estimate/very-risky-because-of-lack-of-a-formal-analysis.</p>
<p>Other posts here in SO may provide some guidance to you: <a href="http://stackoverflow.com/questions/tagged/estimation">http://stackoverflow.com/questions/tagged/estimation</a></p>
http://stackoverflow.com/questions/662201/why-doesnt-button-click-event-bubble-up-visual-tree-to-stackpanel-as-msdn-arti/662286#6622860Answer by vmarquez for Why doesn't button click event "bubble up visual tree" to StackPanel as MSDN article states?vmarquez2009-03-19T13:56:40Z2009-03-19T19:33:38Z<p>It is because all the messages are being captured <strike>handled</strike> by Button and messages stop <strike>the message stops</strike> bubbling there. The answer is right in your question's text:</p>
<blockquote>
<p>An event will bubble (propagate) up the visual tree from the source element <strong>until either it has been handled</strong> or it reaches the root element.</p>
</blockquote>
<p>EDIT:</p>
<p>Edward Tanguay (OP) commented on this answer and I am copying his comment here because it is very relevant:</p>
<blockquote>
<p>"I don't see that the button IS handling the event, i.e. I have no click handler on the button, I DO have a click handler (MouseDown) on the StackPanel and hence I would think it would bubble up PAST the button since the button doesn't handle it and get handled by the stackpanel which does, right?"</p>
</blockquote>
<p>You are right. Button is not handling the MouseDown event because no handler ha been specified for it at that control.</p>
<p>But, then, MouseDown is particular in some way. At least in Windows Forms it is used to initiate actions as drawing and dragging so, when a control gets the event, it proceeds to trap all the subsequent mouse messages even if you have not defined handlers for it. This trap is done when the control sets Capture property to True and this effectively stop subsequent events from being bubbled up. Capture property is set back to False by Windows Forms when it gets a MouseUp event.</p>
<p>I repeat, this is the way it works in Windows Forms, you may want to double-check this but, IMHO there is no reason why this should be different for WPF.</p>
<p>For reference: Se the section "Windows Forms processing" at <a href="http://blogs.msdn.com/jfoscoding/archive/2005/07/28/444647.aspx" rel="nofollow">http://blogs.msdn.com/jfoscoding/archive/2005/07/28/444647.aspx</a> (scroll slightly down from the middle of the page).</p>
<p>Note: See my comment to Arcturu's answer for a reference on bubble and tunneling events raise sequences.</p>
http://stackoverflow.com/questions/649003/how-to-append-string-at-the-end-of-a-given-a-column-in-sql-server/649030#649030-1Answer by vmarquez for How to Append String at the end of a Given a Column in SQL Server?vmarquez2009-03-16T02:06:08Z2009-03-16T02:06:08Z<p>First result on Google searching for the error message says:</p>
<p>"String or binary data would be truncated" MS Sql error</p>
<p>This problem occurs when you trying to insert to field a string that exceeds fields length. The only solution I could find was to set a bigger field length.</p>
<p>Ref: <a href="http://www.dotnetjunkies.com/WebLog/skiff/archive/2005/01/31/49336.aspx" rel="nofollow">http://www.dotnetjunkies.com/WebLog/skiff/archive/2005/01/31/49336.aspx</a></p>
http://stackoverflow.com/questions/647397/do-you-see-the-need-for-venture-capital-decreasing-in-software/647411#6474110Answer by vmarquez for Do you see the need for venture capital decreasing in software?vmarquez2009-03-15T06:55:22Z2009-03-15T06:55:22Z<p>I think it all depends on your market, the market size for your product and if your product has the potential of serving that market.</p>
<p>If your product has the potential of a big market (aid if that is what you are after), then VC is still a need, both to build an infrastructure / perform Marketing+Publicity) and to gain knowledge, guidance and creating the symbiotic relations you mentioned.</p>
<p>If your product has a big market and you do not VC, then some other will come after your market with their own or VC cash. You basically are opening the eyes to others.</p>
<p>Of course, this will not happen if your offering is based in an absolutely exclusive ability or knowledge your company or employees may have (very unlikely on these times).</p>
http://stackoverflow.com/questions/647282/is-there-an-onselect-event-or-equivalent-for-html-select/647313#6473130Answer by vmarquez for Is there an onSelect event or equivalent for HTML <select> ?vmarquez2009-03-15T04:39:40Z2009-03-15T04:39:40Z<p>You can use onChange: <a href="http://www.w3schools.com/TAGS/tag_Select.asp" rel="nofollow">http://www.w3schools.com/TAGS/tag_Select.asp</a></p>
<p>Copied from <a href="http://www.faqs.org/docs/htmltut/forms/_SELECT_onChange.html" rel="nofollow">http://www.faqs.org/docs/htmltut/forms/_SELECT_onChange.html</a>
onChange designates a JavaScript to run when the user chooses one of the options. This means that an action is initiated immediately when the user chooses an item, not when a "submit" button is pressed.</p>
http://stackoverflow.com/questions/647210/just-what-is-a-big-database/647300#6473001Answer by vmarquez for Just what is 'A big database'?vmarquez2009-03-15T04:28:35Z2009-03-15T04:28:35Z<p>“Large Database” is indeed a nebulous concept. There are already very different answers and opinions posted in the answers to this question. Some approaches to define “small”, “medium” and “large” Databases may make more sense than others BUT THEN, at some point, I consider each definition is right, true and valid.</p>
<p>Some definitions make more sense than others because they focus on different aspects of importance for the design, programming, use, maintenance and administration of a Database and these different aspects are what really matter for a usable Database. It just happens that all these aspects are impacted by the nebulous concept of “Database size”.</p>
<p>So, Does this mean that it does not matter if you are able to define if a particular Database is big or not?</p>
<p>Certainly not. What it mean is you will apply the concept differently while evaluating different design/operational/administrative aspects of your Database. It also means that every time this concept will be nebulous.</p>
<p>As an example: Database Index strategy (an aspect of Database design) is impacted by record count for each table (a measure of “size”), by record size times record count (another measure of “size”), and by Query Vs. Creation/Update/Delete operations ratio (an aspect of Database usage).</p>
<p>Query response times are better if indexes are used for tables with large amount of records. Depending on the nature of your WHERE, ORDER BY and record-aggregation clauses you may need several indexes for certain tables.</p>
<p>Creation, Update and Delete operations are impacted negatively with the increase of number of indexes on the affected table(s). More indexes for an affected table means more changes that the RDBMS must perform, spending more time and more resources to apply those changes.</p>
<p>Also, if your RDBMS spends more time to apply those changes, then the locks are maintained for longer times also, impacting the response times other queries being sent to the system at the same time.</p>
<p>So, How do you balance the quantity and design of your indexes? How do you know if you need an additional index and if by adding that index you will not be introducing a big negative impact on query response times? Answer: You test and profile your database against a target load as per your load/performance requirements and analyze the profiling data in order to discover if further optimizations/redesigns/indexes are needed.</p>
<p>Different Index strategies are required for different Query Vs. Creation/Update/Delete operations ratios. If your Database is under a heavy load of queries but is rarely updated, the performance for the overall application will be better if you add every index that improves query response times. On the other hand, if your Database is constantly being updated but there are not large query operations, then the performance will be better if you use less indexes.</p>
<p>There are other aspects of course: Database Schema design, Storage Strategy, Network design, Backup strategy, Stored Procedures/Triggers/Etc. programming, Application Programming (against the Database), Etc. All these aspects are impacted differently by distinct concepts of “size” (record size, record count, index size, index count, schema design, storage size, etc.).</p>
<p>I'd like to have more time as this topic is fascinating. I hope this small contribution serves as an starting point for you in this fascinating world of SQL.</p>
http://stackoverflow.com/questions/646538/cms-for-a-personal-website-asp-net-c/647023#6470230Answer by vmarquez for CMS for a personal website - ASP.NET/C#vmarquez2009-03-15T00:41:37Z2009-03-15T00:41:37Z<p>For community sites and using .NET I think the best is Community Server Express Edition, by Telligent. This product is free.</p>
<p>There are several paid versions also if your site grows and you need some administrative advanced options.</p>
<p>You can find it here: <a href="http://communityserver.com/products/express/" rel="nofollow">http://communityserver.com/products/express/</a></p>
<p>From their home page: </p>
<p>Telligent Community Server is the proven enterprise community software solution for creating online communities. Thousands of customers, (to include Dell, Electronic Arts, Microsoft, Intel, and MySpace.com), rely on Community Server to solve their Digital Marketing and Enterprise 2.0 collaboration needs.</p>
<p><a href="http://communityserver.com" rel="nofollow">http://communityserver.com</a></p>
<p>Edit: I have used DNN in the past and find it very time consuming and very slow.</p>
http://stackoverflow.com/questions/624953/how-does-a-3-monitors-setup-benefit-you/624964#6249641Answer by vmarquez for How does a '3 monitors-setup' benefit you?vmarquez2009-03-09T03:55:00Z2009-03-09T03:55:00Z<p>Your answer is right here: <a href="http://stackoverflow.com/questions/99846/three-monitors">http://stackoverflow.com/questions/99846/three-monitors</a></p>
http://stackoverflow.com/questions/199576/can-vmware-server-be-installed-in-a-x-less-host2Can vmWare Server be installed in a X-less host?vmarquez2008-10-14T00:31:34Z2009-01-03T20:12:52Z
<p>I am planning to move my vmWare's Virtual Machines from a Windows host to a Linux host (Ubuntu). It is possible to run vmWare Server in a Linux host that does not have the graphical environment (does not have X)?</p>
<p>I just wonder how the graphical setup of Windows/Linux guest work in this case.</p>
<p>Thanks in advance for your time.</p>
<p>Victor Marquez</p>
http://stackoverflow.com/questions/392097/are-design-patterns-something-you-invent-as-you-go/392108#3921080Answer by vmarquez for Are design patterns something you invent as you govmarquez2008-12-24T19:32:54Z2008-12-29T03:01:02Z<p>You can and you may well will if you find yourself working in a big project with lots of extreme abstraction opportunities.</p>
<p>But, in general, design patterns are created by people who dedicate time to study software development in the large, from lots of own and other's projects.</p>
<p><a href="http://en.wikipedia.org/wiki/Design_Patterns" rel="nofollow">http://en.wikipedia.org/wiki/Design_Patterns</a></p>
http://stackoverflow.com/questions/392153/installing-and-running-a-net-windows-service-at-a-web-host/392159#3921590Answer by vmarquez for Installing and running a .NET Windows service at a web hostvmarquez2008-12-24T20:12:50Z2008-12-24T20:20:38Z<p>What you are looking for in ASP.NET is a background process. This is a process implemented as a separate thread that you will store at the Application object.</p>
<p>In general it is not advisable to do something like this because it does not scale well. It will compete for resources with IIS/ASP.NET proccess.</p>
<p>Google it for more information --> <a href="http://www.google.com.mx/search?hl=es&q=aps.net+implementing+a+background+process&btnG=Buscar&meta=" rel="nofollow">google search</a>.</p>
<p>EDIT: As other's have said. Usually ISPs will not let you install service apps. Using a background process is the solution on those cases.</p>
http://stackoverflow.com/questions/317089/how-to-optimize-access-of-this-data/317113#3171130Answer by vmarquez for How to optimize access of this Data ?vmarquez2008-11-25T11:51:37Z2008-11-25T11:51:37Z<p>I would add an UID field and several Dimensions for Date (i.e. years table, years+months table, years+quarters table, fiscal years table, etc.).</p>
http://stackoverflow.com/questions/275072/what-is-the-easiest-way-to-parallelize-my-c-program-across-multiple-pcs/275084#2750842Answer by vmarquez for What is the easiest way to parallelize my C# program across multiple PCsvmarquez2008-11-08T19:28:47Z2008-11-08T19:35:02Z<p>The answer depends on the nature of the work your application will be doing. Different types of work have different possible parallelization solutions. For some types there is no possible/feasible way to parallelize.</p>
<p>The easiest scenario I can think of is for an application which work can easily be broken in discrete job chunks. If this is the case, then you simply design your application to work on a single job chunk. Provide your application with the ability to accept new jobs and deliver the finished jobs. Then, build a job scheduler on top of it. This scheduler can be part of the same application (configure one machine to be the scheduler and the rest as clients), or a separate application.</p>
<p>There are other things to consider: How will occur the communication among machines (files?, network connections?); the application need to be able to report/be_queried about percent of job completed?; there is a need to be able to force the application to stop proccessing current job?; etc.).</p>
<p>If you need a more detailed answer, edit your question and include details about the appplication, the problem the application solves, the expected amount of jobs, etc. Then, the community will come with more specific answers.</p>
http://stackoverflow.com/questions/255175/how-do-i-avoid-being-tagged-as-a-techie/255181#2551811Answer by vmarquez for How do I avoid being tagged as a "techie"?vmarquez2008-10-31T22:46:33Z2008-10-31T22:53:45Z<p>Oops!!! Wrong career!!! Work for something non tech related.</p>
<p>Ok... seriously... perhaps you a re using too much technical words to offer/describe solutions? Try to use a more business related argumentation to push your propossed solutions.</p>
http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/245432#2454320Answer by vmarquez for What is the best UI you've ever used?vmarquez2008-10-29T00:48:51Z2008-10-29T00:48:51Z<ul>
<li>Memory resident text editor Sidekick. Back in the nineties.</li>
<li>DOS.</li>
<li>Turbo Pascal.</li>
</ul>
http://stackoverflow.com/questions/242404/sort-four-points-in-clockwise-order/242526#242526-1Answer by vmarquez for Sort Four Points in Clockwise Ordervmarquez2008-10-28T08:10:20Z2008-10-28T08:10:20Z<p>Wedge’s Answer is correct.</p>
<p>To implement it easily, I think the same way as smacl: you need to find the boundary’s center and translate your points to that center.</p>
<p>Like this:</p>
<pre><code>centerPonintX = Min(x) + ( (Max(x) – Min(x)) / 2 )
centerPonintY = Min(y) + ( (Max(y) – Min(y)) / 2 )
</code></pre>
<p>Then, decrease centerPointX and centerPointY from each poin in order to translate it to boundary’s origin.</p>
<p>Finally, apply Wedge’s solution with just one twist: Get the Absolute value of arctan(x/y) for every instance (worked for me that way).</p>
http://stackoverflow.com/questions/241575/framework-cms-suggestions-for-enterprise-website-intranet-ive-got-to-convince/241785#2417852Answer by vmarquez for Framework/CMS suggestions for enterprise website & intranet (I've got to convince the president its solid!)vmarquez2008-10-28T00:03:04Z2008-10-28T00:03:04Z<p>I agree with Will's, braveterry's and Divamatrix's comments. Fully.</p>
<p>There are tons of questions/issues/risks/considerations to take in order to succesfully launch a CMS solution for a medium/big enterprise. I will not repeat what Will and braveterry had said, instead of it I will offer a different point of view:</p>
<p><strong>CMS for a medium-big company is not about Software. It is about proccesses and policies.</strong></p>
<p>Which framework/tool to use must be dependent on exact requirements (kind of content, sources for content, who will be responsible to capture and create content, what are their abilities, who will be approving content updates, which departments will have a voice on what goes into the home page?, under which policies will be selected the content for the home page?, what will be the puropose for the home page? (marketing? sales? technical? branding?).</p>
<p>If the answers to these questions (there are lot more) are not clear to you or even if you do not get why are SO important. Then I think you need to contract a seasoned consulting firm.</p>
<p>PS: This gives me the idea to publish some sort of paper about this topic but that would take some days as I currently do not have the time to prepare it.</p>
http://stackoverflow.com/questions/241602/what-non-technical-items-do-you-keep-on-your-desk/241722#2417222Answer by vmarquez for What non-technical items do you keep on your desk?vmarquez2008-10-27T23:36:26Z2008-10-27T23:36:26Z<ul>
<li>Headphones.</li>
<li>3 of my 5.1 sound system speakers (left, front, right).</li>
<li>Mug for coffee, which my secretary refills several times a day).</li>
<li>1 Litter of watter (refilled as needed).</li>
<li>Air Condition, Amplifier and Fan remote controls.</li>
<li>Cup for cigarret ashes.</li>
<li>Wireless phone.</li>
<li>Several magazines, prints and papers to read and enter into my private wiki.</li>
<li>Pos-it notes, clips, etc.</li>
<li>Tupperware with assorted candies.</li>
<li>Several balls to excercise my hands when thinking.</li>
<li>Paper pads.</li>
<li>Several puzzle toys. Used primarily as a mean to distract my visitors and stop them from wasting my time (works great! I just start playing with some of the toys for 2 minutes and then left it someshwere between myself and the visitor, almost every time they take the bait and get distracted, then I turn to my monitors and continue working).</li>
</ul>
http://stackoverflow.com/questions/241269/method-for-email-testing/241355#2413550Answer by vmarquez for Method for email testingvmarquez2008-10-27T20:57:59Z2008-10-27T20:57:59Z<p>Sendmail has a Test Mode.</p>
<p>You just invoke sendmail with the <strong>-bt</strong> parameter. As an example:</p>
<p><code>/usr/lib/sendmail -bt -Ciu-testconfiguration.cf</code></p>
<p>Please be aware that in this method, Sendmail requires an special configuration on rewrite rules. You need to understand how Sendmail rewrites addresses in order to properly create a .cf file for Test Mode.</p>
<p><hr /></p>
<p>Edit: See this article: <a href="http://ussg.iu.edu/usail/mail/debugging/" rel="nofollow">http://ussg.iu.edu/usail/mail/debugging/</a></p>
http://stackoverflow.com/questions/239209/is-it-safe-to-assume-that-the-path-c-windows-system32-always-exists/239224#23922416Answer by vmarquez for Is it safe to assume that the path C:\WINDOWS\system32 always exists? vmarquez2008-10-27T06:45:09Z2008-10-27T06:45:09Z<p>No, you can't assume that.</p>
<p>Windows can be installed to a different path. One solution is to look for it by calling GetSystemDirectory (implemented as part of the Windows API).</p>
http://stackoverflow.com/questions/107385/favorite-option-for-source-control-under-70/238799#2387990Answer by vmarquez for Favorite option for source control under $70?vmarquez2008-10-26T23:38:51Z2008-10-26T23:38:51Z<p>Subversion, works great for me on my personal-1-developer projects.</p>
<p>I also use it for lots of projects with teams from 2 to 20 persons and from just a dozen of files to several thousands per project.</p>
<p>It has great clients/front-ends for all the major/popular IDEs and hoks to explorer and related tools.</p>
http://stackoverflow.com/questions/236835/what-to-do-with-a-stupid-client-request/237213#2372130Answer by vmarquez for What to do with a stupid client request?vmarquez2008-10-25T23:46:53Z2008-10-25T23:46:53Z<p>Thanks a lot to everybody. I have learned very useful and valid approaches and points of view. I up-voted every answer. All of them deserve it.</p>
http://stackoverflow.com/questions/236835/what-to-do-with-a-stupid-client-request4What to do with a stupid client request?vmarquez2008-10-25T18:58:29Z2008-10-25T23:46:53Z
<p>I won the bid on a project and now the client (who is itself from IT Department) wants me to architect/implement the solution in a very particular way. I am sure the application will fail that way for performance problems. And it will not be easily scalable.</p>
<p>This particular client/user does not know ANYTHING about the platform and language I will be using (ASP.NET / SQL Server). His only knowledge is in Cobol and trying to make him to understand my POV is just making him angry.</p>
<p>He contacted me. He was the person who selected me as a winner on the bid. He is who will be approving my checks. He is my only contact with this company.</p>
<p>I do not feel comfortable with providing a solution I know will fail and I do not want to be known as the stupid programmer who make it fail. I do know their real needs and usage patterns for this application because I have done projects for them in the past.</p>
<p>On the other hand, doing this in his way will just extend my contract more time (so, more financial gains) in order to solve the problems by modifying the code.</p>
<p>Should I resign from the project knowing that probably I will be losing this client forever? </p>
<p>Or…</p>
<p>Should I take the pill and take financial advantage from an extended project and just assume the bad fame as a cost?</p>
http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-page/1703725#1703725Comment by vmarquez on Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-14T22:45:49Z2009-11-14T22:45:49Z@Bryan. I do realize it is easy. It is my last resort just because I find it easier to implement it in Global.asax. For my project needs (a project template specific for VS 2005 / .NET 2.0) is sufficient.http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-page/1706074#1706074Comment by vmarquez on Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-14T22:44:00Z2009-11-14T22:44:00Z@Ishtar, I have tested your solution and it works perfectly. The only missing part was to call MyBase.OnInit(e). In my case, I called it just at the start of OnInit override. Thank you.http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-page/1706074#1706074Comment by vmarquez on Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-10T18:59:20Z2009-11-10T18:59:20Z@Ishtar: PageAdapters! I have to confess I have read about that in the past but never tried it. I will look at it for sure. I will let you know how it goes.http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-page/1703725#1703725Comment by vmarquez on Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-10T18:57:48Z2009-11-10T18:57:48Z@Bryan: Creating a custom HttpModule is my last resort. For now, I have verified customizing culture formats works perfectly at Application_BeginRequest in Global.asax.http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-page/1703725#1703725Comment by vmarquez on Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-09T20:57:39Z2009-11-09T20:57:39Z@Bryan: The why is just for convenience. Subclassing for just this small requirement seems a little too much. I wil check if the culture has been already loaded from Web.config at BeguinRequest. It it is the case, then I can place my code directly at Global.asax and avoid the subclassing.http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-page/1699319#1699319Comment by vmarquez on Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-09T20:42:57Z2009-11-09T20:42:57Z@Ishtar: Setting the culture was not the question. I am aready setting the Culture at Web.config. I will update my question to be more clear.http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-pageComment by vmarquez on Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-09T20:41:52Z2009-11-09T20:41:52Z@Simon: Yes, the code is working in PreInit (I will update my question in a moment). But what I was trying to avoid was the need to subclass Page.http://stackoverflow.com/questions/1699272/override-pagepreinit-globally-without-subclassing-page/1699319#1699319Comment by vmarquez on Override Page_PreInit() globally without subclassing Page?vmarquez2009-11-09T06:06:40Z2009-11-09T06:06:40ZThank you Ishtar. I already knew that. My question specifies WITHOUT creating a custom class.http://stackoverflow.com/questions/1658844/is-the-regex-a-z-valid-and-if-yes-then-is-it-the-same-as-a-za-z/1658859#1658859Comment by vmarquez on is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]vmarquez2009-11-02T00:25:49Z2009-11-02T00:25:49ZIt was perfectly clear to me. No muddy waters.http://stackoverflow.com/questions/1647117/question-about-recursionComment by vmarquez on Question about recursionvmarquez2009-10-29T23:26:06Z2009-10-29T23:26:06ZOh! Come on! Closed? This was totally programming related and also a questionhttp://stackoverflow.com/questions/1647117/question-about-recursion/1647123#1647123Comment by vmarquez on Question about recursionvmarquez2009-10-29T23:23:50Z2009-10-29T23:23:50ZBetter approach: <a href="http://tinyurl.com/ks9wby" rel="nofollow">tinyurl.com/ks9wby</a>http://stackoverflow.com/questions/1638602/web-development-should-i-learn-php/1639981#1639981Comment by vmarquez on Web development: Should I learn PHP?vmarquez2009-10-29T02:13:28Z2009-10-29T02:13:28ZI'd like to see this answer at the top!http://stackoverflow.com/questions/1557592/is-using-a-singleton-for-the-connection-a-good-idea-in-asp-net-website/1557793#1557793Comment by vmarquez on Is using a singleton for the connection a good idea in ASP.NET websitevmarquez2009-10-13T01:28:39Z2009-10-13T01:28:39ZYou are correct saying singletons should not be used for Database connections. About your other affirmation: Using only one connection for all your queries within a single page request is in most cases. If processing occurs between Database calls, the connection remains open longer than necessary. It is always better to open one connection for each Database call (or consecutive calls) required.http://stackoverflow.com/questions/1463178/can-aptitude-for-learning-programming-paradigms-be-influenced-by-culture-or-nativComment by vmarquez on Can aptitude for learning Programming paradigms be influenced by culture or native language's grammar?vmarquez2009-09-23T00:33:05Z2009-09-23T00:33:05Z@Breton. Even if this kind of hypotesis could not be tested does not mean it will never be able to be tested. A lot in Sciende remains untested/unproved for long time and still provide the basis for advances (Relativity tehory is still not perfect but used every day).http://stackoverflow.com/questions/1463178/can-aptitude-for-learning-programming-paradigms-be-influenced-by-culture-or-nativComment by vmarquez on Can aptitude for learning Programming paradigms be influenced by culture or native language's grammar?vmarquez2009-09-23T00:29:51Z2009-09-23T00:29:51Z@silky Yes, it is argumentative. Everything in Science is innitially (Remember about characterization, hypotesis, confirmation, etc?). This kind of questions have the power to spark someone on to an idea that may well make our profession to advance in the future. I applaud this question!