Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% vagrant up --debug | |
INFO global: Vagrant version: 2.3.3 | |
INFO global: Ruby version: 2.7.6 | |
INFO global: RubyGems version: 3.1.6 | |
INFO global: VAGRANT_DOTFILE_PATH="/Volumes/VMs/Vagrant/machines" | |
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/2.3.3/gems/vagrant-2.3.3/bin/vagrant" | |
INFO global: VAGRANT_INSTALLER_ENV="1" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded" | |
INFO global: VAGRANT_INSTALLER_VERSION="2" | |
INFO global: VAGRANT_LOG="debug" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% vagrant up --debug | |
INFO global: Vagrant version: 2.3.3 | |
INFO global: Ruby version: 2.7.6 | |
INFO global: RubyGems version: 3.1.6 | |
INFO global: VAGRANT_DOTFILE_PATH="/Volumes/VMs/Vagrant/machines" | |
INFO global: VAGRANT_INSTALLER_ENV="1" | |
INFO global: VAGRANT_INSTALLER_VERSION="2" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded" | |
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/2.3.3/gems/vagrant-2.3.3/bin/vagrant" | |
INFO global: VAGRANT_LOG="debug" |

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@c66homeopathyjackal:/var/deploy/homeopathy/web_head/current# tail -59 /var/deploy/homeopathy/web_head/current/log/nginx_error.log | |
App 10882 stdout: | |
App 10882 stdout: I, [2014-07-25T21:49:35.303580 #10882] INFO -- : ** [Raven] Raven 0.9.4 ready to catch errors | |
App 10882 stdout: | |
[ 2014-07-25 21:49:36.1727 5030/7f512376b700 Pool2/Implementation.cpp:883 ]: Could not spawn process for group /var/deploy/homeopathy/web_head/current#default: An error occured while starting up the preloader. | |
in 'void Passenger::ApplicationPool2::SmartSpawner::handleErrorResponse(Passenger::ApplicationPool2::SmartSpawner::StartupDetails&)' (SmartSpawner.h:451) | |
in 'std::string Passenger::ApplicationPool2::SmartSpawner::negotiatePreloaderStartup(Passenger::ApplicationPool2::SmartSpawner::StartupDetails&)' (SmartSpawner.h:562) | |
in 'void Passenger::ApplicationPool2::SmartSpawner::startPreloader()' (SmartSpawner.h:202) | |
in 'virtual Passenger::ApplicationPool2::ProcessPtr Passenger::ApplicationPool2::SmartSpawner: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while true | |
do | |
# Command line inspired from http://askubuntu.com/a/88983 | |
ps -u vagrant -o thcount | tail -n +2 | awk '{ num_threads += $1 } END { print num_threads }' | |
sleep 1 | |
done |