User bbqchickenrobot - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:08:06Z http://stackoverflow.com/feeds/user/90890 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1062098/file-replication-across-wan-link 0 File Replication across WAN link bbqchickenrobot 2009-06-30T06:52:44Z 2009-11-29T15:32:58Z <p>Wondering if anyone can suggest a good file replication tool that will replicate across a WAN link. No fancy stuff, i.e. VPN, we're looking for just a straight up TCP/IP connection that will sync bi-directionally. </p> <p>We have looked at robo-copy, rsync (which we have in place currently but it's only one way) and a few others smaller technologies. Any suggestions would help! Oh, this is for Windows only. No linux/unix tools please.</p> http://stackoverflow.com/questions/1587502/how-to-get-visualstudio-2010-cool-tools-without-spending-12-000/1733295#1733295 0 Answer by bbqchickenrobot for How to get VisualStudio 2010 cool tools without spending $12,000 bbqchickenrobot 2009-11-14T04:40:36Z 2009-11-14T04:40:36Z <p>Here's how to do it.... if you upgrade to an MSDN premium subscription and you currently have VS.NET 2008 professional and/or 2008 TS before March 22nd 2010 you will get ultimate upgrade for FREE. My source is the following article</p> <p><a href="http://www.theregister.co.uk/2009/10/19/visual%5Fstudio%5F2010%5Fsecond%5Fbeta%5Fpackaging/" rel="nofollow">http://www.theregister.co.uk/2009/10/19/visual%5Fstudio%5F2010%5Fsecond%5Fbeta%5Fpackaging/</a></p> <p>Edit: The info is located near the end of the article. Sounds like a pretty good deal to me!</p> http://stackoverflow.com/questions/1057315/db4o-running-in-asp-net-medium-trust-environment 0 db4o running in asp.net Medium Trust environment bbqchickenrobot 2009-06-29T09:04:46Z 2009-09-22T15:00:06Z <p>I am using the embedded client/server version of db4o (I called OpenServer() instead of OpenFile() method) so that I can host an asp.net website that will have several users reading and writing to the database simultaneously. The only issue is that the webhost that we use is a medium trust environment so it's throwing an error stating that the assembly doesn't support partially trusted callers... </p> <p>Wondering if anyone has any suggestions on how to get this to work. Thanks! </p> <p>:: UPDATE :: </p> <p>I have recompiled the db4o dll with the [AllowPartiallyTrustedCallers] attribute and now I am getting the following specific error: </p> <p>System.TypeInitializationException was unhandled by user code Message="The type initializer for 'DataObjecten.db4oManager' threw an exception." TypeName="DataObjecten.db4oManager" InnerException: System.Security.SecurityException Message="Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed." Source="Db4objects.Db4o" StackTrace: at Db4objects.Db4o.Internal.Platform4.AddShutDownHook(PartialObjectContainer container) at Db4objects.Db4o.Internal.PartialObjectContainer.Initialize1(IConfiguration config) at Db4objects.Db4o.Internal.PartialObjectContainer.Open() at Db4objects.Db4o.Internal.IoAdaptedObjectContainer..ctor(IConfiguration config, String fileName) at Db4objects.Db4o.Internal.ObjectContainerFactory.OpenObjectContainer(IConfiguration config, String databaseFileName) at Db4objects.Db4o.Db4oFactory.OpenFile(IConfiguration config, String databaseFileName) at Db4objects.Db4o.Db4oFactory.OpenServer(IConfiguration config, String databaseFileName, Int32 port, INativeSocketFactory socketFactory) at Db4objects.Db4o.Db4oFactory.OpenServer(IConfiguration config, String databaseFileName, Int32 port) at DataObjecten.db4oManager..cctor() InnerException: </p> http://stackoverflow.com/questions/1303241/contextmenustrip-custom-layout 0 ContextMenuStrip Custom Layout bbqchickenrobot 2009-08-19T23:50:45Z 2009-08-20T05:38:55Z <p>I'm trying to have a Windows Forms ContextMenuStrip control display a list of countries, about 200 total. Currently it displays them all vertically which creates for a long wait time to scroll to countries near the bottom of the list. I've tried messing with the ContextMenuStrip.LayoutStyle property but it hasn't gotten me anywhere. Might anyone have any tips for this? I've also search google but haven't found the answer. Thanks for any help! </p> http://stackoverflow.com/questions/1190802/what-exactly-constitutes-a-working-knowledge-of-c/1190853#1190853 4 Answer by bbqchickenrobot for What exactly constitutes “a working knowledge of C++”? bbqchickenrobot 2009-07-27T21:53:03Z 2009-07-27T22:11:58Z <p>I think that is a subjective sort of thing. But in a general sense, <em>I</em> would assume this would constitute one knowing how C/C++ works in general. Familiarity with the language, i.e., keywords and basic language constructs like loops, syntax, classes, OOP, exceptions, templates, pre-processor directives, macros, pointers, deconstructors, Memory allocation/deallocation, etc, that are <em>specific</em> to C++. </p> <p>I would assume this would also entail an individual being able to read C++ source code and understand (on a general level) what is going on or trying to be accomplished within the program. I would expect the ability to fix minor bugs within a C++ program. Maybe have an academic understanding of C++ constructs like far, near and null pointers, function pointers and call backs. Also, maybe some conceptual understanding of ATL, WTL and/or MFC and COM if it's a Microsoft based environment - including a basic idea of what STL is.</p> http://stackoverflow.com/questions/1178461/progmatically-rewritemap-rules-at-runtime/1180763#1180763 0 Answer by bbqchickenrobot for progmatically rewritemap rules at runtime bbqchickenrobot 2009-07-25T00:14:34Z 2009-07-25T00:14:34Z <p>Basically, you could load some rules you create in your application from some persisted store (web.config file, database, etc...) at the application startup and then keep those rules stored in memory. I don't have the code for that, but I do have a code example for rewriting URLs at runtime from within ASP.NET. Check out this link for the code snippet: </p> <p><a href="http://www.upfromthesky.com/blog/post/2009/05/04/URL-Rewriting-in-ASPNET-via-HttpModule.aspx" rel="nofollow">http://www.upfromthesky.com/blog/post/2009/05/04/URL-Rewriting-in-ASPNET-via-HttpModule.aspx</a></p> <p>You'll notice that I didn't have many rules so I just hard coded the rules within - but you could add something to load the rules (for example, as regular expressions) from memory to compare the current web url request to. Again, those could also be stored in a xml file so you can alter without having to recompile the code each time.</p> http://stackoverflow.com/questions/1105625/visual-c-application-as-a-frontend-to-ms-access-database-multiuser-data-acces/1149288#1149288 2 Answer by bbqchickenrobot for Visual C++ application as a frontend to MS Access database - multiuser data access and canvas-like GUI questions. bbqchickenrobot 2009-07-19T05:21:10Z 2009-07-19T05:21:10Z <ol> <li><p>I wouldn't use C++ to do this, there is no real need. I would suggest VB.NET or C#... unless of course you're already highly familiar with C++ and not the other languages.</p></li> <li><p>There is no <em>free</em> control that comes with the .NET framework to do what you described. The third party controls suggested by others here are great. There is also another at <a href="http://www.janusys.com" rel="nofollow">http://www.janusys.com</a> </p></li> <li><p>Multi-User networked database systems should not be implemented using Microsoft Access as it doesn't quite function well in that specific environment. You could use something like WCF to interface to an access MDB file and have all apps speak to the WCF component, but that's totally unnecessary IMO. I would recommend using Microsoft SQL Server 2008 Express. Very powerful and free for a certain amount of users. If you want to go open source, I would recommend using Postgres instead of MySql. This is just my recommendation as I believe it's a better system up to date with Relational Database standards. </p></li> <li><p>Try to use some other third party tools such as subsonic to interface with your database. Very helpful and fairly simple to use. www.subsonicproject.com.</p></li> </ol> http://stackoverflow.com/questions/1132757/how-do-i-setup-a-nested-chained-function-within-a-c-class/1132817#1132817 1 Answer by bbqchickenrobot for How do I setup a nested/chained function within a C# Class. bbqchickenrobot 2009-07-15T17:36:26Z 2009-07-15T17:36:26Z <p>Basically, your functions List_Departments() and List_Categories are returning some <em>typed</em> object correct? That being, the object returned would have to have a Method created in it's class definition called ToHTML(). If the two functions return the same type of object then, you only need to define it once. If they return two different types, then you will have to define the ToHTML() method on both return types class definitions.</p> <p>Unless I'm missing something here, these two functions don't require the static modifier.</p> <p>If the returning types are types that you don't have source code access to, then you can define an extention method for each type that will process the type of object being returned and can display the ToHTML() for it. </p> http://stackoverflow.com/questions/1101267/where-does-the-compiler-spend-most-of-its-time-during-parsing/1101299#1101299 -3 Answer by bbqchickenrobot for Where does the compiler spend most of its time during parsing ? bbqchickenrobot 2009-07-09T00:56:06Z 2009-07-09T00:56:06Z <p>Why wouldn't you optimize both?</p> http://stackoverflow.com/questions/1100750/whats-in-it-for-programmers-from-google-chrome-operating-system-dont-mix-with/1100804#1100804 3 Answer by bbqchickenrobot for What's in it for programmers from Google Chrome Operating System (don't mix with Google Chrome browser,please)? bbqchickenrobot 2009-07-08T22:07:35Z 2009-07-08T22:07:35Z <p>Basically, it's the wild frontier with the new OS. But, I believe they are speaking of running web apps on the desktop as opposed to traditional Win32/PECOFF executables from the OS. They are trying to move away from that model and create an OS for the SaaS model. </p> <p>That being said, who's to say they won't have an API or development platform to run desktop applications. But, for now, from what I heard was that the OS will be open source and to run your app on it, the preferred method will be to put it on a web server somewhere on an intranet or ineternet... </p> <p>That said, IMHO the java runtime will be ported and the Mono guys will definitely get something ported over I'm sure. The Google OS is slated to be open source, so we'll just have to wait and see what sort of groovy things are in it. Just like everything else (windows, facebook, PS3) there will be a way for programmers to make money from their apps tailored to the Chrome OS, assuming they get a market following. Bottom line? Money, that's what's in it.</p> http://stackoverflow.com/questions/1099457/dear-dba-i-want-to-use-linqtosql-instead-of-stored-procedures-because/1099511#1099511 0 Answer by bbqchickenrobot for Dear DBA - I want to use LinqToSQL instead of stored procedures because... bbqchickenrobot 2009-07-08T17:38:39Z 2009-07-08T17:38:39Z <p>Check this out, sort of been discussed here: </p> <p><a href="http://stackoverflow.com/questions/14530/linq-to-sql-vs-stored-procedures">http://stackoverflow.com/questions/14530/linq-to-sql-vs-stored-procedures</a></p> <p><hr /></p> <p>Also, we like to use linq for reading of data and stored procedures for the updating of data as there is some business logic in our sprocs (unfortunately). I don't agree with biz logic in sprocs however with the exception of the most rudimentary. There can be arguments for both sides and those would be relevant to your environment.</p> http://stackoverflow.com/questions/1071837/how-can-i-dynamically-change-the-style-of-some-text-depending-on-user-input/1071916#1071916 0 Answer by bbqchickenrobot for How can I dynamically change the style of some text depending on user input? bbqchickenrobot 2009-07-02T00:05:10Z 2009-07-02T00:05:10Z <p>This would depend on where the validation logic resides (as you mentioned this was a requirement). If you have a server side (asp.net/php/asp/coldfusion, etc) chunk of code (non ajax enabled then you would do this on the "post back" from the user. If you want to do this in java script then you would have to a) have the text validation performed via javascript or use javascript Ajax call to get the validation via the server side of things.</p> <p>Then, you could use a library like jQuery + CSS to go ahead and change the colors, etc...</p> <p>I believe in asp.net there are validation controls that will do this for you. Ajax as well.</p> http://stackoverflow.com/questions/1071856/when-should-one-try-to-eliminate-a-switch-statement/1071878#1071878 2 Answer by bbqchickenrobot for When should one try to eliminate a switch statement? bbqchickenrobot 2009-07-01T23:51:14Z 2009-07-01T23:51:14Z <p>This switch statement is fine. Do you guys not have any other bugs to attend to? lol </p> <p>However, there is one thing I noticed... You shouldn't be using index ordinals on the IReader[] object indexer.... what if the column orders change? Try using field names i.e. reader["id"] and reader["name"]</p> http://stackoverflow.com/questions/1070758/is-there-a-default-sql-driver-included-with-the-net-framework/1070811#1070811 0 Answer by bbqchickenrobot for Is there a default SQL Driver included with the .NET Framework? bbqchickenrobot 2009-07-01T19:09:57Z 2009-07-01T19:09:57Z <p>I believe the MSSQL ADO.NET Providers (drivers) are installed when the .NET runtime is instsalled, but it looks like you're rockin MySql. You're best bet is to use the .NET ADO.NET Provider for MySql (not the ODBC driver), it's called MySql Connecter/.NET. Technically, the ado.net provider still has to reside on the machine that's making the call to the database (i.e. - web server or client workstation) but you don't have to "install" it... you can package it with your app via xcopy or ClickOnce, etc... I believe the ODBC driver you speak of must be installed via installation exe or msi. Also, ODBC is old and slow and you should not use it unless there is a specific requirement to do so. Use this: </p> <p><a href="http://dev.mysql.com/downloads/connector/net/6.0.html" rel="nofollow">http://dev.mysql.com/downloads/connector/net/6.0.html</a></p> <p>You will be able to use ado.net just as if it were using MS SQL Server.</p> <p>This will also work with the entity framework i believe.</p> http://stackoverflow.com/questions/1070537/accessing-the-settings-app-config-of-the-calling-application/1070562#1070562 1 Answer by bbqchickenrobot for Accessing the settings (app.config) of the calling application bbqchickenrobot 2009-07-01T18:09:24Z 2009-07-01T18:09:24Z <p>Add a reference to System.Configuration to your proejct. </p> <p>Then in the particular .cs or .vb (or whatever) file you are wishing to make a reference to the config file add the following:</p> <p>C#: using System.Configuration; VB: Imports System.Configuration</p> <p>then you can access the web config by using something like this:</p> <p>C#: System.Configuration.COnfigurationManager.AppSettings["THE_SETTING_U_WANT"] ;</p> <p>VB: System.Configuration.COnfigurationManager.AppSettings("THE_SETTING_U_WANT") </p> <p>IF you want a full section I think there are methods in that class to do that as well. </p> http://stackoverflow.com/questions/1067236/c-c-testing-framework-like-junit-for-java/1067249#1067249 5 Answer by bbqchickenrobot for C/C++ testing framework (like JUnit for java) bbqchickenrobot 2009-07-01T04:17:21Z 2009-07-01T04:17:21Z <p>You can check these out: </p> <p><a href="http://gamesfromwithin.com/?p=29" rel="nofollow">http://gamesfromwithin.com/?p=29</a></p> <p><a href="http://www.opensourcetesting.org/unit_c.php" rel="nofollow">http://www.opensourcetesting.org/unit_c.php</a></p> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc136757.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc136757.aspx</a></p> http://stackoverflow.com/questions/45179/are-there-benefits-to-classic-asp-over-asp-net/1066891#1066891 0 Answer by bbqchickenrobot for Are there benefits to Classic ASP over ASP.net bbqchickenrobot 2009-07-01T01:25:16Z 2009-07-01T01:25:16Z <p>If you use classic asp at this point (without a mandate from your CTO) then you need to see a shrink. or you are a masochist. Or as satanist, in which case, you'd like it cuz you'd be in hell! :p </p> <p>On a serious note... for web applications use WebForms. </p> <p>For light, quick and dirty websites, use ASP.NET MVC. </p> <p>Good thing about ASP is that you can use VB.NET, C#, Eiffel, Boo or PHP for your language! For PHP check out Phalanger...</p> http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/1062530#1062530 0 Answer by bbqchickenrobot for Best way to copy millions of files between 2 servers bbqchickenrobot 2009-06-30T08:50:26Z 2009-06-30T08:50:26Z <p>Super Flexible may work for you as well. </p> http://stackoverflow.com/questions/211240/best-way-to-automatically-synchronize-files-between-linux-and-windows/1062499#1062499 0 Answer by bbqchickenrobot for Best way to automatically synchronize files between Linux and Windows bbqchickenrobot 2009-06-30T08:45:14Z 2009-06-30T08:45:14Z <p>Check out the application called Super Flexible. It may fit exactly what you need...</p> http://stackoverflow.com/questions/233966/whats-the-best-way-to-sync-large-amounts-of-data-around-the-world/1062446#1062446 1 Answer by bbqchickenrobot for What's the best way to sync large amounts of data around the world? bbqchickenrobot 2009-06-30T08:31:18Z 2009-06-30T08:31:18Z <p>Check out super flexible.... it's pretty cool, haven't used it in a large scale environment, but on a 3-node system it seemed to work perfectly. </p> http://stackoverflow.com/questions/813531/open-new-window-from-aspx-page-from-any-url 2 Open New Window from aspx page from *any* URL bbqchickenrobot 2009-05-01T22:17:37Z 2009-05-01T22:25:07Z <p>Is there any way to configure IIS or Web app to automatically open a new window when a hyper link is clicked? My issue isn't as trivial as it sounds, let me explain... I understand you can use javascript or target="_blank" in the anchor tag, but I don't always know when an anchor tag might be listed on the page... </p> <p>Reason is that its a user forum, think of stack overflow ;) where a user might enter a URL (allowed) and it's not necessarily known, or it was entered eons ago and there is no way to tell. </p> <p>I'm pretty sure the answer is no and i'll just have to analyze for URLs when the post/entry is being saved and convert it to do this then... any tips are appreciated! </p> http://stackoverflow.com/questions/801098/subsonic3-guids 0 Subsonic3 & GUIDs bbqchickenrobot 2009-04-29T06:21:52Z 2009-04-29T07:40:06Z <p>I have a table with a PrimaryKey that is set as uniqueidentifier (GUID) and it's autopopulated using the newsequentialid() function from sql server 2008... When I insert a row manually, everything works as normal. But when I insert the record using the subsonic class and the repository the GUID column defaults to all zero's and the database will enter that value. I need it to NOT do this and use the default value of the column... anyone else able to get around this issue?</p> http://stackoverflow.com/questions/771087/i-know-html-what-web-programming-language-should-i-learn-now/774970#774970 0 Answer by bbqchickenrobot for I know HTML; what web programming language should I learn now? bbqchickenrobot 2009-04-21T22:37:48Z 2009-04-21T22:37:48Z <p>Lots of PHP love here - there is an alternative that is awesomely a better alternative. Check out C#. With the free visual studio express IDE you can program asp.net websites using any windows computer. The resulting site can be run on Linux web servers as well considering they support the mono implementation of the .NET runtime (aka XSP). PHP is cool and all, but some of the features are still reminiscent of older web development methods. </p> <p>I've also heard that Ruby on Rails is great for beginners. Java/JSP is also a great framework to learn. </p> <p>What I did for myself when I was first learning was to download each of the frameworks, purchased a book about each framework and then went through the book learning the basics of each offering. Then, I was able to make my own decision about what I should learn. I eventually chose ASP.NET. Also, you're going to want to learn a database technology like MySql, MS SQL Server, Oracle, etc... Good luck.</p> <p>P.S. - In my opinion the best Editors (IDE's) around are in the Visual Studio family. Notepad++ I use as well. But again - it also depends on what platform/language you are talking about. For Ruby, I'm not sure, maybe eclipse. For Java, it could be Netbeans or Eclipse. For any Microsoft related technology, DEFINITELY Visual Studio. All around functionality and productivity booster is Visual Studio IMO.</p> http://stackoverflow.com/questions/758235/how-should-i-create-the-subsonic-3-0-db-context-class/758303#758303 2 Answer by bbqchickenrobot for How should I create the subsonic 3.0 DB context class? bbqchickenrobot 2009-04-16T22:31:49Z 2009-04-16T22:31:49Z <p>Don't know if you have the latest bits from SVN with a bug, but my version from a few days ago appears to be working fine. Here is what my DB class starts off with: </p> <pre><code>public partial class DB : IQuerySurface { BatchQuery _batch = null; public IDataProvider DataProvider; public DbQueryProvider provider; private IDatabaseSchema _schema; public IDatabaseSchema Schema { get { return _schema; } } public DB() { DataProvider = ProviderFactory.GetProvider("Northwind"); Init(); } public DB(string instanceName, string connectStr) { SubSonic.DataProviders.ConnectionStringProvider.Instance.AddLocalConnectionString( instanceName, connectStr, "System.Data.SqlClient"); DataProvider = ProviderFactory.GetProvider(instanceName); Init(); } </code></pre> <p>... etc... </p> <p>I used the advanced version of the templates.</p> http://stackoverflow.com/questions/749852/sql-server-for-c-programmers/749950#749950 0 Answer by bbqchickenrobot for SQL Server for C# Programmers bbqchickenrobot 2009-04-15T01:14:36Z 2009-04-15T01:14:36Z <p>I tend to like books because I can read them anywhere, I can go at my own pace and I can get eBook copies (when using apress). I also happen to learn more efficiently in this manner as I already know most of the concepts, like database types.. int, bool, guid, etc... you will know those as well. So, essentially, I would recommend the apress series of books - very comprehensive IMO. And you can generally find them used for very cheap on Amazon... Here is one tailored to you: </p> <p><a href="http://rads.stackoverflow.com/amzn/click/1590599586" rel="nofollow">http://www.amazon.com/Beginning-SQL-Server-2008-Developers/dp/1590599586/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1239758026&amp;sr=1-1</a></p> http://stackoverflow.com/questions/1101267/where-does-the-compiler-spend-most-of-its-time-during-parsing/1101299#1101299 Comment by bbqchickenrobot on Where does the compiler spend most of its time during parsing ? bbqchickenrobot 2009-09-21T23:46:19Z 2009-09-21T23:46:19Z it's a rhetorical question/answer. get over it. http://stackoverflow.com/questions/1303241/contextmenustrip-custom-layout/1303299#1303299 Comment by bbqchickenrobot on ContextMenuStrip Custom Layout bbqchickenrobot 2009-08-20T00:35:38Z 2009-08-20T00:35:38Z Thought about it - but, the business requirements aren't asking for that. They want a full alphabetical list. If there is not a way, then we may have to go the route you suggested. http://stackoverflow.com/questions/1178461/progmatically-rewritemap-rules-at-runtime/1180763#1180763 Comment by bbqchickenrobot on progmatically rewritemap rules at runtime bbqchickenrobot 2009-07-28T21:45:10Z 2009-07-28T21:45:10Z Oh, i see... didn't catch that. Unfortunately, I haven't used that particular module. I have used others and found them to be a pain when needing to add rules programatically so I used the method I displayed above. http://stackoverflow.com/questions/1190802/what-exactly-constitutes-a-working-knowledge-of-c/1190853#1190853 Comment by bbqchickenrobot on What exactly constitutes “a working knowledge of C++”? bbqchickenrobot 2009-07-27T22:04:38Z 2009-07-27T22:04:38Z basically Neil, i'm giving the guy specifics to what he asked about and what he <i>might</i> hear or be asked to discuss during an interview. No need to get picky. http://stackoverflow.com/questions/1190802/what-exactly-constitutes-a-working-knowledge-of-c/1190853#1190853 Comment by bbqchickenrobot on What exactly constitutes “a working knowledge of C++”? bbqchickenrobot 2009-07-27T22:02:15Z 2009-07-27T22:02:15Z true, but it still may be good to know during an interview... http://stackoverflow.com/questions/1105625/visual-c-application-as-a-frontend-to-ms-access-database-multiuser-data-acces/1123181#1123181 Comment by bbqchickenrobot on Visual C++ application as a frontend to MS Access database - multiuser data access and canvas-like GUI questions. bbqchickenrobot 2009-07-19T05:24:28Z 2009-07-19T05:24:28Z id stay away from new mysql implementations at this point. The future is uncertain. http://stackoverflow.com/questions/1132757/how-do-i-setup-a-nested-chained-function-within-a-c-class/1132817#1132817 Comment by bbqchickenrobot on How do I setup a nested/chained function within a C# Class. bbqchickenrobot 2009-07-15T17:44:45Z 2009-07-15T17:44:45Z Be careful no to overuse extension methods... http://stackoverflow.com/questions/1100750/whats-in-it-for-programmers-from-google-chrome-operating-system-dont-mix-with/1100804#1100804 Comment by bbqchickenrobot on What's in it for programmers from Google Chrome Operating System (don't mix with Google Chrome browser,please)? bbqchickenrobot 2009-07-09T20:51:58Z 2009-07-09T20:51:58Z To be honest, I dont see them taking out microsoft unless they can break into the 3D video game market. Windows is king there... http://stackoverflow.com/questions/1100750/whats-in-it-for-programmers-from-google-chrome-operating-system-dont-mix-with/1100804#1100804 Comment by bbqchickenrobot on What's in it for programmers from Google Chrome Operating System (don't mix with Google Chrome browser,please)? bbqchickenrobot 2009-07-09T20:50:43Z 2009-07-09T20:50:43Z @Mark - Just because it doesn't have X doesn't mean it won't have a GUI. Obviously to render the chrome browser to screen it's going to need some sort of &quot;windowing&quot; system. It's going to be open source, so as with many other projects, I can see hacks and add-ons that make this into what windows/linux is. If there is a Kernel, there is a way ;) http://stackoverflow.com/questions/1101267/where-does-the-compiler-spend-most-of-its-time-during-parsing/1101299#1101299 Comment by bbqchickenrobot on Where does the compiler spend most of its time during parsing ? bbqchickenrobot 2009-07-09T20:45:15Z 2009-07-09T20:45:15Z Very perceptive Eliseo. You're right, it's a question! ;) http://stackoverflow.com/questions/1100750/whats-in-it-for-programmers-from-google-chrome-operating-system-dont-mix-with/1100796#1100796 Comment by bbqchickenrobot on What's in it for programmers from Google Chrome Operating System (don't mix with Google Chrome browser,please)? bbqchickenrobot 2009-07-08T22:08:08Z 2009-07-08T22:08:08Z Good point ... learning is another thing, but lets hope it doesn't stay there or it might be like anohter BeOS. XD http://stackoverflow.com/questions/14530/linq-to-sql-vs-stored-procedures/336310#336310 Comment by bbqchickenrobot on LINQ-to-SQL vs stored procedures? bbqchickenrobot 2009-07-08T18:27:41Z 2009-07-08T18:27:41Z it's easy to fail with pointers in C/C++/C# does it mean it should never be used? http://stackoverflow.com/questions/14530/linq-to-sql-vs-stored-procedures/187578#187578 Comment by bbqchickenrobot on LINQ-to-SQL vs stored procedures? bbqchickenrobot 2009-07-08T18:25:57Z 2009-07-08T18:25:57Z Your various applications should all be using a <i>common</i> data access layer (of course, that isn't always the case). If so, then, you can make a single change to the common library and redeploy. You can also use something like WCF to handle the data acess for you. There's a nice layer of abstraction that could technically use linq to access data behind the scenes. I guess it all just depends on what your guys come up with for your requirements in regards to using SPs vs Linq. http://stackoverflow.com/questions/1099457/dear-dba-i-want-to-use-linqtosql-instead-of-stored-procedures-because/1099495#1099495 Comment by bbqchickenrobot on Dear DBA - I want to use LinqToSQL instead of stored procedures because... bbqchickenrobot 2009-07-08T17:41:04Z 2009-07-08T17:41:04Z Agreed on the type safety thing, that's the largest benefit for me. http://stackoverflow.com/questions/1099457/dear-dba-i-want-to-use-linqtosql-instead-of-stored-procedures-because/1099506#1099506 Comment by bbqchickenrobot on Dear DBA - I want to use LinqToSQL instead of stored procedures because... bbqchickenrobot 2009-07-08T17:40:31Z 2009-07-08T17:40:31Z Both procedures and Linq2sql prevent against this. Any paramterized queries will prevent against this.