User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:28:17Z http://stackoverflow.com/feeds/user/68137 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1777730/learning-c-from-a-c-background/1777895#1777895 0 Answer by unknown (google) for Learning c++ from a C# background unknown (google) 2009-11-22T05:18:56Z 2009-11-22T05:18:56Z <p>I've actually done the conversion the other way around. I wouldn't say C++ is hard. Only as hard as you can make it. There are certain standard to follow with such things as memory allocation, pointers, type casting and etc. But it's nothing you cannot iron out as you get deeper into it. </p> <p>Actually, (and some may see this as an overkill) if i were you i would try to get a decent assembler book and read the first few chapters on registers, memory addresses, stack, heap and etc. I think it'll paint a better picture for you when you start messing with memory management, which is probably the hardest thing to grasp in C/C++.</p> http://stackoverflow.com/questions/1777555/buiding-asp-net-application-without-session-state/1777609#1777609 0 Answer by unknown (google) for Buiding ASP.NET application without Session State? unknown (google) 2009-11-22T02:22:24Z 2009-11-22T04:16:50Z <p>Check out ASP.NET Membership Profiles. It allows you to serialize and store/retrieve objects per user account, regardless of whether the user is anonymous or not. I've been able to use this successfully with lengthy wizard-type online applications.</p> http://stackoverflow.com/questions/1777519/how-much-should-i-stretch-the-truth-on-my-resume/1777584#1777584 1 Answer by unknown (google) for How much should I "stretch the truth" on my resume? unknown (google) 2009-11-22T02:12:12Z 2009-11-22T02:12:12Z <p>If an employer contacts you regarding an interview after reviewing your resume, chances are they know what they're getting into. Don't lie about anything on your resume or during interviews. Be honest. If you lie on a subject you don't know much about, it may actually backfire when your interviewer starts asking questions about it. They know you don't have much experience and the interview is probably not going to be very involved. Just present yourself as someone who's willing to learn. If you don't know about a certain technology, don't just say 'I don't know.' Instead, they 'I'm not familiar with that, but i would be happy to learn about it.' Mention any projects that you've worked on on your own time. </p> http://stackoverflow.com/questions/1768486/how-not-to-scare-programmers-using-visual-source-safe/1768516#1768516 1 Answer by unknown (google) for How not to scare programmers using Visual Source Safe :-) unknown (google) 2009-11-20T05:28:09Z 2009-11-20T05:28:09Z <p>I think Team Foundation Server would be the next logical step up from Visual Source Safe. You can also check out <a href="http://www.sourcegear.com/vault/vs/subversion/" rel="nofollow">SourceGear Vault</a> as another alternative to VSS.</p> http://stackoverflow.com/questions/1621774/which-programming-language-is-manageable-by-an-11-year-old-kid/1657565#1657565 0 Answer by unknown (google) for Which programming language is manageable by an 11 year old kid? unknown (google) 2009-11-01T16:18:35Z 2009-11-01T16:18:35Z <p>QBasic? I had a lot of fun with it :)</p> http://stackoverflow.com/questions/1653363/datacontextprovider/1653449#1653449 1 Answer by unknown (google) for DataContextProvider unknown (google) 2009-10-31T04:53:36Z 2009-10-31T04:53:36Z <p>First of all pick your datacontext caching strategy. Use DataContextThreadCache if you're working in winforms, where the context is cached in your running thread context. Use DataContextWebCache if you're working with web apps where the context is cached in HTTP run-time cache.</p> <p>To register your datacontext look at DataContextProvider.RegisterDataContext and its overloads. Here is an example:</p> <pre><code>DataContextProvider.RegisterDataContext&lt;YourDataContextType, YourCacheStrategyType&gt;(contextKey, contextConnectionString) </code></pre> <p><strong>contextKey</strong>: is the key you will use to retrieve your data context with.</p> <p><strong>contextConnectionString</strong>: is the connection string for your data context.</p> <p>This call will use the type of DataContext you specified to create an new instance of it. It will then cache it using the specific caching strategy you specified also. This should probably be called somewhere during the initialization phase of your application. Your repository can then use GetDataContext as outlined in that blog post to get the context instance.</p> http://stackoverflow.com/questions/1653248/creating-a-catch-all-apptoolbox-class-is-this-a-bad-practice/1653293#1653293 2 Answer by unknown (google) for Creating a Catch-All AppToolbox Class - Is this a Bad Practice? unknown (google) 2009-10-31T03:20:03Z 2009-10-31T03:20:03Z <p>I think a static helper class is the first thing that comes to mind. It is so common that some even refer to it as part of the object-oriented design. However, the biggest problem with helper classes is that they tend to become a large dump. I think i saw this happen on a few of the larger projects i was involved in. You're working on a class and don't know where to stick this and that function so you put it in your helper class. At which point your helpers don't communicate well what they do. The name 'helper' or 'util' itself in the class name doesn't mean anything. I think nearly all OO gurus advocate against helpers since you can very easily replace them with more descriptive classes if you give it enough thought. I tend to agree with this approach as I believe that helpers violate the single responsibility principle. Honestly, take this with a grain of salt. I'm a little opinionated on OOP :)</p> http://stackoverflow.com/questions/1652955/disconnect-visual-studio-solution-from-sourcesafe/1653048#1653048 1 Answer by unknown (google) for disconnect visual studio solution from sourcesafe? unknown (google) 2009-10-31T01:10:55Z 2009-10-31T01:37:09Z <p>It's been a while since the scary days of source safe, but i believe this is what you have to do. In Visual Studio, go to File -> Source Safe -> Change Source Control (?). It'll open up a new window and list projects under current solution bound to Source Safe. Select the project you want to remove and click 'Unbind' at the top. It'll remove source safe bindings from the project. If you have to bind again, just click 'Bind' and select the location in the repository to bind to.</p> http://stackoverflow.com/questions/1653045/whats-the-difference-between-render-and-rendercontrol-in-webcontrol-creation/1653059#1653059 1 Answer by unknown (google) for What's the difference between Render and RenderControl in WebControl creation? unknown (google) 2009-10-31T01:15:05Z 2009-10-31T01:15:05Z <p>RenderControl is used for the page to render child controls. Render allows an individual control to render itself.</p> http://stackoverflow.com/questions/923926/structuremap-controller-factory-and-null-controller-instance-in-mvc 3 StructureMap controller factory and null controller instance in MVC unknown (google) 2009-05-29T00:44:56Z 2009-10-29T19:17:32Z <p>I'm still trying to figure things out with StructureMap and one of the issues i'm running into is my Controller Factory class blowing up when a null controller type is passed to it. This only happens when the application builds for the first time, after which every subsequent build works fine. Even when i shutdown Visual Studio and reopen the project (I'm not running this in IIS). It's almost like there is some sort of caching going on. This is what the controller class looks like:</p> <pre><code>public class IocControllerFactory : DefaultControllerFactory { protected override IController GetControllerInstance(Type controllerType) { try { return (Controller)ObjectFactory.GetInstance(controllerType); } catch (StructureMapException) { System.Diagnostics.Debug.WriteLine(ObjectFactory.WhatDoIHave()); throw; } } } </code></pre> <p>What could be wrong? Do i need to have every controller registered? Thank you.</p> http://stackoverflow.com/questions/1618603/partially-encapsulate-a-field-c/1618633#1618633 0 Answer by unknown (google) for Partially encapsulate a field C# unknown (google) 2009-10-24T17:59:01Z 2009-10-24T18:08:41Z <p>You could try declaring your setters as protected in your base class. Any class that derives it will be able to set it. But any class using the derived class will only see a read-only property.</p> <pre><code>public class ClassBase { public int MyProperty { get; protected set; } } public sealed class ClassDerived : ClassBase { public ClassDerived() { MyProperty = 4; // will set } } public class ClassUsingDerived { public ClassUsingDerived() { ClassDerived drv = new ClassDerived(); drv.MyProperty = 5; // will fail } } </code></pre> <p>That is if i understand the question correctly :)</p> http://stackoverflow.com/questions/1582285/removing-elements-from-a-generic-list-while-iterating-around-it/1582295#1582295 0 Answer by unknown (google) for Removing elements from a generic list while iterating around it unknown (google) 2009-10-17T14:18:53Z 2009-10-17T14:18:53Z <p>You can use for instead of foreach. Foreach relies on enumeration and you really cannot modify your collection while you're enumerating it.</p> http://stackoverflow.com/questions/1540537/what-does-it-mean-that-linq-to-sql-is-not-scalable/1540560#1540560 1 Answer by unknown (google) for What does it mean that Linq To SQL is not scalable? unknown (google) 2009-10-08T21:19:02Z 2009-10-09T02:06:21Z <p>This is more of a functional scalability. If you look at your LINQ generated domain objects you'll notice a lot of bloat, which may become unnecessary if you were to move to another persistence framework such as NHibernate. One options is to roll out your own domain layer which is more abstract and map your generated domain to the abstract one. Keeping your domain layer 'bloat-free' allows you to reuse it with different persistence frameworks. L2S isn't very good at it. Other things may include performance, but i thought this was improved in later versions?</p> http://stackoverflow.com/questions/563510/using-gps-to-measure-area 0 Using GPS to measure area. unknown (google) 2009-02-19T00:48:43Z 2009-10-07T22:12:25Z <p>Hey guys, I'm researching something for a friend of mine who's involved in road construction. He needs some sort of a device that he can use to measure distance or area between points. I have done some GPS programming in the past but for mobile devices and i wasn't too impressed with accuracy. That was quite a few years ago and i think the technology has improved, however i am not sure what device i should as the receiver. Since a mobile device would probably be out of the question because i'd need to be able to run my custom application on it, something that hooks up through a USB port would maybe work? I found u-blox PCI hard that works with laptops and PCs. Has anyone on here had any experience with it? Perhaps there are other devices i'd need to look into?</p> <p>I appreciate any help i can get on this. Thank you.</p> http://stackoverflow.com/questions/905313/issues-with-my-mvc-repository-pattern-and-structuremap 0 Issues with my MVC repository pattern and StructureMap unknown (google) 2009-05-25T04:26:52Z 2009-10-04T03:39:05Z <p>I have a repository pattern i created on top of the ado.net entity framework. When i tried to implement StructureMap to decouple my objects, i kept getting StackOverflowException (infinite loop?). Here is what the pattern looks like:</p> <p>IEntityRepository where TEntity : class Defines basic CRUD members</p> <p>MyEntityRepository : IEntityRepository Implements CRUD members</p> <p>IEntityService where TEntity : class Defines CRUD members which return common types for each member.</p> <p>MyEntityService : IEntityService Uses the repository to retrieve data and return a common type as a result (IList, bool and etc)</p> <p>The problem appears to be with my Service layer. More specifically with the constructors.</p> <pre><code> public PostService(IValidationDictionary validationDictionary) : this(validationDictionary, new PostRepository()) { } public PostService(IValidationDictionary validationDictionary, IEntityRepository&lt;Post&gt; repository) { _validationDictionary = validationDictionary; _repository = repository; } </code></pre> <p>From the controller, i pass an object that implements IValidationDictionary. And i am explicitly calling the second constructor to initialize the repository. </p> <p>This is what the controller constructors look like (the first one creates an instance of the validation object):</p> <pre><code> public PostController() { _service = new PostService(new ModelStateWrapper(this.ModelState)); } public PostController(IEntityService&lt;Post&gt; service) { _service = service; } </code></pre> <p>Everything works if i don't pass my IValidationDictionary object reference, in which case the first controller constructor would be removed and the service object would only have one constructor which accepts the repository interface as the parameter.</p> <p>I appreciate any help with this :) Thanks.</p> http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/1515416#1515416 0 Answer by unknown (google) for What surprised you the most about the software industry? unknown (google) 2009-10-04T02:11:25Z 2009-10-04T02:11:25Z <p>Unless you were lucky enough to find a serious software company, be prepared to work with a bunch of business-major programming hobbyists. I'm not implying anything good here. They generally are clueless and do things just to get them done. So, you end up with a terribly designed codebase and there is no better candidate than someone right out of college to be responsible for maintaining this mess. If you do happen to be at a place like this, try not to stick around for longer than 1/2 years. It'll probably be blatantly boring, monotonous work that doesn't have anything new to offer anyway.</p> <p>If you were lucky enough to find a serious software company, get ready to learn things you should have learned at school but didn't because schools are stuck in theories and software engineering ideals that rarely apply anywhere but in schools. </p> <p>Finally, get ready to keep up with technology. It's changing faster than you can blink. Consider starting a blog where you can document material pertaining to your profession including issues you run across, design decisions, keynotes on new technology that you find interesting. Not only is it useful to use it as your personal knowledge base, you also help out your community of developers. Consider contributing to an open source project. That stuff makes your resume look pretty. Employers love people who love their profession so much they're willing to work on projects on their time off.</p> <p>Best of luck ;)</p> http://stackoverflow.com/questions/1450618/is-it-better-to-go-live-with-a-site-that-isnt-fully-developed-or-wait-untill-it/1451737#1451737 0 Answer by unknown (google) for Is it better to go live with a site that isn't fully developed, or wait untill it's fully functional? unknown (google) 2009-09-20T19:02:24Z 2009-09-20T19:02:24Z <p>Yes, in fact agile methodology which is so widely accepted these days suggests that you release in fully functional and well tested parts. Obviously your first iteration should include the essential features that make your service work. You can then add features in another iteration. </p> http://stackoverflow.com/questions/1441493/preventing-callback-during-validation-in-componentart-grid 0 Preventing callback during validation in ComponentArt grid unknown (google) 2009-09-17T21:43:12Z 2009-09-19T03:17:32Z <p>I have to validate a couple of fields in the CA grid every time a record is updated/added. The grid is used in the callback mode. What i cannot figure out how to do is cancel the callback if a cell is invalid. I am trying to do this 'onBeforeUpdate' event of the grid. I can call set_cancel(true) to cancel the update. But this will change the row mode from edit to display and i will lose all entered data. What i am trying to do is leave the row in the edit mode when any cell in that row is invalid. One of the things i have thought about but haven't done yet is attempting to change RunningMode to Client, validate the record, and set the RunningMode back to Callback when i'm ready to submit? Any suggestions are very appreciated. Thanks!</p> http://stackoverflow.com/questions/1441493/preventing-callback-during-validation-in-componentart-grid/1447621#1447621 0 Answer by unknown (google) for Preventing callback during validation in ComponentArt grid unknown (google) 2009-09-19T03:17:32Z 2009-09-19T03:17:32Z <p>Turns out there is a method on the cancel event that allows to leave the row in the edit mode. </p> <pre><code>eventArgs.set_continue(true); </code></pre> http://stackoverflow.com/questions/1419113/advice-for-a-student-planning-to-take-co-op/1419148#1419148 0 Answer by unknown (google) for Advice for a student planning to take Co-Op unknown (google) 2009-09-13T23:51:43Z 2009-09-13T23:51:43Z <p>I've had an internship interview where i was asked how to operate a coffee machine and i was pretty much hired lol. I think we even talked about some computer games :) And i actually ended up doing software development for them :) Don't expect much from your first interview, unless you're applying for Google or Microsoft. As you get more experience, your employers would actually consider evaluating your skillset. Until than, just pick a company that you think sounds like a cool place and go with it. As far as skills, definitely check out SQL and OOP concepts. If you're asked something you may not know, don't be afraid to say "I'm not familiar with it, but i am a fast learner and i look forward to learning that." You want to present yourself as someone who's always willing to learn because chances are you'll have to learn to keep up with technology when you're out in the real world. If you have any projects that you're working on in your spare time, DO tell about them. Put them in your resume. Finally, make sure you have good grades. </p> http://stackoverflow.com/questions/1418188/want-a-strongly-typed-result-from-a-join-in-nettiers/1418282#1418282 1 Answer by unknown (google) for Want a Strongly Typed Result from a JOIN in .netTiers unknown (google) 2009-09-13T17:20:24Z 2009-09-13T18:47:57Z <p>Create a view and use the strongly typed ParameterBuilder object to filter the view on the specific column. I can't quite remember what layer this object is in. </p> <p>This is how you would use it:</p> <pre><code>MyViewParameterBuilder builder = new MyViewParameterBuilder(); builder.AppendEquals(TableColumn.Column, "value"); DataRepository.MyViewEntityProvider.Find(builder.GetParameters()); </code></pre> <p>I may be wrong, but i do not believe net-tiers actually 'filters' the TList/VList object with the method above, which is what the name of the object would suggest. The builder generates there where clause and nettiers runs a query against your database using this clause. </p> <p>Your 2nd option is to try generating a stored procedure, but only if the resultset of your stored proc matches the schema of one of the tables in your database. Otherwise, net-tiers will not know how to generate against it. You can read more on that <a href="http://nettiers.com/Default.aspx?Page=DataLayer&amp;AspxAutoDetectCookieSupport=1#Custom%5FStored%5FProcedures%3A%5F16" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1418402/asp-net-web-application-ui-business-and-database-layers-clarification/1418415#1418415 1 Answer by unknown (google) for ASP.NET web application - UI, business and database layers clarification unknown (google) 2009-09-13T18:03:18Z 2009-09-13T18:03:18Z <p>If i understand what you're asking correctly, you could compile your business and data layer into separate assembly. This way both your website and your service can reference them without duplicating your DAL code.</p> http://stackoverflow.com/questions/1360357/trying-out-test-driven-development/1360421#1360421 1 Answer by unknown (google) for Trying out Test-Driven Development unknown (google) 2009-09-01T03:43:41Z 2009-09-01T03:43:41Z <p><strong>Do you also believe that TDD actually helps to GTD?</strong> My biggest concern was simply not being able to test code. It was too complex. Our core libraries weren't built around an easily testable interface. So we wrote tests for whatever we could. In the end we ended up refactoring our core libraries to make life easier. Besides that, it's a change of a mindset, and i would definitely consider allocating more time on your first TDD project just to kind of flush out some of the problems you may have along the way. </p> <p><strong>What do I need to know about TDD?</strong> TDD is not a substitute for a methodology. It is a beneficial addition or at least it's supposed to be. If done right, TDD greatly improves software design. It also acts as your internal documentation. If you want somebody to look at your API and understand how it works they can simply look at your well named an formed tests.</p> <p><strong>What about alternatives to TDD?</strong> Like i said, i wouldn't consider this a substitute for a methodology. There is an alternative and that is not to use it :)</p> <p><strong>What would be the best methodology to organize / develop a TDD web app?</strong> We have been fairly successful with scrum/agile, if that's what you're asking. </p> <p><strong>What libraries should I use (if any) to make my life easier?</strong> My PHP knowledge has expired 5 years ago, and i'll let somebody else answer this.</p> <p>Either way, just my 2 cents. If you feel like reading here is a good overview: <a href="http://www.agiledata.org/essays/tdd.html" rel="nofollow">http://www.agiledata.org/essays/tdd.html</a></p> http://stackoverflow.com/questions/1360279/learning-assembly/1360348#1360348 3 Answer by unknown (google) for Learning assembly unknown (google) 2009-09-01T03:13:44Z 2009-09-01T03:13:44Z <p>I started out learning MIPS which is a very compact 32-bit architecture. It is a reduced instruction set, but that's what makes easy to grasp for beginners. You will still be able to understand how assembly works without getting overwhelmed with complexity. You can even download a nice little IDE, which will allow you to compile your MIPS code: <a href="http://www.downcastsystems.com/mipster/" rel="nofollow">clicky</a> Once you get the hang of it, i think it would be much easier to move on to more complex architectures. At least that's what i thought :) At this point you will have the essential knowledge of memory allocation and management, logic flow, debugging, testing and etc.</p> http://stackoverflow.com/questions/1355472/using-the-web-config-to-set-up-my-sql-database-connection-string/1355501#1355501 0 Answer by unknown (google) for Using the Web.Config to set up my SQL database connection string? unknown (google) 2009-08-31T01:59:57Z 2009-08-31T01:59:57Z <p>Add this to your web config and change the catalog name which is your database name:</p> <pre><code> &lt;connectionStrings&gt; &lt;add name="MyConnectionString" connectionString="Data Source=SERGIO-DESKTOP\SQLEXPRESS;Initial Catalog=YourDatabaseName;Integrated Security=True;"/&gt;&lt;/connectionStrings&gt; </code></pre> <p>Reference System.Configuration assembly in your project. </p> <p>Here is how you retrieve connection string from the config file:</p> <pre><code>System.Configuration.ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString; </code></pre> http://stackoverflow.com/questions/1354713/is-there-a-high-level-language-for-the-web/1354760#1354760 3 Answer by unknown (google) for Is there a high-level language for the web? unknown (google) 2009-08-30T19:56:25Z 2009-08-30T19:56:25Z <p>Software industry is suffering from unqualified individuals doing nothing but creating poor quality products and at the same time distancing this profession from becoming a true engineering discipline. This isn't something to get certified on. For the love of god, don't 'teach' anyone software development. Explain to them that making great software only comes out as a result of years of experience and wealth of knowledge of past and current technologies. The worst you can do is introduce yet another half-baked developer creating work for others working with them. Tell them to get educated. I know this isn't the answer you probably wanted to hear, but I wanted this to be read.</p> http://stackoverflow.com/questions/1352136/can-i-use-nested-datacontexts-in-linq-to-sql/1352179#1352179 1 Answer by unknown (google) for Can I use nested DataContexts in Linq TO Sql? unknown (google) 2009-08-29T19:19:57Z 2009-08-29T19:19:57Z <p>Not easily by default. You would have to detach entities bound to the context in order to use them on another data context. A simple solution to this would be creating a Unit of Work pattern.</p> http://stackoverflow.com/questions/1224537/why-is-visual-sourcesafe-viewed-so-poorly/1338775#1338775 0 Answer by unknown (google) for Why is Visual SourceSafe viewed so poorly? unknown (google) 2009-08-27T03:56:57Z 2009-08-27T03:56:57Z <ol> <li>Code Corruption (including your entire history stack)</li> <li>Binary file corruption (we had this issue specifically with PDF templates)</li> <li>Poor integration into Visual Studio IDE (very buggy)</li> <li>Constant file lockouts</li> <li>Did i forget to mention repository corruption...eeek</li> <li>No branching</li> </ol> <p>I can go on and on. The bottom line is to absolutely avoid this product. I think it may go well with smaller projects, but developing enterprise level applications should not involve dealing with constant codebase repository issues. </p> http://stackoverflow.com/questions/1338619/best-parser-for-c/1338670#1338670 2 Answer by unknown (google) for Best parser for C#? unknown (google) 2009-08-27T03:13:03Z 2009-08-27T03:13:03Z <p>Check out the ANTLR project. <a href="http://www.antlr.org/" rel="nofollow">http://www.antlr.org/</a></p> <p>You can get C# grammar from here: <a href="http://www.antlr.org/grammar/list" rel="nofollow">http://www.antlr.org/grammar/list</a></p> http://stackoverflow.com/questions/1338430/speeding-up-web-development/1338481#1338481 0 Answer by unknown (google) for Speeding up web development unknown (google) 2009-08-27T01:54:13Z 2009-08-27T01:54:13Z <p>My companies does mostly .NET development and we have been successfully using the 'net-tiers' templates for data access layer. The templates are loaded into CodeSmith code generator and pointed against a database. The end result is anything you could possibly think of. It'll generate your DAL, webservice, winforms UI library, web UI library, a sample website and administration tool and more. A great tool to save some development time. Check it out.</p> <p>As far as actually working on UI, i think it may benefit to actually hire a professional. We have a professional designer who does some contract work with us. All that we do is wire up the UI to our UI components and code.</p> http://stackoverflow.com/questions/1777555/buiding-asp-net-application-without-session-state/1777609#1777609 Comment by on Buiding ASP.NET application without Session State? 2009-11-24T03:05:00Z 2009-11-24T03:05:00Z I'm not sure what to say. You asked how to handle data other than putting it into session. I said there is an existing framework that comes bundled with ASP.NET 2.0 that allows you to serialize that data and store it in the database. Isn't that what the other post was about? I guess I'm just not understanding why i got the downvote in the first place. If you don't agree with the suggestion, at least leave a comment when you downvote. Thanks for clarifying later on though. http://stackoverflow.com/questions/1777555/buiding-asp-net-application-without-session-state/1777605#1777605 Comment by on Buiding ASP.NET application without Session State? 2009-11-23T02:36:07Z 2009-11-23T02:36:07Z <a href="http://odetocode.com/articles/440.aspx" rel="nofollow">odetocode.com/articles/440.aspx</a> http://stackoverflow.com/questions/1777555/buiding-asp-net-application-without-session-state/1777609#1777609 Comment by on Buiding ASP.NET application without Session State? 2009-11-23T02:32:35Z 2009-11-23T02:32:35Z Care to explain why the downvote? I mean, David Lively suggested the same darn thing after i wrote this and i get a downvote? http://stackoverflow.com/questions/1777555/buiding-asp-net-application-without-session-state/1777609#1777609 Comment by on Buiding ASP.NET application without Session State? 2009-11-22T04:17:44Z 2009-11-22T04:17:44Z You're right. Not sure what i was thinking. http://stackoverflow.com/questions/1768486/how-not-to-scare-programmers-using-visual-source-safe/1768520#1768520 Comment by on How not to scare programmers using Visual Source Safe :-) 2009-11-21T18:56:58Z 2009-11-21T18:56:58Z Also a good one. I heard Microsoft used it instead of VSS, which is almost laughable. :) http://stackoverflow.com/questions/1735010/alternative-to-java Comment by on Alternative to Java 2009-11-14T18:00:09Z 2009-11-14T18:00:09Z CPU-intensive calculations such as the one you're describing is usually done on distributed systems. Selecting a different language is not going to make significant difference. http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique Comment by on simple proof that GUID is not unique 2009-11-10T04:07:29Z 2009-11-10T04:07:29Z First time i loled on this site. http://stackoverflow.com/questions/1695042/is-garbage-collection-automatic-in-standard-c Comment by on Is garbage collection automatic in standard C++? 2009-11-08T02:05:18Z 2009-11-08T02:05:18Z Almost right. Sometimes you have to dispose resources explicitly without waiting for GC to do it for you. http://stackoverflow.com/questions/1692751/is-it-worth-getting-an-msc-in-computer-science/1692768#1692768 Comment by on Is it worth getting an MSc in Computer Science? 2009-11-07T16:37:12Z 2009-11-07T16:37:12Z haha, you read this and the first comment and than you wonder why software poopers even have the privilege to call themselves 'software engineers'. The sad reality is that you can be a cake decorator who does programming. I mean, it's ridiculous. http://stackoverflow.com/questions/1691902/what-is-an-example-of-user-documentation Comment by on What is an example of user documentation?? 2009-11-07T03:47:00Z 2009-11-07T03:47:00Z I'm assuming this is for a school assignment. Considering the level of complexity of your project, i don't think it's anything formal. Just comment your code and briefly explain how to use your class. http://stackoverflow.com/questions/1691834/visual-c-2008-as-frontend-for-access Comment by on Visual C++ 2008 as frontend for Access 2009-11-07T03:28:14Z 2009-11-07T03:28:14Z I would indicate what problems you're having. Can't help, if you don't tell us what the issue is. http://stackoverflow.com/questions/1655026/why-google-map-marker-gets-load-on-first-click Comment by on why Google map marker gets load on first click 2009-10-31T18:08:42Z 2009-10-31T18:08:42Z I think you just broke Google Maps. http://stackoverflow.com/questions/1655096/c-class-its-base-class-and-circular-include-includes/1655107#1655107 Comment by on C++ class, its base class and circular include includes 2009-10-31T18:06:30Z 2009-10-31T18:06:30Z Better yet, just use '#pragma once' directive http://stackoverflow.com/questions/1652621/how-to-access-the-databound-selected-item-in-a-datalist-after-postback Comment by on How to access the databound selected item in a datalist after postback? 2009-10-31T04:14:29Z 2009-10-31T04:14:29Z You have to rebind the control. ViewState will not persist your data-bound items. http://stackoverflow.com/questions/1653131/what-programming-language-will-enable-me-to-enter-a-very-long-number-without-conv Comment by on What programming language will enable me to enter a very long number without converting it to floating point? 2009-10-31T01:51:59Z 2009-10-31T01:51:59Z Any language will. If not out of the box, you can always write your own handler.