Posts

Showing posts from 2014

Google Chrome Summit Happening now !

Watch it live at : https://developer.chrome.com/devsummit/

Simple tutorial on React.js

Just found a simple introductory tutorial on React.js. On my todo list! Learning React.js: Getting Started and Concepts

Twitter Flight Conference Links

Fabric https://fabric.io/salesforce6/ios/apps/sfdc.fabrickeynote/twitter Twitter Kit https://dev.twitter.com/twitter-kit/ios/twitter-login Embedded Tweets https://dev.twitter.com/web/embedded-tweets

HTML5 Dev Conf and IOTAConf

Next week is going to be really fun. I have the opportunity to attend the HTML5DevConf and IOTAConf again and also go to a new conference hosted by Twitter: Twitter Flight Here's the schedule of the talks I intend to go for the HTML5DevConf: http://www.iotaconf.com/schedule.html http://html5devconf.com/schedule.html Monday: 7:30-9:00 Registration 9:00-9:50 1. The Web of things - Leveraging the web for the internet of things, E-135 2. Design patterns for an internet of things, N-123 3. Dump SASS and Less CSS for JS powered CSS, Michael Mikowski, Qualaroo, E-131 10-10:40 Break 10-40-11:30 1. How to create native-like experience in the mobile web, E-131 2. Bringing Web content to the big screen with google cast, E-130 11:40-12:30 1. Virtual Reality & the future of the web, E-135 2. The new meteor platform, web and native mobile from a single reactive javascript codebase, E-133 1:30-2:20 1. Engaging Apps: Service Workers, Push an

Directive restrictions: What are E, A or C.

Directive Restrictions explained along with a short youtube video.

angular.js modules?

I've been playing around with Angular.js and one thing that I haven't really looked at yet are modules. My app currently has only one module. I was thinking that I should probably soon or later refactor it into more defined modules. Today, while searching for something else, I just found something surprising about modules: "Angular Modules are good for nothing...so far. Except for loading 3rd-party angular code into your app and mocking during testing. Other than that, there is no reason to use more than one module in your app. Misko said of multiple modules: "[you] should group by view since views will be lazy loaded in near future". I'd love for someone on the Angular team to enlighten us on what their plans are for that." https://coderwall.com/p/y0zkiw

Great introduction on Dom Event!

Introduction to Dom Events

All about Open Source at Salesforce

I'm happy to see Salesforce is going into the direction of contributing more to the Open Source Community. Here are a few blog posts that shows how they do: 1. Open Source at Salesforce 2. Contributions 3. New Open Source Releases

Sublime Text 3 Cheat sheet

Cheat Sheet!

More sublime text coolness

http://www.hongkiat.com/blog/sublime-text-plugins/ http://scotch.io/bar-talk/the-complete-visual-guide-to-sublime-text-3-getting-started-and-keyboard-shortcuts

Silicon Valley Code Camp!

Image
I have been attending Silicon Valley for the last 3 years. If you are free in October during the weekend, check it out. It's always interesting :)

Peaking into the kind of JS problems that Netflix faces

While reading JS weekly, I ended up on a blog post from Netflix, about the kind of JS performance problems they face and how they resolved it. Pretty interesting to see the kind of problems some companies have. Improving the performance of our JavaScript inheritance model

Interesting article on named function expression

Very detailed article on named function expression: Named function expressions demystified

JS quote!

The JavaScript continue statement: The continue statement jumps to the top of the loop. I have never seen a piece of code that was not improved by refactoring it to remove the continue statement. #javascript:thegoodparts So true!

Async attribute on a script tag

Interesting article from Illya Grigorik on blocking/non-blocking script injection. I did not know about the "sync" attribute which can be used on a script tag. Unfortunately, older browsers don't support it. It is still interesting because someday, we won't need to care about those old browsers... hopefully! Read more here...

XCode Foundation introduction

I am learning XCode on my free time and here's a good page that summarizes well data types in XCode : Foundation Objects Keeping a reference on the blog.

JSLibrary: Fast Filtering and Sorting of Huge Collections of Items

Fast Filtering and Sorting of Huge Collections of Items — PourOver library

Boiler plate app for your hackathon with node.js

Someone put up a boiler plate project for your next hackathon. Shows you how to do authentication with passport for many social networks. Click Here to go to the GitHub Repo

Object.observe!

In this weeks weeklyjavascript, there is an article about object.observe. I did a sample test using Chrome Canary to try it. Result: Pretty cool -> Respond-to-change-with-Object-observe

HTML5 Navigation API

Great article on how to use the Navigation API. Profiling Page Loads with the Navigation Timing API

HTML JSON form submission W3C draft

I like the idea of JSON form submission as described in this draft. I wonder if any browsers already support this? Maybe Chrome canary? W3C draft of HTML JSON form submission