I hereby claim:
- I am morales2k on github.
- I am morales2k (https://keybase.io/morales2k) on keybase.
- I have a public key whose fingerprint is 1AFA F283 1358 C560 6CEA B2CE FE71 D6F5 43DC 3CF7
To claim this, I am signing this object:
<div class="map embed-container"> | |
<div id="map-notice" style="display: block;"> {Tell your users what to do!} </div> | |
<div class="map-overlay" style="display: block;"></div> | |
<iframe style="width:100%" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3785.684302567802!2d-66.15578327375803!3d18.40721382009222!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8c036a35d02b013f%3A0x5962cad95b9ec7f8!2sPlaza+Del+Sol!5e0!3m2!1sen!2spr!4v1415284687548" width="633" height="461" frameborder="0"></iframe> | |
</div> |
#! /bin/bash | |
archivo='.env' | |
filelines=`cat $archivo` | |
i=0 | |
newfilelines='' | |
echo "Fetching dirty tags from remote repository..." | |
gitVersion=`git ls-remote -t {{REPOSITORY-URL}} *.*.*^*` | |
gv='' |
import requests | |
import json | |
import calendar | |
import sys | |
import codecs | |
from datetime import datetime, timedelta | |
sys.stdout = codecs.getwriter("utf-8")(sys.stdout, 'strict') | |
_tokens = ["TOKEN_LIST"] |
#!/bin/bash | |
# Bash script to ssh into an amazon or other remote host. I made this script to have a single shortcut on my desktop to use in order to load a routine that would simplify establishing an ssh pipe to our remote servers, in this snippet 2 servers are used, but as you can see, it can be scaled up easily by adding more options/cases in the code. Happy Coding! | |
# Author: Jorge Morales | |
#UPDATE THESE VARIABLES WHENEVER THERE ARE CHANGES | |
test_server="TEST_SERVER_HOST_ADDRESS" | |
production_server="PRODUCTION_SERVER_HOST_ADDRESS" | |
pathToCertificate="PATH_TO_KEYFILE" | |
echo "Type 1 to connect to Test server." | |
echo "Type 2 to connect to Production server." |
^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,12})([\/\w-\.]*)?\??([=\w+&%\s-]?)*$ |
I hereby claim:
To claim this, I am signing this object:
<?php | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
use Illuminate\Support\Facades\Validator; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
/** |
#nvm stuff their installer adds | |
export NVM_DIR=~/.nvm | |
source $(brew --prefix nvm)/nvm.sh | |
#nvm stuff end... | |
#add composer to PATH | |
export PATH=~/.composer/vendor/bin:$PATH | |
#aliases to make my life easier | |
alias phpunit=./vendor/bin/phpunit |
--- | |
ip: "10.10.192.168" | |
memory: 2048 | |
cpus: 1 | |
provider: virtualbox | |
name: homestead-7 | |
authorize: ~/.ssh/id_rsa.pub | |
keys: |
#same functionality in a bash profile function | |
function cors-test() { | |
ORIGIN=$1 | |
URI=$2 | |
METHOD=$3 | |
if [ -z "$3" ] && [ -z "$METHOD" ]; then | |
echo -e "\033[0;33mSince you did not provide a method, the default GET will be used.\nYou can provide a third param to specify the method\n(to use with the curl -X option).\033[1;33m\033[0m\n" | |
METHOD="-X ${METHOD}" | |
fi |