Archive for October, 2008

Death of Linq to SQL

October 31st, 2008 by Martin

Well, I have to say that I was not a fan of Linq2SQL, I did not quite get an idea what is Microsoft going to do with. From this article I came to conclusion, that only Entity Framework will be developed and used as Microsoft’s default data access solution.  Or maybe they will drop Entity Framework for NHibernate or object databases in some time. ;)

 Tags

Custom Ext JS JsonReader for Google Ajax Search API

October 30th, 2008 by Martin

Well as long term Ext JS fan and user I of course faced with consuming external data resources like for example Google Data API or Google AJAX Search API. The last one mentioned has some really great output and layout capabilities, but I did not want them. I really need only some kind of JSON or XML interface. Google has one – ScriptTag. So after reading this post about creating custom Ext.data.JsonReader and Ext.data.ScriptTagProxy.

/** Ext Proxy for Google Ajax Search **/
Ext.namespace('GoogleAjaxSearch');
 
GoogleAjaxSearch.Proxy = Ext.extend(Ext.data.ScriptTagProxy, {
   url: 'http://ajax.googleapis.com/ajax/services/search/web',
   apiKey: null,
   cx: null,
   callbackParam: 'callback',
 
   constructor: function(config) {
      GoogleAjaxSearch.Proxy.superclass.constructor.call(this, config);
      this.on('beforeload', this.onBeforeLoad, this);
   },
 
   onBeforeLoad: function(o, params) {
      Ext.apply(params, {
         v: 	'1.0',
         rsz: 	'large',
         cx: 	this.cx,
         key: 	this.apiKey,
      }
      );
 
      return true;
   }
});
 
 <a href="http://www.wiso.cz/2008/10/30/custom-ext-js-jsonreader-for-google-ajax-search-api/#more-443" class="more-link"><img src="http://www.wiso.cz/wp-content/themes/wiso/images/more.gif" border="0" style="border:0" alt=" Read More " /></a>
 Tags

Rememberthemilk.com – never forget again

October 27th, 2008 by Martin

My colleague show me service that I was always missing – an online task manager with great UI and possibility of integration using some kind of API. And that is not all. It has also cool name RememberTheMilk.com. I really like it, because of Mozilla Thunderbird extension is already there. :)

 Tags

CAML IntelliSense for Visual Studio

October 27th, 2008 by Martin

If you are so poor that you have to write CAML (it has nothing to do with CAML programming language) by your hand ;) you appreciated to have an IntelliSense for that. MSDN Library can help you with VS.NET configuration.

 Tags

Taffy DB – simple JavaScript storage

October 20th, 2008 by Martin

I just came across this interesting utility for all JavaScript developers.

From its website:

Taffy DB is a free and open source JavaScript library that acts as thin data layer inside Web 2.0 and AJAX applications.

What makes it cool:

  • Under 10K!
  • Simple, JavaScript Centric Syntax
  • Fast
  • Easy to include in any web application
  • Compatible with major AJAX libraries: YUI, JQuery, Dojo, Prototype, EXT, etc
  • CRUD Interface (Create, Read, Update, Delete)
  • Sorting
  • Looping
  • Advanced Queries
 Tags

Erlang Documentation Viewer

October 13th, 2008 by Martin

Well, I want to announce a new viewer for Erlang documentation. Yes I know that it is nothing revolutionary and innovative, but I am Erlang user and Erlang documentation in its current version is not very user friendly (It is not only my opinion ;) ). Because I am working on an experimental Erlang web framework based on Ext JS – ErlExtUI, I realized why not do some user sample application for this purpose and shot two flies with one bullet. ;)   Please note that it is work in progress, so if you find any problem or want some new feature, feel free to contact me. And now finally URLhttp://erloid.wiso.cz/samples/documentation/.

Features

  • modules browsing/tabs
  • module name filter
  • Google powered module search

Happy using :)

 Tags

Magic Javascript call

October 12th, 2008 by Martin

Yes, you already know it, but it was very surprising to see what following code pasted to address bar of your browser did with page rendered. Just paste “javascript:document.body.contentEditable=’true’; document.designMode=’on’; void 0″ (without the quotes) and hit enter. WYSIWYG in your browser :)

Mono 2.0 Released

October 6th, 2008 by Martin

Mono Project meet a major milestone – Mono 2.0. There are many new features that were added. Especially Linq and ASP.NET 2.0 are technologies, that I am looking forward to use also in Mono.

 Tags

An ultimate Erlang IDE?

October 2nd, 2008 by Martin

I am fan of Erlang and have been playing with him for couple of years. I tested all editors/IDEs from ErlIDE, Emacs (mode), Vim (mode) or ErlyBird. I used some of them for quite long time. But I was still unhappy with experience. Well so back to headline, from my point of view, there is no ultimate Erlang IDE right now on the market. Yes ErlIDE looks promising, but Emacs with Erlang mode still rocks ;) .

 Tags

Most wanted VS.NET feature

October 1st, 2008 by Martin

I am long term Microsoft Visual Studio user (not only of course ;) ). I used more than six versions in my professional history. This week I read an article about new Visual Studio 2010. It was full of new features like more support for testing, Agile and… Well I have to say that I am a bit sad about all that new features. My personal most wanted feature from VS.NET is speed, responsiveness and extendability. Unfortunately none of them is on a road map. Just bloating…

 Tags
Text size: A A