A Pen by Izaias di Araújo on CodePen.
A Pen by Izaias di Araújo on CodePen.
Testing ReactRouter
A Pen by Izaias di Araújo on CodePen.
This file contains 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
import React from 'react'; | |
import { | |
Image, | |
Linking, | |
Platform, | |
ScrollView, | |
StyleSheet, | |
Text, | |
TouchableOpacity, | |
View, |
** Passo 0 - Configure seu aplicativo do Facebook **
- Vá até Facebook App Setup (Key Hash, App Id, etc) e entre com os dados que eles exigem!
PACOTE: veja o pacote do seu aplicativo (basta ver no AndroidManifest) CLASSE PRINCIPAL: MainActivity (só o nome da classe principal)
Na hora de gerar os hashes, eles aceitam mais de um, ou seja, o debug e o release.
This file contains 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
/* @flow */ | |
import React, { Component } from 'react'; | |
import { | |
ActivityIndicator, | |
Image, | |
ScrollView, Picker, | |
StyleSheet, | |
Text, | |
StatusBar, |
This file contains 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
/* Meses do ano */ | |
[ 'Janeiro', | |
'Fevereiro', | |
'Março', | |
'Abril', | |
'Maio', | |
'Junho', | |
'Julho', | |
'Agosto', |
This file contains 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 firstRow = document.querySelectorAll("#search > table > tbody > tr"); | |
var length = firstRow.length, | |
index = 0, | |
data = ''; | |
for(;index<length;index++) | |
data += "\n" + firstRow[index].children["0"].children["0"].textContent; | |
console.log(data); |
This file contains 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
{ | |
"variables": [], | |
"info": { | |
"name": "GLPI API", | |
"_postman_id": "93d36159-3fa9-bed0-ff15-ad4cc5cc6abb", | |
"description": "", | |
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" | |
}, | |
"item": [ | |
{ |
This file contains 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
# Current workaround. Any tips to make it as a terminal command? | |
# Call deployer.phar directly | |
php /usr/local/bin/dep/deployer.phar deploy |
OlderNewer