fixing gitignore

This commit is contained in:
2025-12-28 21:19:27 +00:00
parent fb120bc50a
commit 8f234a746d
221 changed files with 8064 additions and 11740 deletions

View File

@@ -0,0 +1,10 @@
what would wake z up idk
probably not my day yesterday
oh but i'll tell you about my dream even though i don't really want to tell you
it was my last day of school or something but it was in some big hall, looked like a mueseum or kinda like some theme park walk-through thing. saw some people that i didn't want to see blah blah but at the end of that school day (?) we all ended up in the main front area by this staircase ready to go, and then you came down the stairs to pick me up and i ran to you and hugged you ;( you asked me what happened, idk what i said to you anymore but this was all in front of everyone lmao and yeah we were newly married anddd one of my maths teachers asked us something and idk i think i said he's also a grandpa or something which was confusing because i also was talking about my sister's kids which they already knew about but everyone was still shocked
okay ted talk over
basically i could feel the happiness i felt in it when i woke up and for some time after

1
lima/gems.org Normal file
View File

@@ -0,0 +1 @@
otherwise i'll never do it- probably won't but worth a try

19
lima/limas-play-area.org Normal file
View File

@@ -0,0 +1,19 @@
* a pop of z! ⋆⭒˚.⋆
[[file:syntax.org][syntax101]]
* caged, locked up, no escape
[[file:WAKEUPTHEALIENSARECOMING.org][WAKEUPTHEALIENSARECOMING]]
[[file:one.org][the real, and better version]]
* 🌥 breathe
[[file:braindump.org][braindump]]
[[file:reminders.org][don't delete this silly]]
* h will shock herself
[[file:gems.org][h plans]]

13
lima/one.org Normal file
View File

@@ -0,0 +1,13 @@
twinkle twinkle little z
how i wonder what you are
up above the world so high
like a diamond in the sky
twinkle twinkle little z
how i wonder what you are
✩ˎˊ˗

65
lima/syntax.org Normal file
View File

@@ -0,0 +1,65 @@
#+OPTIONS: num:nil tags:t toc:t
Okay the syntax for these files might take some time to get used to. But here is a quick summary (message me in case anything doesn't make sense).
Headings / outlines are like: =* H1=, =** H2=, =*** H3=
So you can create a new header like:
#+BEGIN_SRC emacs-lisp
*** Example
// This is at level three (3 asterisks)
#+END_SRC
- Emphasis: =*bold*= =/italic/= =_underline_= =+strike+= =~code~= ==verbatim==
- Checkboxes: =- [ ] todo=, =- [X] done=, =- [-] partial=
- TODO workflow: =* TODO Write post= → DONE; define states: =#+TODO: TODO DOING | DONE=
- Timestamps: active =<2025-11-02 Sun 14:00>= ; inactive =[2025-11-02]=
- Links: =[[https://example.com][desc]]=
For a file tag, you can create a new file under the folder *lima*, make sure it has the ~.org~ extension. Then you simply can link it:
#+begin_src emacs-lisp
[[file:file_name.org][Alias]]
#+end_src
It will look like this:
[[file:file_name.org][Alias]]
This should be a quick start (once you get used to it, I'll update it with macros :))
ADD AS MANY FILES AS YOU WANT (just don't forget to link them!)
* New controls
- I've changed your folder view on the file browser. Now you should see something like this:
[[../assets/images/syntax/filebrowser.png]]
- This is the entire directory for the website (shock). The folder that you used before was ~lima~, but now you can see all the other folders and files. If you make changes to any of them, the website doesn't update (due to scripting limitations). But if you edit anything inside the ~lima~ folder, it will update automatically as it was doing before.
- If you want to add any images/drawings, go to the assets folder:
[[../assets/images/syntax/assets.png]]
- Here you can add images into the ~images~ folder, and any drawings in the ~sketchnotes~ folder. I would advise that you create a new folder inside the images/sketchnotes folder to group your assets that you want to include (solely so it doesn't look cluttered). For example:
[[../assets/images/syntax/not_clutter.png]]
- In order to actually use the asset in your file, you want to link the image or sketchnote using the following syntax:
#+BEGIN_SRC emacs-lisp
[[../assets/images/file_name.png]]
[[../assets/sketchnotes/file_name.svg]]
#+END_SRC

35
lima/syntax.org~ Normal file
View File

@@ -0,0 +1,35 @@
Okay the syntax for these files might take some time to get used to. But here is a quick summary (message me in case anything doesn't make sense).
Headings / outlines are like: =* H1=, =** H2=, =*** H3=
So you can create a new header like:
*** Example
This is at level three (3 asterisks):
- Emphasis: =*bold*= =/italic/= =_underline_= =+strike+= =~code~= ==verbatim==
- Checkboxes: =- [ ] todo=, =- [X] done=, =- [-] partial=
- TODO workflow: =* TODO Write post= → DONE; define states: =#+TODO: TODO DOING | DONE=
- Timestamps: active =<2025-11-02 Sun 14:00>= ; inactive =[2025-11-02]=
- Links: =[[https://example.com][desc]]=
For a file tag, you can create a new file under the folder *lima*, make sure it has the ~.org~ extension. Then you simply can link it:
#+begin_src emacs-lisp
[[file:file_name.org][Alias]]
#+end_src
It will look like this:
[[file:file_name.org][Alias]]
This should be a quick start (once you get used to it, I'll update it with macros :))
ADD AS MANY FILES AS YOU WANT (just don't forget to link them!)