Darrell D commited on
Commit
cf106ac
·
1 Parent(s): 805f522
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +3 -0
  2. Containerfile +9 -0
  3. README.md +32 -12
  4. app.config.ts +23 -0
  5. package-lock.json +0 -0
  6. package.json +24 -0
  7. public/1.md +3 -0
  8. public/2024_Journal/2024_04_04.md +23 -0
  9. public/2024_Journal/2024_04_07.md +16 -0
  10. public/2024_Journal/2024_04_21.md +17 -0
  11. public/2024_Journal/2024_04_24.md +7 -0
  12. public/2024_Journal/2024_05_03.md +32 -0
  13. public/2024_Journal/2024_05_04.md +28 -0
  14. public/2024_Journal/2024_05_07.md +31 -0
  15. public/2024_Journal/2024_05_09.md +32 -0
  16. public/2024_Journal/2024_05_10.md +23 -0
  17. public/2024_Journal/2024_11_06.md +32 -0
  18. public/2024_Journal/2024_11_07.md +45 -0
  19. public/2024_Journal/2024_11_12.md +37 -0
  20. public/2024_Journal/cover.md +6 -0
  21. public/2024_Journal/media/21.png +3 -0
  22. public/2024_Journal/media/Apr_24_2024_1713983076018_0.png +3 -0
  23. public/2024_Journal/media/jobsearchnotes.jpg +3 -0
  24. public/2024_Journal/media/jobsearchnotes2.jpg +3 -0
  25. public/2024_Journal/media/krita_cheat_1715303609206_0.png +3 -0
  26. public/2024_Journal/media/mypaint_keys.png +3 -0
  27. public/2024_Journal/media/nlpnotes.jpg +3 -0
  28. public/2024_Journal/media/redothis.jpg +3 -0
  29. public/Notes/Krita_for_Notes.md +207 -0
  30. public/Notes/media/2024-11-12_10-21.png +3 -0
  31. public/Notes/media/frame0000.png +3 -0
  32. public/Notes/media/frame0001.png +3 -0
  33. public/Notes/media/frame0002.png +3 -0
  34. public/Notes/media/frame0003.png +3 -0
  35. public/Notes/media/frame0004.png +3 -0
  36. public/Notes/media/frame0005.png +3 -0
  37. public/Notes/media/frame0006.png +3 -0
  38. public/Notes/media/frame0007.png +3 -0
  39. public/Notes/media/frame0008.png +3 -0
  40. public/Notes/media/frame0009.png +3 -0
  41. public/Notes/media/left_docker_panel.png +3 -0
  42. public/Notes/media/metallica.kra +0 -0
  43. public/Notes/media/never.kra +0 -0
  44. public/The_Complete_FreeBSD/839.jpg +3 -0
  45. public/The_Complete_FreeBSD/839.md +1 -0
  46. public/The_Complete_FreeBSD/840.jpg +3 -0
  47. public/The_Complete_FreeBSD/840.md +1 -0
  48. public/The_Complete_FreeBSD/841.jpg +3 -0
  49. public/The_Complete_FreeBSD/841.md +1 -0
  50. 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
