Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,194,408 members, 7,954,622 topics. Date: Saturday, 21 September 2024 at 02:00 AM

Izzy111's Posts

Nairaland Forum / Izzy111's Profile / Izzy111's Posts

(1) (2) (3) (4) (5) (of 5 pages)

Technology Market / Re: **PHONE SWAP CENTRE**SWAP IT NOW!!! pin:265DA560 or 08033923897 by izzy111: 3:49pm On Mar 18, 2020
omotolsy:
Availables
do you sell brand new? undecided
Webmasters / Re: You Are All Needed by izzy111: 5:37pm On Jan 14, 2017
colourcampus.com
Webmasters / You Are All Needed by izzy111: 10:27am On Jan 12, 2017
hello everyone

1 Like

Programming / Re: Ambitious Programmers Lets Talk by izzy111: 3:23pm On Sep 09, 2016
heywhy824:

Since you asked for a cookbook i think i will b working on a mini app
ok. Looking forward to it.
Programming / Re: Ambitious Programmers Lets Talk by izzy111: 11:49pm On Sep 08, 2016
heywhy824:
I love what's going on this thread so that's why I decided to post this:

I'm happy to release v0.1.1 of the BucketJS library
The aim of the library is to implement namespacing system which is present in languages like c++, php and so on. I hope you guys can help embrace it and improving.
Because having a class or context per file makes you more organized and its always easy to amend errors since you know the class having fault, you just go straight to file to fix it.

I will be more happy if you all can embrace the concept. behind the library. I will like you all to give your comments for that's what help in improving the library.


# BucketJS Library
* it tries to help you make your codes well organised i.e. a class per file
...* var control = Bucket('App/Core/Controller') matches app/core/controller.js file in the base directory.
...* Bucket(['App/Game'], function(){
this.init = function(){
console.log('game started');
}
}); // matches www/app/game.js
...* you will find some examples below
* trying to implement Namespacing in the other languages
* Include the src/Bucket.js file in your page and you are set to use it.
* The dist directory consists of the different aspects implemented into the library

it is very simple to use
/**
* the files are fetched from a default folder App e.g. www/app, www/js/app
* you can also set the base directory where the app folder is
* e.g. Bucket({fetch: true, base: js/app/});
* it will fetch the files from www/js/app directory
*/

// to define a class, the classname must match the path to the file
// file: www/app/core/hello.js
Bucket(['App/Core/Hello'], function(){
this.call = function(){
alert('hello world');
}
});

// file: www/index.html including the library
// to get the instantiated copy
var hello = Bucket('App/Core/Hello');
hello.call(); // 'hello world'

/**
* defining a class with dependencies to other classes
* a class can have as many dependencies as possible but they will all
* be passed as parameters in the order they were declared to the class depending on them.
* if a dependency depends on another class they all get passed for the library
* is smart enough to sort that.
*/
// file: www/app/core/welcome.js

Bucket(['App/Core/Welcome', ['App/Core/Hello', 'App/Core/Bye']], function(hello, bye){
// the hello param will be an object of App\Core\Hello::class
this.welcome = function(){
hello.call();
}

this.bye = function(){
bye.bye();
}
});

// file; www/app/core/bye.js
Bucket(['App/Core/Bye'], function(){
this.bye = function(){
alert('Thank you for trying me out. Courtesy: BucketJS');
}
});

// file: www/index.html including the library
// to get the instantiated copy
var app = Bucket('App/Core/Welcome');
app.welcome(); // => 'hello world'
app.bye() // => 'Thank you for trying me out. Courtesy: BucketJS'


version 0.1.1:
* removed property fetch of the configuration object
* added filters property to configuration options
--* the aim is to allow path alias to a namespaces e.g.
--* Bucket({
--* /**
--* * if not set, defaults to app folder under webroot
--* * every namespace which hasnt been filtered out will be
--* * searched for in the directory
--* */
--* base: 'mobile',
--* filters: {
--* /**
--* * namespace id Bucket will be fetched from directory www/src/core
--* */
--* 'Bucket': 'src/core'
--* }
--* });
* added variable B as alias to Bucket for conviniences
* well descriptive comments updated.


