Skip to content

Commit

Permalink
[PUBLISHER] Merge #20
Browse files Browse the repository at this point in the history
* PUSH NOTE : Typescript.md

* PUSH NOTE : Svelte.md

* PUSH NOTE : Snippets Index.md

* PUSH NOTE : CODE-1 Read File to String in rust.md

* PUSH NOTE : Rust.md

* PUSH NOTE : Programming.md

* PUSH NOTE : Flutter & Dart.md

* PUSH NOTE : Shortcuts.md

* PUSH NOTE : Creating Trig SVGs with Latex.md

* PUSH ATTACHMENT : triangles 1.svg

* PUSH NOTE : Triganometry Index.md

* PUSH NOTE : More Functions.md

* PUSH NOTE : Math Index.md

* PUSH NOTE : Math Constellation Game Ideas.md

* PUSH NOTE : Logarithms.md

* PUSH NOTE : Important Formulas.md

* PUSH NOTE : Formulas.md

* PUSH NOTE : Exponents.md

* PUSH NOTE : Drawing Functions & Back Again.md

* PUSH NOTE : Completing The Square.md

* PUSH NOTE : Big Unorganized Math Notes.md

* PUSH NOTE : Absolute Values in Algebra.md

* PUSH NOTE : ∆-Landing.md

* PUSH NOTE : Using Quartz & Github Publisher.md

* PUSH NOTE : Textbook Collection.md

* PUSH NOTE : My Obsidian Setup.md

* PUSH NOTE : My Obsidian Plugins.md

* PUSH NOTE : My Big Huge Collection of Links.md

* PUSH NOTE : Linguistics.md

* PUSH NOTE : Japanese.md

* PUSH NOTE : Goals.md

* PUSH NOTE : Domains.md

* PUSH NOTE : digital garden resources.md

* PUSH NOTE : Books.md
  • Loading branch information
bluerosegarden authored Jan 29, 2024
1 parent 73be855 commit 06f508b
Show file tree
Hide file tree
Showing 34 changed files with 167 additions and 0 deletions.
46 changes: 46 additions & 0 deletions Attachments/triangles 1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions content/Books.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ tags:
- personal
publish: true
---

A place for me to talk about books.

## Favorite books
Expand Down
1 change: 1 addition & 0 deletions content/Code/Flutter & Dart.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

