bugmenot

Stories kicked by bugmenot

System.AddIn Pipeline Builder VB.NET edition(www.toove.com)

submitted by toovetoove(20) 2 years, 1 month ago

This is VB.NET version of the pipeline builder Visual studio add-on. It generates all 'View' and 'Adapter' classes needed for .NET 3.5 add-in development. read more...

add a comment |category: |Views: 22

tags: another

Supporting OpenId in an asp.net MVC site(codeharder.com)

submitted by aarnottaarnott(110) 2 years, 5 months ago

Introduction to OpenID on an asp.net MVC web site. On 3 minutes or so. read more...

5 comments |category: |Views: 314

tags: another

Multithreading in C# (with Asynchronous Delegates)(myviewstate.net)

submitted by kevinbabcockkevinbabcock(345) 2 years, 9 months ago

There are certainly powerful and complex multithreading capabilities built into the .NET Framework. But if you’re looking for an easy way to perform asynchronous operations in your applications, delegates are a quick solution. Delegates offer easy-to-use methods that abstract most of the threading details you would otherwise need to be worry about, queuing up work for thread pool worker threads that get dispatched as soon as a thread is available. In this tutorial I’ll give you a quick guide to using asynchronous delegates in your own applications. read more...

add a comment |category: |Views: 120

tags: another

How to secure .NET managed code and is it worth it?(blog.itmagination.pl)

submitted by kubagckubagc(10) 2 years, 9 months ago

Unlike .NET applications, unmanaged code compiles to machine code which is far more secure than what we have out of the box in C#/VB.NET. Before for reversed engineering we used debuggers that traced registers, showed API calls, strings and recognized procedures but we had to deal with it in pure assembler. How secure are our applications written in .NET Framework, what can we do to make them more secure and is it worth it? read more...

add a comment |category: |Views: 15

tags: another

NHibernate Linq Released(ayende.com)

submitted by just3wsjust3ws(560) 2 years, 10 months ago

Official release announcement for NHibernate Linq 1.0 RTM. Congratulations! read more...

add a comment |category: |Views: 321

tags: another

Exception signatures - organize your exceptions(blog.freakcode.com)

submitted by niikniik(365) 2 years, 10 months ago

Unhandled exceptions in your websites and applications are often a strong indication that one of your users is having a bad experience. Treat exceptions as TODO-items and use exception signatures to keep track of them without being overwhelmed. read more...

add a comment |category: |Views: 351

tags: another

Free PowerShell EBook(kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 2 years, 10 months ago

Looking for something to do this weekend? Looking to master PowerShell? PowerShell MVP Dr. Tobias Weltner has released a free book just for you, Mastering Powershell! read more...

1 comment |category: |Views: 320

tags: another

Combining Assemblies Using ILMerge(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 2 years, 10 months ago

When creating solutions that include multiple projects, Visual Studio creates an assembly for each project. This can lead to libraries that are complicated to use, needing many references. Using ILMerge, the assemblies can be combined into a single file. read more...

add a comment |category: |Views: 228

tags: another

How to read from Performance Counters(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 10 months ago

Part of the core .net framework allows you to not only create performance counters, but also allows you to read from them as well. We will show how you can easily create hooks to take advantage of these counters and read in the data. read more...

add a comment |category: |Views: 254

tags: another

Automatically minify and combine JavaScript in Visual Studio(encosia.com)

submitted by gt1329agt1329a(7849) 3 years ago

As you begin developing more complex client-side functionality, managing the size and shape of your JavaScript includes becomes a key concern. It’s all too easy to accidentally end up with hundreds of kilobytes of JavaScript spread across many separate HTTP requests, significantly slowing down your initial page loads. I hope you’ll find that this technique is a good compromise between the tedium of using manual minification tools and the overwrought complexity of setting up some of the more “enterprisey” automation solutions. read more...

add a comment |category: |Views: 514

tags: another

A quick review of different UI frameworks(itaibh.blogspot.com)

submitted by itaibhitaibh(60) 3 years, 1 month ago

This post reviews several frameworks used for creating graphical user interfaces. I've decided to create such a review after noticing many programmers take a specific GUI framework for granted, as it is their automatic-choice-by-tool (i.e., they use what they're IDE let them, barely understanding the layers required to develop such a framework, and that there are alternatives they might have chosen if they had knew about). read more...

add a comment |category: |Views: 151

tags: another

Runtime testing and casting objects of generic types(itaibh.blogspot.com)

submitted by itaibhitaibh(60) 3 years, 1 month ago

How to test objects for implementation of a specific generic type. read more...

add a comment |category: |Views: 11

tags: another

Awful Command Line Parsing API in .NET 4.0(tirania.org)

submitted by KhabaKhaba(125) 3 years, 3 months ago

Miguel de Icaza about System.Core's new System.Shell.CommandLine read more...

add a comment |category: |Views: 525

tags: another

Resharper Extended Trial Period and discount coupons(web2asp.net)

submitted by sedgeysedgey(1728) 3 years, 3 months ago

apparently their standard trial period for Resharper is 30 days. If you would like an extended 60 day trial and a 10% discount coupon........ read more...

4 comments |category: |Views: 3186

tags: another

To compare two filenames(blogs.msdn.com)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 8 months ago

Back in VB land I was making two different calls into some framework, and each call gave me back a filename, and I needed to judge whether the two results were talking about the same file. But how? The framework docs didn't give any guarantee that they'd give back filenames in the same format. What if one call returned long filenames and the other returned it with different casing? or 8.3 format? Or UNC? Or long UNC? The following function is the best I could come up with. I think it only makes sense to compare filenames if they point to an existing file. And I called the function "DidFileNamesPointToSameFile", in the past tense, because by the time the function returns then they might no longer point to the same file anymore! read more...

add a comment |category: |Views: 9

tags: another

Create an Access Database in C#(blog.jrpsoftware.com)

submitted by rplantrplant(750) 4 years, 4 months ago

I wrote some code last year to create an Microsoft Access Database, fill in some data and email it out. It never made it out to production so I thought I would share part of it here. read more...

add a comment |category: |Views: 195

tags: another