composer: require heywhy/bucketjs
github link:
https//github.com/heywhy/BucketJS
nice one bro. Can you make a cookbook that has practical implementations of this library and can this be used with other javascript library such as jquery?
Programming / Re: Ambitious Programmers Lets Talk by izzy111: 11:44pm On Sep 08, 2016
heywhy824:
I love what's going on this thread so that's why I decided to post this:

I'm happy to release v0.1.1 of the BucketJS library
The aim of the library is to implement namespacing system which is present in languages like c++, php and so on. I hope you guys can help embrace it and improving.
Because having a class or context per file makes you more organized and its always easy to amend errors since you know the class having fault, you just go straight to file to fix it.

I will be more happy if you all can embrace the concept. behind the library. I will like you all to give your comments for that's what help in improving the library.


# BucketJS Library
* it tries to help you make your codes well organised i.e. a class per file
...* var control = Bucket('App/Core/Controller') matches app/core/controller.js file in the base directory.
...* Bucket(['App/Game'], function(){
this.init = function(){
console.log('game started');
}
}); // matches www/app/game.js
...* you will find some examples below
* trying to implement Namespacing in the other languages
* Include the src/Bucket.js file in your page and you are set to use it.
* The dist directory consists of the different aspects implemented into the library

it is very simple to use
/**
* the files are fetched from a default folder App e.g. www/app, www/js/app
* you can also set the base directory where the app folder is
* e.g. Bucket({fetch: true, base: js/app/});
* it will fetch the files from www/js/app directory
*/

// to define a class, the classname must match the path to the file
// file: www/app/core/hello.js
Bucket(['App/Core/Hello'], function(){
this.call = function(){
alert('hello world');
}
});

// file: www/index.html including the library
// to get the instantiated copy
var hello = Bucket('App/Core/Hello');
hello.call(); // 'hello world'

/**
* defining a class with dependencies to other classes
* a class can have as many dependencies as possible but they will all
* be passed as parameters in the order they were declared to the class depending on them.
* if a dependency depends on another class they all get passed for the library
* is smart enough to sort that.
*/
// file: www/app/core/welcome.js

Bucket(['App/Core/Welcome', ['App/Core/Hello', 'App/Core/Bye']], function(hello, bye){
// the hello param will be an object of App\Core\Hello::class
this.welcome = function(){
hello.call();
}

this.bye = function(){
bye.bye();
}
});

// file; www/app/core/bye.js
Bucket(['App/Core/Bye'], function(){
this.bye = function(){
alert('Thank you for trying me out. Courtesy: BucketJS');
}
});

// file: www/index.html including the library
// to get the instantiated copy
var app = Bucket('App/Core/Welcome');
app.welcome(); // => 'hello world'
app.bye() // => 'Thank you for trying me out. Courtesy: BucketJS'


version 0.1.1:
* removed property fetch of the configuration object
* added filters property to configuration options
--* the aim is to allow path alias to a namespaces e.g.
--* Bucket({
--* /**
--* * if not set, defaults to app folder under webroot
--* * every namespace which hasnt been filtered out will be
--* * searched for in the directory
--* */
--* base: 'mobile',
--* filters: {
--* /**
--* * namespace id Bucket will be fetched from directory www/src/core
--* */
--* 'Bucket': 'src/core'
--* }
--* });
* added variable B as alias to Bucket for conviniences
* well descriptive comments updated.


