Skip to content

Instantly share code, notes, and snippets.

View GoldinGuy's full-sized avatar

Seth Goldin GoldinGuy

View GitHub Profile
export const TIMEZONES = {
// Auto: "auto",
"Pacific/Niue": "(GMT-11:00) Niue",
"Pacific/Pago_Pago": "(GMT-11:00) Pago Pago",
"Pacific/Honolulu": "(GMT-10:00) Hawaii Time",
"Pacific/Rarotonga": "(GMT-10:00) Rarotonga",
"Pacific/Tahiti": "(GMT-10:00) Tahiti",
"Pacific/Marquesas": "(GMT-09:30) Marquesas",
"America/Anchorage": "(GMT-09:00) Alaska Time",
"Pacific/Gambier": "(GMT-09:00) Gambier",
@GoldinGuy
GoldinGuy / something-computer-updater.json
Last active December 31, 2023 19:01
automatic updater for tauri app
{
"version": "0.1.0",
"notes": "This version is the first alpha release of Dot, and includes auto-updating functionality.",
"pub_date": "2023-12-13T05:12:10.282Z",
"platforms": {
"darwin-aarch64": {
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVRQlFBRHprQnQ1Qm9LOE5oRXJxd1FEYmZFK3h3QkJlT095N2ErQXhUU2Y4VzJ4elJmeDBBSklhWGpEVkZ1SFdYdk1Kak55NWt6Wm91VXRMNWkxdUJEOUcyOHRDSHArS3dBPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNjg2NjMzMTI2CWZpbGU6RXpVcC5hcHAudGFyLmd6CkpaTm5kdzArRHVrbUNCQ3huK3MrWTY0Tmo3cHd6UW9Mc2FycE9vUXB2OWE1Z25RWW94Y2ZWOWg5Rityak11US9BS2JRbCtyVFMzeGErUTg1cFFOeEJRPT0K",
"url": "https://github.com/something-computer/dot-tauri/releases/download/untagged-753565fcc90608a13aae/dot_aarch64.app.tar.gz"
}
}
@GoldinGuy
GoldinGuy / Homoglyphs.md
Created May 4, 2023 19:23 — forked from StevenACoffman/Homoglyphs.md
Unicode Look-alikes

Unicode Character Look-Alikes

Original Letter Look-Alike(s)
a а ạ ą ä à á ą
c с ƈ ċ
d ԁ ɗ
e е ẹ ė é è
g ġ
h һ
@GoldinGuy
GoldinGuy / smoothscroll.html
Last active August 3, 2021 23:25
Jquery Scroll To Anchor
// use in static websites to add smooth scrolling
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
// Add smooth scrolling to all links
$("a").on("click", function (event) {
// Ensure this.hash exists
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();