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
- name: Add ppa Repository | |
sudo: yes | |
apt_repository: | |
repo=ppa:ondrej/mysql-5.7 | |
- name: Update apt | |
sudo: yes | |
apt: update_cache=yes | |
- name: mysql | Install MySQL Packages |
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
Bringing machine 'default' up with 'virtualbox' provider... | |
==> default: Importing base box 'ubuntu/trusty64'... | |
==> default: Matching MAC address for NAT networking... | |
==> default: Checking if box 'ubuntu/trusty64' is up to date... | |
==> default: A newer version of the box 'ubuntu/trusty64' is available! You currently | |
==> default: have version '20170619.0.0'. The latest is version '20171101.0.0'. Run | |
==> default: `vagrant box update` to update. | |
==> default: Setting the name of the VM: whale_default_1510231555971_43123 | |
==> default: Clearing any previously set forwarded ports... | |
==> default: Clearing any previously set network interfaces... |
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
<?php | |
class CaptchService { | |
private $client; | |
private $logger; | |
public function __construct(\GuzzleHttp\Client $client,\Log $logger) |
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
const puppeteer = require('puppeteer'); | |
const fs = require('fs'); | |
const os = require('os'); | |
run(); | |
function run () { | |
(async () => { | |
let path = ''; |
OlderNewer