Categories
certbot letsencrypt OS

Generating a PFX cert with certbot and openssl

That was a long title. Now, down to business. I ran these commands on macOS so they may vary a bit if you’re on another OS. After installing certbot, go ahead and generate a new cert using: certbot certonly –manual –preferred-challenges dns –email administrator@domain.com –domains domain.com This will give you a DNS challenge which basically […]

Categories
OS

View file changes on each commit on Git

Recently I needed to view the changes made to a specific file on git, this pretty awesome command will list the changes made on each commit since the beginning of time…even if the file was renamed (I think so): git log –follow -p filename

Categories
OS

How to install Homebrew – Mac OS X

Before installing Homebrew you need a compiler, for this, first check this post: How to install Xcode 4.3.2 with Command Line Tools – Mac OS X And then simply run this in terminal: /usr/bin/ruby -e “$(/usr/bin/curl -fksSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)”

Categories
OS Ruby

How to install RVM

Mac OS X only starts – Before installing RVM you need a compiler in order to install any Ruby version, for this, first check this post: How to install Xcode 4.3.2 with Command Line Tools – Mac OS X – Mac OS X only ends After getting that done, you can go ahead and run […]

Categories
OS

How to install Xcode 4.3.2 with Command Line Tools – Mac OS X

In order to install Xcode 4.3.2 with Command Line Tools you have to register your Apple ID as a Developer (in that link you can create an Apple ID if you don’t have one). After getting that done, open the App Store and search for “xcode” then click install. You will be asked to sign […]