(Lviv community of .NET developers)

Recent posts

Lviv .Net User Group #4

July 9, 2010 03:47 by alexk
Hi All,

And here is our new meeting! Meeting will take place at SoftServe meeting room at Pasternaka street 5 on 14 of July at 19:30.

Agenda:

1. "NHibernate" by Andriy Buday
2. "MEF" by Derik Whittake . Attention - the presentation will be in English.

Additional information about Derik can be found here: Info

Register

You can register to our meeting using next link: Click

Guys, just FYI:
Presentation by MVP is like a Jackpot for User Group and it's members, so it's highly recommended for you to visit.
You can get information about MVP rank using next link: http://mvp.support.microsoft.com/

For all your questions you can contact me using email:
diwingless(at)gmail(dot)com

Or via skype:
Hmmdima

Best Regards,
-Dima

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: .NET
Actions: Permalink | Comments (9) | RSSRSS comment feed

Полезные сслки - Part 8

August 31, 2009 12:51 by alexk

Building .NET coverage tool

http://www.codeproject.com/KB/cs/dot-net-coverage.aspx
Отличный обзор и реализация/использование NCover.
Для тех кто не знает что такое Code Coverage:
http://en.wikipedia.org/wiki/Code_coverage ... >>>

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Notify me about server failure

May 23, 2009 21:32 by alexk
Hi everyone, sorry for keeping your waiting for my next post so long time. I was busy on Android OS investigation. But now I'm back.

Introduction


Do you know how to check is your server is still running and give your customers something? No. Then you should go to administrator room and ask technical stuff there. I think after hearing the answer you will be a little disappointed. On market still does not exist simple and easy solution.
Microsoft suggest to use there servers that cost a lot; several vendors suggest to buy there services (InternetSeer for example), others simply waiting customer feedback and re-act on it.
I think this is not right. It's time to change those things. I have to feel my servers on fingers, and re-act faster then any customer catch the problem.

Concept


In our company we have several servers each one specially installed for particular task. For administrator is critical to check stability and availability of those servers. But administrator can not sit 24/7 and watching servers. So we need small automation here.

Several questions from the begging catch my attention:
1) if all servers in domain failed, how I can receive notification about that? What happens if internet channel become broken physically?
2) How I can detect that several services on server stop working properly?
3) Can I provide some "sugar" for solution?!

So I start thinking and designing. Phone call interrupt me for a minute, but also give me a nice idea: GSM Modem can become a backup channel that can notify me about server problems.
WOW! Its was very nice idea and easy to implement. 10 minutes and GSM modem was ordered over internet. My choice is: NOVACOM GNS-30 CRA. It cost a little, it done in industrial standard metal case, easy to mount, easy to program.
NOVACOM GNS-30 CRA ... >>>

Currently rated 5.0 by 4 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Екзамен на "халяву", 71-505 TS: Microsoft .NET Framework 3.5, Windows Forms Application Development!

October 30, 2008 22:19 by rredcat
Префікс 71 вказує на те що це бета, кількість питань зазвичай більша, результати отримують за місяць-півтора, інформації по темі майже 0, от такі недоліки. Про переваги:
... >>>

Currently rated 5.0 by 5 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: .NET
Actions: Permalink | Comments (7) | RSSRSS comment feed

OracleDecimal and ODP.NET IConvertable exception

September 30, 2008 10:49 by alexk

Oracle ODP.NET

I'm working now on a new project that in internals use ODP.NET - ORACLE Data Provider for .NET and latest Oracle 11g.

First of all I want to mention that ODP.NET is a great disappointment for me. In writing of very simple a stupid code ODP give me so many issues that I start to think that ORACLE completely loose own mind and release very unstable library for developers. I loose 2 days for fighting with found issues and I hope my article will help others a lot.

Simple Scenario that does not work in ODP.NET

Let's start from the simple scenario: Create typed DataSet with several tables, infill dataset by the data and update database by that data. Primary keys of the rows must be updated by Adapter automatically on Update method call.

... >>>

Currently rated 5.0 by 3 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Семiнари для розробникiв

September 16, 2008 13:46 by rredcat
23 вересня — 27 листопада 2008 року
Київ, Житомир, Рiвне, Тернопiль, Хмельницький, Вiнниця, Миколаїв, Херсон, Суми, Iвано-Франкiвськ, Днiпропетровськ, Запорiжжя, Донецьк, Харкiв, Львiв, Сiмферополь, Одеса ... >>>

Currently rated 5.0 by 3 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags: , ,
Categories: WPF | .NET | WinForms | Links | ASP.NET | WinFx | Networking
Actions: Permalink | Comments (5) | RSSRSS comment feed

IP geo-location - make it easy!

September 9, 2008 00:49 by alexk

Introduction

Today I want to open one more interesting part of making internet business - statistics collection. I hope you already knows popular service Google Analytics that helps many companies to track internet activity on web site (main issue that those analytics is not runtime, you have to wait 1 day for getting ready to use statistics). But do you want to know how to make own statistics tracking engine on IIS? I hope you do.

In this article I will describe how to collect statistics from IIS and how to do most common thing - resolve clients IP into geo-locations.

Theory

Let's make a quick look on web site hosting. What we can see? Let's count:

  1. IIS hosting server
  2. Web site (for example ASP.NET)
  3. Database (for example MS SQL Server)

Those 3 components are the most common for every web site based on Microsoft technologies.

Statistics tracking can be done only on first two components: IIS and ASP.NET... (but this is not exactly true, if take a look into depth then we can identify that in reality we have only one component IIS and it's filters model - ISAPI filters.)

Tracking of statistics on IIS layer is well described by Microsoft in own knowledge database.

... >>>

Currently rated 5.0 by 3 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Корисне розширення функціоналу Snoop'а

July 30, 2008 17:22 by rredcat
Будь-хто грається з WPF повинен був стикатись з такою чудовою тулзою для дабагання візуального вигляду рантайм як Snoop. Та на мою думку дечого їй не вистачало.
... >>>

Currently rated 5.0 by 2 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Полезные ссылки - Part 7

July 21, 2008 21:34 by alexk
C# avionic instrument controls By Chootair
http://www.codeproject.com/KB/miscctrl/Avionic_Instruments.aspx



Статья интересна "расжованной" тематикой поворота картинок, ну и конечно самими контролами.
... >>>

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Семінар для розробників 2008 (Львів)

May 12, 2008 07:41 by rredcat
Перегляд Події

Програма семінару та розклад:

14:00 – 15:00 -
SilverLight 2: нові можливості – Дмитро Іванов

15:00 – 16:00 - Огляд можливостей ASP.NET 3.5 – Андрій Василевський

16:00 – 16:30 - Перерва

16:30 – 17:30 - Використання Windows Live служб

17:30 – 18:00 - Нові напрями в сертифікації спеціалістів-розробників

Семінар проводиться безкоштовно, але реєстрація є обов'язковою.
З питаннями та пропозиціями звертатися до Дмитра Баценка (dmytro.batsenko@microsoft.com)

... >>>

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags: , ,
Categories: .NET
Actions: Permalink | Comments (1) | RSSRSS comment feed