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 controller, model, mvc, wcf
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 BBS, where is usurper at?
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 […]
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 hacking,, l33t, simulation
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 http, REST, web
Uncategorized
13 April 2011 | Comments Off on This Developer’s Life
Link: This Developer’s Life
Tagged in code, developers, microsoft, msft, podcast, rss, talk
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 b2b,, b2c, internet, suppliers, supply chain
Uncategorized
6 April 2011 | Comments Off on l33t
Tagged in emacs,, grep, kill, tron
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 code, css,, hack, jscript, transforms
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