Skip to content

Instantly share code, notes, and snippets.

View MashukeAlam's full-sized avatar
🌳
Trying to do somethong BiGG

Mashuke Alam Jim MashukeAlam

🌳
Trying to do somethong BiGG
View GitHub Profile
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontFamily": "'SF Mono', Consolas, 'Courier New', monospace",
"editor.fontSize": 18,
"files.autoSave": "afterDelay",
"workbench.colorTheme": "Default High Contrast",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": [
"workbench.colorCustomizations": {
"editor.background": "#000000",
"editor.foreground": "#eeffff",
"activityBarBadge.background": "#3dee37",
"sideBarTitle.foreground": "#a4e1ff",
"statusBar.background": "#0c8f00",
"sideBar.background": "#191919",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#263238",
var Client = require('ftp');
const fs = require('fs');
var c = new Client();
const checkPdf = (file) => {
return file.name.endsWith('.pdf');
}
c.on('ready', function() {