This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# The source of blur effect. You can replace with: | |
# - https://gitee.com/mirrors_GNOME/gnome-shell/raw | |
# - https://gitlab.gnome.org/GNOME/gnome-shell/-/raw | |
blur_effect_url="https://gitlab.gnome.org/GNOME/gnome-shell/-/raw" | |
# Choose rounded corners patch | |
declare -A patches | |
patches=( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Pokemon { | |
constructor(name, attack, defense, health, type) { | |
this.name = name; | |
this.attack = attack; | |
this.defense = defense; | |
this.health = health; | |
this.type = type; | |
this.initialHealth = health; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. Import the following into Google Apps Scripts | |
// 2. Select your desired execution interval | |
function getItemsOlderThan(numDays) { | |
const threshold = new Date().getTime() - 3600 * 1000 * 24 * numDays; | |
const cutoffDate = new Date(threshold).toISOString(); | |
const query = `(modifiedDate < "${cutoffDate}") and ('me' in owners)`; | |
const response = Drive.Files.list({ q: query }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;----------------------------------------- | |
; Mac keyboard to Windows Key Mappings | |
;========================================= | |
; -------------------------------------------------------------- | |
; NOTES | |
; -------------------------------------------------------------- | |
; ! = ALT | |
; ^ = CTRL | |
; + = SHIFT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2019-11-02T05:55:42.785Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pm uninstall -k --user 0 com.samsung.android.bixby.es.globalaction | |
pm uninstall -k --user 0 com.samsung.android.bixbyvision.skincare | |
pm uninstall -k --user 0 com.asurion.android.verizon.vms | |
pm uninstall -k --user 0 com.motricity.verizon.ssodownloadable | |
pm uninstall -k --user 0 com.vzw.hs.android.modlite | |
pm uninstall -k --user 0 com.vznavigator.Generic | |
pm uninstall -k --user 0 com.samsung.android.app.watchmanager | |
pm uninstall -k --user 0 com.samsung.android.spdfnote | |
pm uninstall -k --user 0 com.sec.android.app.withtv | |
pm uninstall -k --user 0 com.samsung.android.app.memo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define Pokemon class | |
class Pokemon { | |
constructor(name, attack, defense, health, type) { | |
this.name = name; | |
this.attack = attack; | |
this.defense = defense; | |
this.health = health; | |
this.type = type; | |
this.initialHealth = health; |