Feeds:
Posts
Comments

Archive for the ‘Uncategorized’ Category

Idea: make a plugin for TeamCity integration server that can say after build: “WTF!!! Project XXX build is failed!!!” or “Good job!”.

I have writen a small program using Microsoft speech object library on C#:

Open text file and read all text from file aloud:

[CODE language="csharp"]
class Program {
static void Main(string[] args) [...]

Read Full Post »

RIA.NET + Silverlight 3: Store picture in database and display it in UI controls (DataGrid, DataForm)
We have a table in SQL server with field of “Image” type. We add ADO.NET Entity Data Model by standard way:

Then add table to model. Sql type Image by default is mapping on C# Binary type.
Then Domain Service Class.

And [...]

Read Full Post »

TeamCity 4.5 RELEASED!
Read about new features in http://www.jetbrains.com/teamcity/features/newfeatures.html. Migrating from 4.0.2 to 4.5 Now

Read Full Post »

Resharper very usefull tool but …
Sample:

[TestFixture]
public class Tests {
[SetUp]
public void SetUp(){
Debug.WriteLine("SetUp");
Assert.IsTrue(false);//can’t create some resource
[...]

Read Full Post »