- title: Solid Info
3
- emoji: 📚
4
- colorFrom: blue
5
- colorTo: blue
6
- sdk: docker
7
- pinned: false
8
- license: gpl
9
- short_description: markdown browser
10
- ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ![Nat Geo POD](https://i.natgeofe.com/n/c8912f8c-733d-44f3-b3bf-ee70126ebf09/NationalGeographic_2707066.jpg)
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
+ ![Bing Picture of the Day April 7](https://bing.com/th?id=OHR.BeaverDenali_EN-US1894047698_1920x1080.jpg)
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
+ ![](https://bing.com/th?id=OHR.CadesCove_EN-US4359486356_1920x1080.jpg&rf=LaDigue_1920x1080.jpg&pid=hp)
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
+ ![Apr 21](./media/21.png)
17
+
public/2024_Journal/2024_04_24.md ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # Journal Entry 2024/04/24
2
+
3
+ ![Bing Picture of the Day Apr 29,
4
+ 2024](https://bing.com/th?id=OHR.TulouFujian_EN-US6009679228_1920x1080.jpg)
5
+ ![Bing Picture of the Day Apr 24, 2024](https://bing.com/th?id=OHR.TrilliumOntario_EN-US5180679465_1920x1080.jpg)
6
+ ![Apr 24 2024.png](./media/Apr_24_2024_1713983076018_0.png)
7
+ ![Bing POD May 2](https://bing.com/th?id=OHR.CratersOfTheMoon_EN-US6516727783_1920x1080.jpg)
public/2024_Journal/2024_05_03.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ![Bing POD](https://bing.com/th?id=OHR.SonoranSpring_EN-US9207877073_1920x1080.jpg)
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
+ ![](https://bing.com/th?id=OHR.JediMonastery_EN-US9398447907_1920x1080.jpg)
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
+ ![National Geo Image of the Day May 7](https://i.natgeofe.com/n/fcab7681-6f5a-4b46-aec8-08927105bf43/spermwhale000PhotoAmandaCotton.jpg)
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
+ ![nlpnotes.jpg](./media/nlpnotes.jpg)
19
+
20
+ ### Job Search Notes
21
+ ![](./media/jobsearchnotes.jpg)
22
+ ![](./media/jobsearchnotes2.jpg
23
+
24
+ ### anxiety vs boredom
25
+ - [link to
26
+ article](https://scienceandvalues.wordpress.com/2010/02/26/csikszentmihalyis-
27
+ flow- pleasure-and-creativity/)
28
+
29
+ - ![redo](./media/redothis.jpg)
30
+
31
+ > reminder: Business casual dress
public/2024_Journal/2024_05_09.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ![](https://bing.com/th?id=OHR.HawaiianLei_EN-US6290126556_1920x1080.jpg)
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
+ ![krita cheat.png](./media/krita_cheat_1715303609206_0.png)
32
+
public/2024_Journal/2024_05_10.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ![Bing POD](https://bing.com/th?id=OHR.MisoolRajaAmpat_EN-US0805176947_1920x1080.jpg)
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
+ ![my paint keys](./media/mypaint_keys.png)
public/2024_Journal/2024_11_06.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ![bing pod](https://bing.com/th?id=OHR.ShiShiBeach_EN-US4231457607_1920x1080.jpg)
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
+ ![bing pod](https://bing.com/th?id=OHR.CanadaWolves_EN-US4285635290_1920x1080.jpg)
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
+ ![bing pod](https://bing.com/th?id=OHR.CoveArch_EN-US4653050772_1920x1080.jpg)
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
+ ![Bing Picture of the Day Apr 30](https://bing.com/th?id=OHR.CheetahRain_EN-US6179670004_1920x1080.jpg)
2
+
3
+ Darrells Journal 2024
4
+ =====================
5
+
6
+ ### _C'est dans la poche_
public/2024_Journal/media/21.png ADDED

Git LFS Details

  • SHA256: f9b84cee33441518da001959c95478eea80dab02ae576fc3e9b8e7ea82dd1ff0
  • Pointer size: 131 Bytes
  • Size of remote file: 600 kB
public/2024_Journal/media/Apr_24_2024_1713983076018_0.png ADDED

Git LFS Details

  • SHA256: 386ced275cfb2bd0062c2209a9d0037a3d345914b68f278da766d792ca27ae94
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
public/2024_Journal/media/jobsearchnotes.jpg ADDED

Git LFS Details

  • SHA256: 574d1bf91a20d259895a46a410bc29816a183aaa963892d757865bc6006409eb
  • Pointer size: 131 Bytes
  • Size of remote file: 623 kB
public/2024_Journal/media/jobsearchnotes2.jpg ADDED

Git LFS Details

  • SHA256: 790a1363e99d74b64bd88b973fc537f990032bc08f811b6654c515709532b4c1
  • Pointer size: 131 Bytes
  • Size of remote file: 394 kB
public/2024_Journal/media/krita_cheat_1715303609206_0.png ADDED

Git LFS Details

  • SHA256: 612b196397381f6ef41a5ec197cf9a9453342899114149dca414319e741f4850
  • Pointer size: 131 Bytes
  • Size of remote file: 436 kB
public/2024_Journal/media/mypaint_keys.png ADDED

Git LFS Details

  • SHA256: 77356b941f112e2d5a3784feaa199c72b105060e7c5c175cfaa710231c36fd6a
  • Pointer size: 131 Bytes
  • Size of remote file: 239 kB
public/2024_Journal/media/nlpnotes.jpg ADDED

Git LFS Details

  • SHA256: e7fb5c85d421b7d73ae416797fbf3e26637ff2ac05223337a193adfa60946569
  • Pointer size: 132 Bytes
  • Size of remote file: 3.49 MB
public/2024_Journal/media/redothis.jpg ADDED

Git LFS Details

  • SHA256: 4770adbcea3098e64e78b7f983b7e022b0d05c2cce632610547296148125127c
  • Pointer size: 131 Bytes
  • Size of remote file: 509 kB
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
+ ![left docker panel](./media/left_docker_panel.png)
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
+ ![](./media/frame0000.png)
197
+ ![](./media/frame0001.png)
198
+ ![](./media/frame0002.png)
199
+ ![](./media/frame0003.png)
200
+ ![](./media/frame0004.png)
201
+ ![](./media/frame0005.png)
202
+ ![](./media/frame0006.png)
203
+ ![](./media/frame0007.png)
204
+ ![](./media/frame0008.png)
205
+ ![](./media/frame0009.png)
206
+
207
+ [1]: ./media/05-11-2024.kra
public/Notes/media/2024-11-12_10-21.png ADDED

Git LFS Details

  • SHA256: d48df4cc5aae25662e0465810ac902ee07f7011470b0a11c63e863b8ff46f832
  • Pointer size: 131 Bytes
  • Size of remote file: 134 kB
public/Notes/media/frame0000.png ADDED

Git LFS Details

  • SHA256: 74098ab428b81b9b6e69a01d27f425d027c3d587925598f3e8cb307846379b4f
  • Pointer size: 131 Bytes
  • Size of remote file: 333 kB
public/Notes/media/frame0001.png ADDED

Git LFS Details

  • SHA256: c9a11e0715c2418c7943f486f48ee777b3235a2fa7be9f57ea0fdb70d05f75f9
  • Pointer size: 131 Bytes
  • Size of remote file: 341 kB
public/Notes/media/frame0002.png ADDED

Git LFS Details

  • SHA256: 925158e1b3b02ae77a1e721766e0208c1c8385dfcf65a7d8b28e099333c3501b
  • Pointer size: 131 Bytes
  • Size of remote file: 410 kB
public/Notes/media/frame0003.png ADDED

Git LFS Details

  • SHA256: 5ab742b373b2bb32213d7f7c092e6e78468d9850e0fd43a2010fc29d21e3ced3
  • Pointer size: 131 Bytes
  • Size of remote file: 550 kB
public/Notes/media/frame0004.png ADDED

Git LFS Details

  • SHA256: 516e8240aa8496f902d2304acab949f16082f24287ffe0ca6e54809f5e819feb
  • Pointer size: 131 Bytes
  • Size of remote file: 529 kB
public/Notes/media/frame0005.png ADDED

Git LFS Details

  • SHA256: 23c04971514ba450f632b82a91b50a45c9005a64cc08a5b64dc61266430f5996
  • Pointer size: 131 Bytes
  • Size of remote file: 195 kB
public/Notes/media/frame0006.png ADDED

Git LFS Details

  • SHA256: 3b3b08fb5e7b9f9f24b1c629a59c0e9da04de77d916238e833f842a0957205d3
  • Pointer size: 131 Bytes
  • Size of remote file: 250 kB
public/Notes/media/frame0007.png ADDED

Git LFS Details

  • SHA256: b2e4c90583bdb728b82070cf4f9e2c6fd06faa29df6bd314c156647bc7e30ddd
  • Pointer size: 131 Bytes
  • Size of remote file: 661 kB
public/Notes/media/frame0008.png ADDED

Git LFS Details

  • SHA256: 23e9adfdeb7fbdd70d9769556046ed348f3b2a825a9a840c75e9f1054dab6def
  • Pointer size: 131 Bytes
  • Size of remote file: 336 kB
public/Notes/media/frame0009.png ADDED

Git LFS Details

  • SHA256: 7932e4c9de94dc543ad188a21f91cc0eaab47688bc403ddc1d193f92c0247be8
  • Pointer size: 131 Bytes
  • Size of remote file: 260 kB
public/Notes/media/left_docker_panel.png ADDED

Git LFS Details

  • SHA256: 6c4f94d0107a56aa7ee12f84c55fec5f9a58ad2d65b8da11425474b6b5268464
  • Pointer size: 131 Bytes
  • Size of remote file: 132 kB
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

  • SHA256: e2c4787457d2a301c94f91e2f962539fd4d006a157cba7b042c84526b8b6a1cc
  • Pointer size: 131 Bytes
  • Size of remote file: 619 kB
public/The_Complete_FreeBSD/839.md ADDED
@@ -0,0 +1 @@
 
 
1
+ ![Page 839](./839.jpg)
public/The_Complete_FreeBSD/840.jpg ADDED

Git LFS Details

  • SHA256: 8af88973317cab17b0f0302a1de1c7dde4a27dc3d50879dadadf344f1e90cea8
  • Pointer size: 131 Bytes
  • Size of remote file: 494 kB
public/The_Complete_FreeBSD/840.md ADDED
@@ -0,0 +1 @@
 
 
1
+ ![Page 840](./840.jpg)
public/The_Complete_FreeBSD/841.jpg ADDED

Git LFS Details

  • SHA256: e9eb063e53f3f6aba4f1acc63c3a6083c01433449bcff70d8e82fec41b380f14
  • Pointer size: 131 Bytes
  • Size of remote file: 387 kB
public/The_Complete_FreeBSD/841.md ADDED
@@ -0,0 +1 @@
 
 
1
+ ![Page 841](./841.jpg)
public/The_Complete_FreeBSD/cover.jpg ADDED

Git LFS Details

  • SHA256: 2d3152355ee4b94ace90dd496d0b9293a33a1beb4060966718ca76ad4ffd8f1f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.09 MB