RSS 2.0  Frustrated by Design
# Thursday, December 18, 2008

12-18-2008 8-55-14 AM

For some time now we've been working on a new option for ASP.NET Developers. ASP.NET MVC !

Phil Haak and the crew have been furiously at work on ASP.NET MVC and Stephen Walter (with great work from Phil, Tom, Jay, Jay-E, Rich, Zac, and JM) has been building a gallery to show off great MVC designs.

It's NOW LIVE HERE (http://www.asp.net/MVC/Gallery/)

To kick things off WE'RE HAVING A CONTEST !!!

You can get all the details and submit your design until January 31st HERE (http://www.asp.net/MVC/Gallery/Competition/)

Thursday, December 18, 2008 10:11:36 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
ASP.NET | Misfit Geek [Syndicated] | MVC | Open Source
# Tuesday, December 16, 2008

SplendidCRM Software, Inc., a  provider of Microsoft-centric Customer Relationship Management (CRM) solutions for open-source use, announced the launch of Version 3.0 of SplendidCRM.

 

The release of Version 3.0 marks a milestone as it introduces the SplendidCRM Workflow Engine as a flagship feature in the new SplendidCRM Enterprise product.

 

"For many companies, workflow is a critical feature and we are pleased to be able to tightly integrate SplendidCRM with Microsoft Windows Workflow Foundation," said Paul Rony, President of SplendidCRM.

 

screenshot1-large

 

The Community version is FREE !

 

http://www.splendidcrm.com/

Tuesday, December 16, 2008 11:07:31 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [2] - Trackback
Dev Community | Misfit Geek [Syndicated] | Open Source | Partners & Products
# Monday, December 01, 2008

I thought this article at LinuxWorld was interesting [ Click HERE to Read ].

"Some customers are finding that they have a place for both and that Linux isn't necessarily an economic no-brainer"

Now before the SlashDot army starts to spam the MisfitGeek, I'm a LONG TIME Unix guy and Linux user.

I just hate buzzword jockeys that churn popular phraseology to support their emotional argument without qualified data to back it up !

Monday, December 01, 2008 9:57:10 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [1] - Trackback
Op-Ed | Open Source
# Friday, November 07, 2008

Komodo-5

I often want something between Visual Studio and NotePad :)

