Skip to content

Instantly share code, notes, and snippets.

View reflectiondm's full-sized avatar

Andrei Zubov reflectiondm

  • Munich, Germany
View GitHub Profile
parted -l
echo 1 > /sys/class/scsi_device/2\:0\:0\:0/device/rescan
parted -l
parted /dev/sda resizepart 2 156GB
parted -l
parted /dev/sda mkpart logical 134GB 156GB
parted -l
vgextend host-vg /dev/sda8
vgdisplay
lvdisplay
class Greeter {
constructor(greeting) {
this.greeting = greeting;
}
call(message) {
console.log(`${message}, ${this.greeting}`);
}
}
@reflectiondm
reflectiondm / VSCode settings.json
Last active February 20, 2017 14:08
A VSCode settings.json file optimized to use on windows for javascript and dotnet core projects
// Place your settings in this file to overwrite the default settings
{
"eslint.enable": true,
"eslint.autoFixOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,