pwab

Stories kicked by pwab

The most common software security mistakes(barmagy.com)

submitted by FadyFady(275) 4 years, 8 months ago

Through my humble experience with software development I’ve seen developers making fetal security mistakes without even feeling that they are doing something wrong. So I’ve decided to gather these common mistakes in a list so it would be easier to avoid. Through this article I will give examples regardless to the used technology but the concepts applies to all technologies. So here we go read more...

2 comments |category: |Views: 11

tags: another

MSDN is just too hard to navigate sometimes(blog.tfstracker.deltapi.co.za)

submitted by pwabpwab(35) 4 years, 8 months ago

I have PROOF; You can unsubscribe from events even if you haven’t subscribed to them (OR Sometimes MSDN is just too much trouble) read more...

add a comment |category: |Views: 0

tags: another

.NET web apps (and ProMesh.NET) on Linux (Mono)... "It just works"(blog.activa.be)

submitted by activaactiva(2340) 4 years, 8 months ago

I was a little curious about how ProMesh.NET (MVC Web Framework for .NET 2.0) would run on Mono (if at all) read more...

add a comment |category: |Views: 16

tags: another

Essential MonoRail(panteravb.com)

submitted by chrcar01chrcar01(560) 4 years, 8 months ago

Describes the bare minimum, essential code only, to get Caslte's MonoRail to render content. Visual Studio not needed. read more...

add a comment |category: |Views: 9

tags: another

Sorting Effectively(blog.tfstracker.deltapi.co.za)

submitted by pwabpwab(35) 4 years, 9 months ago

Shows a trick I learned when you want to do problem-specific sorting on a collection of objects. read more...

add a comment |category: |Views: 2

tags: another

The Least You Need to Know about C# 3.0 (Beta 2 Edition)(blogs.msdn.com)

submitted by Coldduck9Coldduck9(470) 4 years, 10 months ago

A lot of people (myself included) have written about LINQ in the next version of C#. LINQ is indeed an empowering technology. However, even without LINQ, C# 3.0 would be a compelling upgrade. Now that Beta2 is publicly available, here’s my personal list of the most useful features in the next release. read more...

add a comment |category: |Views: 2

tags: another

Message passing architecture in C#(blog.tfstracker.deltapi.co.za)

submitted by pwabpwab(35) 4 years, 10 months ago

A lot of people have written about the benefits of writing software, especially concurrent software, in a message passing architecture. The poster-child language for this style of programming is Erlang, a functional language. In this post I will explain briefly what “message passing architecture” means (in .NET terms), and how I implemented it in my OSS library ErlyThreads, which I am using in the TFSTracker application. read more...

6 comments |category: |Views: 712

tags: another

Event Properties - Memory Efficient Events(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 7 months ago

Description of how to define events in a more memory efficient way. read more...

add a comment |category: |Views: 26

tags: another

What Great .NET Developers Ought To Know (More .NET Interview Question(hanselman.com)

submitted by jasper22jasper22(1320) 5 years, 7 months ago

Very long and good list with C#, .NET related questions. Most of them every .NET programist should know and/or understand the principles. Very recommended to read to everyone. Here some answers: http://www.mwilliams.info/archives/005937.php read more...

add a comment |category: |Views: 268

tags: another

How to increase application scalability using Plugin Support(spellcoder.com)

submitted by bashmohandesbashmohandes(3000) 5 years, 7 months ago

This article discusses implementation details of how to support loading Assemblies in different App-Domains in run time, also how to control the execution and crashes. read more...

add a comment |category: |Views: 3

tags: another

What is a collection?(blogs.msdn.com)

submitted by CharlieCalvertCharlieCalvert(7875) 5 years, 7 months ago

Mads Torgersen has an intriguing new post on LINQ, collections and collection initializers. Mads is the language PM in the C# group at Microsoft and has a deep understanding of this subject. read more...

add a comment |category: |Views: 4

tags: another

Performance of foreach vs. List.ForEach(diditwith.net)

submitted by cls2degcls2deg(1535) 5 years, 7 months ago

Today I was iterating a List<int> using a foreach-loop and feeling a bit smug in knowing how much more performance-conscious I was being than if I'd tried doing the same thing with an ArrayList filled with ints. Thanks to the wonder of generics, the C# compiler neatly avoids numerous boxing operations by using a System.Collections.Generic.IEnumerator<int> instance instead of the older System.Collections.IEnumerator. Then I got to thinking: "is this really the fastest way?" Upon investigation, it turns that, no, it isn't the fastest way. read more...

1 comment |category: |Views: 367

tags: another