Damus
nostrich profile picture
nostrich
@nostrich
Relays (14)
  • wss://nostr.fmt.wiz.biz/ – read & write
  • wss://nostr-pub.wellorder.net/ – read & write
  • wss://brb.io/ – read
  • wss://relay.nostr.info/ – read
  • wss://eden.nostr.land/ – read & write
  • wss://relay.nostrcheck.me/ – read
  • wss://relay.current.fyi/ – read
  • wss://nostr.relayer.se/ – read
  • wss://relay.snort.social/ – read
  • wss://nostr.wine/ – read
  • wss://relay.damus.io/ – read
  • wss://nos.lol/ – read
  • wss://offchain.pub/ – read
  • wss://puravida.nostr.land/ – read

Recent Notes

note1mhy60...
nostrich profile picture
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.
Frederik Handberg · 36w
For my notes app, I’ve been experimenting with using local plain-text #Markdown files, while also keeping a #SQLite database that stores exact replicas of these files. The SQLite database is used o...
nostrich profile picture
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.
1
Frederik Handberg · 28w
My plan is to keep notes local, but then have a database alongside that will make stuff like version control much easier to integrate. You know how on Google Docs you can go back and see previous versions of your document - I want to do the same in my app. This will also be really nice for when I a...
nostrich profile picture
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?
nostrich profile picture
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):

![Sample Image](https://via.placeholder.com/150 "Placeholder image")

---

## 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

<div style="border:1px solid; padding:0.5em;">
This is an inline HTML block. Some renderers will show this box; others will just show the HTML source.
</div>

---

## 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.
nostrich profile picture
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):

![Sample Image](https://via.placeholder.com/150 "Placeholder image")

---

## 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

<div style="border:1px solid; padding:0.5em;">
This is an inline HTML block. Some renderers will show this box; others will just show the HTML source.
</div>

---

## 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.
nostrich profile picture
What app can I use to connect to Nostr on F-Droid? How come I can't find #iris on F-Droid, @Iris ?
3❤️1
Iris · 163w
It's waiting for someone to put it there 😁 https://tree.taiga.io/project/iristoapp-iris-messenger/issue/891 Here's the apk version: https://github.com/irislib/iris-messenger/releases/tag/jan2023
nostrich · 163w
Amethyst is the only client on F-Droid at the moment. There will be other options soon enough.