Skip to content

Instantly share code, notes, and snippets.

View alexle's full-sized avatar

Alex Le alexle

View GitHub Profile
@goldfarbalex
goldfarbalex / scriptable-calendar-widget.md
Created October 7, 2020 22:40 — forked from rudotriton/scriptable-calendar-widget.md
Customizable iOS Calendar widget in Scriptable
anonymous
anonymous / palindrom_dm.js
Created May 31, 2016 13:55
'use strict'; // avoid ambiguity and sloppy errors
/**
* Tests whether or not a given string is a Palindrome
* @param {string} stringToTest - the string to test.
*/
function isPalindrome(stringToTest) {
var start = 0,
end;