Skip to content

Instantly share code, notes, and snippets.

View vofus's full-sized avatar

Andrey Vasin vofus

  • Russia, Samara
View GitHub Profile
@vofus
vofus / docker-install.sh
Last active October 26, 2020 14:47
Docker installation (Ubuntu)
#!/bin/bash
# Install the newest Docker
sudo apt-get update && \
sudo apt-get remove docker docker-engine docker.io && \
sudo apt-get install docker.io && \
# Add current user to Docker group
sudo groupadd docker && \
sudo gpasswd -a $USER docker && \
@vofus
vofus / dataURL_to_blob_and_blob_to_dataURL.js
Last active April 28, 2020 21:48 — forked from wuchengwei/dataURL to blob and blob to dataURL
dataURL to blob and blob to dataURL
//**dataURL to blob**
function dataURLtoBlob(dataurl) {
var arr = dataurl.split(','), mime = arr[0].match(/:(.*?);/)[1],
bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n);
while(n--){
u8arr[n] = bstr.charCodeAt(n);
}
return new Blob([u8arr], {type:mime});
}
console.log('This is test Gist!');
@vofus
vofus / sandwich.html
Last active October 17, 2015 22:24
Sandwich menu
<span class="sandwich">
<span class="sw-topper"></span>
<span class="sw-bottom"></span>
<span class="sw-footer"></span>
</span>
@vofus
vofus / arrow_in_circle.html
Last active October 17, 2015 22:25
Arrow in circle
<div class="arrow_in_circle">
<a href="#"></a>
<span class="round"></span>
<span class="arrow_left"></span>
<span class="arrow_middle"></span>
<span class="arrow_right"></span>
</div>