User objektivs - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T07:18:14Zhttp://stackoverflow.com/feeds/user/26625http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/224730/tips-for-writing-fluent-interfaces-in-c-33Tips for writing fluent interfaces in C# 3objektivs2008-10-22T07:13:49Z2009-11-25T05:54:57Z
<p>I'm after some good tips for fluent interfaces in C#. I'm just learning about it myself but keen to hear what others think outside of the articles I am reading. In particular I'm after:</p>
<ul>
<li>when is fluent too much?</li>
<li>are there any fluent patterns?</li>
<li>what is in C# that makes fluent interfaces more fluent (e.g. extension methods)</li>
<li>is a complex fluent interface still a fluent one?</li>
<li>refactoring to arrive at a fluent interface or refactoring an existing fluent interface</li>
<li>any good examples out there that you have worked with or could recommend?</li>
</ul>
<p>If you could post one tip or thought, or whatever per post. I want to see how they get voted on, too.</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1558123/what-microformats-have-you-had-the-most-uptake-with1What microformats have you had the most uptake with?objektivs2009-10-13T03:57:30Z2009-11-07T00:31:25Z
<p>Microformats feel as though they want to be popular but I'm not hearing too much about them; maybe I travel in the wrong circles.</p>
<p>I'm keen to know if you are using them on your site and whether they have proven popular.</p>
<p>I'm also keen to understand how you track their uptake/usage and how they have worked for you in your particular scenario/venture.</p>
<p>Thanks
Scott</p>
<p>Related questions:</p>
<p><a href="http://stackoverflow.com/questions/5526/anyone-out-there-implementing-microformats-is-this-useful">Anyone out there implement(ing) microformats? is this useful?</a></p>
http://stackoverflow.com/questions/1641562/does-anyone-have-any-performance-metrics-of-ado-net-connection-pooling-vs-the-cr1Does anyone have any performance metrics of ADO.NET connection pooling vs. the create-and-destroy method?objektivs2009-10-29T04:05:40Z2009-10-29T04:34:37Z
<p>I'm using WCF, SQL Server and ADO.NET. I'm looking at two implementation options for the data access layer.</p>
<ol>
<li>The Enterprise Library that uses connection pooling</li>
<li>A custom solution that does not use connection pooling. Every time the database is accessed a connection is created, used and then destroyed.</li>
</ol>
<p>Option 2 looks like this:</p>
<pre><code>using (var connection = new SqlConnection(...)){...}
</code></pre>
<p>What is the difference in performance between these two? When does it make sense to pool connections?</p>
http://stackoverflow.com/questions/1597929/how-far-can-one-take-simpledb-openid-and-the-cloud2How far can one take SimpleDB, OpenID and the Cloud?objektivs2009-10-20T23:39:33Z2009-10-21T19:14:42Z
<p>I have an ASP.NET MVC app (non-transactional, social) I am workong on. I started using the .NET authorisation provider which does the job, but with the Cloud's lining getting more shiny by the day I was wondering just how much I can push up.</p>
<p>Ultimately I want to do away with my ISP-hosted SQL Server database and to progressively start using S3 as my content increases.</p>
<p>I am considering using OpenID for authentication and SimpleDB for storing user details. Any content added by a user could be keyed on the ClaimedIdentifier, if I understand correctly.</p>
<p>What are the advantages/disadvantages of doing this? What are the showstoppers of this approach?</p>
<p>Does anyone have any examples of pure Cloud architectures that can be used to support arguments for/against?</p>
http://stackoverflow.com/questions/1496066/amazon-simpledb-woes-implementing-counter-attributes/1569626#15696261Answer by objektivs for Amazon SimpleDB Woes: Implementing counter attributesobjektivs2009-10-14T23:55:15Z2009-10-14T23:55:15Z<p>Hi Justin</p>
<p>I see you've accepted an answer already, but this might count as a novel approach.</p>
<p>If you're building a web app then you can use Google's Analytics product to track page impressions (if the page to domain-item mapping fits) and then to use the Analytics API to periodically push that data up into the items themselves.</p>
<p>I haven't thought this through in detail so there may be holes. I'd actually be quite interested in your feedback on this approach given your experience in the area.</p>
<p>Thanks
Scott</p>
http://stackoverflow.com/questions/1533190/is-there-a-production-grade-simpledb-net-library/1569437#15694372Answer by objektivs for Is there a production grade SimpleDB .NET library?objektivs2009-10-14T22:50:11Z2009-10-14T22:50:11Z<p>Check out <a href="http://www.mindscape.co.nz/" rel="nofollow">Mindscape's</a> <a href="http://www.mindscape.co.nz/products/LightSpeed/default.aspx" rel="nofollow">LightSpeed</a> that supports SimpleDB ORM out of the box. They have a beta product called <a href="http://www.mindscape.co.nz/products/simpledbtools/default.aspx" rel="nofollow">SimpleDB Management Tools</a> for $29 USD that is in beta, but these guys produce great software so my suggestion would be to investigate and feedback to them.</p>
<p>The plus side is you get a great ORM for other uses.</p>
http://stackoverflow.com/questions/1489908/do-you-know-of-any-asp-net-mvc-code-generators2Do you know of any ASP.NET MVC code generators?objektivs2009-09-28T23:50:30Z2009-09-29T08:32:43Z
<p>Does anyone know of a good/usable ASP.NET MVC code/solution generator. Ideally it would build from a domain model, but from a data model is also acceptable.</p>
<p>If you do, can you answer the following:</p>
<ol>
<li>Does it produce "good" code?</li>
<li>Can it be extended?</li>
<li>What do you like and not like about it if you have used it?</li>
<li>What great fearures does it come with that stand out?</li>
</ol>
<p>If there isn't one you know of then do you think this is something missing from the community or do you not think it is needed? What features would you like to see in one?</p>
<p>Can't wait to hear your answers...</p>
<p>Thanks
Scott</p>
http://stackoverflow.com/questions/1463233/how-do-i-follow-a-wcf-request-from-start-to-finish0How do I follow a WCF request from start to finish?objektivs2009-09-22T23:53:20Z2009-09-23T03:00:40Z
<p>I have a WCF service defined, it accepts JSON and maps that JSON to an object at which point I can then begin debugging code.</p>
<p>Sometimes, the object fails to create. Most recently my service had a BodyStyle of Wrapped but should have been Bare. In this case I would have liked to watch the request come in and see what happens to it as it gets mapped from JSON to POCO and then onto the service so I can watch for errors.</p>
<p>I'd also like to see what happends with the response where I have also had issues in the past.</p>
<p>What is the best way of seeing what is going on in WCF when it is (kind of) out of my control? What kind of logging/tracing can I use and can I see errors/exceptions being thrown by WCF?</p>
<p>Thanks
Scott</p>
http://stackoverflow.com/questions/1349261/net-equivalent-of-java-awt-color-colorspace/1463003#14630030Answer by objektivs for .NET equivalent of java.awt.color.ColorSpaceobjektivs2009-09-22T22:37:26Z2009-09-22T22:37:26Z<p>The SystemColors class provides access to system brushes and colors, such as ControlBrush, ControlBrushKey, and DesktopBrush. A system brush is a SolidColorBrush object that paints an area with the specified system color. A system brush always produces a solid fill; it can't be used to create a gradient.</p>
<p>The System.Drawing namespace has brushes, images, converters, system colours, regions and pretty much all the basics for drawing on windows. I think this works closely with GDI+.</p>
<p>If you have any specif classes you need to map to or requirements add a comment and I'll see what I can do.</p>
http://stackoverflow.com/questions/1344157/best-way-to-store-muti-type-field/1457888#14578881Answer by objektivs for Best way to store muti-type fieldobjektivs2009-09-22T02:43:34Z2009-09-22T02:43:34Z<p>Can you consider using an XML datatype? If so, you can use an attribute/element to define the type.</p>
<pre><code><string>My string value</string>
<date>24-Nov-1976</date>
</code></pre>
<p>Or,</p>
<pre><code><val type="System.String">My string value</val>
<val type="System.Date">24-Nov-1976</val>
</code></pre>
<p>SQL Server 2005+ has some good support for XML indexing that may support your needs.</p>
<p>From a Linq to SQL point of view you can probably have a lightweight class that can map the types to a specific data type; XML de/serialisation may be an option here.</p>
http://stackoverflow.com/questions/1451955/what-os-software-is-missing-in-the-net-world5What OS software is missing in the .NET world?objektivs2009-09-20T20:40:13Z2009-09-21T10:08:41Z
<p>I'm a .NET developer working alongside Java and Eclipse developers. They seem to work with a lot more Open Source than I ever have. Some/Most seem to have made it across to .NET (Hibernate to NHibernate is a great example of this.)</p>
<p>But I am curious as to what OS software out there <strong>hasn't</strong> made it to the .NET world? What do people feel is missing. I'm interested in both business applications and development tools.</p>
<p><em>(Background: Asking this question to myself made me think realise that I would like to fill in the holes, if there are any.)</em></p>
<p>Thanks</p>
<p>Edit: In light of the recent CodePlex foundation creation perhaps the answers here might suggest the kind of projects we'll see coming along.</p>
<p>Edit: Great responses so far, please keep 'em coming.</p>
http://stackoverflow.com/questions/1408609/best-way-to-implement-repository-pattern/1408794#14087940Answer by objektivs for Best way to implement Repository Pattern?objektivs2009-09-11T03:11:46Z2009-09-11T03:11:46Z<p>I'm a bif fan of 1 because I can create filters and paging extension methods than I can apply to the IQueryable<> return values for the Find method. I keep the extension methods in the data layer and then construct on the fly in the business layer. (Not totally pure, admittedly.)</p>
<p>Of course, when the system stabilises I have the option to make specific Find methods using the same extension methods and optimise using Func<>.</p>
http://stackoverflow.com/questions/1397037/jquery-to-load-content-into-div/1397066#13970661Answer by objektivs for Jquery to load content into divobjektivs2009-09-09T00:50:48Z2009-09-09T01:49:52Z<p>(You're missing a closing div, I think, on #aeffect.)</p>
<pre><code>$('#popupContent').load('page.htm #aeffect')
</code></pre>
<p>The first selector is the target container. The load method takes the page followed by the selector within that page that you want.</p>
<p>I'm not sure about loading pages from other sites though.</p>
<p>Let me know if that works for you.
Scott</p>
<p>Check out the jQuery <a href="http://docs.jquery.com/Ajax/load" rel="nofollow">documentation</a> for fine tuning. You can pass parameters to the page if it is a post and you can use a callback to populate the div for a smoother experience.</p>
http://stackoverflow.com/questions/1396872/should-i-learn-jquery/1396927#13969270Answer by objektivs for Should I learn jQuery??objektivs2009-09-08T23:49:09Z2009-09-08T23:49:09Z<p><strong>Should you learn jQuery?</strong></p>
<p>Of course you should. :) But the real question is whether you should use it on a given project at all or in conjunction with another library.</p>
<p>I think you'll find learning jQuery very easy and very quick so the "cost" to learn it will be very small. And seeing how it works and how it is used can only increase your proficiency in other areas of your work.</p>
<p><strong>Should you ditch Prototype?</strong></p>
<p>Hell, no! You have knowledge and experience and possibly an existing customer/code base in Prototype. It also occupies a different "space" in the world of JavaScript and browsers so they can complement one another.</p>
<p>Imagine the power you'll have in being able to wield these together...</p>
<p>Have fun!</p>
http://stackoverflow.com/questions/1340062/handling-errors-and-feedback-when-performing-bulk-operations-in-a-multi-tiered-ar/1387753#13877531Answer by objektivs for Handling errors and feedback when performing bulk operations in a multi-tiered architectureobjektivs2009-09-07T06:00:42Z2009-09-07T06:00:42Z<p>If I understand, you have a situation where some requests can pass and some can fail. I'm not sure where you want the error to come back but you could have one of the following (or a variant, or a combination):</p>
<ul>
<li>A list of errors and the domain objects affected. A base domain object or something with a persistable ID might be useful for re-use. E.g. a collection of errors referring to domain objects.</li>
<li>You could inject (AOP, DI) into the Person object some kind of error object/message. E.g. if (person. Errors){...}</li>
<li>You could wrap the Person collection into a message with header, body, error information</li>
<li>All your domain objects could include an error collection accessible via an interface; or Person supports the IHasErrors interface. You could make this generic and use a base Error object supporting warnings and validation and all manner of things.</li>
</ul>
<p>If you are in a genuine multi-tiered (rather than layered) system then you may have a message based architecture that could easily accommodate some kind of generic error/warning/validation mechanism. SOA/Ajax systems lend themselves to this.</p>
<p>Happy to delve a little deeper if you have some specific questions.</p>
http://stackoverflow.com/questions/1387003/i-want-to-be-an-entrepeneur-software-developer-where-do-i-start/1387094#13870942Answer by objektivs for I want to be an entrepeneur software developer! Where do I start?objektivs2009-09-07T00:21:14Z2009-09-07T00:49:59Z<p>This is my take.</p>
<p>I want to be a software entrepreneur myself. I spend a lot of personal time working on little ideas, that for the most part don't pay off. That's fine because that is part of the journey; failures are only a bad thing if you don't learn from them.</p>
<p>There are some upsides to this:</p>
<ul>
<li>you learn a lots technically</li>
<li>you [can] learn lots about networking</li>
<li>you [can] learn lots about the business of software and entrepreneurship</li>
</ul>
<p>Nothing gets wasted. Your technical skills can help you make the jump to contracting. Networking and business skills readily supplement your contracting and customer skills.</p>
<p>Along the way you can stumble upon a great idea or great networks. I subscribe to the trial and error approach which equates to experience.</p>
<p>So, after my long winded preamble, just dive in and get building software that you think someone will like. Keep your day job for now and leverage that to help you along the way. Read everything you can on the Internet <strong>before</strong> giving your money to a bookshop.</p>
<p>Check out the podcasts from <a href="http://stvp.stanford.edu" rel="nofollow">Stanford Tech Ventures</a></p>
<p>Try ad revenue ideas, subscription models, paid-for software, porting software. Find some poor software out there and make it better. Find some expensive software out there and make it cheaper. Find an OS product and specialise in it and sell your skills/experience; you can easily build a company around this alone.</p>
http://stackoverflow.com/questions/1355336/what-are-good-database-options-to-use-for-app-dev-on-mac-osx1What are good database options to use for app dev on Mac OSX?objektivs2009-08-31T00:39:38Z2009-08-31T15:35:42Z
<p>I'm looking to develop a small application on Mac OSX and it will need to use a database. Can anyone recommend one for the Mac? This will be my first Mac development so this is very much a newbie question.</p>
<p>To help you I am interested in the following aspects:</p>
<ul>
<li>Is it suitable for small applications? (Important)</li>
<li>Is it suitable for larger applications? How large an application could it support?</li>
<li>The application will store data locally, but in the future may end up sharing a schema with something on the network/in the cloud.</li>
<li>Are there any good libraries/ORMs for using it?</li>
<li>Are there any cool features that may not be obvious to a newbie?</li>
<li>Why do you like using it?</li>
<li>Is it a relational database? Or something else?</li>
<li>My app will need to version pieces of "content" at some point</li>
</ul>
<p>Please feel free to add anything else that I should be considering. I'm also happy for you to think outside the box so OO databases or Git-like approaches would be cool.</p>
<p>Thanks for your help...</p>
http://stackoverflow.com/questions/1297024/yui-compressor-and-net-apps3YUI Compressor and .NET Appsobjektivs2009-08-18T22:59:28Z2009-08-28T09:37:25Z
<p>I want to use YUI Compressor (the original) and use it as part of typical MS build processes (Visual Studio 2008, MSBuild).</p>
<p>Does anyone have any guidance or thoughts on this? For example, good ways for incorporating into project, what to do with existing CSS and JS references, and the like.</p>
<p>I am happy to hear on the benefits of YUI Compressor .NET and alternatives but I'm mor einterested in use of the original.</p>
<p>Thanks
Scott</p>
http://stackoverflow.com/questions/1064254/what-are-some-good-open-source-c-examples-of-quality-domain-models/1320615#13206151Answer by objektivs for What are some good open source c# examples of quality domain models.objektivs2009-08-24T05:29:10Z2009-08-24T05:29:10Z<p>Rob Connery (of MVC Storefront and Weke Road blog) <a href="http://blog.wekeroad.com/" rel="nofollow">http://blog.wekeroad.com/</a> has been getting into DDD of late. The MVC Storefront app may be modified to reflect his learnings, or so I believe. Regardless, he has some good material on this topic.</p>
<p>The website <a href="http://www.domaindrivendesign.org" rel="nofollow">http://www.domaindrivendesign.org</a> has a C# sample app.</p>
<p>One thing about DDD; it tends to be tightly coupled (in the positive sense) with the bsuiness for which it is written. As a result, the best examples are probably tied up in IP and unlikely to be available as OS.</p>
<p>The kind of design I tend to see is usually the anaemic domain model.</p>
http://stackoverflow.com/questions/1294635/jquery-within-a-repeater/1297994#12979940Answer by objektivs for jQuery within a Repeaterobjektivs2009-08-19T05:51:33Z2009-08-19T21:50:13Z<p>Dynamically creating the necessary jQuery script from the C# codebehind might be unecessary as the JQuery code won't have to change. Bear in mind that unobtrusive JS is what jQuery is largely about.</p>
<p>I imagine the single piece of JS would look something like this:</p>
<pre><code>$('.link-class', '#repeater-id').click(function(){
// Get the id of the link or the target using $(this).attr('id')
// Show a page section or call a service using the the discovered ID.
});
</code></pre>
<p>You can use the first comment to pull out the data you need to identify the data you wish to display.</p>
<p>The second comment can be either an Ajax call or a div toggle to some other section on your page. If this data is large then I'd be inclined to Ajax it. Otherwise I would keep it on the page and just toggle it on or off.</p>
<p>If you think users would be more inclined to click on several of the links then I would weight the non-ajax option a little more favourably even if the page was a little heavier. Especially if the user might return to a previously clicked link.</p>
<p>Does that make sense? Happy to elaborate further...</p>
http://stackoverflow.com/questions/1264112/javascript-function-scope/1264138#12641380Answer by objektivs for Javascript Function Scopeobjektivs2009-08-12T03:54:46Z2009-08-12T03:54:46Z<ul>
<li>Global variables (in any language) can sometimes become stale. If there is a chance of this it is good to declare, initialise and use them locally. You have to be able to trust what you are using.</li>
<li>Similarly, if something/someone can update your global variables then you have to be able to trust the outcome of what will happen whenyou use them.</li>
<li>Global variables are not always needed by everything so why keep them hanging around?</li>
</ul>
<p>That said, variables global to a namesapce can be useful especially if you are using something like jquery selectors and you want to cache for performance sake.</p>
http://stackoverflow.com/questions/302969/i-dont-get-xsl-processing-instructions2I don't get XSL processing instructions!objektivs2008-11-19T19:01:37Z2009-08-06T12:35:50Z
<p>What kind of scenarios can XSL processing instructions be used or applied? When is it good or bad to use them?</p>
<p>Clean slate here, I don't have a good handle on this particular element.</p>
<p>Example from w3schools:</p>
<p><xsl:processing-instruction name="process-name">
<!-- Content:template -->
</xsl:processing-instruction></p>
http://stackoverflow.com/questions/1236206/one-var-per-function-in-javascript3One var per function in JavaScript?objektivs2009-08-05T23:01:54Z2009-08-06T02:28:43Z
<p>I've been using JSLint to make me feel bad about my JavaScript. It is great, by the way. There is one check that I don't quite understand and I'd like your views, please.</p>
<p>From jslint.com:
In languages with block scope, it is usually recommended that variables be declared at the site of first use. But because JavaScript does not have block scope, it is wiser to declare all of a function's variables at the top of the function. <strong>It is recommended that a single var statement be used per function.</strong></p>
<p>What is the last sentance in bold really saying? I think I should be declaring multiple variables like this?</p>
<pre><code>var foo = 1, bar = 2;
</code></pre>
<p>And, is the "wise" part just a programming style to discourage errors down the line or is there more to it than that?</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1220807/nolock-with-linq-to-sql5NOLOCK with Linq to SQLobjektivs2009-08-03T05:46:59Z2009-08-03T06:05:59Z
<p>Is it possible to get Linq2Sql to emit a NOLOCK in its SQL? And if so, how?</p>
<p>Kind regards
Scott</p>
http://stackoverflow.com/questions/887174/cms-engine0CMS Engine?objektivs2009-05-20T10:23:03Z2009-05-21T19:52:04Z
<p>Can anyone recommend a CMS engine with a nice set of features, preferable open source? Not so bothered by a user interface, it's the back-end that is most important to me so I can integrate with existing sites and applications.</p>
<p>(CMS's with front-ends are fine to suggest if there is good separation from the back-end.)</p>
<p>Bonus features include SQL, XML or mixed datasources, versioning and workflow.</p>
<p>Many thanks
Scott</p>
http://stackoverflow.com/questions/881583/server-side-charting-solutions0Server-side Charting Solutionsobjektivs2009-05-19T08:28:47Z2009-05-19T09:43:00Z
<p>I'm looking for a .NET 2 library for generating charts.</p>
<ul>
<li>.NET 2</li>
<li>small footprint</li>
<li>fast</li>
<li>basic-medium charting abilities</li>
<li>pie chart support</li>
<li>stream output required</li>
<li>file output optional</li>
</ul>
<p>What can you recommend? Why?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/881515/javascript-namespace-declaration2Javascript Namespace Declarationobjektivs2009-05-19T08:11:02Z2009-05-19T09:18:58Z
<p>What neat ways do you use for declaring JavaScript namespaces. I've come across this one:</p>
<p>if (Foo == null || typeof(Foo) != "object") { var Foo = new Object();}</p>
<p>Is there a more elegant or succinct way of doing this?</p>
<p>Just a bit of fun...</p>
http://stackoverflow.com/questions/828853/virtual-earth-or-google-maps2Virtual Earth or Google Mapsobjektivs2009-05-06T09:41:19Z2009-05-08T03:05:55Z
<p>Simple question, the answer may not be...</p>
<p>I'm going to be developing a web app (ASP.NET MVC) for a client. They have asked me for an opinion on whether to use Google Maps or Virtual Earth for providing a mapping solution.</p>
<p>Which would you go for and why? Or are there others you can recommend?</p>
<p>What else do you need to know?</p>
<ol>
<li>Street view (or equivalent) won't be
necessary in the near future, but
one day it might.</li>
<li>The client wants to identify certain
mappable features, and beyond that
find these features when within a
specified distance.</li>
</ol>
<p>What else should I be considering at a high level? Or my client?</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/745570/how-can-social-networking-sites-make-you-a-better-developer/745654#7456540Answer by objektivs for How can social networking sites make you a better developer?objektivs2009-04-13T22:40:53Z2009-04-13T22:40:53Z<p>Sometimes knowing the existence of a thing is the most difficult part. Think of all the times you write some code and someone comes along and say, "... or you can do it like this, in half as much code".</p>
<p>I think Twittering helps enable this to take place from further a field. Amongst all the noise are gems that stand out just when you need them.</p>
<p>Since getting on the social bandwagon I feel more aware of the community vibe, new products, technologies and the progression going on in the industry. When I hear of a new library/product/release/whatever I can say to any of my architects that there may be something that can help us and warrants further investigation. Because I got it from the social network then I think I can say that it would have taken me longer to come across it otherwise.</p>
<p>Edit - Additionally, I think by being more across "everything that is going on" then I am a more valuable developer as a result because architects can't always be across everthing themselves.</p>
<p>Stream of consciousness over...</p>
http://stackoverflow.com/questions/100322/best-ioc-framework-for-net/604089#6040892Answer by objektivs for Best IoC framework for .Netobjektivs2009-03-02T21:31:51Z2009-03-02T21:31:51Z<p>I'm going thorugh this process myself. I would recommend kicking off with ninject. Just because it is so lightweight and has a really low entry level. You can have it up and running in a matter of hours.</p>
<p>What you will find is that you will design your system with IoC in mind and that design will be largely the same regardless of the IoC framework you use.</p>
<p>Without too much re-work beyong the basic framework plumbing you should be able to swap out NInject for something like StructureMap if you want to.</p>
<p>Your best bet is to get going with one and see what issues you find and then decide whether an alternative would suit your needs better.</p>
<p>The frameworks out there do seem to be going through a dynamic period with new versions being released all over the place. And MEF, which is IoC and much more, may force further change of the landscape.</p>
http://stackoverflow.com/questions/980767/aws-simpledb/988063#988063Comment by objektivs on AWS SimpleDBobjektivs2009-10-14T23:04:16Z2009-10-14T23:04:16ZThis is the technique I am looking to use. Good for start-ups.http://stackoverflow.com/questions/1344157/best-way-to-store-muti-type-field/1457888#1457888Comment by objektivs on Best way to store muti-type fieldobjektivs2009-09-23T20:43:52Z2009-09-23T20:43:52ZHadn't realised that I had. (PC locks up every now and then so I click impatiently until it comes back.)http://stackoverflow.com/questions/1463233/how-do-i-follow-a-wcf-request-from-start-to-finish/1463248#1463248Comment by objektivs on How do I follow a WCF request from start to finish?objektivs2009-09-23T00:32:27Z2009-09-23T00:32:27ZI have heard of it but have never been able to get it going. I try every now and then but nothing seems to happen. It could be my dev machine not playing nicely; it's a hand-me-down.http://stackoverflow.com/questions/1344157/best-way-to-store-muti-type-field/1457888#1457888Comment by objektivs on Best way to store muti-type fieldobjektivs2009-09-22T20:19:36Z2009-09-22T20:19:36ZQuerying on XMl data type slooks like this:
SELECT xCol FROM docs WHERE xCol.exist ('/book/@ISBN[. = "0-2016-3361-2"]') = 1
I don't have any specifics on XML indexing performance. I think it depends on whether you type your XML. Of course, depending on the scenario this performance cost may be acceptable. You'll only know if you try benchmarking.http://stackoverflow.com/questions/1207144/c-why-doesnt-ref-and-out-support-polymorphism/1207302#1207302Comment by objektivs on C# : Why doesn't 'ref' and 'out' support polymorphism?objektivs2009-09-22T00:44:46Z2009-09-22T00:44:46ZI feel humbled reading this thought process. I think I better get back to the books!http://stackoverflow.com/questions/1451955/what-os-software-is-missing-in-the-net-world/1453038#1453038Comment by objektivs on What OS software is missing in the .NET world?objektivs2009-09-21T10:10:58Z2009-09-21T10:10:58ZWhat functions/features of Eclipse are not catered for by SharpDevelop? I've never used Eclipse so I'm not sure what sets it apart.http://stackoverflow.com/questions/1451955/what-os-software-is-missing-in-the-net-world/1453062#1453062Comment by objektivs on What OS software is missing in the .NET world?objektivs2009-09-21T10:09:05Z2009-09-21T10:09:05ZSuperb answers...http://stackoverflow.com/questions/1451955/what-os-software-is-missing-in-the-net-world/1451991#1451991Comment by objektivs on What OS software is missing in the .NET world?objektivs2009-09-20T21:04:55Z2009-09-20T21:04:55ZThe whole CodePlex Foundation creation has got me thinking about this and right now it might be a lot of fun to get involved. Thanks.http://stackoverflow.com/questions/1451955/what-os-software-is-missing-in-the-net-worldComment by objektivs on What OS software is missing in the .NET world?objektivs2009-09-20T20:48:44Z2009-09-20T20:48:44ZFair enough comment @spender. I love software creation but I also enjoy improving things either thorugh features/design elegance/minimalistic approach/anything else. Otherwise I could not remain engaged.http://stackoverflow.com/questions/1397037/jquery-to-load-content-into-divComment by objektivs on Jquery to load content into divobjektivs2009-09-09T02:04:21Z2009-09-09T02:04:21ZAre you making a cross-site call?
http://stackoverflow.com/questions/544657/unusual-programming-interview-questionsComment by objektivs on Unusual programming interview questionsobjektivs2009-08-27T03:32:13Z2009-08-27T03:32:13ZDaniel, what is every possible way?http://stackoverflow.com/questions/1294635/jquery-within-a-repeater/1297994#1297994Comment by objektivs on jQuery within a Repeaterobjektivs2009-08-25T05:26:00Z2009-08-25T05:26:00ZHi Alexis. Thanks for the tick :). With the subtext issue I would output that as either a hidden field or a HTML element I style as hidden. Then create a selector that can find that when you need it. Possibly similarly as before, var subText = $('input#subTextID' + id, '#repeater-id').val();http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234399#234399Comment by objektivs on What is your best programmer joke?objektivs2009-08-21T02:53:48Z2009-08-21T02:53:48ZAs I look at this answer I see it has been upvoted 666 times. Fitting that it is a SQL joke!http://stackoverflow.com/questions/48475/database-design-for-tagging/48692#48692Comment by objektivs on Database Design for Taggingobjektivs2009-08-18T23:28:27Z2009-08-18T23:28:27ZWould you mind sharing how you went about it with SO?http://stackoverflow.com/questions/896473/pocos-dtos-dlls-and-anaemic-domain-models/911874#911874Comment by objektivs on POCO's, DTO's, DLL's and Anaemic Domain Models...objektivs2009-08-09T23:17:29Z2009-08-09T23:17:29ZDo you know of any source code examples of such a design? I find the principles make sense but when I get down to the implementation of FlyToAirport I end up with a chatty interface to the database if I need update several tables especially if I am not using SPs.