|
|
shaharyr
Stories kicked by shaharyr
|
|
submitted by
shaharyr
1 day, 8 hours ago
dev102.com — ...she tried to use the “find in files” option in Visual Studio 2005 and even though the searched expression was out there in one of the files, she got the following result: “No files were found to look in. Find was stopped in progress.” read more...
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
shaharyr
4 days, 2 hours ago
dev102.com — How many timed did you write a TODO comment in your code? How many time did you forget about this comment and met it again only some months later? read more...
add a comment
|
category: Architecture | Views: 16
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
shaharyr
9 days, 19 hours ago
dev102.com — Many times I want to make my WPF Controls have a 3D effect. For examples Headers of lists and such. Saddly there is no built in way to do it so we have to come up with a custom solution. I don’t want to use Bitmap effects due to performance reasons... read more...
add a comment
|
category: Architecture | Views: 11
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 14 days, 18 hours ago, submitted by
shaharyr
16 days, 19 hours ago
dev102.com — With WebForms, integrating with Ajax libraries other than ASP.NET AJAX was slightly painful. With the new ASP.NET MVC Framework, however, you can use jQuery without these additional headaches. read more...
add a comment
|
category: ASP.NET | Views: 265
|
|
tags:
lanciaux, JSON, Color, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
shaharyr
17 days, 21 hours ago
dev102.com — 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...
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
shaharyr
24 days, 18 hours ago
dev102.com — 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: C# | Views: 7
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 29 days, 18 hours ago, submitted by
shaharyr
1 month ago
dev102.com — The fourteenth post of the series of programming job interview challenge is out, 83 readers provided an answer to job interview challenge #13. Your input is a list of points in a 2D space. If you draw lines between one point to the next one, a closed polygon is created (can be either concave or convex)... read more...
1 comment
|
category: Architecture | Views: 201
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 4 days ago, submitted by
shaharyr
1 month, 4 days ago
dev102.com — Have you ever tried using the "Using" statement with a method and not a class? Why not take the "Using" statement and make it more useful. The Dispose method we want to be called does not have to Dispose of stuff, it can do anything we want! read more...
10 comments
|
category: Architecture | Views: 482
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 10 days ago, submitted by
shaharyr
1 month, 11 days ago
dev102.com — Sometimes we are using the same patterns of code over and over again. Those of us who are lazy (but smart) will create their own code snippets, if you are not familiar with this subject, read about how to create code snippets easily. But what if we need to create lots of classes with the same pattern? Code snippets may not be enough because they lack of some functionality which is needed to achieve our goal. read more...
add a comment
|
category: Architecture | Views: 275
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 14 days ago, submitted by
shaharyr
1 month, 14 days ago
dev102.com — Your input is a string which is composed from bracket characters. The allowed characters are:’(', ‘)’, ‘['. ']‘, ‘{’, ‘}’, ‘<’ and ‘>’. Your mission is to determine whether the brackets structure is legal or not.
read more...
add a comment
|
category: Architecture | Views: 240
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 17 days ago, submitted by
shaharyr
1 month, 17 days ago
dev102.com — The question is do you know all the HTML tags? Do you know exactly how they work and what each tag does? And the most important of all, how each tag acts in each browser?
read more...
add a comment
|
category: Architecture | Views: 352
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 19 days ago, submitted by
shaharyr
1 month, 19 days ago
dev102.com — Yes, I will use m_ prefix for class members. I DO NOT NEGOTIATE WITH TERRORISTS. Shut up.
Actually, I don’t mind which prefix shall be used but in order to make member variables distinct from local variables, we have to give it some prefix. This is a part of a coding convention for C++ adopted by Microsoft called Hungarian notation. Some of you may say that it may be a bit disturbing using C++ naming conventions in C# code, but...
read more...
add a comment
|
category: Architecture | Views: 313
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 20 days ago, submitted by
shaharyr
1 month, 20 days ago
dev102.com — Say you are writing an application and one of the requirements is to allow File System search. You could always start using loops and such. I thought to myself why not do it in LINQ? I played around with it and in fact it is not so hard...
read more...
add a comment
|
category: Architecture | Views: 285
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 27 days ago, submitted by
shaharyr
1 month, 27 days ago
dev102.com — Be aware of this matter because it is not a trivial issue and apparently, there are no errors or warnings generated by the compiler. So, the rule to remember is to never call virtual methods from constructors. read more...
1 comment
|
category: Architecture | Views: 301
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 2 days ago, submitted by
razamit
2 months, 2 days ago
dev102.com — The other day I wan in the need of a sorted collection. I found that there are 2 sorted collections available. SortedDictionary and SortedList. Now let me ask you, what do you think is the difference? read more...
add a comment
|
category: C# | Views: 507
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|