Skip to content

Instantly share code, notes, and snippets.

View antonkorotkov's full-sized avatar
🖕
f..ck putin

Anton antonkorotkov

🖕
f..ck putin
View GitHub Profile
//https://jsfiddle.net/7Lucfkg5/6/
const Vehicle = function(name, sound) {
this.name = name
this.sound = sound
}
Vehicle.prototype.go = function() {
console.log(`${this.name} does the ${this.sound}`)
}
@antonkorotkov
antonkorotkov / install_wp.sh
Created November 23, 2019 11:55
Install Wordpress
wget https://wordpress.org/latest.zip
unzip latest.zip
mv wordpress/* ./
rm -rf wordpress latest.zip