Interesting!!!
## Resources
[Flame](https://docs.flame-engine.org/latest/)
Expand Down
1 change: 1 addition & 0 deletions content/Code/Programming.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

[[❀Code/Rust|Rust]]
[[Flutter & Dart|Flutter & Dart]]
[[Typescript|Typescript]]
Expand Down
1 change: 1 addition & 0 deletions content/Code/Rust.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
publish: true
---

[Rust by Practice](https://github.com/sunface/rust-by-practice)
17 changes: 17 additions & 0 deletions content/Code/Snippets/CODE-1 Read File to String in rust.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
publish: true
---

created :: 12-05-2023
codelang :: Rust

```rust
let file: Result<String, Error> = fs::read_to_string("part1_input.txt");
match file {
Ok(f) => {
//do something with the file like return f
}
Err(e) => panic!("{}", e), //or handle error nromally without panicking
```

It returns a Result you have to handle, and it assumes i will be in the folder the command is **run in**, not the folder its built in
14 changes: 14 additions & 0 deletions content/Code/Snippets/Snippets Index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
publish: true
---



Below are all my local snippets. Mostly just little notes to myself so I don't google how to open a txt file in rust for the 39th time

| File | codelang |
| -------------------------------------------------------------------------------------------- | -------- |
| [[❀Code/Snippets/CODE-1 Read File to String in rust.md\|CODE-1 Read File to String in rust]] | Rust |



1 change: 1 addition & 0 deletions content/Code/Svelte.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

This is by far my favorite framework for making sites.
## Sveltekit
This is what my wip markdown blog framework is written in.
1 change: 1 addition & 0 deletions content/Code/Typescript.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
publish: true
---

I'm gonna learn typescript, partially so I can contribute to [quartz](https://quartz.jzhao.xyz/) but also so I don't have to keep relying solely on my pure JavaScript knowledge.
1 change: 1 addition & 0 deletions content/Domains.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
publish: true
---


## Languages & Frameworks
[[Rustlang|Rust]]
[[Svelte|Svelte]] / [[Svelte#Sveltekit|Sveltekit]]
Expand Down
1 change: 1 addition & 0 deletions content/Goals.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ publish: true
tags:
- personal
---

A place for me to just talk off the cuff about my personal goals and plans.

## Winter Break 2023
Expand Down
1 change: 1 addition & 0 deletions content/Japanese.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ publish: true
tags:
- learning
---

This is my main page for collecting resources and planning my Japanese journey

# Resources
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Absolute Values in Algebra.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

Absolute values in algebra is a bit weird but aside from some specific rules they're pretty fun to solve.

First off, **you cannot change the inside signs of an absolute value**. Here's an example:
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Big Unorganized Math Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
publish: true
---


Turns out making specific pages for each note has been bad for me actually making notes, so here I'm just gonna spam all the notes without much explaining. I'll spin em off into their own notes later, or not, we'll see lmao

## Polynomial functions
Expand Down
2 changes: 2 additions & 0 deletions content/Learning/Math/Completing The Square.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
---
publish: true
---

Sometimes it's easier to modify an equation so it becomes a full quadradic equation.

Take the following:

$$
x^2+8x+11=0
$$

As it is this is not factorable, and while you can use quadratic method instead, you can force it to be factorable!

You can do this whenever the b term is *even*, this will not work if b term is *odd*.
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Drawing Functions & Back Again.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

Take the following graph
![[drawing functions 2.svg|drawing functions 2.svg]]

Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Exponents.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
publish: true
---

Exponents are pretty easy to understand if you understand what squaring and cubing are, but exponential functions are a little wacky.
1 change: 1 addition & 0 deletions content/Learning/Math/Formulas.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

You can't have math without formulas!!!!!!!!!!!!!!!!!!!!!!!!!

## Continuous Growth
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Important Formulas.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ tags:
- math
---


## Quadratic formula
The classic
$$
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Logarithms.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ tags:
- learning
- school
---

Logarithms are weird.

Logarithms are really, *really* weird.
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Math Constellation Game Ideas.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ tags:
- programming
- learning
---

A game where you recreate a constellation using as few functions as possible

Other ideas: the normal get problems to solve to reveal points for a map. Maybe ask teacher for help
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Math Index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

These are going to be all of my notes on math, ones that work specifically for me but may work for you

## Resources
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/More Functions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

## Inverse Functions

It's possible for a function to have an inverse function. in order for there to be an inverse function, the base function must satisfy the **horizontal test**, meaning for every $y$ value, theres only one possible $x$ value. Because if that, each pair of numbers must not repeat.
Expand Down
1 change: 1 addition & 0 deletions content/Learning/Math/Shortcuts.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ publish: true
---



This is where I'll have various shortcuts.

## Quickly Foil $(x-b)^2$
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
publish: true
---

After spending way too much time I figured out how to create triangles with tikz like the following!



![[triangles 1.svg|triangles 1.svg]]


- Install MikTex and Texstudio
- Navigate to Texstudio's folder and open up the texstudio.ini
- Add the following line under the `[texmaker]` block
- `Tools\Commands\dvi2svg-no-fonts="txs:///latex | dvisvgm --no-fonts %.dvi"`
- Use this to embed (web safe) fonts instead of paths: `Tools\Commands\dvi2svg="txs:///latex | dvisvgm --font-format=woff %.dvi"`
- Now open up texstudio and create a .tex file with the property standalone
- `\documentclass[12pt, tikz, border=5mm]{standalone}` at the top of the file
- Now go to **Tools->User->dvi2svg**
- Now open the folder with your .tex file and you'll find your .svg file!
- I further went in and edited the width and height to be 500px since its tiny by default

There you go!


The latex code for this triangle:
```latex
\documentclass[12pt, tikz, border=5mm]{standalone}
\usetikzlibrary{angles,
quotes}
\usepackage{siunitx, xcolor}
\begin{document}
\nopagecolor
\begin{tikzpicture}[
my angle/.style = {draw, fill=teal!30,
angle radius=7mm,
angle eccentricity=1.7,
right, inner sep=1pt,
font=\footnotesize}
]
\draw (0,0) coordinate[label=below:$A$] (a) --
(4,0) node[midway,below] {$a$} coordinate[label=below:$C$] (c) --
(0,4) node[midway,above] {$b$} coordinate[label=above:$B$] (b) -- cycle node[left,midway] {$c$};
\pic[my angle, "$\SI{45}{\degree}$"] {angle = b--c--a};
\draw (0,.8) (0,.4)-|(.4,0);
\end{tikzpicture}
\end{document}
```

7 changes: 7 additions & 0 deletions content/Learning/Math/Triganometry/Triganometry Index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
publish: true
---

## Basic triangle jargon

[[Creating Trig SVGs with Latex|Creating Trig SVGs with Latex]]
1 change: 1 addition & 0 deletions content/Linguistics.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ publish: true
tags:
- learning
---

I am fascinated by language and the ways they evolve and the forms they take. While I mainly want to study linguistics in order to better help me learn [[Japanese|Japanese]], I would love to develop a conlang or two with it.

## Resources
Expand Down
1 change: 1 addition & 0 deletions content/My Big Huge Collection of Links.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ summary:
id: ♧✤✷🌻✽🏵❋❉🏵
publish: true
---

Hoo boy. This is a gigantic collection of links to sites to learn stuff or just have interesting resources. This was made before I spun up my [public bookmarks site](https://bookmarks.blurose.garden), and these could (and should) be moved there, but for now enjoy this page while you can!
# Coding
## web
Expand Down
1 change: 1 addition & 0 deletions content/My Obsidian Plugins.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: true
---

This is an absolutely gigantic list of obsidian plugins I use. I need to cull a lot and organize what I consider Must Haves and just Fun, but that's for another day!

[obsidian://show-plugin?id=at-symbol-linking](obsidian://show-plugin?id=at-symbol-linking)
Expand Down
1 change: 1 addition & 0 deletions content/My Obsidian Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
publish: true
---


Everyone's obsidian setup is very specific and customized, and I'm no different. I figured I might as well share my themes, how I sync, plugins, and the way I publish on this very site.

[[My Obsidian Plugins|My Obsidian Plugins]]
Expand Down
1 change: 1 addition & 0 deletions content/Textbook Collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ publish: true
tags:
- learning
---

This is a collection of textbooks that I have found interesting! Only the ones with stars are ones I have read
## [[Math|Math]] & [[Programming|Programming]]
o'reilly designing data intensive (ebook)
Expand Down
1 change: 1 addition & 0 deletions content/Using Quartz & Github Publisher.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
publish: "true"
---

The Obsidian Plugin [Github Publisher](obsidian://show-plugin?id=obsidian-mkdocs-publisher) ([github link](https://github.com/ObsidianPublisher/obsidian-github-publisher)) works amazingly well with quartz! Not only does it allow you to update your digitalgarden straight from Obsidian (on both mobile & desktop no less!) but it also only uploads your published & public files to the repo! It also converts dataview queries into markdown before uploading!

Not only that but this is deployment agnostic, so if you don't want to use GitHub Pages you don't have to!
Expand Down
Loading

0 comments on commit 06f508b

Please sign in to comment.