start new:
tmux
start new with session name:
tmux new -s myname
A Pen by A Non Ymous on CodePen.
First, Create a folder inside of lib called seeds
Put your CSV file example.csv into the lib/seeds folder. In the example below, the file is called real_estate_transactions.csv
Make sure you've created a resource with the appropriate columns to match your seed data. The names don't have to match up.
| var element = document.querySelector(prompt('Insert the querySelector to the svg element.', '#gear')); | |
| var bbox = element.getBBox(), | |
| x = bbox.x, | |
| y = bbox.y, | |
| w = bbox.width, | |
| h = bbox.height | |
| ; | |
| var result = | |
| 'center center' + "\n" + |
| --- | |
| - hosts: wordpress-server | |
| vars: | |
| root_directory: /var/www/html | |
| theme_name: your-theme-name | |
| theme_repo: https://yourtheme.git.url.git | |
| locale: it_IT | |
| url: http://absolute-url.tld | |
| title: Worpdress | |
| admin_user: admin |
| brew tap homebrew/versions | |
| brew install v8-315 | |
| gem install libv8 -v '3.16.14.13' -- --with-system-v8 | |
| gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315 | |
| bundle install |
I was able to get Ruby 2.5.1 building on M1 by following two of the steps in that GH issue...
rbenv/ruby-build#1691 (comment) rbenv/ruby-build#1691 (comment)
I installed readline and openssl with standard brew install.
brew install readline
brew install openssl