Skip to content

Instantly share code, notes, and snippets.

View amaurycatelan's full-sized avatar
🌻
what's up, doc?

Amaury Catelan amaurycatelan

🌻
what's up, doc?
View GitHub Profile
@amaurycatelan
amaurycatelan / osx-for-hackers.sh
Created May 14, 2017 20:07 — forked from brandonb927/osx-for-hackers.sh
OSX for Hackers: Yosemite/El Capitan Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned.
#!/bin/sh
###
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer)
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos
###
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx

Notice

This script is no longer required with Docker for Mac which includes an option to run Docker at startup and doesn't use docker-machine to administer the local Docker engine.

Requirements

  • Docker Machine + Docker
  • curl
  • A Virtualbox-driven Docker Machine called "default" docker-machine create --driver virtualbox default (this is the default with Docker toolkit).
@amaurycatelan
amaurycatelan / id_rsa_encryption.md
Created August 20, 2017 04:43
Encrypt/Decrypt a File using your SSH Public/Private Key on Mac OS X

A Guide to Encrypting Files with Mac OS X

This guide will demonstrate the steps required to encrypt and decrypt files using OpenSSL on Mac OS X. The working assumption is that by demonstrating how to encrypt a file with your own public key, you'll also be able to encrypt a file you plan to send to somebody else using their private key, though you may wish to use this approach to keep archived data safe from prying eyes.

Too Long, Didn't Read

Assuming you've already done the setup described later in this document, that id_rsa.pub.pcks8 is the public key you want to use, that id_rsa is the private key the recipient will use, and secret.txt is the data you want to transmit…

Encrypting

$ openssl rand 192 -out key

$ openssl aes-256-cbc -in secret.txt -out secret.txt.enc -pass file:key

@amaurycatelan
amaurycatelan / Cron Jobs MAUTIC
Created September 26, 2017 18:19 — forked from juizmill/Cron Jobs MAUTIC
Lista de Cron Jobs para configurar.
# Não esqueça de alterar o caminho para seu mautic e seu PHP.
# O primeiro atualiza as listas de leads
# SE VOCÊ USA SERVIDOR DEDICADO OU VPS
php /path/to/mautic/app/console mautic:leadlists:update --env=prod
php /path/to/mautic/app/console mautic:campaigns:update -f --env=prod
php /path/to/mautic/app/console mautic:campaigns:trigger -f --env=prod
php /path/to/mautic/app/console mautic:email:process --env=prod
@amaurycatelan
amaurycatelan / gist:7d5898ed82078646e0ea92588d96ec7d
Created January 1, 2018 01:30 — forked from jwebcat/gist:5122366
Properly download from github using wget and curl
wget --no-check-certificate --content-disposition https://github.com/joyent/node/tarball/v0.7.1
# --no-check-cerftificate was necessary for me to have wget not puke about https
curl -LJO https://github.com/joyent/node/tarball/v0.7.1
@amaurycatelan
amaurycatelan / comma-first-var.js
Created January 10, 2018 03:09 — forked from isaacs/comma-first-var.js
A better coding convention for lists and object literals in JavaScript
// See comments below.
// This code sample and justification brought to you by
// Isaac Z. Schlueter, aka isaacs
// standard style
var a = "ape",
b = "bat",
c = "cat",
d = "dog",
@amaurycatelan
amaurycatelan / .travis.yml
Created January 19, 2018 04:21 — forked from rrdelaney/.travis.yml
Autodeploy to NPM with Travis CI
deploy:
provider: npm
email: "YOUR EMAIL"
api_key: $NPM_TOKEN
skip_cleanup: true
on:
branch: master
condition: $(npm view PACKAGENAME dist-tags.latest) != $(node -p "require('./package.json').version")
@amaurycatelan
amaurycatelan / readme.md
Created January 19, 2018 04:22 — forked from coolaj86/how-to-publish-to-npm.md
How to publish packages to NPM

Getting Started with NPM (as a developer)

If you haven't already set your NPM author info, now you should:

npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"

npm adduser

@amaurycatelan
amaurycatelan / gulpfile.babel.js
Created March 2, 2018 20:19 — forked from caraya/gulpfile.babel.js
Gulp 4, ES6 gulpfile example
// Gulp module imports
import {src, dest, watch, parallel, series} from 'gulp';
import del from 'del';
import livereload from 'gulp-livereload';
import sass from 'gulp-sass';
import minifycss from 'gulp-minify-css';
import jade from 'gulp-jade';
import gulpif from 'gulp-if';
import babel from 'gulp-babel';
import yargs from 'yargs';