Install Package Control for easy package management.
- Open the console with
Ctrl+`
- Paste in the following:
# -*- 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." |
#!/usr/bin/env python | |
import argparse | |
import re | |
import os | |
import subprocess | |
try: | |
import json | |
except ImportError: | |
import simplejson as json |
Install Package Control for easy package management.
Ctrl+`
================ 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 |
/* | |
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/ |
#!/usr/bin/python3 | |
####################################################### | |
# Python rsync Backup script | |
# Sebastian Kraft, 24.06.2013 | |
# | |
####################################################### | |
#----------------------------------------------------- | |
# Config |
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 \ |
# -*- 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: |