Skip to content

Instantly share code, notes, and snippets.

View kis87988's full-sized avatar
:bowtie:

William Chen kis87988

:bowtie:
View GitHub Profile
@kis87988
kis87988 / CalendarSync.gs
Last active December 28, 2022 01:57
Google Calendar app script that sync work with personal
// This Script is using for your personal Google calendar sync with work calendar
// ------------- Change setup infomation below -------------
// Must fill up, id of the secondary calendar to pull events from
const id = "XXXXX";
// update this to the text you'd like to appear in the new events created in primary calendar
const primaryEventTitle = "busy";
// how many days in advance to monitor and block off time
@kis87988
kis87988 / .drive_global_blacklist.filter
Created March 20, 2021 18:16 — forked from drkdelaney/.drive_global_blacklist.filter
A blacklist for Synology folders and files.
[Version]
major = 1
minor = 1
[Common]

FWIW: I didn't produce the content presented here (the outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

What's an Effective Engineer?

@kis87988
kis87988 / setup_tmux_zsh.sh
Created December 2, 2018 05:14 — forked from stvhwrd/setup_tmux_zsh.sh
Install tmux and zsh on a remote server without root
#!/usr/bin/env bash
# Connect to the server..
# ssh username@server_ip
mkdir ~/.local;
# Download source and build libevent
cd /tmp;
wget https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz;
tar xvfz libevent-2.1.8-stable.tar.gz;