What is & Why SaaS? SaaS stands for Software as a Service, is a cloud-based or partially cloud-based computer program that is constantly being added to, improved, and maintained and that users pay for on an ongoing basis. SaaS providers host a software application and make it accessible to clients on any internet-enabled device. They also provide IT support and network security. Today, an increasing number of business apps are…
Read MoreJavascript frameworks comparison
This is a Javascript frameworks comparison sheet i did and hope it will answer your questions to decide which framework fit your needs. Here is the link: Frameworks Sheet comparison BTW, i chose Vuejs.
Read MoreProgressive Web App – PWA Roadshow
This is a summary of PWA Roadshow video from Google Chrome developers, here is list of each video with summary: All about PWAs. Statistics (2017): 13% Mobile. => 87% Apps native. but 87%??? more predictable. easy to find on home screen. push notification. Native app is a big commitment in: Space Time Cost hints: 78% of time spent is in user’s top three apps. so, Progressive web app come to…
Read MoreVujs documentation summary
Today i finished from Vuejs documentation and i summarised it as a tags to review it quickly. The data and the DOM are now linked, and everything is now reactive. Directive: are prefixed with v- to indicate that they are special attributes provided by Vue and they apply special reactive behavior to the rendered DOM. v-bind directive, EX:: v-bind:title to bind data into title attribute for element. Conditionl:: v-if…
Read MoreJavaScript ES5 Summary
This is the summary of ES5 as a tags summarized from Speaking Javascript Book. Strict mode. Accessors(Getter & Setter). New Functios: Object.create() Object.getPrototypeOf() Object.defineProperty() Object.defineProperties() Object.getOwnPropertyDescriptor() Object.keys() Object.getOwnPropertyNames() Object.preventExtensions() Object.isExtensible() Object.seal() Object.isSealed() Object.freeze() Object.isFrozen() Function.prototype.bind() New Methods: Array.isArray() Array.prototype.every() Array.prototype.filter() Array.prototype.forEach() Array.prototype.indexOf() Array.prototype.lastIndexOf() Array.prototype.map() Array.prototype.reduce() Array.prototype.some() Date.now() Date.prototype.toISOString() JSON.parse(). JSON.stringify(). Object.prototype.toJSON() and you can checked the Basic and Advanced topics also summarized from this Book: Javascript basics Advanced javascript
Read MoreAdvanced Javascript as a Tags
This is the advanced in Javascript as a tags, summarized from Speaking Javascript Book. ####################### Syntax ################# The normal (nonstrict) mode is sometimes called “sloppy mode.” Variables Must Be Declared in Strict Mode. in strict mode code, functions can only be declared at top level or immediately within another function. Due to strict mode, you get a warning when you accidentally forget new and call it as a function.…
Read More