Search This Blog

22 July 2014

Stored Collection

 Stored Collection is a data persistence API, which lets you use a collection of Dictionaries.
SC saves you memory, because the collection is stored in a SQLite database on disk. When you access an element the database is read, a Dictionary is created and returned to you, all other elements remain on disk and not in memory.

The primary concern for SC is memory saving but it can also be used as a simple data store.


Stored Collection is on github:
(an example project demonstrating use is included in the repository)

https://github.com/ektodorov/StoredCollection

02 January 2014

Framework for Hybrid applications for iOS


HybridFramework_for_HTML5 is a little framework that enables you to write applications with HTML, CSS and JavaScript and package them as native iOS applications. It can be used standalone or with PhoneGap.


HybridFramework_for_HTML5 is on github:

http://github.com/ektodorov/HybridFramework_for_HTML5