SpellCoder

Welcome to SpellCoder Sign in | Join | Help

Front Page News

  • moving to spellcoder.org

    There is a new version of spellcoder currently running on spellcoder.org based on BlogEngine.net. This site is no longer updated because simply it's impossible to upgrade the Community Server based software and we got a lot of spam comments. So yeah,...
    09-27-2009, 7:57 AM by dodyg to Lazy Coder
  • JavaScript - Flash Communication

    I used to work with flash all the times, in fact we used it in almost every project through college. You can do amazing things with flash very easily and honestly I love action script. Whenever you work with flash you will find yourself need to make...
    08-29-2009, 4:28 AM by Mahmoud Ibrahim to Beckham
  • Print support for Facebox and lightbox v1.0

    Hey, Its been a long time :) i was pretty busy in some work :( along with preparing to come back to Egypt for a small vacation isA .Anyway, you all know  facebox and Lightbox. I wanted to allow the user to print the content of the facebox and lightbox...
    06-09-2009, 6:07 PM by Mahmoud Ibrahim to Beckham
  • Migration to Oxite

    spellcoder.com will be moving to Oxite, so we can actually have a source code to the system to do any modification we need. Community Server just won't do it anymore since this is pretty much a casual community....
    06-02-2009, 4:01 AM by admin to Lazy Coder
  • MIX09 videos

    MIX conference is my favorite conference. It is always full of surprises, and it is not restricted to Microsoft technologies. It has been a habit for me to grab the links to MIX videos since MIX 07, and I'm keeping this habit for this year too :).Here...
    03-24-2009, 5:26 PM by tayseer to Tayseer On Programming
  • OSLO CTP 2 is out

    Download it here. I can’t wait to see what’s new here. I’ve been tearing my hair own trying to implement Schematron on M....
    02-15-2009, 3:47 AM by admin to Lazy Coder
  • Yet another SOA is dead article

    This time from a Microsoft Envagelist. “Seeing that SOA has been one of the most visible and widely talked about technology initiatives of the past decade, the fact that it has been pronounced “dead” would seem to require an autopsy to determine the...
    01-28-2009, 9:39 AM by admin to Lazy Coder
  • Tricking .Net 2.0 to run extension method is considered harmful

    http://www.codethinked.com/post/2008/02/Using-Extension-Methods-in-net-20.aspx   This is a common trick that unfortunately has tricked into open source libraries. Don’t do it. It’s bad because this trick will generate warnings in C# ASP.Net web...
    01-09-2009, 6:01 AM by admin to Lazy Coder
  • Fashion Disaster : SOA is Dead?

    “Once thought to be the savior of IT, SOA instead turned into a great failed experiment—at least for most organizations. SOA was supposed to reduce costs and increase agility on a massive scale. Except in rare situations, SOA has failed to deliver its...
    01-07-2009, 4:40 PM by admin to Lazy Coder
  • Why go Facebook when you can Outlook

    Facebook to outlook First, Facebook as a very successful social networking website already contains a lot of information that we need and that will save us a lot of work not only to get this information but to use it as well. Second, as...
    12-16-2008, 11:32 AM by Mahmoud Ibrahim to Beckham
  • Day 4: Mg Machine

    Since we are getting MGraph out of Mg, why not use IronScheme as an output since it is basically an AST and already based on DLR and it can be quite simple to have it for general purpose DSL machine construction kit. The other way is through XAML construction...
    11-27-2008, 5:31 PM by admin to Lazy Coder
  • Cloud Insanity

      Now this is just branding gone wild. Q: What is Azure? A: Well it’s a new cloud based Windows operating system, Windows Azure and a set of web services called Azure Services. Q: So what are Azure Services? A: They are Live Services, .Net...
    11-23-2008, 9:53 AM by admin to Lazy Coder
  • Day 3 : It’s the machine, stupid

    “So when I look at M's elements, I can only conclude that it too has the same aspects as the well known tooling and building blocks for parsers, grammars and the like available to everyone today: it's complex. With 'complex' I mean: you need proper knowledge...
    11-21-2008, 7:57 AM by admin to Lazy Coder
  • Automatic Admin interface for SQL Server using Django

    A problem that we face everyday is creating CRUD interfaced for our databases. Creating a CRUD interface is always a boring and tedious job. Even if you want to initialize your data, you may break something by mistake if you use SQL Server Management...
    11-20-2008, 7:51 AM by tayseer to Tayseer On Programming
  • Snake oil and development methodology

    For the past 5 years agile development mantra have been drilled into programmers heads and great, now the meme says “no, it’s not working” (read: Decline and Fall of Agile Development) Do you know what this means? A new round of books written why...
    11-18-2008, 3:11 AM by admin to Lazy Coder
  • JQuery Magic Continues --> Enable Searching and sorting in GridView at the client side.

    I geuss you heared about JQuery, Which is an amazing JavaScript library that makes it easy to create wonderful web effects in just a few lines of code. As the website says: “jQuery is a JavaScript library that takes this motto to heart: Writing JavaScript...
    11-16-2008, 12:24 PM by Mahmoud Ibrahim to Beckham
  • Windows Azure Overview

    Check out this excellent Windows Azure overview by Dare.   The infrastructure looks nice and it makes available a lot of stuff that needed to be configured by hand. But still, the biggest work in making RESTful oriented application in .NET (cloud...
    11-03-2008, 5:47 AM by admin to Lazy Coder
  • Day 2: A Developer Case for M

    I am excited about two things in Microsoft PDC 2008, no it’s not Windows Azure or Windows 7. The cloud infrastructure is nice but cloud is just an infrastructure architecture problem – and frankly I trust Amazon to get this right than Microsoft. ...
    11-01-2008, 10:47 AM by admin to Lazy Coder
  • Here’s some “great news”

    Microsoft is killing LINQ To SQL and apparently WF 4.0 will not be compatible with WF 1.0. Here’s a rule of thumb of using Microsoft technologies. Trust the language guys and run time guys,  be wary of everybody else especially the bloody data...
    10-31-2008, 9:20 AM by admin to Lazy Coder
  • Introducing M Language

    Download this video of Don Box and Chris Anderson running through M language (mp4) They discussed the high level concepts behind M. This is a must watch to get a traction in understanding the M language. ...
    10-31-2008, 7:50 AM by admin to Lazy Coder
  • M Enumerator : Day 1

    So you have your OSLO SDK installed and your Intellipad running smoothing on your screen.  Well, let’s get busy. Let’s remember a simple factoid: module is the basic organization structure in M language. The following code is the smallest unit...
    10-30-2008, 7:39 PM by admin to Lazy Coder
  • C# 4.0 Tuple

    Finally there is a way on how to use tuple as it ought to be. In C# 4.0, you can do the following dynamic GetTuple() { return new { FirstName : “John”, LastName : “Adams” }; } dynamic myTuple = GetTuple(); Console.WriteLine (myTuple.FirstName);...
    10-30-2008, 7:01 PM by admin to Lazy Coder
  • C# 4.0 Dynamic

    One word, wow.   class C { public dynamic myField; public dynamic MyProp { get; set; } public dynamic MyMethod(dynamic d) { return d.Foo(); } public delegate dynamic MyDelegate(dynamic d); }  ...
    10-29-2008, 6:28 PM by admin to Lazy Coder
  • Join the group

    Join Mdsls group for in depth discussion about Microsoft M language (as part of Oslo technology), including mgrammar, mschema and mgraph. We'll talk smack about Intellipad there as well. http://groups.google.com/group/MDSLs/ M Language team blog is...
    10-29-2008, 12:37 PM by admin to Lazy Coder
  • M for Mind Boggling

    The Oslo technology is revolutionary. There I said it. I will dedicate the next four weeks dissecting the capabilities of the M language and the MGrammar languge for DSL buildling. I have been reading through the early language specification furiously...
    10-28-2008, 4:16 PM by admin to Lazy Coder
More Posts Next page »