This commit is contained in:
Mike Phares 2024-12-03 16:20:25 -07:00
parent 52444edc44
commit e65e576be8
17 changed files with 299 additions and 17 deletions

View File

@ -14,6 +14,7 @@
"Immich", "Immich",
"Infineon", "Infineon",
"Kanban", "Kanban",
"Linkwarden",
"mikepharesjr", "mikepharesjr",
"mklink", "mklink",
"MVVM", "MVVM",
@ -22,6 +23,7 @@
"nmap", "nmap",
"Omni", "Omni",
"PDSF", "PDSF",
"Phares",
"robocopy", "robocopy",
"Syncthing", "Syncthing",
"Tibco", "Tibco",

View File

@ -13,7 +13,7 @@ updated: 2024-11-26T19:46:27.125Z
- .net Framework - .net Framework
- .net Core - .net Core
- Model-View-Controller (MVC) is a software design pattern that separates an application into three components: the model, view, and controller: - Model-View-Controller (MVC) is a software design pattern that separates an application into three components: the model, view, and controller:
- ModelviewViewModel (MVVM) is an architectural pattern in computer software that facilitates the separation of the development of a graphical user interface - ModelViewViewModel (MVVM) is an architectural pattern in computer software that facilitates the separation of the development of a graphical user interface
- Vanilla JS - Vanilla JS
- Static Site with AJAX - Static Site with AJAX
- Angular (has AJAX) normally a SPA stands for Single-Page Application, a web application design pattern that loads a single HTML page and updates it dynamically as the user interacts with it. SPAs are popular because they provide a faster and more responsive user experience than traditional web applications. - Angular (has AJAX) normally a SPA stands for Single-Page Application, a web application design pattern that loads a single HTML page and updates it dynamically as the user interacts with it. SPAs are popular because they provide a faster and more responsive user experience than traditional web applications.

10
_-Review/blinko.md Normal file
View File

