Skip to content

Instantly share code, notes, and snippets.

View joeneldeasis's full-sized avatar
🎯
ଘ(੭*ˊᵕˋ)੭* ̀ˋ sᴀᴠᴇ ᴛʜᴇ ɪɴᴛᴇʀɴᴇᴛ

Joenel de Asis joeneldeasis

🎯
ଘ(੭*ˊᵕˋ)੭* ̀ˋ sᴀᴠᴇ ᴛʜᴇ ɪɴᴛᴇʀɴᴇᴛ
View GitHub Profile
@joeneldeasis
joeneldeasis / keybase.md
Created September 25, 2018 18:36
Keybase

Keybase proof

I hereby claim:

  • I am joeneldeasis on github.
  • I am rooteronomy (https://keybase.io/rooteronomy) on keybase.
  • I have a public key whose fingerprint is 4773 F96F 8AFE 8ABC 3085 9FC3 2242 7D5B A10A 93E0

To claim this, I am signing this object:

Download Google Drive files with WGET
Example Google Drive download link:
https://docs.google.com/open?id=[ID]
To download the file with WGET you need to use this link:
https://googledrive.com/host/[ID]
Example WGET command:
@joeneldeasis
joeneldeasis / certscript.sh
Last active December 2, 2018 22:24
Script for updating certbot dependencies on AWS Linux AMI
#!/bin/bash
### Change the permission of certscript.sh: chmod +x /path/to/certscript.sh
### Add this script to root user's cron: 0 0 1 * * sh /path/to/certscript.sh
user=$(whoami)
certbot_dir="/usr/bin"
if [[ $user != 'root' ]]; then
echo "[*] Please run this script as root user!"
#!/bin/bash
# bash generate random alphanumeric string
#
# bash generate random 32 character alphanumeric string (upper and lowercase) and
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
# bash generate random 32 character alphanumeric string (lowercase only)
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1
@joeneldeasis
joeneldeasis / bash-cheatsheet.sh
Created October 24, 2017 15:20 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@joeneldeasis
joeneldeasis / Commands.sh
Created October 10, 2017 04:15 — forked from nrollr/Commands.sh
Install PHP and NGINX on Amazon Linux AMI
## Install NGINX
$ sudo yum install nginx -y
## Install PHP and PHP-FPM
$ sudo yum install php -y
$ sudo yum install php-fpm -y
## Configure NGINX (see below)
$ sudo nano /etc/nginx/conf.d/default.conf
@joeneldeasis
joeneldeasis / nginx.conf
Created August 18, 2017 01:20 — 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
@joeneldeasis
joeneldeasis / hapijs-rest-api-tutorial.md
Created July 26, 2017 03:26 — forked from agendor/hapijs-rest-api-tutorial.md
A practical introduction to building a RESTful API with the hapi.js server framework for Node.js
@joeneldeasis
joeneldeasis / Javascript ISO country code to country name conversion
Created June 16, 2017 00:49 — forked from maephisto/Javascript ISO country code to country name conversion
ISO 3166-1 alpha-2 country code to country name conversion with a simple Javascript implementation, an array and a function.
var isoCountries = {
'AF' : 'Afghanistan',
'AX' : 'Aland Islands',
'AL' : 'Albania',
'DZ' : 'Algeria',
'AS' : 'American Samoa',
'AD' : 'Andorra',
'AO' : 'Angola',
'AI' : 'Anguilla',
'AQ' : 'Antarctica',
@joeneldeasis
joeneldeasis / README.md
Created June 12, 2017 05:07 — forked from dolphin278/README.md
Pub/sub example for nodejs using mongodb

Uses capped collection, tailable cursors and streams.

What's here?

  • init.js recreates collection capped collection 'queue' on mongodb.
  • writer.js spams queue with new messages
  • worker.js processes all messages saved to queue,
  • onceWorker.js processes only unprocessed messages, so you can spawn several of them and each of your messages will be processed by only one worker.

Steps