Spaces:
Sleeping
Sleeping
Darrell D
commited on
Commit
·
cf106ac
1
Parent(s):
805f522
lfs track
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +3 -0
- Containerfile +9 -0
- README.md +32 -12
- app.config.ts +23 -0
- package-lock.json +0 -0
- package.json +24 -0
- public/1.md +3 -0
- public/2024_Journal/2024_04_04.md +23 -0
- public/2024_Journal/2024_04_07.md +16 -0
- public/2024_Journal/2024_04_21.md +17 -0
- public/2024_Journal/2024_04_24.md +7 -0
- public/2024_Journal/2024_05_03.md +32 -0
- public/2024_Journal/2024_05_04.md +28 -0
- public/2024_Journal/2024_05_07.md +31 -0
- public/2024_Journal/2024_05_09.md +32 -0
- public/2024_Journal/2024_05_10.md +23 -0
- public/2024_Journal/2024_11_06.md +32 -0
- public/2024_Journal/2024_11_07.md +45 -0
- public/2024_Journal/2024_11_12.md +37 -0
- public/2024_Journal/cover.md +6 -0
- public/2024_Journal/media/21.png +3 -0
- public/2024_Journal/media/Apr_24_2024_1713983076018_0.png +3 -0
- public/2024_Journal/media/jobsearchnotes.jpg +3 -0
- public/2024_Journal/media/jobsearchnotes2.jpg +3 -0
- public/2024_Journal/media/krita_cheat_1715303609206_0.png +3 -0
- public/2024_Journal/media/mypaint_keys.png +3 -0
- public/2024_Journal/media/nlpnotes.jpg +3 -0
- public/2024_Journal/media/redothis.jpg +3 -0
- public/Notes/Krita_for_Notes.md +207 -0
- public/Notes/media/2024-11-12_10-21.png +3 -0
- public/Notes/media/frame0000.png +3 -0
- public/Notes/media/frame0001.png +3 -0
- public/Notes/media/frame0002.png +3 -0
- public/Notes/media/frame0003.png +3 -0
- public/Notes/media/frame0004.png +3 -0
- public/Notes/media/frame0005.png +3 -0
- public/Notes/media/frame0006.png +3 -0
- public/Notes/media/frame0007.png +3 -0
- public/Notes/media/frame0008.png +3 -0
- public/Notes/media/frame0009.png +3 -0
- public/Notes/media/left_docker_panel.png +3 -0
- public/Notes/media/metallica.kra +0 -0
- public/Notes/media/never.kra +0 -0
- public/The_Complete_FreeBSD/839.jpg +3 -0
- public/The_Complete_FreeBSD/839.md +1 -0
- public/The_Complete_FreeBSD/840.jpg +3 -0
- public/The_Complete_FreeBSD/840.md +1 -0
- public/The_Complete_FreeBSD/841.jpg +3 -0
- public/The_Complete_FreeBSD/841.md +1 -0
- public/The_Complete_FreeBSD/cover.jpg +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.psd filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
Containerfile
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM node:slim
|
| 2 |
+
|
| 3 |
+
RUN adduser --uid 1001 --gid 1000 app
|
| 4 |
+
USER app
|
| 5 |
+
WORKDIR /home/app
|
| 6 |
+
|
| 7 |
+
COPY --chown=1001:1000 ./.output/ .
|
| 8 |
+
|
| 9 |
+
CMD ["node", "./server/index.mjs"]
|
README.md
CHANGED
|
@@ -1,12 +1,32 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SolidStart
|
| 2 |
+
|
| 3 |
+
Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com);
|
| 4 |
+
|
| 5 |
+
## Creating a project
|
| 6 |
+
|
| 7 |
+
```bash
|
| 8 |
+
# create a new project in the current directory
|
| 9 |
+
npm init solid@latest
|
| 10 |
+
|
| 11 |
+
# create a new project in my-app
|
| 12 |
+
npm init solid@latest my-app
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
## Developing
|
| 16 |
+
|
| 17 |
+
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
npm run dev
|
| 21 |
+
|
| 22 |
+
# or start the server and open the app in a new browser tab
|
| 23 |
+
npm run dev -- --open
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
## Building
|
| 27 |
+
|
| 28 |
+
Solid apps are built with _presets_, which optimise your project for deployment to different environments.
|
| 29 |
+
|
| 30 |
+
By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different preset, add it to the `devDependencies` in `package.json` and specify in your `app.config.js`.
|
| 31 |
+
|
| 32 |
+
## This project was created with the [Solid CLI](https://solid-cli.netlify.app)
|
app.config.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { defineConfig } from "@solidjs/start/config";
|
| 2 |
+
|
| 3 |
+
export default defineConfig({
|
| 4 |
+
/*
|
| 5 |
+
|
| 6 |
+
i left this in as a reminder how to configure vite from vinxi config if i ever need too again
|
| 7 |
+
i had to do this to get solid-markdown to work, but then it had a problem with tables and removed it
|
| 8 |
+
but i like having reminders of things tried
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
vite: {
|
| 13 |
+
optimizeDeps: {
|
| 14 |
+
include: ["micromark", "unified"]
|
| 15 |
+
}
|
| 16 |
+
},*/
|
| 17 |
+
ssr: false,
|
| 18 |
+
server: {
|
| 19 |
+
prerender: {
|
| 20 |
+
crawlLinks: true
|
| 21 |
+
}
|
| 22 |
+
}
|
| 23 |
+
});
|
package-lock.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "example-basic",
|
| 3 |
+
"type": "module",
|
| 4 |
+
"scripts": {
|
| 5 |
+
"dev": "vinxi dev",
|
| 6 |
+
"build": "vinxi build",
|
| 7 |
+
"start": "vinxi start",
|
| 8 |
+
"version": "vinxi version",
|
| 9 |
+
"build-container": "vinxi build && podman build -t solidinfo:latest .",
|
| 10 |
+
"run-container": "podman run -it --rm --init -p 3000:3000 solidinfo:latest"
|
| 11 |
+
},
|
| 12 |
+
"dependencies": {
|
| 13 |
+
"@solidjs/meta": "^0.29.4",
|
| 14 |
+
"@solidjs/router": "^0.15.0",
|
| 15 |
+
"@solidjs/start": "^1.0.10",
|
| 16 |
+
"micromark": "^4.0.1",
|
| 17 |
+
"micromark-extension-gfm": "^3.0.0",
|
| 18 |
+
"solid-js": "^1.9.2",
|
| 19 |
+
"vinxi": "^0.4.3"
|
| 20 |
+
},
|
| 21 |
+
"engines": {
|
| 22 |
+
"node": ">=18"
|
| 23 |
+
}
|
| 24 |
+
}
|
public/1.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 1 one step at a time
|
| 2 |
+
|
| 3 |
+
this is the way
|
public/2024_Journal/2024_04_04.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Journal - April 4, 2024
|
| 2 |
+
|
| 3 |
+

|
| 4 |
+
|
| 5 |
+
## Emerys Birthday 🎉🎉🎉🎈🎈🎊🥳👯♂️💃
|
| 6 |
+
|
| 7 |
+
## Personal Health Care
|
| 8 |
+
|
| 9 |
+
- DONE Wake Up 7 am
|
| 10 |
+
- DONE Make Bed
|
| 11 |
+
- DONE Get Dressed
|
| 12 |
+
- DONE Eat
|
| 13 |
+
- DONE Walk Dog
|
| 14 |
+
- DONE Prepare Dinner
|
| 15 |
+
- DONE Tackle Priorities
|
| 16 |
+
- DONE Bed by 11
|
| 17 |
+
|
| 18 |
+
## Family Health Care
|
| 19 |
+
|
| 20 |
+
## Finances
|
| 21 |
+
|
| 22 |
+
## Learning
|
| 23 |
+
|
public/2024_Journal/2024_04_07.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Journal Entry 2024-04-07
|
| 2 |
+
|
| 3 |
+

|
| 4 |
+
|
| 5 |
+
## Priorities
|
| 6 |
+
|
| 7 |
+
### Personal Health Care
|
| 8 |
+
- Walk the dog
|
| 9 |
+
|
| 10 |
+
### Family Health Care
|
| 11 |
+
- Cook breakfast
|
| 12 |
+
|
| 13 |
+
### Finances
|
| 14 |
+
- Organize bills
|
| 15 |
+
|
| 16 |
+
### Learning
|
public/2024_Journal/2024_04_21.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Journal Entry 2024-04-21
|
| 2 |
+
|
| 3 |
+

|
| 4 |
+
|
| 5 |
+
I do not have a routine, so there are gaps, which is OK.
|
| 6 |
+
|
| 7 |
+
Also, I can not commit to any software.
|
| 8 |
+
|
| 9 |
+
> Find a way to incentivize journaling
|
| 10 |
+
|
| 11 |
+
- this is a problem, page media relative path is wrong now
|
| 12 |
+
due to folders
|
| 13 |
+
|
| 14 |
+
# testing
|
| 15 |
+
|
| 16 |
+

|
| 17 |
+
|
public/2024_Journal/2024_04_24.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Journal Entry 2024/04/24
|
| 2 |
+
|
| 3 |
+

|
| 5 |
+

|
| 6 |
+

|
| 7 |
+

|
public/2024_Journal/2024_05_03.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
|
| 3 |
+
# Journal Entry 2024 05 03
|
| 4 |
+
|
| 5 |
+
Fedora 40 update! gnome-shell 46.1
|
| 6 |
+
|
| 7 |
+
### Rate yesterday: 1/5
|
| 8 |
+
- Why? I did not get anything done.
|
| 9 |
+
- Bad: Avoiding the phone. Avoiding people. Avoiding problems. Rationalizing waiting until health improves. A lot of negative thinking.
|
| 10 |
+
- Good: Chicken dinner, Knicks vs Sixers game, Black Mirror episode, rain
|
| 11 |
+
|
| 12 |
+
### Personal Health Care
|
| 13 |
+
|
| 14 |
+
- DOING Start in the kitchen early, and walk the dog by noon.
|
| 15 |
+
|
| 16 |
+
### Family Health Care
|
| 17 |
+
|
| 18 |
+
- DONE Plan a meal
|
| 19 |
+
- TODO Home Emergency plan, lost dog, evacuation. This might
|
| 20 |
+
relieve some stress once its done. hint hint
|
| 21 |
+
|
| 22 |
+
### Finances
|
| 23 |
+
|
| 24 |
+
- TODO Organize bills
|
| 25 |
+
|
| 26 |
+
### Learning
|
| 27 |
+
|
| 28 |
+
> Stop making todos and start making dones. incentivize dones
|
| 29 |
+
|
| 30 |
+
- DOING How to lower pressure on self and get things done, overcoming emotional roadblocks
|
| 31 |
+
|
| 32 |
+
### REMINDER OF OPPORTUNITY COST
|
public/2024_Journal/2024_05_04.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
|
| 3 |
+
# star wars day
|
| 4 |
+
|
| 5 |
+
### Rate Yesterday 2/5
|
| 6 |
+
- ⌧ Bad - Not a lot done on projects
|
| 7 |
+
- 🗹 Good - Felt less pressure, talked a bit with kids
|
| 8 |
+
|
| 9 |
+
### Today
|
| 10 |
+
|
| 11 |
+
### Personal Health Care
|
| 12 |
+
- research alternatives
|
| 13 |
+
|
| 14 |
+
### Family Health Care
|
| 15 |
+
- DOING Pancakes
|
| 16 |
+
|
| 17 |
+
### Finances
|
| 18 |
+
- TODO Organize Bills
|
| 19 |
+
|
| 20 |
+
### Learning
|
| 21 |
+
|
| 22 |
+
- [how to stay motivated](https://www.youtube.com/watch?v=8ZhoeSaPF-k)
|
| 23 |
+
|
| 24 |
+
- Using sshd in termux [sshd in termux](https://wiki.termux.com/wiki/Remote_Access)
|
| 25 |
+
|
| 26 |
+
- login, whoami, passwd,
|
| 27 |
+
- sftp://u0_a197@192.168.0.174:8022/ in Files, where u0_XXX is (whoami)
|
| 28 |
+
- 192.168 is (ip a | rg 192), 8022 is default port for sshd in termux
|
public/2024_Journal/2024_05_07.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
|
| 3 |
+
# Journal Entry 2024 05 07
|
| 4 |
+
|
| 5 |
+
### Rate Yesterday
|
| 6 |
+
- ⌧ Bad
|
| 7 |
+
- 🗹 Good - Dog run at ball field.
|
| 8 |
+
|
| 9 |
+
## Today
|
| 10 |
+
|
| 11 |
+
### Personal Health Care
|
| 12 |
+
### Family Health Care
|
| 13 |
+
### Finances
|
| 14 |
+
- TODO call telus guy
|
| 15 |
+
### Learning
|
| 16 |
+
|
| 17 |
+
### Notes on NLP
|
| 18 |
+

|
| 19 |
+
|
| 20 |
+
### Job Search Notes
|
| 21 |
+

|
| 22 |
+

|
| 28 |
+
|
| 29 |
+
- 
|
| 30 |
+
|
| 31 |
+
> reminder: Business casual dress
|
public/2024_Journal/2024_05_09.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
|
| 3 |
+
# Journal Entry 2024-05-09
|
| 4 |
+
|
| 5 |
+
### Rate Yesterday
|
| 6 |
+
- ⌧ Bad
|
| 7 |
+
- 🗹 Good
|
| 8 |
+
|
| 9 |
+
### Today
|
| 10 |
+
|
| 11 |
+
### Personal Health Care
|
| 12 |
+
|
| 13 |
+
### Family Health Care
|
| 14 |
+
- walk dog
|
| 15 |
+
- plan dinner
|
| 16 |
+
|
| 17 |
+
### Finances
|
| 18 |
+
|
| 19 |
+
### Learning
|
| 20 |
+
|
| 21 |
+
### Krita Cheat
|
| 22 |
+
|
| 23 |
+
*this is one of my first krita cheats, the docker section i use is different now*
|
| 24 |
+
|
| 25 |
+
| Tables | Are | Cool |
|
| 26 |
+
| ------------- |:-------------:| -----:|
|
| 27 |
+
| col 3 is | right-aligned | $1600 |
|
| 28 |
+
| col 2 is | centered | $12 |
|
| 29 |
+
| zebra stripes | are neat | $1 |
|
| 30 |
+
|
| 31 |
+

|
| 32 |
+
|
public/2024_Journal/2024_05_10.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
# 🥳 Leela's Birthday 🥳
|
| 3 |
+
|
| 4 |
+
### Rate Yesterday May 9th, 2024 2 / 5
|
| 5 |
+
- ⌧ Bad - Negative feelings
|
| 6 |
+
- 🗹 Good - Kyrie Irving, Krita Cheat, Nushell 0.93 upgrade, energetic dog walk
|
| 7 |
+
|
| 8 |
+
### Today
|
| 9 |
+
|
| 10 |
+
### Personal Health Care
|
| 11 |
+
- [x] Dog walk before 10 am
|
| 12 |
+
|
| 13 |
+
### Family Health Care
|
| 14 |
+
|
| 15 |
+
### Finances
|
| 16 |
+
- [x] Call telus guy before 9am - phone tag
|
| 17 |
+
|
| 18 |
+
### Learning
|
| 19 |
+
|
| 20 |
+
- https://github.com/TheAssassin/AppImageLauncher/releases
|
| 21 |
+
|
| 22 |
+
## MyPaint Keys
|
| 23 |
+

|
public/2024_Journal/2024_11_06.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
|
| 3 |
+
Journal Entry Nov 6, 2024
|
| 4 |
+
=========================
|
| 5 |
+
|
| 6 |
+
### Rate Yesterday Nov 5th, 2024 3/5
|
| 7 |
+
- ⌧ Bad - self doubt
|
| 8 |
+
- 🗹 Good - felt good about working on projects, haven't
|
| 9 |
+
touched in months, made journal entry, homemade pizza 🍕
|
| 10 |
+
|
| 11 |
+
### Today
|
| 12 |
+
- [x] Far too much coffee ☕☕☕
|
| 13 |
+
- [x] Attempt a twitch stream
|
| 14 |
+
- Review yesterdays notes
|
| 15 |
+
- Code something that you are avoiding
|
| 16 |
+
- [x] test page routing fully (rewrite url)
|
| 17 |
+
- [x] top level contents
|
| 18 |
+
- [ ] fix back button
|
| 19 |
+
- [ ] find the showmethekey that you modified and lost?
|
| 20 |
+
|
| 21 |
+
### Personal Health Care
|
| 22 |
+
- [ ] Taco Wednesday
|
| 23 |
+
- [ ] Walk soon, get this coffee jitters gono
|
| 24 |
+
|
| 25 |
+
### Family Health Care
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
### Finances
|
| 29 |
+
- [ ] EEEEHHF
|
| 30 |
+
|
| 31 |
+
### Learning
|
| 32 |
+
- the rewrite url might be harder than you think
|
public/2024_Journal/2024_11_07.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
|
| 3 |
+
Journal Entry Nov 7, 2024
|
| 4 |
+
=========================
|
| 5 |
+
|
| 6 |
+
### Rate Yesterday Nov 6th, 2024 4/5
|
| 7 |
+
⌧ Bad
|
| 8 |
+
- late night breaking commits and not being able to
|
| 9 |
+
figure out checkout / revert / reset / rebase
|
| 10 |
+
- felt slow, but ...
|
| 11 |
+
|
| 12 |
+
🗹 Good
|
| 13 |
+
- deliberate and clear vision
|
| 14 |
+
- tacos with cabagge and onion
|
| 15 |
+
- progress on projects
|
| 16 |
+
- twitch stream
|
| 17 |
+
- basement tomatos
|
| 18 |
+
|
| 19 |
+
### Today
|
| 20 |
+
- [ ] Attempt a twitch stream
|
| 21 |
+
- [ ] Review notes
|
| 22 |
+
- [ ] More krita cheat (work on krita setup from fresh install video)
|
| 23 |
+
- [ ] bing pod https instead of http
|
| 24 |
+
|
| 25 |
+
### Projects Today
|
| 26 |
+
- [ ] see IB project todo,
|
| 27 |
+
- [ ] link to rendered md,
|
| 28 |
+
- [ ] link to source
|
| 29 |
+
- [ ] view raw
|
| 30 |
+
- [ ] back test
|
| 31 |
+
- [x] find the showmethekey that you modified and lost? cli version!
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
### Personal Health Care
|
| 35 |
+
- [ ] Chicken Legs
|
| 36 |
+
- [ ] Walk soon, get this coffee jitters gono
|
| 37 |
+
|
| 38 |
+
### Family Health Care
|
| 39 |
+
- [ ] call M re L appointment
|
| 40 |
+
|
| 41 |
+
### Finances
|
| 42 |
+
- [ ] Plan grocery trip for tomorrow
|
| 43 |
+
|
| 44 |
+
### Learning
|
| 45 |
+
- the rewrite url might be harder than you think
|
public/2024_Journal/2024_11_12.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
|
| 3 |
+
Journal Entry Nov 12, 2024
|
| 4 |
+
=========================
|
| 5 |
+
|
| 6 |
+
Rate Yesterday 3/5
|
| 7 |
+
------------------
|
| 8 |
+
|
| 9 |
+
⌧ Bad
|
| 10 |
+
- no excersize, no dinner, stayed up too late, anxious
|
| 11 |
+
|
| 12 |
+
🗹 Good
|
| 13 |
+
- progress on projects
|
| 14 |
+
- laundry complete!
|
| 15 |
+
|
| 16 |
+
### Today
|
| 17 |
+
- [x] Attempt a twitch stream
|
| 18 |
+
- [ ] Review notes
|
| 19 |
+
- [ ] More krita cheat (work on krita setup from fresh install video)
|
| 20 |
+
- [ ] tackle Indexbook todos
|
| 21 |
+
- [ ] journal features
|
| 22 |
+
- [ ] create and open krita journal file
|
| 23 |
+
- [ ] create and open markdown journal file
|
| 24 |
+
- [ ] create md journal from krita journal
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
### Personal Health Care
|
| 28 |
+
- [ ] Fried rice for lunch
|
| 29 |
+
- [ ] Walk soon, get this coffee jitters gono
|
| 30 |
+
|
| 31 |
+
### Family Health Care
|
| 32 |
+
|
| 33 |
+
### Finances
|
| 34 |
+
- [ ] Plan grocery trip for tomorrow
|
| 35 |
+
|
| 36 |
+
### Learning
|
| 37 |
+
- [ ]
|
public/2024_Journal/cover.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+

|
| 2 |
+
|
| 3 |
+
Darrells Journal 2024
|
| 4 |
+
=====================
|
| 5 |
+
|
| 6 |
+
### _C'est dans la poche_
|
public/2024_Journal/media/21.png
ADDED
|
Git LFS Details
|
public/2024_Journal/media/Apr_24_2024_1713983076018_0.png
ADDED
|
Git LFS Details
|
public/2024_Journal/media/jobsearchnotes.jpg
ADDED
|
Git LFS Details
|
public/2024_Journal/media/jobsearchnotes2.jpg
ADDED
|
Git LFS Details
|
public/2024_Journal/media/krita_cheat_1715303609206_0.png
ADDED
|
Git LFS Details
|
public/2024_Journal/media/mypaint_keys.png
ADDED
|
Git LFS Details
|
public/2024_Journal/media/nlpnotes.jpg
ADDED
|
Git LFS Details
|
public/2024_Journal/media/redothis.jpg
ADDED
|
Git LFS Details
|
public/Notes/Krita_for_Notes.md
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Krita for Notes
|
| 2 |
+
===============
|
| 3 |
+
|
| 4 |
+
### Default Krita Layout to My Notes Layout
|
| 5 |
+
|
| 6 |
+
- set up brush favorites
|
| 7 |
+
- set up brush defaults (sizes, opacity, name prefix)
|
| 8 |
+
- custom name prefixes to put eraser between pen and pencil
|
| 9 |
+
- essential dockers
|
| 10 |
+
- adding custom pattern (100x100)
|
| 11 |
+
- prefer frames to large canvas (1000x1000)
|
| 12 |
+
- using pattern background with storyboard
|
| 13 |
+
|
| 14 |
+
### Brush Editor Defaults
|
| 15 |
+
|
| 16 |
+
| Brush | Width px | Opacity % |
|
| 17 |
+
| --------- |---------:|----------:|
|
| 18 |
+
| pencil 2 | 5 | 90 |
|
| 19 |
+
| eraser sm | 35 | 50-75 |
|
| 20 |
+
| basic 1 | 3 | 100 |
|
| 21 |
+
| marker dry| 40 | 50 |
|
| 22 |
+
| pixel art | 1 | 100 |
|
| 23 |
+
|
| 24 |
+
- defaults are important because each time you run krita brushes are reset to default
|
| 25 |
+
- the pencil is the best tool for writing because it shows your pressure serifs
|
| 26 |
+
without clobbering main strokes, making it look natural
|
| 27 |
+
- basic 1 is the most normal pen
|
| 28 |
+
- do not get lost in sea of brushes, stick with pencil and basic
|
| 29 |
+
- marker dry is a highlighter that works well with the line tool
|
| 30 |
+
|
| 31 |
+
### Quick-key Essentials
|
| 32 |
+
|
| 33 |
+
| Key | Action |
|
| 34 |
+
| -------------|----------------|
|
| 35 |
+
| space + drag | pan |
|
| 36 |
+
| 1 | **scale 100** |
|
| 37 |
+
| 2 | zoom fit |
|
| 38 |
+
| 4 | tilt -15° |
|
| 39 |
+
| 5 | center to 0° |
|
| 40 |
+
| 6 | **tilt 15°** |
|
| 41 |
+
| R | rectangle |
|
| 42 |
+
| b | brush |
|
| 43 |
+
| [ ] | brush size |
|
| 44 |
+
| k l | darker lighter |
|
| 45 |
+
| i o | opacity |
|
| 46 |
+
| e | erase |
|
| 47 |
+
| , | previous brush |
|
| 48 |
+
| . | next brush |
|
| 49 |
+
| / | last brush |
|
| 50 |
+
| p | color picker |
|
| 51 |
+
| ctrl e | merge down |
|
| 52 |
+
|
| 53 |
+
> work at scale 100, prefer frames to super large canvas
|
| 54 |
+
|
| 55 |
+
> prefer space bar to pan
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
### Custom Key-bindings
|
| 59 |
+
|
| 60 |
+
| Key | Action |
|
| 61 |
+
| ----|-----------|
|
| 62 |
+
| q | line tool |
|
| 63 |
+
| z | undo |
|
| 64 |
+
| Z | redo |
|
| 65 |
+
| d | show/hide dockers |
|
| 66 |
+
|
| 67 |
+
- keybindings should be a single key instead of 2 (ctrl z v z), this is the mypaint philosophy and is better
|
| 68 |
+
- you should only create key bindings for common actions (minimum startup/sharing friction)
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
### Useful Quick-key Sequences
|
| 72 |
+
|
| 73 |
+
| Sequence | Actions |
|
| 74 |
+
| ---------|----------------------------|
|
| 75 |
+
| b q R | brush, line, rectangle |
|
| 76 |
+
| b , . / | brush next prev last brush |
|
| 77 |
+
| 2 1 5 | center zoom rotate 0 |
|
| 78 |
+
| 2 1 5 4 | center zoom tilt -15 |
|
| 79 |
+
|
| 80 |
+
### Paste Into Active Layer
|
| 81 |
+
|
| 82 |
+
- the default paste (ctrl-v) creates a layer, however
|
| 83 |
+
keyframes / storyboard frames are on a single layer, so
|
| 84 |
+
if you want to paste into a storyboard frame you can either:
|
| 85 |
+
- paste and merge down (ctrl e) or
|
| 86 |
+
- **Paste into Active Layer** from edit menu
|
| 87 |
+
- after Paste into Active Layer the transform tool is automatically selected so you can move the pasted rectangle
|
| 88 |
+
|
| 89 |
+
### Eraser Brush vs Erase Mode
|
| 90 |
+
|
| 91 |
+
- if you ever find that line, fill, or draw tools are not working you might be in eraser mode, which works in
|
| 92 |
+
conjuntion with the other tools
|
| 93 |
+
|
| 94 |
+
- eraser mode not the same as eraser brush, pressing e does not change the
|
| 95 |
+
current brush, but rather uses the current brushes shape as an eraser
|
| 96 |
+
|
| 97 |
+
- whereas the eraser brush will have its own shape
|
| 98 |
+
|
| 99 |
+
- rename prefix of pencil, eraser, pen to abc so that eraser is between pen and
|
| 100 |
+
pencil: this makes using / after , or . toggle between eraser and pen or pencil
|
| 101 |
+
|
| 102 |
+
- erase mode affects not just brush but fill and line as well, the pattern fill
|
| 103 |
+
will take away rather than paint on top
|
| 104 |
+
|
| 105 |
+
- eraser mode not the same as ctrl-i, which will invert a result, but you can
|
| 106 |
+
combine invert and eraser to use dark patterns on dark layers and light patterns
|
| 107 |
+
on light layers
|
| 108 |
+
|
| 109 |
+
- brush palatte set to My Favorites and only have brushes that are commonly used
|
| 110 |
+
so brush cycle with , . is limited and brush palatte docker isnt too full
|
| 111 |
+
|
| 112 |
+
### Storyboard Notes
|
| 113 |
+
|
| 114 |
+
- Scene, vs Frame, vs Page
|
| 115 |
+
- a scene is a keyframe where the background is possibly new
|
| 116 |
+
- a frame is a layer in the animation timeline, possibly between scenes or it may be a scene,
|
| 117 |
+
- a frame can be exported to png, representing 1 frame from the animation timeline
|
| 118 |
+
- all frames can be exported to a png sequence using File -> Render Animation
|
| 119 |
+
- Pages are annalogous to Storyboard Scene
|
| 120 |
+
|
| 121 |
+
- The storyboard is a simplified view of the Animation Timeline Docker.
|
| 122 |
+
|
| 123 |
+
- Each Storyboard scene is a keyframe in the animation timeline
|
| 124 |
+
|
| 125 |
+
- When you have the Animation Docker open you can:
|
| 126 |
+
- set time per frame (speed)
|
| 127 |
+
- navigate between frames with arrow left right
|
| 128 |
+
- create a duplicate or new frame between scenes
|
| 129 |
+
- create a new scene (keyframe)
|
| 130 |
+
- make a mess or fix storyboard issues
|
| 131 |
+
|
| 132 |
+
- Recommend using Storyboard only or Anim Timeline minimally for notes
|
| 133 |
+
|
| 134 |
+
- the last frame number is n-1, used for Render and Anim Timeline Loop End
|
| 135 |
+
|
| 136 |
+
- select destination folder and frame basename (the start of the filename)
|
| 137 |
+
that the frame number will be appended too
|
| 138 |
+
|
| 139 |
+
- it is helpful to keep layers simple when using storyboard, have one background
|
| 140 |
+
layer, have it locked, and a layer above the background, which will be your
|
| 141 |
+
animation layer (storyboard)
|
| 142 |
+
|
| 143 |
+
### Why Show Hide Docker
|
| 144 |
+
|
| 145 |
+
- Show Hide Docker is better than Show Canvas Only (tab key) and Full Screen Mode
|
| 146 |
+
(f11 key), this is why I create a keybinding for it (d)
|
| 147 |
+
|
| 148 |
+
- the reason is simple: Show Hide Dockers maximizes the canvas without affecting the window size, this
|
| 149 |
+
means maximum drawing area despite not using the entire screen, leaving you to use rest for another app
|
| 150 |
+
|
| 151 |
+
### Essential Dockers
|
| 152 |
+
|
| 153 |
+

|
| 154 |
+
|
| 155 |
+
1. Storyboard
|
| 156 |
+
- create scene / page with plus sign
|
| 157 |
+
- changing slide duration from 0s will insert non keyframe frames between each scene (avoid)
|
| 158 |
+
1. Brush Presets
|
| 159 |
+
- used to determine what is in your quick access, select My Favorites to limit brush palatte
|
| 160 |
+
1. Layers
|
| 161 |
+
- check everytime you add a scene or paste so that you merge into animation frame ie. layers outside
|
| 162 |
+
animation layer will appear above all the scenes
|
| 163 |
+
1. Tool Options
|
| 164 |
+
- essential for certain tools, like crop to perform the crop and fill to select pattern / outline etc
|
| 165 |
+
1. Toolbox
|
| 166 |
+
- change icon size by right click in docker
|
| 167 |
+
1. Palette
|
| 168 |
+
- has bug must reselect palatte sometimes
|
| 169 |
+
1. Advanced Color Selector
|
| 170 |
+
- color history on right strip
|
| 171 |
+
|
| 172 |
+
### Other Useful Dockers
|
| 173 |
+
|
| 174 |
+
1. Undo History
|
| 175 |
+
2. Animation Timeline
|
| 176 |
+
|
| 177 |
+
### Finally, making notes
|
| 178 |
+
|
| 179 |
+
1. Load line / graph pattern kra
|
| 180 |
+
2. Set Fill Pattern to custom (the file pattern we just opened)
|
| 181 |
+
3. Create background
|
| 182 |
+
- A single layer
|
| 183 |
+
- Is possibly reused when new scene created
|
| 184 |
+
- Should lock this layer
|
| 185 |
+
4. Create Pages (Storyboard Scenes)
|
| 186 |
+
- If background doesnt copy, you can grab entire layer and paste it into background, then make
|
| 187 |
+
another Page to get it to stick
|
| 188 |
+
|
| 189 |
+
### Brainstorm Frames
|
| 190 |
+
|
| 191 |
+
- these following brainstorm notes were reviewed to make this page, using render animation
|
| 192 |
+
to create each page / frame / scene
|
| 193 |
+
|
| 194 |
+
[storyboard as pages][1]
|
| 195 |
+
|
| 196 |
+

|
| 197 |
+

|
| 198 |
+

|
| 199 |
+

|
| 200 |
+

|
| 201 |
+

|
| 202 |
+

|
| 203 |
+

|
| 204 |
+

|
| 205 |
+

|
| 206 |
+
|
| 207 |
+
[1]: ./media/05-11-2024.kra
|
public/Notes/media/2024-11-12_10-21.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0000.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0001.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0002.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0003.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0004.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0005.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0006.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0007.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0008.png
ADDED
|
Git LFS Details
|
public/Notes/media/frame0009.png
ADDED
|
Git LFS Details
|
public/Notes/media/left_docker_panel.png
ADDED
|
Git LFS Details
|
public/Notes/media/metallica.kra
ADDED
|
Binary file (772 kB). View file
|
|
|
public/Notes/media/never.kra
ADDED
|
Binary file (550 kB). View file
|
|
|
public/The_Complete_FreeBSD/839.jpg
ADDED
|
Git LFS Details
|
public/The_Complete_FreeBSD/839.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+

|
public/The_Complete_FreeBSD/840.jpg
ADDED
|
Git LFS Details
|
public/The_Complete_FreeBSD/840.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+

|
public/The_Complete_FreeBSD/841.jpg
ADDED
|
Git LFS Details
|
public/The_Complete_FreeBSD/841.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+

|
public/The_Complete_FreeBSD/cover.jpg
ADDED
|
Git LFS Details
|