@ -0,0 +1,10 @@
---
created: 2024-12-03T01:55:43.000Z
type: note
updated: 2024-12-03T01:55:43.000Z
---
# Blinko
- [introduction](https://blinko.mintlify.app/introduction)
- [Never Lose Another Thought: Self-Host Blinko with Docker](https://www.youtube.com/watch?v=ktCtL0ncaXs&t=624s)

10
_-Review/bright-script.md Normal file
View File

@ -0,0 +1,10 @@
---
created: 2024-12-03T16:52:58.345Z
type: note
updated: 2024-12-03T16:55:08.872Z
---
# BrightScript
- [brs-desktop](https://github.com/lvcabral/brs-desktop)
- [references-overview](https://developer.roku.com/docs/references/references-overview.md)

View File

@ -1,7 +1,7 @@
--- ---
type: "note" created: '"2024-04-08T22:34:39.830Z"'
created: "2024-04-08T22:34:39.830Z" type: '"note"'
updated: "2024-04-08T22:34:43.299Z" updated: 2024-12-03T20:26:52.557Z
--- ---
# crontab # crontab
@ -15,3 +15,13 @@ crontab -e
```conf ```conf
*/2 * * * * nmap -n -sn -Pn 192.168.31.19 192.168.31.82 -oN /var/www/html/on-results.txt */2 * * * * nmap -n -sn -Pn 192.168.31.19 192.168.31.82 -oN /var/www/html/on-results.txt
``` ```
- [calculator](https://crontab.guru/)
```conf 1733257409966 = 638688542099660000 = Tue Dec 03 2024 13:23:29 GMT-0700 (Mountain Standard Time)
# Edit this file to introduce tasks to be run by cron.
#
*/5 * * * * /etc/duckdns/duck.sh >/dev/null 2>&1
24 5 * * * "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" > /dev/null
24 13 * * * cd /root/jackyzha0-quartz-phares && /snap/bin/npx quartz build
```

10
_-Review/ghidra.md Normal file
View File

@ -0,0 +1,10 @@
---
created: 2024-12-03T16:11:47.581Z
type: note
updated: 2024-12-03T16:12:33.850Z
---
# Ghidra
- [ghidra-sre](https://ghidra-sre.org/)
- A software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission

13
_-Review/hoarder.md Normal file
View File

@ -0,0 +1,13 @@
---
created: 2024-12-03T00:26:07.000Z
type: note
updated: 2024-12-03T00:26:07.000Z
---
# Hoarder
- [docker](https://docs.hoarder.app/Installation/docker)
- [docker-compose](https://github.com/hoarder-app/hoarder/blob/main/docker/docker-compose.yml)
- [Organize Your Digital Life with Hoarder: Images, Notes, and Bookmarks](https://www.youtube.com/watch?v=dklvlJ4YDtM&t=529s)
```

50
_-Review/linkwarden.md Normal file
View File

@ -0,0 +1,50 @@
---
created: 2024-12-03T00:20:41.000Z
type: note
updated: 2024-12-03T00:20:41.000Z
---
# Linkwarden
- [installation](https://docs.linkwarden.app/self-hosting/installation)
- [.env.sample](https://github.com/linkwarden/linkwarden/blob/main/.env.sample)
- [Linkwarden: How to Deploy a Self-Hosted Collaborative Bookmark Manager in Docker](https://www.youtube.com/watch?v=91zwHPmoX6c)
```bash 1733184881543 = 638687816815430000 = Mon Dec 02 2024 17:14:41 GMT-0700 (Mountain Standard Time)
cd /tmp
git clone https://github.com/linkwarden/linkwarden.git
cd linkwarden
cp .env.sample .env
nano .env
```
```conf 1733185015546 = 638687818155460000 = Mon Dec 02 2024 17:16:55 GMT-0700 (Mountain Standard Time)
NEXTAUTH_URL=http://localhost:3000/api/v1/auth
NEXTAUTH_SECRET=VERY_SENSITIVE_SECRET
POSTGRES_PASSWORD=CUSTOM_POSTGRES_PASSWORD
```
```yaml 1733185128934 = 638687819289340000 = Mon Dec 02 2024 17:18:48 GMT-0700 (Mountain Standard Time)
version: "3.5"
services:
postgres:
image: postgres:16-alpine
env_file: .env
restart: always
volumes:
- ./pgdata:/var/lib/postgresql/data
linkwarden:
env_file: .env
environment:
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
restart: always
# build: . # uncomment this line to build from source
image: ghcr.io/linkwarden/linkwarden:latest # comment this line to build from source
ports:
- 3000:3000
volumes:
- ./data:/data/data
depends_on:
- postgres
```

10
_-Review/magic-quill.md Normal file
View File

@ -0,0 +1,10 @@
---
created: 2024-12-03T00:29:30.000Z
type: note
updated: 2024-12-03T00:29:30.000Z
---
# MagicQuill
- [arxiv](https://arxiv.org/abs/2411.09703)
- [This free AI image editor is INSANE](https://www.youtube.com/watch?v=wTIfxdFoXm8&t=96s)

View File

@ -1,7 +1,7 @@
--- ---
type: "note" created: '"2024-03-31T15:07:31.358Z"'
created: "2024-03-31T15:07:31.358Z" type: '"note"'
updated: "2024-03-31T15:17:41.516Z" updated: 2024-12-03T15:54:25.195Z
--- ---
# Microsoft # Microsoft
@ -11,3 +11,8 @@ updated: "2024-03-31T15:17:41.516Z"
- [MyAccount](https://myaccount.microsoft.com/) - [MyAccount](https://myaccount.microsoft.com/)
- [Benefits](https://my.visualstudio.com/Benefits?mkt=en-us) - [Benefits](https://my.visualstudio.com/Benefits?mkt=en-us)
- [Microsoft365](https://www.microsoft365.com/?auth=2&home=1) - [Microsoft365](https://www.microsoft365.com/?auth=2&home=1)
## Timeline
- [web-search](https://account.microsoft.com/privacy/web-search)
- [timeline](https://account.microsoft.com/privacy/api/history/timeline?types=cardTypeFilter_browse&&startTime=today&)

78
_-Review/mom.md Normal file
View File

@ -0,0 +1,78 @@
---
created: 2024-11-29T00:03:44.380Z
type: note
updated: 2024-12-01T18:03:24.430Z
---
Chicago Fire|4|NBC|Peacock
Found|4|NBC|Peacock
The Irrational|4|NBC|Peacock
Chicago MED|4|NBC|Peacock
Brilliant Minds|4|NBC|Peacock?
Law & Order|4|NBC|Peacock
Chicago PD|4|NBC|Peacock
Yellow Stone|Peacock
Blue Bloods|13|CBS
Fire Country|13|CBS
Elsbeth|13|CBS
The Equalizer|13|CBS
SWAT|13|CBS
Tracker|13|CBS
The Rookie|7|ABC
Shark Tank|7|ABC
911||Fox
Expedition X|
FBI|13|CBS IONEHD
Celebrity IOU|HGTVHD
A Football Life|NFLHD
Expedition Unknown|SCIHD
# Mom
# CenturyLink9393 Nighthawk-WiFi
MR60 Router (Power and CAT5)
6MP12375A10D8
34:98:B5:4D:6E:D9
excitedlake968
NETGEAR34
MS60 Satellite (Only Power connected)
63B7237YA38CC
34:98:B5:4E:53:1F
excitedlake968
NETGEAR34
# ?
Archer A54
74:FE:CE:OD:8F:CB
# ?
Archer A54
74:FE:CE:OD;89:4A
# ?
Netgear C7000v2
http://192.168.0.1
admin
password
34:98:B5:CC:92:69
6JT1287MD1665
NETGEAR25
orangecarrot349
- Thermostat
- Dad TV
- Dad DirecTV
- Game TV
- Alexa Master
- Alexa Echo Show
- Alexa Echo Show Outside
- Alexa Kitchen
- Cameras

11
_-Review/moonlight.md Normal file
View File

@ -0,0 +1,11 @@
---
created: 2024-12-03T17:30:32.843Z
type: note
updated: 2024-12-03T17:31:48.604Z
---
# Moonlight
- [moonlight-stream-releases](https://github.com/moonlight-stream/moonlight-qt/releases)
- [sunshine](https://app.lizardbyte.dev/Sunshine/?lng=en-US#Download)
- [sunshine-releases](https://github.com/LizardByte/Sunshine/releases/tag/v0.23.1)

View File

@ -1,5 +1,7 @@
--- ---
type: "note" created: 2024-05-17T16:34:06.921Z
type: '"note"'
updated: 2024-12-03T20:03:58.906Z
--- ---
# node # node
@ -10,3 +12,13 @@ type: "note"
curl -fsSL https://deb.nodesource.com/setup_21.x | sudo -E bash - &&\ curl -fsSL https://deb.nodesource.com/setup_21.x | sudo -E bash - &&\
sudo apt-get install -y nodejs sudo apt-get install -y nodejs
``` ```
## Snap
- [node](https://snapcraft.io/node)
```bash 1733256157153 = 638688529571530000 = Tue Dec 03 2024 13:02:36 GMT-0700 (Mountain Standard Time)
snap install node --classic
npm --version
# 10.8.2
```

View File

@ -7,7 +7,7 @@ tags:
- NoIP - NoIP
- Hosts - Hosts
type: note type: note
updated: 2024-07-26T23:22:12.448Z updated: 2024-12-03T02:44:04.000Z
--- ---
# Odoo # Odoo
@ -61,9 +61,6 @@ turnkey-init
``` ```
```bash Thu Jul 25 2024 11:26:06 GMT-0700 (Mountain Standard Time) ```bash Thu Jul 25 2024 11:26:06 GMT-0700 (Mountain Standard Time)
podman pull docker.io/odoo:15.0 podman pull docker.io/odoo:15.0
systemctl daemon-reload systemctl daemon-reload
systemctl start odoo-server systemctl start odoo-server

View File

@ -1,7 +1,7 @@
--- ---
created: 2024-07-23T21:06:31.645Z created: 2024-07-23T21:06:31.645Z
type: note type: note
updated: 2024-11-14T03:37:33.000Z updated: 2024-12-03T04:02:50.000Z
--- ---
# Podman # Podman
@ -108,3 +108,5 @@ sudo -iu podman
apt install podman-docker apt install podman-docker
# trying to overwrite '/usr/bin/docker', which is also in package docker-ce-cli 5:27.3.1-1~debian.12~bookworm # trying to overwrite '/usr/bin/docker', which is also in package docker-ce-cli 5:27.3.1-1~debian.12~bookworm
``` ```
- [podman-systemd](https://docs.podman.io/en/v4.6.1/markdown/podman-systemd.unit.5.html)

View File

@ -1,7 +1,7 @@
--- ---
created: 2024-11-05T22:57:55.000Z created: 2024-11-05T22:57:55.000Z
type: note type: note
updated: 2024-11-13T01:48:34.000Z updated: 2024-11-27T03:43:41.000Z
--- ---
# Trigkey Ubuntu Podman # Trigkey Ubuntu Podman
@ -46,7 +46,7 @@ systemd-machine-id-setup
## Create iso files for not sure what ## Create iso files for not sure what
```bash ```bash Tue Nov 05 2024 12:20:52 GMT-0700 (Mountain Standard Time)
# genisoimage vs mkisofs # genisoimage vs mkisofs
apt install genisoimage -y apt install genisoimage -y
cd /mnt/free-file-sync/iso cd /mnt/free-file-sync/iso
@ -67,7 +67,38 @@ mkisofs -o /mnt/free-file-sync/iso/Scanned\ Parents\ Wedding\ Picture\ 1975.iso
mkisofs -o /mnt/free-file-sync/iso/'All Pictures from Wedding Originals 2006.iso' /mnt/free-file-sync/1-Images-A/Images-d8013da9/'All Pictures from Wedding Originals 2006' mkisofs -o /mnt/free-file-sync/iso/'All Pictures from Wedding Originals 2006.iso' /mnt/free-file-sync/1-Images-A/Images-d8013da9/'All Pictures from Wedding Originals 2006'
mkisofs -o /mnt/free-file-sync/iso/Slide\ in\ Name\ Order\ Originals\ \(622\)\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Slide\ in\ Name\ Order\ Originals\ \(622\)\ #### mkisofs -o /mnt/free-file-sync/iso/Slide\ in\ Name\ Order\ Originals\ \(622\)\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Slide\ in\ Name\ Order\ Originals\ \(622\)\ ####
mkisofs -o /mnt/free-file-sync/iso/All\ Pictures\ from\ Wedding\ Originals\ 2006\ \!9.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/All\ Pictures\ from\ Wedding\ Originals\ 2006\ \!9 mkisofs -o /mnt/free-file-sync/iso/All\ Pictures\ from\ Wedding\ Originals\ 2006\ \!9.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/All\ Pictures\ from\ Wedding\ Originals\ 2006\ \!9
# mkisofs -o /mnt/free-file-sync/iso/Question.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Question ```
```bash 1732670128400 = 638682669284000000 = Tue Nov 26 2024 18:15:27 GMT-0700 (Mountain Standard Time)
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Event.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Event
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Tracy.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Tracy
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Edited.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Edited
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Facebook.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Facebook
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/LinkedIn.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/LinkedIn
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Question.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Question
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Show\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Show\ ####
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Day\ One\ \!9.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Day\ One\ \!9
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Slides\ Pictures.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Slides\ Pictures
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/DisneyWorld\ 2019.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/DisneyWorld\ 2019
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Scanned\ Pictures.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Scanned\ Pictures
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Year\ Directories.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Year\ Directories
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Rex\ Memorial\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Rex\ Memorial\ ####
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Year\ Only\ Current.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Year\ Only\ Current
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Phares\ Slides\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Phares\ Slides\ ####
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Scanned\ Prints\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Scanned\ Prints\ ####
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Scanned\ Norman\ Herman.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Scanned\ Norman\ Herman
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Scanned\ Grandma\'s\ Quilt\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Scanned\ Grandma\'s\ Quilt\ ####
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Scanned\ Too\ Large\ Photos\ \!9.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Scanned\ Too\ Large\ Photos\ \!9
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Scanned\ Pictures\ Of\ Kids\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Scanned\ Pictures\ Of\ Kids\ ####
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Scanned\ Parents\ Wedding\ Picture\ 1975.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Scanned\ Parents\ Wedding\ Picture\ 1975
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/All\ Pictures\ from\ Wedding\ Originals\ 2006.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/All\ Pictures\ from\ Wedding\ Originals\ 2006
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/Slide\ in\ Name\ Order\ Originals\ \(622\)\ ####.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/Slide\ in\ Name\ Order\ Originals\ \(622\)\ ####
mkisofs -iso-level 4 -o /mnt/free-file-sync/iso/All\ Pictures\ from\ Wedding\ Originals\ 2006\ \!9.iso /mnt/free-file-sync/1-Images-A/Images-d8013da9/All\ Pictures\ from\ Wedding\ Originals\ 2006\ \!9
find /mnt/free-file-sync/iso -maxdepth 1 -type f | wc -l
mkdir /mnt/iso-compare
mount /mnt/free-file-sync/iso/DisneyWorld\ 2019.iso /mnt/iso-compare
mount /mnt/free-file-sync/iso/Edited.iso /mnt/iso-compare
mount /mnt/free-file-sync/iso/Facebook.iso /mnt/iso-compare
``` ```
## Startup Immich ## Startup Immich
@ -75,3 +106,32 @@ mkisofs -o /mnt/free-file-sync/iso/All\ Pictures\ from\ Wedding\ Originals\ 2006
- [x] Create library for still photos - [x] Create library for still photos
- [x] Create library for moving photos - [x] Create library for moving photos
- [ ] Enable person - [ ] Enable person
```log 1732679021481 = 638682758214810000 = Tue Nov 26 2024 20:43:41 GMT-0700 (Mountain Standard Time)
--- /mnt/free-file-sync/iso
172.2 GiB [#####################################] Year Directories.iso
52.7 GiB [########### ] Scanned Norman Herman.iso
45.8 GiB [######### ] Event.iso
32.7 GiB [####### ] Year Only Current.iso
14.4 GiB [### ] Scanned Pictures.iso
6.5 GiB [# ] Question.iso
6.1 GiB [# ] Tracy.iso
3.1 GiB [ ] Phares Slides ####.iso
2.5 GiB [ ] DisneyWorld 2019.iso
1.5 GiB [ ] Slides Pictures.iso
732.3 MiB [ ] All Pictures from Wedding Originals 2006.iso
344.6 MiB [ ] Slide in Name Order Originals (622) ####.iso
331.8 MiB [ ] All Pictures from Wedding Originals 2006 !9.iso
89.1 MiB [ ] Scanned Pictures Of Kids ####.iso
40.3 MiB [ ] Rex Memorial ####.iso
24.1 MiB [ ] Facebook.iso
20.1 MiB [ ] Scanned Too Large Photos !9.iso
19.8 MiB [ ] Scanned Prints ####.iso
9.9 MiB [ ] Scanned Grandma's Quilt ####.iso
4.0 MiB [ ] Day One !9.iso
1.0 MiB [ ] Show ####.iso
396.0 KiB [ ] Scanned Parents Wedding Picture 1975.iso
352.0 KiB [ ] LinkedIn.iso
*Total disk usage: 339.3 GiB Apparent size: 339.3 GiB Items: 23
```

View File

@ -1,7 +1,7 @@
--- ---
created: 2024-01-29T05:19:01.392Z created: 2024-01-29T05:19:01.392Z
type: topic type: topic
updated: 2024-11-11T00:55:45.000Z updated: 2024-11-27T03:16:11.000Z
--- ---
# Ubuntu # Ubuntu
@ -28,6 +28,7 @@ cp -R -u -p /source /destination
cd /home cd /home
# directory percent tree # directory percent tree
ncdu ncdu
ncdu --sort=name-desc
``` ```
```bash ```bash
@ -180,6 +181,7 @@ lsblk -I 8 -o NAME,SIZE,TYPE,FSUSED,FSUSE%
```bash Wed Jul 31 2024 11:19:12 GMT-0700 (Mountain Standard Time) ```bash Wed Jul 31 2024 11:19:12 GMT-0700 (Mountain Standard Time)
find . -type l -ls find . -type l -ls
find . -type f -maxdepth 1 | wc -l
``` ```
## Save and Restore Permissions ## Save and Restore Permissions