diff --git a/Notes~/17 5 = 3.md b/Notes~/17 5 = 3.md deleted file mode 100644 index 23c25c2..0000000 --- a/Notes~/17 5 = 3.md +++ /dev/null @@ -1,5 +0,0 @@ -17 /5 = 3 -72/10 = 7 -72/20=3 - - diff --git a/Notes~/Markdown Cheatsheet.md b/Notes~/Markdown Cheatsheet.md deleted file mode 100644 index 0c29e15..0000000 --- a/Notes~/Markdown Cheatsheet.md +++ /dev/null @@ -1,288 +0,0 @@ -Markdown Cheatsheet -=================== - -This cheatsheet is intended as a quick reference and showcase of the markdown syntax in [QOwnNotes](https://www.qownnotes.org). - -## Headers - -```markdown -# H1 -## H2 -### H3 -#### H4 -##### H5 -###### H6 - -Alternatively, for H1 and H2, an underline-ish style: - -Alt-H1 -====== - -Alt-H2 ------- -``` - -# H1 -## H2 -### H3 -#### H4 -##### H5 -###### H6 - -Alternatively, for H1 and H2, an underline-ish style: - -Alt-H1 -====== - -Alt-H2 ------- - - -## Emphasis - -```markdown -Emphasis, aka italics, with *asterisks*. - -Strong emphasis, aka bold, with **asterisks**. -``` - -Emphasis, aka italics, with *asterisks*. - -Strong emphasis, aka bold, with **asterisks**. - - -## Lists - -(In this example, leading and trailing spaces are shown with with dots: ⋅) - -```markdown -1. First ordered list item -2. Another item -⋅⋅* Unordered sub-list. -1. Actual numbers don't matter, just that it's a number -⋅⋅1. Ordered sub-list -4. And another item. - -⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown). - -⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅ -⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅ - -* Unordered list can use asterisks -- Or minuses -+ Or pluses -``` - -1. First ordered list item -2. Another item - * Unordered sub-list. -1. Actual numbers don't matter, just that it's a number - 1. Ordered sub-list -4. And another item. - - You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown). - - To have a line break without a paragraph, you will need to use two trailing spaces. - Note that this line is separate, but within the same paragraph. - -* Unordered list can use asterisks -- Or minuses -+ Or pluses - - -## Links - -There are two ways to create links. - -```markdown -[I'm an inline-style link](https://www.google.com) - -[I'm an inline-style link with title](https://www.google.com "Google's Homepage") - -[You can use numbers for reference-style link definitions][1] - -URLs and URLs in angle brackets will automatically get turned into links in the preview. -http://www.example.com or - -[1]: https://www.qownnotes.org -``` - -[I'm an inline-style link](https://www.google.com) - -[I'm an inline-style link with title](https://www.google.com "Google's Homepage") - -[You can use numbers for reference-style link definitions][1] - -URLs and URLs in angle brackets will automatically get turned into links in the preview. -http://www.example.com or - -[1]: https://www.qownnotes.org - - -## Inline code and code blocks - -```markdown -Inline `code` has `back-ticks around` it. -``` - -Inline `code` has `back-ticks around` it. - -Blocks of code are either fenced by lines with three back-ticks, or are indented with four spaces. - -### 4-Spaces fence - -```markdown - s = "Code with space indent" - print s -``` - - s = "Code with space indent" - print s - -### Backtick fence - - ``` - Code goes here - Code goes here - ``` - -``` -Code goes here -Code goes here -``` - -### Backtick fence with code highlighting - -```bash -# I am a comment -cd Notes -``` - -## Tables - -Tables aren't part of the core Markdown spec, but the QOwnNotes preview supports them. - -```markdown -Colons can be used to align columns. - -| Tables | Are | Cool | -| ------------- |:-------------:| -----:| -| col 3 is | right-aligned | $1600 | -| col 2 is | centered | $12 | -| zebra stripes | are neat | $1 | - -There must be at least 3 dashes separating each header cell. -The outer pipes (|) are optional, and you don't need to make the -raw Markdown line up prettily. You can also use inline Markdown. - -Markdown | Less | Pretty ---- | --- | --- -*Still* | `renders` | **nicely** -1 | 2 | 3 -``` - -Colons can be used to align columns. - -| Tables | Are | Cool | -| ------------- |:-------------:| -----:| -| col 3 is | right-aligned | $1600 | -| col 2 is | centered | $12 | -| zebra stripes | are neat | $1 | - -There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown. - -Markdown | Less | Pretty ---- | --- | --- -*Still* | `renders` | **nicely** -1 | 2 | 3 - - -## Blockquotes - -```markdown -> Blockquotes are very handy in email to emulate reply text. -> This line is part of the same quote. - -Quote break. - -> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote. -``` - -> Blockquotes are very handy in email to emulate reply text. -> This line is part of the same quote. - -Quote break. - -> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote. - - -## Horizontal Rule - -```markdown -Three or more... - ---- - -Hyphens - -*** - -Asterisks - -___ - -Underscores -``` - -Three or more... - ---- - -Hyphens - -*** - -Asterisks - -___ - -Underscores - -## Line Breaks - -```markdown -Here's a line for us to start with. - -This line is separated from the one above by two newlines, so it will be a *separate paragraph*. - -This line is also begins a separate paragraph, but... -This line is only separated by two trailing spaces and a single newline, so it's a separate line in the *same paragraph*. -``` - -Here's a line for us to start with. - -This line is separated from the one above by two newlines, so it will be a *separate paragraph*. - -This line is also begins a separate paragraph, but... -This line is only separated by two trailing spaces and a single newline, so it's a separate line in the *same paragraph*. - -## Comments - -```markdown -[comment]: # (This comment will not appear in the preview) -``` - -## Checkbox lists - -```markdown -- [x] done -- [ ] todo -``` - -- [x] done -- [ ] todo - ---- - -Credit: [markdown-here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) -License: [CC-BY](https://creativecommons.org/licenses/by/3.0/) diff --git a/Notes~/Note 2022-05-08T03.17.14.md b/Notes~/Note 2022-05-08T03.17.14.md deleted file mode 100644 index 661d09c..0000000 --- a/Notes~/Note 2022-05-08T03.17.14.md +++ /dev/null @@ -1,4 +0,0 @@ -Note 2022-05-08T03.17.14 -======================== - -Qazi se imp ques poochne har chp ke \ No newline at end of file diff --git a/Notes~/Note 2022-05-08T19.05.08.md b/Notes~/Note 2022-05-08T19.05.08.md deleted file mode 100644 index dea5431..0000000 --- a/Notes~/Note 2022-05-08T19.05.08.md +++ /dev/null @@ -1,5 +0,0 @@ -Note 2022-05-08T19.05.08 -======================== - -Tokyo Aliens manga -My Friend's Little Sister Has It In for Me! manga \ No newline at end of file diff --git a/Notes~/Note 2022-05-08T22.14.24.md b/Notes~/Note 2022-05-08T22.14.24.md deleted file mode 100644 index 24f5256..0000000 --- a/Notes~/Note 2022-05-08T22.14.24.md +++ /dev/null @@ -1,9 +0,0 @@ -Note 2022-05-08T22.14.24 -======================== -Rough Draft: - -1:Multiple worlds(havent decided how many,maybe as much as there are races and maybe one where all races co-exist) -2:mc died and reincarnated in all of em due to a curse by [the one],kinda tragic story. -3: present in human world ,mc a past human(meaning he was human no more). -4: this world has magic like all realms. -5:mc hides his power diff --git a/Notes~/Welcome to QOwnNotes.md b/Notes~/Welcome to QOwnNotes.md deleted file mode 100644 index afdd18a..0000000 --- a/Notes~/Welcome to QOwnNotes.md +++ /dev/null @@ -1,21 +0,0 @@ -Welcome to QOwnNotes -==================== - -Welcome to your installation of **QOwnNotes**! - -## TODO - -- [ ] Be sure to setup your *Nextcloud/ownCloud server* in the **settings dialog**. - - Keep in mind that you still need to install the *Nextcloud/ownCloud* sync client to synchronize your notes! -- [ ] Install [QOwnNotesAPI](https://apps.nextcloud.com/apps/qownnotesapi) to access **note versions** and **trashed notes**. - -## Later - -- [ ] Check out the [Important-Shortcuts](https://www.qownnotes.org/getting-started/shortcuts.html) for more productivity. - - You can click on links with `Ctrl + Click` (or `Cmd + Click` on macOS) in the editor to open them. -- [ ] Visit for more information about **QOwnNotes**. -- [ ] Use the to explore the **Markdown syntax**. -- [ ] Open the [Script repository](https://github.com/qownnotes/scripts) with `Alt + Shift + I` to add some additional functionality to QOwnNotes -- [ ] Add the [QOwnNotes Web Companion browser extension](https://github.com/qownnotes/web-companion) to a add notes from the selected text, bookmark management and other features - - Visit the [Chrome Web Store](https://chrome.google.com/webstore/detail/qownnotes-web-companion/pkgkfnampapjbopomdpnkckbjdnpkbkp) or [Firefox Add-ons page](https://addons.mozilla.org/firefox/addon/qownnotes-web-companion) to install the extension. -- [ ] Check [Spellchecking](https://www.qownnotes.org/editor/spellchecking.html) to setup spellchecking diff --git a/Notes~/notes.sqlite b/Notes~/notes.sqlite deleted file mode 100644 index bc01800..0000000 Binary files a/Notes~/notes.sqlite and /dev/null differ diff --git a/Notes~/trash/1 b/Notes~/trash/1 deleted file mode 100644 index e69de29..0000000 diff --git a/Notes~/trash/10 b/Notes~/trash/10 deleted file mode 100644 index a053cfb..0000000 --- a/Notes~/trash/10 +++ /dev/null @@ -1,5 +0,0 @@ -13 /5 = 14 -72/10 = 7 -72/20=3 - - diff --git a/Notes~/trash/11 b/Notes~/trash/11 deleted file mode 100644 index 319c684..0000000 --- a/Notes~/trash/11 +++ /dev/null @@ -1,5 +0,0 @@ -13 /5 = 2 -72/10 = 7 -72/20=3 - - diff --git a/Notes~/trash/12 b/Notes~/trash/12 deleted file mode 100644 index 8902a56..0000000 --- a/Notes~/trash/12 +++ /dev/null @@ -1,5 +0,0 @@ -13 /5 = 3 -72/10 = 7 -72/20=3 - - diff --git a/Notes~/trash/2 b/Notes~/trash/2 deleted file mode 100644 index 2edeafb..0000000 --- a/Notes~/trash/2 +++ /dev/null @@ -1 +0,0 @@ -20 \ No newline at end of file diff --git a/Notes~/trash/3 b/Notes~/trash/3 deleted file mode 100644 index 51bdebc..0000000 --- a/Notes~/trash/3 +++ /dev/null @@ -1,2 +0,0 @@ -20 / 5 = 4 - diff --git a/Notes~/trash/4 b/Notes~/trash/4 deleted file mode 100644 index 937696c..0000000 --- a/Notes~/trash/4 +++ /dev/null @@ -1,2 +0,0 @@ -50 / 5 = 410 - diff --git a/Notes~/trash/5 b/Notes~/trash/5 deleted file mode 100644 index da807ad..0000000 --- a/Notes~/trash/5 +++ /dev/null @@ -1,2 +0,0 @@ -50 / 5 = 10 - diff --git a/Notes~/trash/6 b/Notes~/trash/6 deleted file mode 100644 index ed46e2b..0000000 --- a/Notes~/trash/6 +++ /dev/null @@ -1,2 +0,0 @@ -50 / = 10 - diff --git a/Notes~/trash/7 b/Notes~/trash/7 deleted file mode 100644 index e34b086..0000000 --- a/Notes~/trash/7 +++ /dev/null @@ -1,5 +0,0 @@ -50 /5 = 10 -50/10 = 5 -50/ - - diff --git a/Notes~/trash/8 b/Notes~/trash/8 deleted file mode 100644 index b181a55..0000000 --- a/Notes~/trash/8 +++ /dev/null @@ -1,5 +0,0 @@ -72 /5 = 10 -50/10 = 5 -50/ - - diff --git a/Notes~/trash/9 b/Notes~/trash/9 deleted file mode 100644 index be802ac..0000000 --- a/Notes~/trash/9 +++ /dev/null @@ -1,5 +0,0 @@ -72 /5 = 14 -72/10 = 7 -72/20=3 - - diff --git a/ip.cache b/ip.cache deleted file mode 100644 index 644ebc2..0000000 --- a/ip.cache +++ /dev/null @@ -1 +0,0 @@ -192.168.1.3