- twig/twig - Twig, the flexible, fast, and secure template language for PHP - 279287
- symfony/symfony - The Symfony PHP framework - 230662
- doctrine/common - Common Library for Doctrine projects - 230352
- doctrine/dbal - Database Abstraction Layer - 217097
- monolog/monolog - Logging for PHP 5.3 - 197983
- doctrine/orm - Object-Relational-Mapper for PHP - 196816
- swiftmailer/swiftmailer - Swiftmailer, free feature-rich PHP mailer - 172086
- kriswallsmith/assetic - Asset Management for PHP - 165852
- [sensio/distribution-bundle](https://packagist.org/packages/sen
This file contains 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
#!/bin/bash | |
set -e | |
usage="$(basename "$0") [-h] [-i PROJECT] [-v VM] [-p PYTHON] [-d NOTEBOOKS] | |
Make a user provide SSH key and jupyter notebooks (in roles/bootstrap/files/notebooks) to each user listed in var/common.yml | |
where: | |
-h show this help text | |
-i google cloud project id | |
-v name of instance/virtual machine | |
-p python path |
This file contains 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
#!/usr/bin/env bash | |
# help from: | |
# https://gist.github.com/textarcana/5855427 | |
# http://tecadmin.net/install-firefox-on-linux/ | |
# install deps | |
yum install -y java Xvfb firefox | |
# This version of FF doesn't actually work with latest selenium (for me) so I remove it again |
This file contains 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
- name: Collect the list of the existing VM | |
vcenter_vm_info: | |
register: existing_vms | |
until: existing_vms is not failed | |
- name: Turn off the VM | |
vcenter_vm_power: | |
state: stop | |
vm: '{{ item.vm }}' | |
with_items: "{{ existing_vms.value }}" |