samples

ASP.NET Themes samples/starter kits

I was wondering if there was somewhere I could get some starter kit / theme sample for ASP.NET. I am not a designer, but I need to build a prototype for a project, and if I do it myself it'll certainly be awful Do you know where I could find that (ASP.NET specific)? ...

Good C# code samples?

You know how Steve Yegge recommends reading good code and bad code in order to learn from it? Well, I'm looking for good C# samples. Any suggestions? ...

WPF sample applications

Hi, Are there any WPF sample applications that showoff the 'coolness' of WPF? I'm hoping to see some examples of the UI capabilities etc., and general structure and best practices. (oh, and the install shouldn't be too elaborate hehe) ...

Ajax Tutorial

I am looking for a good resource on Ajax. Framework doesn't matter. Should have good samples for typical real world scenarios. Thanks in advance. ...

Sample a running Python app

Hi. I'm used to sampling C-based apps, which every few milliseconds sees what function stack is being called at that moment. This allows me to see where most of the time is spent in an app so I can optimize it. When using python, however, sample isn't so helpful, since it's sampling the C functions of the python interpreter, not the py...

Your Favorite LINQ-to-Objects Queries

With LINQ, a lot of programming problems can be solved more easily - and in fewer lines of code. What are some the best real-world LINQ-to-Objects queries that you've written? (Best = simplicity & elegance compared to the C# 2.0 / imperative approach). ...

Good Domain Driven Design samples

I'm learning about DDD and enjoying every minute of it. However, there are some practical issues that are confusing to me that I think seeing some good samples might clear up. So being at peace with those issues, does anyone know of some good working code samples that do a good job of modeling basic DDD concepts? Particularly intereste...

What are good resources for learning basic T-SQL for non-programmers?

Some of our clients want to do their own reports and lack the necessary knowledge. What are good free resources for learning basic T-SQL? What resources do you recommend to your clients and others wanting to start with SQL? Update: I totally agree with Cruachan, it's better not to do it. We usually don't go down that road and know ve...

Silverlight sample applications

I'm developing small silverlight apps since a few months and now I'm looking for some resources to improve my apps. I read through quite a bunch of samples and I know the basic technologies, now I'm looking for a complete, robust Silverlight application that I could study to learn the best SL app design approaches. I'm not looking for sm...

ASP.NET MVC Best Practices, Tips and Tricks

Please, share your ideas which could serve as best practices or guidelines for creating ASP.NET MVC web applications. These ideas and/or coding samples should be relevant to ASP.NET MVC application creation itself and not to TDD or similar practices. Other resources: ASP.NET MVC Best Practices (Part 1) by Kazi Manzur Rashid ASP.NET MV...

Playing sound samples on the iPhone

Hi, I've reached the point where i want to play some samples in my game/app. My instinct says use openAL ... I will have the situation where I will need to play multiple samples at once (however no more than 2 or 3) and the samples will be short (2 or 3 seconds). My question is what is the best way of playing samples on the iPhone give...

Can anyone tell me where can I get sample UML diagrams for an ERP system?

I want to study an ERP system. For that I want to study its processes. So if anyone can give me some useful links then it will be helpful to me, thanks. ...

Table module samples

Hello, I'm looking for some good open-source sample applications that use the Table Module pattern to organize the business logic (can be any language). Any suggestions? ...

Examples of Dynamics AX 2009 programming?

I'm just learning to program Dynamics AX 2009. So far I got the dev system running, I got some background about the architecture. Now I'm looking for some walkthrough-samples to learn more about programming in this system. Are there some samples available online? Can someone point me to some learning help? Maybe to some good AX-program...

sample java applications

.NET has codeplex for good sample applications to understand best practices. In Java, the first level of difficulty lies in finding a project with the frameworks you are interested to see implemented. In any case I've been unsuccessful in finding sample applications. SourceForge.NET has many, but a lot of them are incomplete. Many other...

What Does this MSDN Sample Code Do? - ItemsControl.ItemTemplate

This is a XAML code sample taken from the MSDN library article for the ItemsControl.ItemTemplate property: <ListBox Width="400" Margin="10" ItemsSource="{Binding Source={StaticResource myTodoList}}"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel> <TextBlock Text="{Binding Path=TaskName}" /> <TextBlock Text="{Binding Path=Descripti...

Unlimited fields in PHP?

How do I do unlimited fields in php? Here is the scenario: At first, there are only 2 fields, lets called: first name1, last name1 What I want to do is, when I click the "add" button, it will add another 2 fields in new row, the fields label/name should be first name2, last name2. And when I click again, it will have first name3, last ...

Large number of sample documents

Does anyone know where I can find a huge repository of sample documents, in a variety of subjects? I'm looking for at least a few thousands documents (Office or PDF should be fine) in order to test some algorithms... The documents should have some common ground - for example, a thousand docs related to programming, another thousand relat...

When a potential employer wants "code samples", what do they REALLY want?

I often see job posting with a request for "resume, cover letter, and code samples" and this baffles me. If I am applying for job with little, or no prior knowledge of what types of projects I'm going to be working on, how am I to provide code samples? And even if I have an idea of the type of project, what are they REALLY looking for...

How do you like SDK samples to be presented?

Samples are often distributed with SDKs to provide real world details on how to use the product. Some samples are complete applications, some are bare bones console applications and some are just plain text tutorials with code snippets. How do you like SDK samples to be presented? ...