- Vim 7.5 ou superior (ubuntu e windows)
- Vim Bootstrap (http://www.vim-bootstrap.com/) (JS e PHP)
- Git (ubuntu e windows)
- PHP (5.3) (ubuntu e windows) [para usar algumas ferramentas do atom)
- Python (http://docs.python-guide.org/en/latest/starting/install/win/) (ubuntu e windows)
- Atom (https://atom.io/) (ubuntu e windows)
- Oh my zshell (https://github.com/robbyrussell/oh-my-zsh) (ubuntu e windows)
- Terminator (
sudo apt-get install terminator
) (Ubuntu) - conEmu (https://conemu.codeplex.com/)
- Ionic (http://ionicframework.com/docs/native/) (ubuntu e windows)
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
const userData = {name: 'lubien'} | |
localStorage.setItem('user', JSON.stringify(userData)) | |
const persisted = JSON.parse(localStorage.getItem('user')) | |
console.log(persisted) |
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
/* | |
* Count Negative Integers in Matrix | |
*/ | |
M = [ | |
[ -1, 3, 4, 1], | |
[ 2, 2, 4, 9], | |
[ 4, 5, -7, 9] | |
] |
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
process.stdin.resume(); | |
process.stdin.setEncoding('ascii'); | |
var input_stdin = ""; | |
var input_stdin_array = ""; | |
var input_currentline = 0; | |
process.stdin.on('data', function (data) { | |
input_stdin += data; | |
}); |
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
/** | |
* Show Me the Evens - Show me the Odds | |
* Diana is learning to count and she just learned the difference between odds and even numbers. | |
* She wants to have some fun, so she picks a random number. | |
* If that number is even, she decides to count all the even numbers up to it starting from 0 up to (but not including) the input. | |
* If not, she decides to count all the odd numbers up to that number starting from 1 (but not including) the input. | |
**/ | |
function count(x) { | |
var numbers = []; |
http://startreact.com/themes/nativebase-tutorial-app/ http://wix.github.io/react-templates/ http://startreact.com/ http://nativebase.io/?utm_source=startreact&utm_medium=startreact&utm_campaign=NativeBase http://market.nativebase.io/?utm_source=nativebase&utm_medium=showcase+section&utm_campaign=nativebase http://market.nativebase.io/view/native-starter-pro http://market.nativebase.io/view/react-native-flat-app-theme
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Render engine</title> | |
<style media="screen"> | |
body { | |
background-color: #F3F3F3; | |
} |
- JAVASCRIPT - RODRIGO BRAMAS (https://www.youtube.com/playlist?list=PLQCmSnNFVYnT1-oeDOSBnt164802rkegc)
- PHP, POO, JAVA, HTML, CSS - GUANABARA (https://www.youtube.com/user/cursosemvideo)
- HTML, CSS, JAVASCRIPT (COM CERTIFICADO) - FREECODECAMP (https://www.freecodecamp.com/)
- HTML, CSS, JAVASCRIPT (COM CERTIFICADO) - (https://www.codeschool.com/)
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
'use strict'; | |
describe('isMobile module', () => { | |
let isMobile; | |
beforeEach(module('myinfo.isMobile')); | |
beforeEach(() => { | |
const userAgent = 'Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1'; | |
module('myinfo.isMobile', $provide => { |