Browsing archives for 'Uncategorized'

MVC and WCF

Uncategorized 11 June 2011 | 0 Comments

It’s not clear on the interwebs, or maybe my google searching skills are diminished…but if you want to make calls to a WCF service from and MVC application, the way it seems best to do it is to ignore the “M” and make calls to your service from within the controller.

Tagged in , , ,

The hottest tech stuff going on right now!

Uncategorized 9 June 2011 | Comments Off on The hottest tech stuff going on right now!

Link: The hottest tech stuff going on right now!

Tagged in ,

Bugs

Uncategorized 1 May 2011 | Comments Off on Bugs

From Wikipedia, a list of unusual software bugs, including the Mandelbug and Heisenbug. My favorite is the Schrödinbug: A schrödinbug is a bug that manifests only after someone reading source code or using the program in an unusual way notices that it never should have worked in the first place, at which point the program promptly […]

l33t

Uncategorized 29 April 2011 | Comments Off on l33t

Link: l33t trick your friends into thinking you are a hacking, facebook creating, computer phreak guru.

Tagged in , ,

How I Explained REST to My Wife

Uncategorized 18 April 2011 | Comments Off on How I Explained REST to My Wife

Link: How I Explained REST to My Wife Wife: A web page is a resource?

Tagged in , ,

This Developer’s Life

Uncategorized 13 April 2011 | Comments Off on This Developer’s Life

Link: This Developer’s Life

Tagged in , , , , , ,

The difference between B2B and B2C

Uncategorized 13 April 2011 | Comments Off on The difference between B2B and B2C

The major difference between B2B (Business to Business) and B2C (Business to Customer) in internet terms is the role of the B2B website. B2B concerns itself primarily with supply chain management. These are portals that allow businesses to deal directly with their suppliers and distributors online.  Allowing electronic transfer of orders, invoicing and even payments. […]

Tagged in , , , ,

l33t

Uncategorized 6 April 2011 | Comments Off on l33t

Link: l33t

Tagged in , , ,

Clever JS/CSS hack

Uncategorized 14 March 2011 | Comments Off on Clever JS/CSS hack

Link: Clever JS/CSS hack Short version: css transforms (for things stuck to the katamari), canvas (drawing the katamari),and z-index (illusion of depth).

Tagged in , , , ,

how am i just learning this?

Uncategorized 2 March 2011 | Comments Off on how am i just learning this?

you can find out the last modified date of a table or a stored procedure! select name, modify_date from sys.tables order by modify_date desc select name, modify_date from sys.procedures order by modify_date desc