Posted by: de-Hao on: April 5, 2009
Posted by: de-Hao on: February 17, 2009
A few of my fellow developers and I are entertaining the idea of putting together an entrepreneur-developer camp in the Milwaukee WI area, sometime in March of this year. This initiative is geared towards encouraging and empowering developers (primarily .NET folks) who have relatively limited free time but yet have some mind-blowing entrepreneurial startup projects in mind, to tap into a pool of well-oiled and like-minded coders — in an effort to collaboratively kick-off a web startup.
The modalities for profit sharing and associated agreements are in the works.
First, Who?
If you are a (.NET) Developer/Architect or you personify the term “jQuery Guru” or perhaps you are a “knock-down” Design junkie or maybe a sharp-witted Strategist or Agile Evangelist, this might be for you. If you are just interested in networking with other developers and learning how other developers collaborate on projects in an “Agile” way, you are more than welcome to peep in.
Think iPhone Apps, Facebook Apps., “Software as a Service” (SaaS) Apps., Games for the Xbox, Wii, etc.
Supposing you are not good at this coding stuff, but you can pull off the marketing side of things and maybe you have a “Killer-App” in mind, you are more than welcome to come pitch your ideas to the team.
Then, How?
Support
So far, we have garnered support for camp location/development space. Ideally you will walk in with your own development tools (preferably a laptop), maybe a pillow and a blanket (where need be). If you are like me, you are probably thinking free “lite” beer (I mean, it is MKE for goodness sake), good pizza and some BW3 wings or sushi to keep you going. We will do what we can to make it fun for you! J
If this tickles your fancy or you have further questions, drop me a note here on my blog or via my email (idehao@gmail.com).
Posted by: de-Hao on: December 26, 2008
It’s been a while since I used inline code statements in ASP.NET. If you are a C# developer getting back into the ”old-school”-Classic-ASP way of doing things, perhaps because you are working on an ASP.NET MVC project, you might run into an error similar to this: “error CS1026: ) expected“. This misleading error message alludes to the fact that you might be missing a closing parenthesis, unfortunately that is not the case.
The perpetrator is the semicolon (”;”) at the end of the inline statement. Simply remove it to resolve the issue. You are probably used to this from Java or JavaScript or C# programming or maybe F# code… or whatever your excuse is.
For example, instead of:
<head runat="server"> <title><%=ViewData["Title"];%></title> </head>
Go with something like this:
<head runat="server"> <title><%=ViewData["Title"]%></title> </head>