Skip to content

Instantly share code, notes, and snippets.

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

H3NR1KE h3nr1ke

🤔
Should I?
View GitHub Profile
$ mocha
magicthegathering.io API test
1) Should return 100 cards max
√ Should receive the card 'Heedless One' (414ms)
1 passing (2s)
1 failing
$ mocha
magicthegathering.io API test
√ Should return 100 cards max (1468ms)
√ Should receive the card 'Heedless One' (351ms)
2 passing (2s)
/**
* API testing example
* API used
* @see https://magicthegathering.io/
*
* This example is part of the post
* @see https://medium.com/@hdeodato/teste-autom%C3%A1tico-de-api-rest-usando-com-node-js-mocha-chai-6aec4613d100
*
* @author Henrique Deodato
* @see twitter.com/hdeodato
#https://thomaslevesque.com/2018/04/17/hosting-an-asp-net-core-2-application-on-a-raspberry-pi/,
#https://linuxize.com/post/how-to-install-node-js-on-raspberry-pi/
#https://dejanstojanovic.net/aspnet/2018/december/running-net-core-on-raspberry-pi-with-raspbian-stretch/
#https://thomaslevesque.com/2018/04/17/hosting-an-asp-net-core-2-application-on-a-raspberry-pi/
#https://darenmay.com/blog/net-core-and-gpio-on-the-raspberry-pi---leds-and-gpio/
#https://www.raspberrypi.org/documentation/remote-access/ssh/
#https://www.raspberrypi.org/forums/viewtopic.php?t=246617
#https://dejanstojanovic.net/aspnet/2018/june/setting-up-net-core-servicedaemon-on-linux-os/
@h3nr1ke
h3nr1ke / chmod.table.md
Last active March 28, 2019 12:42
teste.md table
Value Binary Alternative
7 111 [+=]rwx
6 110 [+=]rw
5 101 [+=]rx
4 100 [+=]r
3 011 [+=]wx
2 010 [+=]w
1 001 [+=]x
0 000 [-=]rwx
@h3nr1ke
h3nr1ke / zoho.txt
Created March 13, 2019 16:32
DNS CONFIG ZOHO MAIL
----- MX -----
item Priority
mx3.zoho.com Copy 50
mx2.zoho.com Copy 20
mx.zoho.com Copy 10
----- SPF - TXT -----
@ v=spf1 include:zoho.com ~all
----- DKIM - TXT -----
@h3nr1ke
h3nr1ke / sublime_settings.js
Created February 13, 2019 16:20
SUBLIME TEXT CONFIGURATION
{
"ignored_packages":
[
"Vintage"
],
// Columns in which to display vertical rulers
"rulers": [
100, 130
],
"tab_size": 4,
@h3nr1ke
h3nr1ke / new_server.sh
Last active March 11, 2019 16:49
Command to setup a new NGINX PHP server
#== Criacao de servidor NGINX + PHP ==
apt-get update
apt-get install nginx
apt-get install unzip
sudo ufw allow 'Nginx HTTP'
sudo nano /etc/nginx/nginx.conf
@h3nr1ke
h3nr1ke / arrow_function_001.js
Created December 28, 2018 10:48
Function example
/**
*
*/
// Function in old style
function _myCoolFunction(param1, param2){
return param1 + param2;
}
// we can also declare it as a variable
@h3nr1ke
h3nr1ke / const_004.js
Created December 24, 2018 12:20
const example with object.freeze
/**
*/
const OBJ = {
prop1 : 1,
prop2 : 2,
propA : "A",
propB : "B",
};
OBJ.prop1 = 3;