Issues tagged as help wanted
and/or good first issue
are a good place to start:
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
cd "C:\Program Files\Oracle\VirtualBox\" | |
VBoxManage unregistervm "foo" --delete | |
echo Creating machine... | |
VBoxManage createvm --name "foo" -register | |
echo Registering OS Type | |
VBoxManage modifyvm "foo" --ostype Debian_64 | |
echo Setting boot order | |
VBoxManage modifyvm "foo" --boot1 disk | |
VBoxManage modifyvm "foo" --boot2 none | |
VBoxManage modifyvm "foo" --boot3 none |
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
VBoxManage storageattach "foo" --storagectl "SATA Controller" --port 0 --device 0 --mtype immutable --type hdd --medium "foo.vdi" |
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
VBoxManage storageattach "foo" --storagectl "SATA Controller" --port 0 --device 0 --type hdd --medium "foo.vdi" |
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
VBoxManage storageattach "foo" --storagectl "SATA Controller" --port 0 --device 0 --mtype multiattach --type hdd --medium "foo.vdi" |
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
echo Creating host-guest internal network | |
VBoxManage hostonlyif remove "VirtualBox Host-Only Ethernet Adapter" | |
VBoxManage hostonlyif create | |
VBoxManage hostonlyif ipconfig "VirtualBox Host-Only Ethernet Adapter" --ip 192.168.56.1 --netmask 255.255.255.0 | |
VBoxManage dhcpserver add --ifname "VirtualBox Host-Only Ethernet Adapter" --ip 192.168.56.1 --netmask 255.255.255.0 --lowerip 192.168.56.1 --upperip 192.168.56.2 |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
#lsof |grep -i <any_file> to find out the process #kill -9 <pid> to terminate the program |
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
ffmpeg -i in.mov -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > out.gif |
OlderNewer