Skip to content

Instantly share code, notes, and snippets.

View omerguzelelectronicguy's full-sized avatar

Ömer Güzel omerguzelelectronicguy

View GitHub Profile
@svofski
svofski / petoscope.ino
Created November 2, 2021 10:56
ESP8266 Oscilloscope
/*
a basic esp8266 audioscope
*/
#include <Arduino.h>
#include <U8g2lib.h>
#include <ESP8266WiFi.h>
@labbots
labbots / zipper.vbs
Last active April 11, 2023 09:15
VBS script to create zip for file or folder in Windows using ONLY Windows' built-in capabilities
Set Args = Wscript.Arguments
source = Args(0)
target = Args(1)
tempDir = Empty
Function GetFullPath(path)
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
GetFullPath = fso.GetAbsolutePathName( path )
End Function