This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| source 'https://rubygems.org' | |
| # default gems here | |
| #--------------------------- | |
| # add paperclip and bootstrap | |
| gem "paperclip", "~> 4.1" | |
| gem 'bootstrap-sass', '~> 3.1.1' |
| find: | |
| \'(\w+)\'\s*=> | |
| replace: | |
| $1: | |
| replace symbol hash rockets with new syntax | |
| find: |
| Set Host Machine Static IP -> 192.168.1.2 (SNM 255.255.255.0) | |
| Disconnect POE/LAN cable from UAP | |
| Reconnect POE/LAN cable to UAP | |
| Watch for ~500ms green led blink | |
| Click reset button once, green led blinks ~150ms | |
| `telnet 192.168.1.1` from host machine | |
| mount_root to fix config |
| # in your spec helper... | |
| require "pry" | |
| require "redis" | |
| require "mock_redis" | |
| RSpec.configure do |config| | |
| config.before(:each) do | |
| mock_redis = MockRedis.new | |
| allow(Redis).to receive(:new).and_return(mock_redis) |
| /* | |
| Windows | |
| Location: C:\Users\<YourUsername>\AppData\Roaming\Mozilla\Firefox\Profiles\<YourFirefoxProfile>\chrome | |
| Notes: | |
| If minimize, maximize, and close buttons are no longer visible, enable the Title Bar or Menu Bar in Firefox Customize. | |
| macOS | |
| Location: /Users/<YourUsername>/Library/Application Support/Firefox/Profiles/<YourFirefoxProfile>/chrome | |
| Notes: | |
| If minimize, maximize, and close buttons overlap other controls, add the Flexible Space in Firefox Customize. |