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 Constants from "expo-constants"; | |
class Client { | |
static headers = { | |
"Field-App": JSON.stringify({ | |
device_id: Constants.deviceId, | |
device_name: Constants.deviceName, | |
device_year_class: Constants.deviceYearClass, | |
app_version: Constants.manifest.version, | |
app_version_code: Constants.manifest.android.versionCode, |
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
#!/usr/bin/env node | |
var cli = require('cli').enable('glob', 'version'), | |
watcher = require('chokidar'), | |
dust = require('..'), | |
fs = cli.native.fs, | |
path = cli.native.path, | |
eol = cli.native.os.EOL; | |
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
#!/usr/bin/env node | |
var cli = require('cli').enable('glob', 'version'), | |
watcher = require('chokidar'), | |
dust = require('..'), | |
fs = cli.native.fs, | |
path = cli.native.path, | |
eol = cli.native.os.EOL; | |
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
Gerenciamento de problemas | |
-Processos de Estratégia de Serviço | |
-Processos de Desenho de Serviço | |
-Processos de Transição de Serviço | |
*Processos de Operação de Serviço | |
Gerenciamento de liberação e implantação | |
-Processos de Estratégia de Serviço | |
-Processos de Desenho de Serviço | |
*Processos de Transição de Serviço |
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
sudo add-apt-repository ppa:ondrej/php | |
sudo apt update | |
sudo apt install php7.2 php7.2-common php7.2-cli php7.2-fpm apache2 | |
sudo apt-get install libapache2-mod-php7.2 php7.2-xml php7.2-opcache php7.2-mbstring php7.2-zip | |
sudo apt-get install php7.2-mysql mysql-server-5.7 mysql-client-5.7 | |
sudo a2enmod php7.2 | |
cd /tmp | |
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" |
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
{"lastUpload":"2019-12-30T21:47:11.354Z","extensionVersion":"v3.4.3"} |
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 |
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
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
/* Meses do ano */ | |
[ 'Janeiro', | |
'Fevereiro', | |
'Março', | |
'Abril', | |
'Maio', | |
'Junho', | |
'Julho', | |
'Agosto', |