Skip to content

Instantly share code, notes, and snippets.

View h3nr1ke's full-sized avatar
🤔
Should I?

H3NR1KE h3nr1ke

🤔
Should I?
View GitHub Profile
@h3nr1ke
h3nr1ke / cordova.config.xml
Last active December 22, 2017 02:32
Example of config.xml configuration for cordova
<?xml version='1.0' encoding='utf-8'?>
<!-- Build version (iOS) and version code (android) -->
<widget android-versionCode="1" id="com.your.app" ios-CFBundleVersion="1" version="3.5.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<!-- Add plugin from local path -->
<plugin name="cordova-plugin-YOURPLUGIN" spec="./path/to/custom/plugins/cordova-plugin-YOURPLUGIN" />
</widget>
@h3nr1ke
h3nr1ke / NPM.sh
Created January 3, 2018 14:21
NPM commands to start and manage a projec
# --- install dependecies
npm install
# --- install only dev dependencies
npm install --only=dev
@h3nr1ke
h3nr1ke / reactnative.sh
Created January 31, 2018 22:04
Installing RectNative using HomeBrew
#install the homebrew, makes our life easy
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
#install react native tool
npm install -g create-react-native-app
@h3nr1ke
h3nr1ke / adb.sh
Last active February 2, 2018 17:21
adb useful commands
# --- read only needed information from adb logcat
# adb logcat *:<OPTION>
#the priorites are (from lowest to highest )
# V — Verbose (lowest priority)
# D — Debug
# I — Info
# W — Warning
<?php
/**
* Arquivo de exemplo para descriptografar os dados do visa checkout apos validacao do usuario
* este codigo esta na documentacao disponivel em
* https://developer.visa.com/capabilities/visa_checkout/docs
*
*/
/**
* Exeuta o primeiro nivel de descriptografia
@h3nr1ke
h3nr1ke / rename.bat
Last active February 5, 2018 21:51
Rename all files to a numeric sequence
:: initial count
SET i=0
setlocal EnableDelayedExpansion
:: filter for extension, jpg as example
for %%f in (*.jpg) do (
:: rename the current file to the new name
ren "%%~nf%%~xf" "!i!.jpg"
:: increase the counter
@h3nr1ke
h3nr1ke / computer_name.sh
Created February 15, 2018 02:04
Change Computer name on mac OS
#if you have, for instance
# root@NAMETHATYOUDONTLIKE : ~
#you can use the following command
sudo scutil --set HostName name-you-want
#to change it
# root@COOLNAMETHATILIKE : ~
@h3nr1ke
h3nr1ke / package.json
Last active February 15, 2018 10:55
Package.json
{
"name": "teste_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
@h3nr1ke
h3nr1ke / resultado.sh
Created February 15, 2018 12:39
resultado do teste autoático da URL
$ mocha
Teste API magicthegathering.io
√ Deve receber 100 cartas (1468ms)
√ Deve receber a carta 'A Indiferente' (351ms)
2 passing (2s)
@h3nr1ke
h3nr1ke / resultado-falha.sh
Created February 15, 2018 12:40
resultado do teste automático com falha
$ mocha
Teste API magicthegathering.io
1) Deve receber 100 cartas
√ Deve receber a carta 'A Indiferente' (414ms)
1 passing (2s)
1 failing