composer: require heywhy/bucketjs
github link:
https//github.com/heywhy/BucketJS
Programming / Re: Ambitious Programmers Lets Talk by izzy111: 9:18am On Sep 04, 2016
Michaelanapuwa:
Alright guys.. M creating a whatsapp group 4 d team.. Whoever is interested should drop his/her whatsapp number. I will reveal the project am working on later in d group.. Just finalizing some registration n copyright stuffs
add me 08125712707
Webmasters / Re: How Can Convert Web App To Apk App? by izzy111: 8:58am On Sep 04, 2016
if the site is responsive you can wrap it in an android webview... Whats the site url?
Technology Market / Re: Create Android by izzy111: 11:12am On Sep 03, 2016
hey
Technology Market / Re: **PHONE SWAP CENTRE**SWAP IT NOW!!! pin:265DA560 or 08033923897 by izzy111: 8:02am On Aug 27, 2016
iphone 5c icloud locked 15k swap. Call whatsapp 08125712707
Science/Technology / The Complete Whatsapp Success Story by izzy111: 1:30pm On Aug 22, 2016
Things work out best for those who make the best of how things work. Brian Acton, the former Yahoo engineer and Jan Koum are the founders of WhatsApp which is the most successful instant messaging app now available in the world.
The story of Whatsapp is a live example of where innovation in technology takes people and their communication. With billions of users addicted to ‘Whatsapp’ style of keeping in touch, it is worthwhile to explore what went behind making this phenomenon happen.
FOUNDER

Jan Koum was not from a wealthy family. He stayed with his mother and grandmother in a small apartment. With his hard work, he finally got into San Jose State University where he took training in programming.

Jan met his business partner, Brian while working at Yahoo as an engineer. They worked together in Yahoo for almost nine years and then left the company together. Then they applied to Facebook, but saw no luck. They had no plans to become rich until they thought of making an app for iPhone users.They then created the app which received tremendous success in a very less time. This was because the users found it pretty easy to use and they need not to register anywhere in order to use the application. This was the dream come true for both the partners.
Founding of Whatsapp

Whatsapp Inc was founded in 2009 by two ex-Yahoo! employees, Brian Acton and Jan Koum. After having bought an iPhone and looking at the new appstore, they realised that it was going to be a rapidly growing industry for apps.
Koum chose the name, and they started talking about building an app where people would have their statuses next to their names.

The initial models failing, Koum was disheartened, and was almost about to give up when Acton persuaded him to keep at it. Finally in the November of 2009, after months of beta testing, WhatsApp launched in the app store for iPhones. The blackberry version was released just two months later.
Earning Through the app
Jan and Brian earned millions of dollars without any advertising on the app. They made money in two ways. They started charging iPhone users on first time installation and the Android users every year. A lot of people used the app and paid both of them. Reports state that around 250 million people use WhatsApp in a month. This is a huge number for any application to reach in the smartphone space.

The more number of users for WhatsApp, the more partners earn. The money was straight going to their pocket. There was no outside investment in making the app.All the development of the app is done in Russia. They could have earned more from the app by creating the WhatsApp Corporation. They could have earned right away by selling it.
Main attraction of Whatsapp

Both the partners worked at Yahoo and hence learnt the tricks of the trade. Yahoo works with advertisements. Most users do not like advertisements flashing while using an application. Understanding this, the two made an app which is simple to use devoid of barriers in the form of advertisements. That alone made WhatsApp most loved by the users worldwide.
There are only 55 employees in the WhatsApp Inc. but they serve millions of people each day. The main aim of the app is to provide a simple interface to the users enabling them to stay in contact with their loved ones. WhatsApp is now bought over and owned by Facebook and this made both the partners, Jan and Brian billionaires in a very short period of time.
Acquisition by Facebook

After several months of venture capital financing, Facebook declared that they were acquiring facebook in February 2014. The deal went down for US $19 Billion, it was Facebook’s largest acquisition till then. Till date, this acquisition is the largest transaction done by any two companies backed by venture capitalists.
Milestones

