Skip to content

Instantly share code, notes, and snippets.

View sjugge's full-sized avatar

Jurgen Verhasselt sjugge

View GitHub Profile

Keybase proof

I hereby claim:

  • I am sjugge on github.
  • I am sjugge (https://keybase.io/sjugge) on keybase.
  • I have a public key ASDtsjxfsUuijPu4dS2L5zakAhXASTwJJnuV8IzH-2uv-go

To claim this, I am signing this object:

@sjugge
sjugge / 0-README.md
Created August 8, 2019 11:36 — forked from abhijeetchopra/0-README.md
Creating automatic scheduled backup copies of your Google Sheets using Google Apps Script

How to "Schedule Automatic Backups" of your Google Sheets

This tutorial demonstrates how to use Google Apps Script to:

  • Create copies of the Google Sheet in the desired destination folder automatically at set intervals.

  • Append the time stamp with each backup file's name.

  • Adjust time trigger for backing up every day/hour/minute.

@sjugge
sjugge / cal.lua
Created May 6, 2019 19:27 — forked from meskarune/cal.lua
conky calendar and weather
#!/usr/bin/env lua
conky_color = "${color1}%2d${color}"
t = os.date('*t', os.time())
year, month, currentday = t.year, t.month, t.day
daystart = os.date("*t",os.time{year=year,month=month,day=01}).wday
month_name = os.date("%B")