Showing posts with label lomtiki. Show all posts
Showing posts with label lomtiki. Show all posts

2010-05-05

Lomtiki theme

I'm just playing with Photoshop.

2010-03-31

My version of Google Reader Mobile

Tonight I wrote my first GAE + Java + Ajax (Lomtiki Engine - my Ajax framework) + Google Reader API + Opera Presto (Opera Mini rendering engine) application. I called it Google Reader Proxy.

The basic idea is that the speed limit on the issuance of pages placed on the server Opera Mini, but not on Google Reader Mobile + Opera Mini. And on my phone I press the button 10 times less..

To test the functionality you can go to Opera Mini Simulator and enter in the address bar grproxy.appspot.com


Funny.. my Google Reader trends after using this application.

2010-02-08

Lomtiki example

I'm just trying new approaches to development on javascript
var Lomtiki = $initialize({
 type: 'module',
 name: 'Lomtiki',
 properties: [{
  name: 'version',
  value: '2.0'
 }],
 items: [{
  type: 'class',
  name: 'HelloWorld',
  constructor: {
   parameters: [{
    name: 'hello'
   }],
   handler: function(meta) {
    meta.scope.hello = meta.hello;
   }
  },
  methods: [{
   name: 'print',
   handler: function(meta) {
    console.log(meta.scope.hello);
   }
  }]
 }]
});
 
var hw = new Lomtiki.HelloWorld({
 hello: 'hello',
 listeners: {
  print$before: {
   handler: function(meta) {
    meta.scope.hello += ' world' + meta.exclamation;
   }
  }
 }
});

hw.print({
 exclamation: '!'
});

Twitter Updates

Twitter Updates

    follow me on Twitter
    Hacker Key Creative Commons License
    2006