rmarley

Stories kicked by rmarley

Making NCloak fool Reflector (an implementation) : Paul Mason(blog.paul-mason.co.nz)

submitted by tivittivit(364) 2 years, 4 months ago

In the last article of the series we took a look at two different methods for stopping Reflector being able to successfully decompile our code: inserting invalid IL, and modifying header information. Today we'll implement the more common approach: inserting invalid IL into each method inside our assembly making unreadable in Reflector. read more...

3 comments |category: |Views: 226

tags: another

NHibernate - Opinionated Style(mattfreeman.co.uk)

submitted by mattcodesmattcodes(80) 3 years, 3 months ago

Opinionated ideas/style related to creation, validation, encapsulation and repositories when using NHibernate read more...

add a comment |category: |Views: 11

tags: another

WPF XAML Data Binding Cheat Sheet(nbdtech.com)

submitted by CryogenicCryogenic(75) 3 years, 3 months ago

One of the best things about WPF is the advanced data binding support, the Binding class that is used to create data bindings has many interesting and useful options. And I never remember the more advanced options when I’m writing XAML. So I wrote a very detailed “cheat sheet” for the WPF Binding class ... read more...

add a comment |category: |Views: 500

tags: another

SQL SERVER - T-SQL Script for FizzBuzz Logic - Puzzle(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 3 years, 3 months ago

Following is quite common Interview Question asked in many interview questions. FizzBuzz is popular but very simple puzzle and have been very popular to solve. FizzBuzz problem can be attempted in any programming language. Let us attempt it in T-SQL. Let us see if you can do this simple exercise or not? read more...

1 comment |category: |Views: 171

tags: another

Richard Campbell - How I Got Started In Programming(geekstorycorp.blogspot.com)

submitted by coreyhainescoreyhaines(334) 3 years, 4 months ago

Richard Campbell of DotNetRocks was interviewed on how he got started in programming. Great video! read more...

add a comment |category: |Views: 194

tags: another

Carl Franklin - How I Got Started In Programming(geekstorycorp.blogspot.com)

submitted by coreyhainescoreyhaines(334) 3 years, 4 months ago

Carl Franklin of DotNetRocks was interviewed on how he got started in programming. Great video! read more...

2 comments |category: |Views: 268

tags: another

Repository<T> good or bad?(codebetter.com)

submitted by malovicnmalovicn(1590) 3 years, 4 months ago

Greg took a bite on current ALT .Net hot topic: Generic repositories read more...

1 comment |category: |Views: 851

tags: another

NHibernate.Linq Alpha Released(groups.google.com)

submitted by LordLord(3737) 3 years, 4 months ago

NHibernate.Linq is a Linq provider for NHibernate 2.0.1 GA. It processes Linq expressions using NHibernate's Criteria API. This release is meant as a stopgap release pending an implementation not reliant on the Criteria API. Most queries are supported with the exception of the following: - Group Joins - Subqueries in select clause read more...

add a comment |category: |Views: 426

tags: another

An Illustrated Guide to Git on Windows(nathanj.github.com)

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

"This document is designed to show that using git on Windows is not a difficult process. In this guide, I will create a repository, make several commits, create a branch, merge a branch, search the commit history, push to a remote server, and pull from a remote server. The majority of this will be done using GUI tools." read more...

3 comments |category: |Views: 580

tags: another

Search Engine friendly error handling(blog.turlov.com)

submitted by aturlovaturlov(355) 3 years, 4 months ago

Explains best practices of error handling in ASP.NET web application considering being search engines friendly. read more...

add a comment |category: |Views: 283

tags: another

A new breed of magic strings in ASP.NET MVC(lostechies.com)

submitted by johnsheehanjohnsheehan(4785) 3 years, 4 months ago

One of the common patterns in Ruby on Rails is the use of hashes in place of large parameter lists. Instead of hashes, which don’t exist in C#, ASP.NET MVC uses anonymous types for quite a few HTML generators on the view side. This is a trick used by the MVC team to simulate hashes. Since the dictionary initializer syntax is quite verbose, with lots of angly-bracket cruft, anonymous types provide a similar effect to hashes. However, don’t let the magic fool you. Anonymous types used to create dictionaries are still dictionaries. read more...

2 comments |category: |Views: 373

tags: another

Learn how to consume a WCF Service(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 4 months ago

Learn how to setup your .net application to consume as WCF service. Take a look at how you can Visual Studio to create your service proxy as well as how to use SvcUtil to create the proxy. read more...

add a comment |category: |Views: 391

tags: another

Time released content in ASP.NET(weblogs.asp.net)

submitted by JemmJemm(9604) 3 years, 4 months ago

"While working on the PDC2008 website, we had several time-critical updates. There were some announcements that needed to go live on the website at specific times to coincide with other marketing, there were updates to the list of of software being given to attendees that needed to go live right after the keynotes in which they were announced, etc." read more...

add a comment |category: |Views: 284

tags: another

Windows Azure - Breaking It Down(codethinked.com)

submitted by leedumondleedumond(2144) 3 years, 4 months ago

Despite the title of this post, there will be no rapping or dancing of any sort going on here. Only talk of Windows Azure, which is quite possibly the most confusing product rollout that Microsoft has attempted since Vista... read more...

add a comment |category: |Views: 349

tags: another

ALT.NET Podcast Episode 15: Domain Driven Design(altnetpodcast.com)

submitted by powerrushpowerrush(3873) 3 years, 4 months ago

Talking with Rob Conery and James Avery about Domain Driven Design. read more...

add a comment |category: |Views: 243

tags: another

How to Calculate Network Utilization in .NET(nayyeri.net)

submitted by niikniik(365) 3 years, 4 months ago

How to calculate utilization of a particular network interface in .NET using performance counters and a bit of math. read more...

add a comment |category: |Views: 519

tags: another