Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View cyogian's full-sized avatar
🎯
Focusing

Amar Nath Yogi cyogian

🎯
Focusing
View GitHub Profile
@cyogian
cyogian / quotes.json
Created September 12, 2019 19:49 — forked from nasrulhazim/quotes.json
Quotes List in JSON Format
{
"quotes": [
{
"quote":"Life isn’t about getting and having, it’s about giving and being.","author":"Kevin Kruse"},
{
"quote":"Whatever the mind of man can conceive and believe, it can achieve.","author":"Napoleon Hill"},
{
"quote":"Strive not to be a success, but rather to be of value.","author":"Albert Einstein"},
{
@cyogian
cyogian / upload.js
Created May 30, 2020 15:58 — forked from virolea/upload.js
Tracking file upload progress using axios
upload(files) {
const config = {
onUploadProgress: function(progressEvent) {
var percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total)
console.log(percentCompleted)
}
}
let data = new FormData()
data.append('file', files[0])