- Push D to show date
- Push S to shown alarm-time.
This file contains hidden or 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
/** | |
* Run multiple tasks prallel | |
* | |
* Usage => bun run tasks.ts | |
*/ | |
/** | |
* ++++++ Utils ++++++ | |
*/ | |
export type Task = { |
This file contains hidden or 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
// Refrence from https://stackoverflow.com/a/42114595 | |
// Tested on Bun v1.1.21 - https://bun.sh | |
// date: 10-08-2024 | |
// console.clear(); | |
// Testing | |
const TOTAL_TASKS = 5; | |
// const TOTAL_TASKS = 10; |
This file contains hidden or 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
name: traefik | |
services: | |
traefik: | |
image: traefik:${TRAEFIK_VER:-v2.9} | |
container_name: traefik | |
restart: unless-stopped | |
command: | |
# - --api.insecure=true # for testing |
This file contains hidden or 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
############ | |
# Docker - docker specific config. uncomment for update default values | |
############ | |
# DK_CONTAINER_NAME=supabase | |
# Container Versions | |
# SUPABASE_META_VER=v0.60.7 | |
# IMGPROXY_VER=v3.13 | |
# SUPABASE_STORAGEAPI_VER=v0.28.2 |
testing
python latest + ruby 2.4.0
Licensed under MIT
This file contains hidden or 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
.... | |
services: | |
name: | |
.... | |
This file contains hidden or 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
## Linux gitignore https://raw.githubusercontent.com/github/gitignore/master/Global/Linux.gitignore | |
*~ | |
# temporary files which can be created if a process still has a handle open of a deleted file | |
.fuse_hidden* | |
# KDE directory preferences | |
.directory | |
# Linux trash folder which might appear on any partition or disk |
This file contains hidden or 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
---- For strating remote debuggin ------- | |
$ adb tcpip 5555 | |
redirect command to usb device | |
$ adb -d tcpip 5555 | |
--------- connect ------------- |
This file contains hidden or 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
Reference commands | |
$ sudo alternatives --install /usr/bin/$(var) $(var) /path-to-jdk/jdk-ver/bin/$(var) 1000 | |
$ sudo alternatives --config $(var) | |
---- replace $(var) with each of these | |
java | |
javac | |
javadoc |
NewerOlder