IronRuby Manager Leaves Microsoft
blog.jimmy.schementi.com
IronRuby Manager Leaves Microsoft
1–10 of 43 posts
Re: IronRuby Manager Leaves Microsoft
#2"However, a year ago the team shrunk by half and our agility was severely limited. I’m omitting the internal reasons for this, as they are the typical big-company middle-management issues every software developer has."
This is one of the things that can happen to you when you work at Microsoft. You can start thinking that the terrible work problems you face are both "typical big-company...issues" and problems that "every developer" has to face.
First, many of these issues, and especially their particular flavor, are not general to the business. Second, not every developer works for a big company. You have to get out and work elsewhere for a while to see this.
There's a minimsft.blogspot.com, but is there an equivalent for Apple? For Google? If so, are they as well known? Do they draw knowledgeable commenters from within the ranks of the host/target company?
There are many better places to work than Microsoft. The place seemed truly pathological to me.
Re: IronRuby Manager Leaves Microsoft
#3Re: IronRuby Manager Leaves Microsoft
#4Possibly off-topic. "However, a year ago the team shrunk by half and our agility was severely limited. I’m omitting the internal reasons for this, as they are the typical big-company middle-management issues every software developer has." This is one of the things that can happen to you when you work at Microsoft. You can start thinking that the terrible work problems you face are both "typical big-company...issues"…
Every corporation sucks in some way ... and if there isn't a minimsft equivalent for Google/Apple ... that's a point in Microsoft's favor.
Re: IronRuby Manager Leaves Microsoft
#5Re: IronRuby Manager Leaves Microsoft
#6Probably not that big of a deal if they stop supporting IronRuby. What's the point anyhow? Ruby is most popular because of RoR and Microsoft already has an MVC framework that works just fine. There was some very limited effort to port ASP.NET MVC to IronRuby, but it looked dead in the water to me. Plus, I hear straight up Ruby has built-in bindings for Windows, so IronRuby isn't necessary for scripting either.
Re: IronRuby Manager Leaves Microsoft
#7Re: IronRuby Manager Leaves Microsoft
#8Probably not that big of a deal if they stop supporting IronRuby. What's the point anyhow? Ruby is most popular because of RoR and Microsoft already has an MVC framework that works just fine. There was some very limited effort to port ASP.NET MVC to IronRuby, but it looked dead in the water to me. Plus, I hear straight up Ruby has built-in bindings for Windows, so IronRuby isn't necessary for scripting either.
Re: IronRuby Manager Leaves Microsoft
#9Re: IronRuby Manager Leaves Microsoft
#10Probably not that big of a deal if they stop supporting IronRuby. What's the point anyhow? Ruby is most popular because of RoR and Microsoft already has an MVC framework that works just fine. There was some very limited effort to port ASP.NET MVC to IronRuby, but it looked dead in the water to me. Plus, I hear straight up Ruby has built-in bindings for Windows, so IronRuby isn't necessary for scripting either.
The reason you should care (assuming you're a .net developer) is that the DLR lets you do all sorts of cool things such as the following c# snippet calling python code:
ScriptRuntime py = Python.CreateRuntime();
dynamic random = py.UseFile("random.py");
//Make an array of numbers
var items = Enumerable.Range(1, 7).ToArray();
random.shuffle(items);
(source: http://www.hanselman.com/blog/C4AndTheDynamicKeywordWhirlwin...)Being able to have ruby, c#, python, et al all running in the same runtime with a clear stack you can inspect across the languages is awesome stuff.