galiyr

Stories kicked by galiyr

10 Ways To Programaticly Shoot Yourself In The Foot - Part B (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 6 months ago

This is part B of the 10 Ways To Programaticly Shoot Yourself In The Foot article. In this article I will talk about another 5 issues that even the best developers have to be aware of. In other words, I will try to prevent you from programaticly shooting yourself in the foot. read more...

add a comment |category: |Views: 873

tags: another

Windows Azure Table Storage(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

Windows Azure provides simple data storage services like blobs, tables and queues to store your data in the cloud. They are called as Storage Account Using Table Storage is one of the simplest way to start exploring the Windows Azure Storage. The tables are accessed using a Uri which is: http://{application... read more...

add a comment |category: |Views: 40

tags: another

C# 4.0 Dynamic Lookup - Are You Kidding Me? (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 6 months ago

One of the core features introduced in C# 4.0 is called Dynamic Lookup which allows a unified approach to invoking things dynamically. When you have an object of type dynamic you can do whatever you like with it, those operations are resolved only at runtime. I DON’T LIKE IT, ARE YOU KIDDING ME? read more...

2 comments |category: |Views: 824

tags: another

Software Tools You Should Be Using and Blogs You Should Be Reading(blog.obishawn.com)

submitted by SuperJasonSuperJason(2740) 3 years, 6 months ago

Advice on how to become a great developer and not just a monkey programmer. read more...

add a comment |category: |Views: 1029

tags: another

Naming Collisions And The Using Directive (dev102.com)

submitted by galiyrgaliyr(220) 3 years, 7 months ago

Are you familiar with the following C# compilation error: “CS0104: ClassA is an ambiguous reference between Namespace1.ClassA and Namespace2.ClassA“? Most software developer would solve that error by... read more...

add a comment |category: |Views: 378

tags: another

Functional C# - Implementing Async Computations in C#(codebetter.com)

submitted by mpodwysompodwyso(65) 3 years, 7 months ago

As I covered earlier in my post Functional .NET - LINQ or Language Integrated Monads, I talked about using asynchronous computation expressions (monads) from C# 3.0. Brian McNamara, of the F# team, posted back in May about using them from C#. But since then, things have changed slightly. Before, I showed a basic example of how to utilize the F# libraries from C#, but let's go deep under the covers to see how this actually works. read more...

add a comment |category: |Views: 14

tags: another

Object Oriented Programming With JavaScript(dev102.com)

submitted by galiyrgaliyr(220) 3 years, 7 months ago

In this article we are going to take an introductory look at how OO JavaScript works. I am going to assume you are familiar with Object Oriented Programming (OOP) concepts such as encapsulation, inheritance, and polymorphism. read more...

add a comment |category: |Views: 412

tags: another

Measure String Size In Pixels (C#) (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 7 months ago

Sometimes we need to know the width of a given string in pixels, do you know how to compute it? Before writing some long code, please notice that the .NET framework class library provides such a method... read more...

1 comment |category: |Views: 947

tags: another

XAML Power Toys and Mole(nablasoft.com)

submitted by GuardianGuardian(1104) 3 years, 7 months ago

A couple of very good tools to speedup form creation and help debugging read more...

add a comment |category: |Views: 12

tags: another

Pair Programming and Cross-training(valleyhighlands.com)

submitted by troytafttroytaft(55) 3 years, 7 months ago

One of pair programming's many benefits is that it helps cross-train the development team. read more...

add a comment |category: |Views: 9

tags: another

How To Use The SVN Client and Start Working With Your SubVersion Versi(dev102.com)

submitted by talisharon10talisharon10(800) 3 years, 7 months ago

how to use the Tortoise SVN client and work with your svn version control server read more...

1 comment |category: |Views: 246

tags: another

Measuring Programmers By Extra Hours (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 8 months ago

I am writing this article as a sequel to the Measuring Programming Progress By Lines Of Code article. Let me please talk about another common metric - measuring the amount of extra hours a software developer has done. read more...

add a comment |category: |Views: 456

tags: another

Add Configuration Files To Your Visual Studio Project (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 9 months ago

Wouldn’t it be nice if for each project, our resources and configuration files could be seen form visual studio? We would never need to find them using the windows explorer anymore and we will always have them right there even when coming back to a code which was written 2-3 years ago. read more...

add a comment |category: |Views: 10

tags: another

Free Visual Studio File Explorer Add-in(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

The Visual Studio File Explorer Add-in (sexy name we know, but hey, it’s self documenting) is a free Tool Window add-in for VS 2008 that provides a Windows Explorer style file system view. It’s particularly useful for performing routine file system tasks without the need to “context switch” away from Visual Studio, which can be time-consuming over the course of days and weeks. It is shell-enabled so extensions like TortoiseSVN work too. read more...

add a comment |category: |Views: 638

tags: another

A Programming Job Interview Challenge - The End (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 9 months ago

I think that this is the end of our series. I have no questions left in the bank… if you have any ideas for new questions and you want them to be published here at www.Dev102.com, don’t hesitate to contact us. read more...

add a comment |category: |Views: 8

tags: another

How To Access A WPF Control Which Is Located In A DataTemplate (dev102.com)

submitted by razamitrazamit(4566) 3 years, 9 months ago

Ever tryed to programatically change something in a WPF control that is in a DataTemplate? not so easy, here is how to do it read more...

add a comment |category: |Views: 492

tags: another