aspinator

Stories kicked by aspinator

Honeypot Captcha - new Subskimet Captcha control(haacked.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 8 months ago

Comment spam bots love form fields read more...

add a comment |category: |Views: 55

tags: another

Rainbow Hash Cracking(codinghorror.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 8 months ago

The multi-platform password cracker Ophcrack is incredibly fast. How fast? It can crack the password "Fgpyyih804423" in 160 seconds. Most people would consider that password fairly secure.... read more...

add a comment |category: |Views: 8

tags: another

TDD vs. Design discussion(jpboodhoo.com)

submitted by snickers5x5snickers5x5(254) 4 years, 8 months ago

Blog entry from JP Boodhoo about when to use UML diagramming and how it fits in to the TDD/Agile paradigm. Good read. read more...

add a comment |category: |Views: 19

tags: another

C# 3.0 Collection Initializers, Duck Typing and ISupportsAdd(kirillosenkov.blogspot.com)

submitted by KirillOsenkovKirillOsenkov(570) 4 years, 8 months ago

Some thoughts and brainstorming about how to make collection initializers more universally usable, and some thoughts about duck typing in C#. read more...

add a comment |category: |Views: 15

tags: another

IHttpContext And Other Interfaces For Your Duck Typing Benefit(haacked.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 8 months ago

Phil Haack has created a number of Interfaces for various classes in the System.Web namespace including IHttpContext, IHttpRequest, IHttpResponse and IHttpSession. This allows us to easily mock these classes for testing and to use our own implementations of the provided framework classes. read more...

add a comment |category: |Views: 113

tags: another

Encapsulation and Automatic properties in C# 3.0(lowendahl.net)

submitted by lowendahllowendahl(750) 4 years, 8 months ago

With C# 3.0 MS realeases Automatic Properties as a simplified encapsulation that generates getters and setters for a similary automated backing field. But is this really the way to go? Should you have dumb getters/setters or are you violating YAGNI when doing so? What are the rational behind MS decision to do so. This post address all thoose questions. read more...

1 comment |category: |Views: 39

tags: another

Monorail #2 : Layouts & Rescues(lostechies.com)

submitted by jmeridthjmeridth(720) 4 years, 8 months ago

Covers layouts and rescue NVelocity files and how you use them with MonoRail. read more...

add a comment |category: |Views: 17

tags: another

DNK New Features: Profiles, Gravatars, Sortable Upcoming Stories(blog.incremental.ie)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 8 months ago

The DotNetKicks.com open source project has picked up quite a bit of steam lately, over 75 commits have been made to the SubVersion trunk in the past week (rss feeds). It is great that the project is moving again, thanks to the wonders of open source and a great community. The two big new features this week are user profiles and upcoming story sorting. read more...

7 comments |category: |Views: 1

tags: another

One Shell Command to delete all svn hidden folders(spellcoder.com)

submitted by bashmohandesbashmohandes(3000) 4 years, 8 months ago

If you are using Subversion source control, you will be familiar with the .svn folders that SVN adds to any folder under the source control, these folders are used to keep track of the current state of the folder, but sometimes, I want to copy my code and get rid of these folders, and instead of doing this manually which becomes a headache if you have a very deep hierarchy of folders, this is a Shell Script comes to the rescue read more...

3 comments |category: |Views: 17

tags: another

Attention: PHP executes twice as fast when it’s run on ASP.NET(ajaxninja.com)

submitted by AarononthewebAaronontheweb(1140) 4 years, 8 months ago

Phalanger, the tool for compiling PHP into .NET binaries, can improve the execution speed of PHP5 applications twofold. In addition it extends PHP5 so that it can incorporate portions of the .NET framework and it allows for Visual Studio integration. read more...

1 comment |category: |Views: 7

tags: another

LINQ to SQL (Part 9 - Using a Custom LINQ Expression)(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 8 months ago

Scott Guthrie continues his series of blog posts that cover LINQ to SQL. "LINQ to SQL is a built-in O/RM (object relational mapper) that ships in the .NET Framework 3.5 release, and which enables you to model relational databases using .NET classes. You can use LINQ expressions to query the database with them, as well as update/insert/delete data." read more...

2 comments |category: |Views: 48

tags: another

SQL SERVER - 2005 - Introduction and Explanation to sqlcmd(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 4 years, 8 months ago

I decided to write this article to respond to request of one of usergroup, which requested that they would like to learn sqlcmd 101. SQL Server 2005 has introduced new utility sqlcmd to run ad hoc Transact-SQL statements and scripts from command prompt. read more...

3 comments |category: |Views: 13

tags: another

Using SingleTagSectionHandler Instead Of appSettings(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 8 months ago

As an alternative to appSettings you can use SingleTagSectionHandler to store settings in a web.config file. Learn how. read more...

4 comments |category: |Views: 439

tags: another

Easily Test Custom Controls Inside of Visual Studio(jeremyjarrell.com)

submitted by jeremyjarrelljeremyjarrell(2685) 4 years, 8 months ago

Here's a quick way easily test and debug your custom WinForms controls right inside of Visual Studio without having to launch your entire application. read more...

add a comment |category: |Views: 7

tags: another

MbUnit 2.4.1 Released (dotnetsamplechapters.blogspot.com)

submitted by SQL_MenaceSQL_Menace(4890) 4 years, 8 months ago

MbUnit 2.4.1 has been released read more...

add a comment |category: |Views: 4

tags: another

Create an HttpModule to Process Wildcard Extension Mapping in ASP.NET (professionalaspnet.com)

submitted by docluvdocluv(1575) 4 years, 8 months ago

After you have configured IIS to allow wildcard extensions through ASP.NET how do you handle these request in ASP.NET. The answer is a custom httpModule and I extend this to a simple custom httpHandler. read more...

add a comment |category: |Views: 19

tags: another