Skip to main content

A new startup initiative: Ownabook.org - A community site

Lately there has been a traction from my usual work, and was thinking about starting something very different and helpful to the community.  Various ideas where jumping in my mind, but as usual ideas are ideas and of no use unless it sees the light of the day.   Did tried attempt at various small open source projects, in PHP, rails, MVC, jQuery, but never completed any of them fully.  Something always stopped me at the last moment.

But the good thing is there was tremendous learning in all these activities.  Learned a ton.  But one thing always hounded my mind, my incomplete OSS projects.

So, this time, didn't thought much,  just jumped straight in, took the code editor and begin designing my ideas as code.  One of the outcome is http://ownabook.org, a community initiative were some lucky bookwormers may get cool books, absolutely free.  That's not all, once the site is up, there will be unique features and opportunities to grab.

The idea behind this is to keep the reading habits alive in people, and doing my bit in the way.  It's not about winning a free, book, its about what you do with it.  It's about sharing.  As time goes by, there will be intelligent quizzes, tips, puzzles, which keeps your brain tickle.  Keep it alive, and in the process win a book.  Those things are still in my head, but will soon come out in the form of code.

I will definitely release this as OSS, once I get all basic things done correctly, as I don't want to share bad code.   Believe me there will be some real gems in the code, in terms of design, coding pattern and much more, which definitely I have learned from the ever helping communities in the internet.

Also, planning to setup up a place in the site to offer books to needy students, children, in remote places, but don't have any idea about how go about doing that.

If anyone reads this post, and knows something in this direction, then do leave a comment.

Enough ranting.... regular post will resume soon.  Plan to finish Javascript series and then start with MVC 4.

Enjoy reading!

Comments

Homemade Movies said…
Hello! I've been reading your web site for some time now and finally got the courage to go ahead and give you a shout out from Porter Tx! Just wanted to mention keep up the great job!

Popular posts from this blog

JavaScript Scope

In this blog post we will dig deeper into various aspects of JavaScript scope.  This is a pretty interesting topic  and also a topic which confuses many beginning JavaScript programmers. Understanding JavaScript scope helps you write bug free programs (hmm.. atleast helps your troubleshoot things easily) Scope control the visibility and lifetimes of variables and parameters.  This is important from the perspective of avoiding naming collisions and provides memory management service. Unlike other languages, JavaScript does not have block level scope.  For e.g. take for instance the following piece of c# code. public void Main () { int a = 5; if (true) { int b = 10; } // This will throw compile time error as b is not defined // and not within the scope of function Main(); Console.WriteLine(b); } If you write the same code in JavaScript, then the value of 'b' will be available outside the 'if' block. The reason for this is JavaScript does no...

JavaScript - The this keyword

"this" is one of the most misunderstood construct in JavaScript.  To understand this first lets go through how to create a construction function in JavaScript.  A constructor function is a function which is used to create instances of objects in JavaScript. You define a constructor function using the same notation that you use to define a normal JavaScript function.  The convention to follow is to capitalize the first letter of the function name. This requirement is not enforced by the JavaScript language but it is a generally accepted practice and there are many benefits which we will shortly discuss. Let's define a constructor function to hold our menu information. function Menu() { } So, in the above snippet you have a constructor function named Menu defined. At present this function doesn't do anything good. Let's see how to invoke this function var menu = new Menu(); Let's add some public properties to this function. function Menu() { ...