Whatsapp released for Symbian OS and Android OS in 2010.
In September 2011, whatsapp released a new version of the Messenger for iPhones having closed the security holes.
It released for Windows Phones and Blackberry 10 in 2013.
In 2014, they released a version for smartwatches running Andriod OS.
in January 2015, Whats app added a call feature to target a totally different group of users.
source: http://www.colourcampus.com/viewtopic.php?f=26&t=1253
Phones / Fingerprint Sensors To Be On More Than 50% Of Smartphones In 2017 by izzy111: 8:46am On Aug 19, 2016
Remember back in the day of features phones where securing a phone was basically a combination of button presses (more of an unlock protection than security feature)? Then later we got passcodes, and with Android phones, we also got other security
features like a pattern unlock.
But fast forward to today and it is clear that biometric security is becoming the standard, which is why it isn’t surprising to learn that in 2017, there is a good chance that more than half of the smartphones out there will be sporting fingerprint sensors. This is according to a report from DigiTimes who cites industry observers as saying that fingerprint sensors on smartphones could see more than 50% market penetration in 2016.
This is versus the current situation
which sees about 40% in 2016, which is actually a whole sight better than 2015 in which it was estimated to be around 20%. While fingerprint sensors on smartphones has been done before by Motorola several years ago, it was only when Apple introduced Touch ID on their iPhones that the technology became mainstream again. Samsung has recently tried to introduce iris scanning technology with the Galaxy Note 7, but given that there are certain limitations to the feature, we reckon it might not necessarily be adopted as quickly, but we guess we’ll have to wait and see.
http://colourcampus.com/viewtopic.php?f=26&t=1220
Webmasters / Re: Nairaland Forum Rival: Advise Pls.... by izzy111: 4:53pm On Aug 05, 2016
phpbb is the best to go with because it is open source. It has a large community of users supporting it by writing much needed extensions and creating nice looking styles. a few popular sites using phpbb are arstenica.com, gaiaonline.com, joomla support forum, blender.com(the graphics engine forum)...
Even the colourful 9ja forum www.colourcampus.com is also powered by phpbb check it out.
The potential in phpbb is endless.

1 Like

Technology Market / Re: Create Android by izzy111: 8:54am On Aug 05, 2016
still here
Webmasters / Re: Nairaland Forum Rival: Advise Pls.... by izzy111: 8:52am On Aug 05, 2016
check out www.colourcampus.com l say its NL on steriods. :-)
Webmasters / Re: Fghh by izzy111: 8:36am On Aug 05, 2016
still here
Webmasters / Fghh by izzy111: 11:18am On Aug 03, 2016
convert

1 Like

Webmasters / Re: Submit Your Website Url For Review, And Get Good Backlinks And Traffic by izzy111: 11:10am On Aug 03, 2016
whats your take on www.colourcampus.com ?
Technology Market / Create Android by izzy111: 11:00am On Aug 03, 2016
conver
Phones / Re: Stop Memorising All Those Codes!! by izzy111: 5:36pm On Apr 25, 2016
amazing! Love the simple design. Just tried the mtn app and it works even without data. Nice one

1 Like

Phone/Internet Market / Re: Iphone 5s by izzy111: 4:05pm On Dec 29, 2015
seunpayne:
Where in abuja are you? Can I see the phone?
hg
Technology Market / Re: **PHONE SWAP CENTRE**SWAP IT NOW!!! pin:265DA560 or 08033923897 by izzy111: 11:13am On Dec 29, 2015
working fine Galaxy S3 for sale 13k whatsapp 07035102978 abuja
Phone/Internet Market / Re: Iphone 5s by izzy111: 8:50pm On Dec 28, 2015
emperorizzy:
how much is the last price for this gadget?
13k
Phone/Internet Market / Re: Iphone 5s by izzy111: 8:40pm On Dec 27, 2015
emperorizzy:
5c or 5s
5c
Computer Market / Re: Brand New Laptop Motherboard For Sale At Reduced Price**** by izzy111: 2:02pm On Dec 25, 2015
do you have hp 2000 motherboard and what's the price?
Computer Market / Re: Replace Your Laptop Screens At A Very Cheap Price by izzy111: 1:58pm On Dec 25, 2015
I want to fix my HP pavilion g6 screen how much will it cost?
Phone/Internet Market / Iphone 5s by izzy111: 12:04pm On Dec 25, 2015
white still new just sent from Canada
Phone/Internet Market / Re: Samsung Galaxy by izzy111: 12:01pm On Dec 25, 2015
still available

(1) (2) (3) (4) (5) (of 5 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 57
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.