ActivieState makes some GREAT software and I recently installed Komodo 5 (I'm a longtime Komodo user)

I especially use it or Python, Perl, and various script dialects !

Some of the new stuff as described on the Komodo web page...

  • Shared code: With new support for the Git, Mercurial (hg), and Bazaar distributed version control systems (or the already supported Subversion, Perforce, and CVS), you can share your code with whichever SCC system you choose. And smart cross-SCC system checkout wizardry makes it easier to get to work on shared repositories.
  • Shared beauty: Consistent formatting improves code readability and maintainability in a team. Easily hook external code formatting tools (like PHP Beautifier, Perltidy, and astyle) into Komodo IDE 5.0 or add tighter integration via an extension.

  • Shared speed: Komodo IDE 5.0 is now built on the Mozilla 1.9 codebase (the same codebase as Firefox 3) and Python 2.6, so it's speedier, prettier (particularly the more native look on OS X), and has new features to aid in stability.
  • And more, of course: Like multiple top-level windows, slicker UIs for tabs and sidebars.... Check out the Komodo IDE 5.0 documentation for all the details.

    [ If you click HERE you can get a free trial. ]

    Friday, November 07, 2008 12:24:33 PM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    Open Source | Partners & Products
    # Monday, October 13, 2008

    Flickr-X

    Mehfuz Hossain has created a cool open source application based on ASP.NET MVC

    The CodePlex project can be found HERE !

    You can use the application LIVE - HERE !

    Monday, October 13, 2008 10:09:13 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [3] - Trackback
    ASP.NET | Misfit Geek [Syndicated] | MVC | Open Source
    # Tuesday, October 07, 2008

    mno2-home-banner

    Huge congrats to Miguel De Icaza and his team on the release Mono version 2.0

    You can read all about it here - http://www.mono-project.com/

    Tuesday, October 07, 2008 2:45:09 PM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    ASP.NET | Open Source
    # Friday, September 19, 2008

    NAML_small

    From their description .....

    nAML (.NET Application Language, pronounced as “namel”) is a visual modeling semantics to model .net applications with wide range of specific details. It contains extremely powerful visual notations and semantics to illustrate complex application components, processes and operations easily.

    The primary objectives of nAML can be considered as follows:


    • Provides a single space to visually describe one or more application systems with structural and behavioral components.
    • Provides a single space to visually describe one or more application systems with logical and physical components.
    • Provides a single space to visually describe one or more application systems from top to low level.
    • Provides a single space to visually describe a part or whole of one or more application systems.
    • Extremely simple and easy understand and learn from readers and designers perspective.
    • Concentrates on .NET applications, with its related logical and physical entities (user interface, application logic, business logic, database etc).

    http://code.msdn.microsoft.com/naml

    Friday, September 19, 2008 10:30:05 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    .NET | ASP.NET | Misfit Geek [Syndicated] | Open Source
    # Wednesday, September 03, 2008

    Centos

    I'm working on my demos for ZendCon and updating a PHP Chat application built on the Microsoft Ajax Client Libraries and the PHPMSAJAX codeplex project.

    Since I want to use a JSON serializer and PHP 5.2 has one built in, I wanted to upgrade the default PHP version on CentOS (5.1) to 5.2.

    To do this, I needed to install from an alternate repository maintained by "Remi" .

    He has a repository for many distros, but since I'm updating CentOS, I used the RedHat ES5 repository.

    Here are the commands you need to run.

    wget http://download.fedora.redhat.com/pu...5-2.noarch.rpm
    wget http://rpms.famillecollet.com/el5.i3...emi.noarch.rpm
    rpm -Uvh remi-release-5*.rpm epel-release-5*.rpm

    Ater these steps the .rpm(s) are you your system but that not installed and active.

    To "install" them do this.....

    yum --enablerepo=remi update php

    PHP 5.2.6 should now be installed.

    Check by running this command in a console.

    # php -v

    The output should indicate the latest version of PHP.

    To see the results from phpinfo(); you'll probably have to restart Apache. (Or at least I did.)

    Wednesday, September 03, 2008 5:30:35 PM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    Open Source
    # Monday, September 01, 2008

    Christian Wenz has pushed a new release of he PHP libraries for the Microsoft AJAX libraries with support version 3.5.

    Get it here on Codeplex http://www.codeplex.com/phpmsajax

    Monday, September 01, 2008 12:27:45 PM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    Misfit Geek [Syndicated] | Open Source
    # Thursday, August 14, 2008

    AJAXDataControls

    The Slackers have been busy !

    Check out the Open Source project on CodePlex.

    http://www.codeplex.com/AjaxDataControls/

    Not only is there a controls library and all the source code for the controls but a RICH set of demos that illustrate utilization.

    I'm now using them in my own projects.

    Check 'em out !

    Thursday, August 14, 2008 10:18:20 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    ASP.NET | Misfit Geek [Syndicated] | Open Source

    DoneWithOpenSource

    There is a reason they call me the Misfit Geek :)

    I've been doing PHP work for almost 10 years and I've worked at Microsoft for 7 of them.

    When I talk about Open Source, it's not form a "religions" perspective. I'm interested in the applications, the people and the business model.

    A PHP friend, Wez Furlong,  share a passion for making things that were necessarily designed to work together do exactly that. Wez is a pretty big figure in the PHP world and we did a panel together a few years ago at MIX in which Wez brilliantly described Open Source as "Itch Driven Development".

    The point is, it's the community need that drive the success of an Open Source project, no matter what the underlying technology.

    This one died.

    Check out my next blog post for a not on a COOL project that is alive and well !

    Thursday, August 14, 2008 10:11:58 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    Open Source
    # Friday, August 01, 2008

    nucoder_190_3

    Lots, even MOST PHP applications are Open Souce but what if you want to distribute your application but don't want to distribute your PHP Source Code ?

    Check out Nu-Coder from NuSphere.

    Nu-Coder converts the source code of PHP Script into compiled PHP bytecodes for both accelerated runtime performance and maximum security.

    http://www.nusphere.com/products/nucoder.htm

    Friday, August 01, 2008 11:40:09 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    Open Source | Security
    # Tuesday, July 29, 2008

    Not really "new" news but I stumbled across this while trying to figure out why Twitter seems to be down every day these days.

    http://www.techcrunch.com/2008/05/01/twitter-said-to-be-abandoning-ruby-on-rails/

    “We’re hearing this from multiple sources: After nearly two years of high profile scaling problems, Twitterclip_image001 is planning to abandon Ruby on Rails as their web framework and start from scratch with PHP or Java (another solution is to stick with the Ruby language and move away from the Rails framework).”

    Its hard to know in a scenario like this if it's the architecture, the framework, runtime issues, etc.

    Anyone know the specifics behind Twitters performance issues ?

    Tuesday, July 29, 2008 12:47:30 PM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    Open Source

    php-logo ms_sql_logo

    Version 1.0 of the SQL Server 2005 Driver for PHP is available for download on the MSDN download site.

    The possibilities are endless !!!

    Tuesday, July 29, 2008 8:38:19 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    Open Source
    # Monday, June 09, 2008

    YahooBrowserPlus

    I installed Yahoo's Browser Plus and run it though it's paces today (few passes as they are in the current preview.)

    This download is a quick 4 Megs and it installs the  VC++ 2005 Redistributeable.

    Due to what are primarily described as security concerns the use of BrowserPlus is currently restricted so that it will only run of Yahoo's own web properties.

    There are 2 demos.....

    1. A File Uploader
    2. An IRC client
    3. A JSON Inspector.

    Clearly we, as web developers, have a growing understanding that we need more than what the browser offers, at least in specific scenarios.

    But why Yahoo Browser Plus.

    Yahoo more or less describes the effort as a philanthropic one, built and offered up for the good of the rich web, but I wonder is there some value I'm missing.

    Silverlight and even Flash seem to me far more feature rich and, for that matter Google Gears and JavaFX also seem more promising.

    It's the new web so I'm always interested in what it will take to build the next great ASP.NET application.

    Check out and let me know what I'm missing.

    http://browserplus.yahoo.com/

    Monday, June 09, 2008 10:32:21 PM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    Open Source
    # Wednesday, May 28, 2008

    website_banner_main

    WUX315 - PHP on Windows: Not an Oxymoron!
    Session Day/Time: 6/6/2008 10:15AM-11:30AM
    Room: S230 A

    Is it a well kept secret? From Microsoft Internet Information Services, to AJAX, to Microsoft .NET, Windows is a viable platform for your existing PHP based applications. In this session, see how to configure PHP on Windows for performance and reliability and how you can take PHP applications to the next level by leveraging .NET and Windows.

    WUX314 - AJAX Programming with the Microsoft AJAX Technologies
    Session Day/Time: 6/5/2008 4:30PM-5:45PM
    Room: S320 C

    Microsoft AJAX Developer technologies are a collection of offerings that make AJAX programming slick and productive, but have you wrapped your head around all the pieces? This session provides a soup-to-nuts explanation of the Microsoft AJAX Technology Stack and demonstrates how to use Microsoft Visual Studio for AJAX, The ASP.NET Extension for AJAX, The AJAX Control Toolkit, and non-Microsoft third-party AJAX Libraries to develop true RIAs.

    Wednesday, May 28, 2008 6:33:20 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [0] - Trackback
    .NET | AJAX | ASP.NET | Events | Misfit Geek [Syndicated] | Open Source
    # Friday, February 22, 2008

     

    logo mssql  php

    Microsoft announces the CTP release of SQL Server 2005 Drivers for PHP

    This opens up some very cool possibility for heterogeneous environment developers.

    My first project ? A PHP Class library to integrate with ASP.NET's Membership & Profile System.

    Click HERE to get the SQL Driver CTP

    Click HERE to get the FREE Express Versions of SQL 2005 & Microsoft Visual Web Developer Express for ASP.NET

    Friday, February 22, 2008 12:10:44 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [1] - Trackback
    ASP.NET | Misfit Geek [Syndicated] | Open Source
    # Wednesday, January 30, 2008

    I'm still at the Lang.NET Symposium.

    I cornered Miguel today to ask him a question about Novell's Distos.

    He said "Joe !!, You always &^%-slap me in your blog."

    I felt bad. My negative opinions about Mono have only been about the IP issues and never about the technology or Miguel.

    If you don't know Miguel, he's the genius behind The Mono Project, and when I say genius, I mean he's a friggin' genius. (Not to mention he's a super nice guy, the kind you want to come to your dinner party.)

    What he was referring to is that I've comment in the past about mono as it equates to my personal opinions about Microsoft's Intellectual Property.

    I have been harsh, but Microsoft LIKES Miguel. (I don't know specifically but I'm sure that Miguel would be working for Microsoft if he choose to.)

    In fact, Miguel is one of those rare people in the Open Source community that is an advocate without being a zealot.

    What Miguel and a few of his very clever friends have accomplished is truly amazing.

    Mono is cool enough. C#, ASP.NET, Winforms in a Cross Platform Way.

    More recently, Miguel and Friends and built Moonlight.  Moonlight is an implementation of Microsoft's SIlverlight for Linux.

    So Miguel, at this very moment, I'm downloading the VM on your site for Moonlight.

    I'm going to try to confirm with Tomas that Phalanger will run on Mono and build a Phalanger demo, complete with Silverlight that runs on both .NET AND MONO !

    .... and I will SHOW both in my spring Open Source Conference Presentations.

    And.....

    If there is a hatchet to be buried, dinner and drinks are on me one night at Mix !

    Wednesday, January 30, 2008 5:59:54 AM (Atlantic Standard Time, UTC-04:00)  #    Comments [3] - Trackback
    Open Source
    Navigation
    About Me
        Joe Stagner
    Follow me on Twitter.

    View Joe Stagner's profile on LinkedIn

    MSDN

    Search
    RSS/Subscribe
      RSS 2.0 | Atom 1.0 | CDF  
    Archive
    <January 2009>
    SunMonTueWedThuFriSat
    28293031123
    45678910
    11121314151617
    18192021222324
    25262728293031
    1234567
    Contact
    Send mail to the author(s)  Send me email.
    Statistics
    Total Posts: 446
    This Year: 2
    This Month: 2
    This Week: 2
    Comments: 1447
    Disclaimer

    Disclaimer
    The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

    © Copyright 2009
    Joe Stagner
    Sign In
    All Content © 2009, Joe Stagner