The worst part is if you pay that mortgage off, in most states, you're still paying property taxes for things you don't benefit from. Though they claim it helps your property value. What if you want to live in that home for the rest of your life? Why would you care about property value? And, why would people want to buy a home with higher taxes?
Yet, if you don't pay the tax, they evict you from the home you paid off the mortgage on.
Are you sure that isn't possible with Obsidian? I'm a Logseq user. But, awhile back I did a test of having them share markdown, which is all on the file system. It did work. Here is the guide I followed:
I use logseq + MarkText like that. Logseq provides the indexing for fast searches and let's you link anything with anything. But, I use MarkText for documents or when I want to work in raw markdown. And, I use them together, because the current version of Logseq is all markdown files you can open both from your filesystem and from within Logseq (open with external app).
I'm concerned about the next major release of Logseq, which will put it in a database. In theory, it will increase perf and scalability. But, my flow requires a lot of filesystem integration between tools, so I'm not sure that will work for me. But, the current Logseq 10.x is great with my current flow.
Trying to figure out how to create nice articles here. I love using #markdown.
Looking at one post, it looks very rendered from markdown. Looking at its raw data, sure enough, it has markdown headings, links and other things.
OK, so I created a test post with markdown. It then displays it, but as all literal, no conversion. Raw data looks like the article, all my markdown is in the content.
So, how do you use markdown to create a well formatted post?
Does markdown work in posts? Let's find out.
---
# Markdown Feature Showcase
## 1. Headings
# H1 Heading
## H2 Heading
### H3 Heading
#### H4 Heading
##### H5 Heading
###### H6 Heading
---
## 2. Text Styles
Regular text, with **bold**, *italic*, and ***bold italic***.
You can also use __bold__ and _italic_.
Strikethrough: ~~this text is crossed out~~.
Superscript: X^2^ and subscript: H~2~O (some tools support this).
---
## 3. Lists
### Unordered
- Item A
- Item B
- Nested item B.1
- Nested item B.2
- Item C
### Ordered
1. First
2. Second
3. Third
1. Third-A
2. Third-B
### Task List
- [ ] Unchecked task
- [x] Checked task
- [ ] Another unchecked task
---
## 4. Links & Images
Inline link: [OpenAI](https://openai.com)
Reference-style link: [Search Engine][search]
[search]: https://www.google.com "Google Search"
Autolink: <https://example.com>
Image (if supported):

---
## 5. Code
Inline code: `console.log("hello");`
### Indented Code Block
// Indented code block
function greet(name) {
return "Hello, " + name + "!";
}
### Fenced Code Block (using ~~~)
~~~js
// Fenced code block with language hint
const nums = [1, 2, 3];
console.log(nums.map(n => n * 2));
~~~
---
## 6. Blockquotes
> This is a blockquote.
>
> It can span multiple lines.
> Nested blockquote:
> > Inner level
---
## 7. Tables
| Column A | Column B | Column C |
|---------:|:--------:|---------|
| 1 | middle | left |
| 2 | text | more |
| 3 | here | data |
Alignment: right, center, left.
---
## 8. Horizontal Rules
---
***
___
---
## 9. Footnotes
Here is a sentence with a footnote reference.[^1]
Here is another reference in the same text.[^another]
[^1]: This is the first footnote.
[^another]: This is another footnote definition.
---
## 10. Definition List (extended Markdown)
Term 1
: Definition for term 1.
Term 2
: First line of definition.
: Second line of definition.
---
## 11. Inline HTML
This is an inline HTML block. Some renderers will show this box; others will just show the HTML source.
---
## 12. Math (if supported)
Inline math: $E = mc^2$
Block math:
$$
\int_{0}^{\pi} \sin(x)\,dx = 2
$$
---
## 13. Miscellaneous
Emoji: 😄 🎉 ✅
Escaped characters: \*not italic\* and \_not italic\_.
End of test document.
I wonder if iris supports markdown. Let's see.
# Markdown Feature Showcase
Paste this into any Markdown-capable tool to see what it supports.
---
## 1. Headings
# H1 Heading
## H2 Heading
### H3 Heading
#### H4 Heading
##### H5 Heading
###### H6 Heading
---
## 2. Text Styles
Regular text, with **bold**, *italic*, and ***bold italic***.
You can also use __bold__ and _italic_.
Strikethrough: ~~this text is crossed out~~.
Superscript: X^2^ and subscript: H~2~O (some tools support this).
---
## 3. Lists
### Unordered
- Item A
- Item B
- Nested item B.1
- Nested item B.2
- Item C
### Ordered
1. First
2. Second
3. Third
1. Third-A
2. Third-B
### Task List
- [ ] Unchecked task
- [x] Checked task
- [ ] Another unchecked task
---
## 4. Links & Images
Inline link: [OpenAI](https://openai.com)
Reference-style link: [Search Engine][search]
[search]: https://www.google.com "Google Search"
Autolink: <https://example.com>
Image (if supported):

---
## 5. Code
Inline code: `console.log("hello");`
### Indented Code Block
// Indented code block
function greet(name) {
return "Hello, " + name + "!";
}
### Fenced Code Block (using ~~~)
~~~js
// Fenced code block with language hint
const nums = [1, 2, 3];
console.log(nums.map(n => n * 2));
~~~
---
## 6. Blockquotes
> This is a blockquote.
>
> It can span multiple lines.
> Nested blockquote:
> > Inner level
---
## 7. Tables
| Column A | Column B | Column C |
|---------:|:--------:|---------|
| 1 | middle | left |
| 2 | text | more |
| 3 | here | data |
Alignment: right, center, left.
---
## 8. Horizontal Rules
---
***
___
---
## 9. Footnotes
Here is a sentence with a footnote reference.[^1]
Here is another reference in the same text.[^another]
[^1]: This is the first footnote.
[^another]: This is another footnote definition.
---
## 10. Definition List (extended Markdown)
Term 1
: Definition for term 1.
Term 2
: First line of definition.
: Second line of definition.
---
## 11. Inline HTML
This is an inline HTML block. Some renderers will show this box; others will just show the HTML source.
---
## 12. Math (if supported)
Inline math: $E = mc^2$
Block math:
$$
\int_{0}^{\pi} \sin(x)\,dx = 2
$$
---
## 13. Miscellaneous
Emoji: 😄 🎉 ✅
Escaped characters: \*not italic\* and \_not italic\_.
End of test document.
How to turn off Instagram’s political content filter
It’s election season in the U.S., and Instagram has changed the way that it recommends political content. On both Instagram and the newer X competitor Threads, this change won’t impact what you see fr...
https://techcrunch.com/2024/03/26/how-to-turn-off-instagrams-political-content-filter/
how about turning off instagram
was a member since 1999. canceled in 2021. Haven't missed them once. There is so much free and better content online today.
What app can I use to connect to Nostr on F-Droid? How come I can't find #iris on F-Droid, @Iris ?
I totally agree. I don't like using CCs for anything that donates data, let alone opens the door to being blocked.
Love your contributions. You can cross post and see how that works out.
There are steps? I just hunted until I found the Edit Profile option and plugged in the Alby urn with a "lightning:" prefix. No idea if it works. Waiting for someone to tell me my zap doesn't work. 😁
Improving life is about developing new habits. Harvesting and planting your own #seeds is a nice step towards true freedom. Lettuce, green onions and kale are regulars now.
The ultimate game is an MMORPG where the content is created by the people. That would have endless content you wouldn't be able to discover 10% of over 20 years.
I have Sparrow running but could not find anything linking it to lightning.
#[2] want to try to test zap me?
