Skip to content

Instantly share code, notes, and snippets.

View AvrumFeldman's full-sized avatar

Avrum Feldman AvrumFeldman

  • usa
View GitHub Profile
@JosephGregg
JosephGregg / arduino_pan_tilt.ino
Created November 12, 2017 03:19
YT-260 Pan/Tilt hack
const byte numChars = 32;
char receivedChars[numChars]; // an array to store the received data
boolean newData = false;
int dataNumber = 0; // new for this version
void setup() {
pinMode(5, OUTPUT);
pinMode(4, OUTPUT);
@sunnyc7
sunnyc7 / Delete-MesssagesUsingEWS.ps1
Last active July 21, 2023 13:07
Delete email messages from Inbox using Exchange Web Services (EWS)
# Author: Sunny Chakraborty (@sunnyc7)
# Note: No one has written Exchange Web Services Scripts EVER without thanking Glenn Scales and Mike Pfeiffer :).
# Hence..thanks Glenn and Mike.
# Glenn Scales Blog > http://gsexdev.blogspot.com/
# Mike Pfeiffer blog > http://www.mikepfeiffer.net/
#region Helper Functions
Function Delete-MessageItem {