Skip to content

Instantly share code, notes, and snippets.

View VishDev12's full-sized avatar
πŸ‘‹
πŸš€

Vishnu Deva VishDev12

πŸ‘‹
πŸš€
View GitHub Profile
@VishDev12
VishDev12 / Callback
Last active February 14, 2018 10:25
firstThis (data, callBack){
data = 1
callBack (data)
}
firstThis (x, anyFunction);
@VishDev12
VishDev12 / NS-Pseudocode
Last active February 14, 2018 16:21
Non-Sequential Programming
download1 (imgPath, processImage, uploadImage); //processImage and uploadImage are callback functions
download2 (txtPath, processText, uploadText); //processText and uploadText are callback functions
@VishDev12
VishDev12 / Pseudocode
Created February 13, 2018 17:17
Sequential Programming
image = download (imagePath);
processedImage = process (image);
upload (processedImage);
text = download (textPath);
processedText = process (text);
upload (processedText);