Skip to content

Instantly share code, notes, and snippets.

View gbelot2003's full-sized avatar
🎃
Working

Gerardo Belot gbelot2003

🎃
Working
View GitHub Profile
@gbelot2003
gbelot2003 / StartSSL.md
Created May 2, 2017 06:14 — forked from mgedmin/StartSSL.md
Free StartSSL.com SSL certificate HOWTO

How to get a free StartSSL.com SSL certificate

I'm writing this up from memory, so errors may appear.

This has been updated to use SHA256 certificates.

Start

  1. Go to http://www.startssl.com/
  2. Click on 'Control Panel'
@gbelot2003
gbelot2003 / .emacs
Last active July 16, 2016 07:24
my .emacs cofiguration
(load-theme 'wombat)
(setq frame-title-format "emacs")
(load-theme 'wombat)
(setq frame-title-format "emacs")
;(menu-bar-mode -1)
;(tool-bar-mode -1)
(scroll-bar-mode -1)
(set-default 'cursor-type 'hbar)
(ido-mode)
(column-number-mode)
@gbelot2003
gbelot2003 / .bashrc
Created June 25, 2016 22:36
Fedora 23 bashrc
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
@gbelot2003
gbelot2003 / webpack.config.js
Created April 4, 2016 23:58 — forked from learncodeacademy/webpack.config.js
Sample Basic Webpack Config
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : null,
entry: "./js/scripts.js",
output: {
path: __dirname + "/js",
filename: "scripts.min.js"
@gbelot2003
gbelot2003 / install-composer.sh
Created February 26, 2016 17:52 — forked from matthewpizza/install-composer.sh
Install Composer on Webfaction
cd $HOME
ln -s `which php56` ~/bin/php
export PATH=$HOME/bin:$PATH
curl -sS https://getcomposer.org/installer | php56
echo -e "\n# Composer\nalias composer=\"php56 \$HOME/composer.phar\"" >> $HOME/.bash_profile
source $HOME/.bash_profile