I'm using Homebrew to stop the service
brew services stop mysql
| # THIS LINUX SETUP SCRIPT HAS MORPHED INTO A WHOLE PROJECT: HTTPS://OMAKUB.ORG | |
| # PLEASE CHECKOUT THAT PROJECT INSTEAD OF THIS OUTDATED SETUP SCRIPT. | |
| # | |
| # | |
| # Libraries and infrastructure | |
| sudo apt update -y | |
| sudo apt install -y \ | |
| docker.io docker-buildx \ | |
| build-essential pkg-config autoconf bison rustc cargo clang \ |
| ## For a beginner-friendly version of the following (more advanced users likely will get better use of the below, | |
| ## if you're just starting out...), see this new gist: | |
| ## https://gist.github.com/WolfgangSenff/0a9c1d800db42a9a9441b2d0288ed0fd | |
| This document represents the beginning of an upgrade or migration document for GDScript 2.0 and Godot 4.0. I'm focusing on 2D | |
| at the moment as I'm upgrading a 2D game, but will hopefully have more to add for 3D afterward. | |
| ## If you want more content like this, please help fund my cat's medical bills at https://ko-fi.com/kyleszklenski - thank you very much! On to the migration guide. |
| 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 |
| #!/bin/sh | |
| # Firefox Developer Edition install | |
| # No need to download this script, just run it on your terminal: | |
| # $ curl -L git.io/firefoxdev | sh | |
| # When you need to update Firefox Developer Edition, run this script again. | |
| START_CMD="firefox-dev" | |
| INSTALLATION_DIR="/opt/${START_CMD}" |
| # I'm running OS X and I need to develop and test Vagrant features | |
| # which are specific to Linux-only, i.e. I need "physical" Linux machine. | |
| # I've finally stuck with creating DigitalOcean VM and installing | |
| # everything necessary for development there. It's magical | |
| # Vagrant-powered Vagrant-development Vagrantfile. | |
| # | |
| # First, start the VM which will be the host: | |
| # $ vagrant up host --provider=digital_ocean | |
| # | |
| # Now, you can start VM in VM which will be used for Vagrant testing: |
| # install node | |
| # derived from https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager | |
| # TODO: check that you have not installed older version of node in /usr/local/bin and remove them | |
| sudo apt-get install python-software-properties python g++ make | |
| # installing latest nodes (currently 0.10.3), when you want 0.8.x use node.js-legacy ppa | |
| sudo add-apt-repository ppa:chris-lea/node.js | |
| sudo apt-get update | |
| sudo apt-get install nodejs | |
| # update all node packages |
| brew uninstall openssl | |
| brew uninstall curl-ca-bundle | |
| brew uninstall readline |
Changes:
this version includes backport of Greg Price's patch for speedup startup http://bugs.ruby-lang.org/issues/7158 .
ruby-core prefers his way to do thing, so that I abandon cached-lp and sorted-lf patches of mine.
this version integrates 'array as queue' patch, which improves performance when push/shift pattern is heavily used on Array.
This patch is accepted into trunk for Ruby 2.0 and last possible bug is found by Yui Naruse. It is used in production* for a couple of months without issues even with this bug.