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 / cmd.sh
Created April 22, 2019 14:14 — forked from kelvinn/cmd.sh
Example of using Apache Bench (ab) to POST JSON to an API
# post_loc.txt contains the json you want to post
# -p means to POST it
# -H adds an Auth header (could be Basic or Token)
# -T sets the Content-Type
# -c is concurrent clients
# -n is the number of requests to run in the test
ab -p post_loc.txt -T application/json -H 'Authorization: Token abcd1234' -c 10 -n 2000 http://example.com/api/v1/locations/
@jackfiallos
jackfiallos / docker-compose-v1.yml
Created March 14, 2019 07:14 — forked from markheath/docker-compose-v1.yml
Elasticsearch docker compose examples
version: '2.2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.4.1
container_name: elasticsearch
environment:
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
@jackfiallos
jackfiallos / gist:29b494fa6682f824be05936eba90c2f4
Created March 5, 2019 21:28 — forked from kublaios/gist:f01cdf4369c86ddd6d71
Making a PEM File for iOS Push Notifications (From Ray Wenderlich's tutorial)
# Convert the .cer file into a .pem file:
$ openssl x509 -in aps_development.cer -inform der -out PushChatCert.pem
# Convert the private key’s .p12 file into a .pem file:
$ openssl pkcs12 -nocerts -in PushChatKey.p12 -out PushChatKey.pem
# Finally, combine the certificate and key into a single .pem file
$ cat PushChatCert.pem PushChatKey.pem > ck.pem
# At this point it’s a good idea to test whether the certificate works.
@jackfiallos
jackfiallos / enzyme_render_diffs.md
Created February 12, 2019 14:47 — forked from fokusferit/enzyme_render_diffs.md
Difference between Shallow, Mount and render of Enzyme

Shallow

Real unit test (isolation, no children render)

Simple shallow

Calls:

  • constructor
  • render
@jackfiallos
jackfiallos / deployUser.md
Created December 8, 2018 19:16 — forked from learncodeacademy/deployUser.md
Adding a deploy user in Linux

(wherever it says url.com, use your server's domain or IP)

Login to new server as root, then add a deploy user

sudo useradd --create-home -s /bin/bash deploy
sudo adduser deploy sudo
sudo passwd deploy

And Update the new password

@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';
@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 / 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 / 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 / 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