-
Open a browser
# start an instance of firefox with selenium-webdriver $browser_type = 'firefox' $host = 'http://localhost:4444/wd/hub'
$capabilities = array(\WebDriverCapabilityType::BROWSER_NAME => $browser_type);
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "peru/windows-10-enterprise-x64-eval" | |
| config.vm.synced_folder "data", "/vagrant_data" | |
| config.vm.provider "virtualbox" do |vb| | |
| # Display the VirtualBox GUI when booting the machine | |
| vb.gui = true | |
| # Customize the amount of memory on the VM: |
| FROM debian:stretch-slim | |
| ARG USER_PUID=1000 | |
| ARG USER_PGID=1000 | |
| ARG USER_NAME=php | |
| RUN groupadd --gid $USER_PGID $USER_NAME \ | |
| && useradd --uid $USER_PUID --gid $USER_NAME -m $USER_NAME | |
| ENV PHPIZE_DEPS \ |
| #!/usr/bin/python3 | |
| ####################################################### | |
| # Python rsync Backup script | |
| # Sebastian Kraft, 24.06.2013 | |
| # | |
| ####################################################### | |
| #----------------------------------------------------- | |
| # Config |
| /* | |
| TITLE: CODE GRABBER FOR HT6P20B ENCODER | |
| CREATED BY: AFONSO CELSO TURCATO | |
| DATE: 14/JAN/2014 | |
| E-MAIL: acturcato (at) gmail.com | |
| LICENSE: GPL | |
| REV.: 00 | |
| DESCRIÇÃO: | |
| http://acturcato.wordpress.com/2014/01/14/clonagem-de-controle-remoto-rf-learning-code-ht6p20b-com-arduino/ |
| ================ run.vbs ================ | |
| REM 0 = hide window, 1 = show window (useful for debugging) | |
| Set WshShell = CreateObject("WScript.Shell") | |
| WshShell.Run """" & "run.bat" & """" & sargs, 0, False | |
| Set WshShell = Nothing | |
| ================ run.bat ================ | |
| REM Batch script to start VirtualBox instance of ReviewBoard in headless mode |
Install Package Control for easy package management.
Ctrl+`
| #!/usr/bin/env python | |
| import argparse | |
| import re | |
| import os | |
| import subprocess | |
| try: | |
| import json | |
| except ImportError: | |
| import simplejson as json |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| if Vagrant.has_plugin?("vagrant-cachier") | |
| config.cache.scope = :box | |
| else | |
| puts "_Info_: Plugin '''vagrant-cachier''' is not installed." |