Skip to content

Instantly share code, notes, and snippets.

@paruljain
paruljain / vagrantfile
Created February 13, 2017 22:43
Vagrantfile for Alpine Linux with docker
Vagrant.configure("2") do |config|
config.vm.box = "maier/alpine-3.3.1-x86_64"
config.vm.network "public_network", ip: "192.168.1.31", auto_config: true
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.provider "virtualbox" do |vb|
vb.name = 'Alpine1'
vb.cpus = 1
vb.memory = 1024
#vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
# Display the VirtualBox GUI when booting the machine
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Visible = $true
$ie.Navigate2('http://www.oshoworld.com/discourses/audio_hindi.asp?album_id=30')
while ($ie.Busy) { sleep -Milliseconds 50 }
$start = 117
$end = 121
for ($i = $start; $i -lt $end; $i++) {
$ie.Refresh()
while ($ie.Busy) { sleep -Milliseconds 50 }
/*
High performance filesystem scanner
(c) Parul Jain, 2016
[email protected]
MIT License
*/
package main
import (