I hereby claim:
- I am argoncode on github.
- I am py100 (https://keybase.io/py100) on keybase.
- I have a public key ASDN9wwiSSdl3Fbm_kCQJWY65zzDDFfTew5WeEkSAow4rgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
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 |
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.
# 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 |
I hereby claim:
To claim this, I am signing this object:
2.2.2 :001 > var1 = "hello" | |
=> "hello" | |
2.2.2 :002 > var2 = var1 | |
=> "hello" | |
2.2.2 :004 > var2.upcase | |
=> "HELLO" | |
2.2.2 :005 > var2 | |
=> "hello" | |
2.2.2 :006 > var1 | |
=> "hello" |
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'); |