- JavaScript.is (Sexy)
- Eloquent JavaScript
- Frontend - learn & resources
- Learnjs.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Considering that you already have rootfs write access and and have switched on your chromebook to dev mode, it is possible to install NodeJS dev env on chromebook (keeping your OS to ChromeOS. This article is not about ChrUbuntu) | |
If you need help with dev mode and rootfs write access, consider following Chromium OS poking around article. | |
Download xz package and nodejs package from ArchLinux - | |
xz - http://www.archlinux.org/packages/core/i686/xz/ | |
node - https://www.archlinux.org/packages/community/i686/nodejs/ | |
There is a little ‘Download from mirror’ link on the page. If you don’t find, just Find on Page for word ‘download’. Both these downloaded packages should be in your Downloads folder that opens up when you open Chrome OS files app. | |
switch to terminal (Ctrl+Alt+T) will open terminal as one of the browser tabs. | |
type SHELL and hit enter as follows, and proceed |
- https://github.com/twbs/bootstrap (91835)
- https://github.com/FreeCodeCamp/FreeCodeCamp (63559)
- https://github.com/vhf/free-programming-books (50049)
- https://github.com/angular/angular.js (46378)
- https://github.com/mbostock/d3 (45832)
- https://github.com/FortAwesome/Font-Awesome (39140)
- https://github.com/jquery/jquery (37748)
- https://github.com/nodejs/node-v0.x-archive (37526)
The Recommended Reading List is a valuable resource for technical professionals who want to thoroughly explore topics such as multi-core programming, embedded, security, and more. Dozens of industry technologists, corporate fellows, and engineers have helped by suggesting books and reviewing the list.
- Power Management in Mobile Devices - Findlay Shearer - Newnes - 9780750679589
- Thermal and Power Management of Integrated Circuits - Arman Vassighi, Manoj Sachdev - Springer - 9781441938329
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cURL | |
apt-get install curl | |
# Git | |
apt-get install git | |
git config --global user.name "Randson Oliveira" | |
git config --global user.email "[email protected]" | |
git config --global color.ui auto | |
# ZSH and Oh My ZSH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gistPrefix = 'https://gist.github.com/', | |
// Cache document.write so that it can be restored once all Gists have been | |
// embedded. | |
cachedWrite = document.write, | |
body = $('body'), | |
// Map each p.gist to an object that contains the paragraph to be replaced | |
// and the Gist's identifier. | |
gists = $('a.gist').map(function(n, a) { | |
a = $(a); | |
var href = a.attr('href'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click('Button Value') |