- style guide + code snippets = DESIGN SYSTEM 💖
Put simply:
- css + js snippets
- guide for developers with no taste
Every time I sit down to code, it seems like a new Ruby version is available.
When I first learned ruby I used rvm on my Mac. In production on linux, I use rbenv, likely due to its Capistrano integration.
When I set up my current machine, I found rvm
had fallen out of fashion in favour of something called chruby
.
import code; code.interact(local=dict(globals(), **locals())) |
where: macOS Catalina
when: Homebrew’s / rvm after Ruby update to 2.6 or 2.7 fails with abort or Abort trap: 6
.
pre: make sure you're using newest rvm version rvm get stable
.
All rake and rails command crashed
Noticed that rails tasks like rake or rails console, rails db:create, rails db:migrate (info - added only for better googling) these command crashed with the output aborted. No errors only with abord
or Abort trap: 6
This is an issue with some OpenSSL libraries. So quick fix:
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AllowClipboardAccess</key> | |
<true/> | |
<key>AppleAntiAliasingThreshold</key> | |
<integer>1</integer> | |
<key>ApplePressAndHoldEnabled</key> | |
<false/> |