Skip to content

Instantly share code, notes, and snippets.

View jackfiallos's full-sized avatar
👾
experienced developer

Jack Fiallos jackfiallos

👾
experienced developer
View GitHub Profile
@jackfiallos
jackfiallos / index.html
Last active August 20, 2018 20:48
React + D3 Bubble Chart
<div id="charts"></div>
@jackfiallos
jackfiallos / deploy.rb
Last active August 22, 2018 19:02
Mina deploy configuration file
require 'mina/bundler'
require 'mina/rails'
require 'mina/git'
require 'mina/deploy'
set :application_name, 'NodeJS API'
set :domain, 'your-domain.com'
set :deploy_to, '/home/public/your-domain/api'
set :repository, 'ssh://[email protected]/organization-name/project.git'
set :branch, 'dev'
module.exports = {
apps: [
{
name: 'api.domain.com',
script: 'server.js',
output: './logs/api.console.log',
error: './logs/api.error.log',
log_type: 'json',
log_date_format: 'DD-MM-YYYY',
env: {
{
"scripts": {
"start": "node server.js",
"dev": "supervisor --inspect server.js",
"test": "NODE_ENV=test mocha -u tdd --timeout 999999 --colors ./test --exit",
"pm2": "pm2 reload ecosystem.config.js"
}
}
//During the test the env variable is set to test
process.env.NODE_ENV = 'test';
//Require the dev-dependencies
const chai = require('chai');
const chaiHttp = require('chai-http');
const serverUrl = 'http://localhost:3000';
const expect = chai.expect;
chai.use(chaiHttp);
@jackfiallos
jackfiallos / install-comodo-ssl-cert-for-nginx.rst
Created August 25, 2018 07:27 — forked from bradmontgomery/install-comodo-ssl-cert-for-nginx.rst
Steps to install a Comodo PositiveSSL certificate with Nginx.

Setting up a SSL Cert from Comodo

I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.

These are the steps I went through to set up an SSL cert.

Purchase the cert

@jackfiallos
jackfiallos / nginx.conf
Created August 25, 2018 08:09 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@jackfiallos
jackfiallos / dos2unix.sh
Created October 10, 2018 12:52 — forked from jappy/dos2unix.sh
Shell script to convert files with CRLF to LF (Mac/Linux)
#! /bin/sh
for x
do
echo "Converting $x"
tr -d '\015' < "$x" > "tmp.$x"
mv "tmp.$x" "$x"
done
@jackfiallos
jackfiallos / NodeHTTPs1.js
Created November 19, 2018 03:40 — forked from n1lesh/NodeHTTPs1.js
HTTPs Server with Node.js and Express
var express = require('express');
var app = express();
var fs = require('fs');
@jackfiallos
jackfiallos / lag-lng-cities-catalog.php
Created November 26, 2018 15:10
Maxmind Free World Cities Database to MySQL custom city table
<?php
// this script will parse data from maxmind cities list
// http://download.maxmind.com/download/worldcities/worldcitiespop.txt.gz
// country list taken from
// https://github.com/raramuridesign/mysql-country-list/blob/master/mysql-country-list.sql
ini_set('default_charset', 'UTF-8');
$arr[1] = 'AF';