Source for the homies: https://www.youtube.com/watch?v=vr5dCRHAgb0
- 2 Posts
- 6 Comments
Notnotmike@beehaw.orgto Lemmy@lemmy.ml•Guide: Write cool posts and comments with Markdown for newbiesEnglish1·2 years agoThe Markdown will be passed in the ActivityPub messages in plaintext, so it’s up to the app developer how to interpret the Markdown. Looks like someone already created a ticket on GitHub so I’d recommend either adding a thumbs up to increase visibility or make the change yourself if you’re able!
Notnotmike@beehaw.orgto Lemmy@lemmy.ml•Guide: Write cool posts and comments with Markdown for newbiesEnglish9·2 years agoJust want to plug markdown as a phenomenal resource. You can use it to write documentation both online and offline, and with pandoc you can even use it to create beautiful PDF documents from your computer. Here’s some places I use markdown daily, some additional resources, and tips
- GitHub parses markdown files from their web UI by default
- Obsidian uses markdown for their note taking application
- Pandoc can convert Markdown files to other formats including PDF
- Because it’s plaintext, there are fewer formatting errors when moving between applications and you don’t even need an application to read them
- Plaintext also means documents can be easily tracked via source control
- Lemmy and Reddit both use Markdown
- Discord uses a variation of Markdown
Yeah, currently I too frequently end up viewing communities from outside the context of my login, it’s a pain that I hope gets remediated soon
Is Jeroba official? I thought it was third-party
I think you have a point with the moving target, but also I believe that development should pretty much always be a moving target. You should be refactoring your domain based on new experiences and new knowledge all the time. So, personally, I find integration tests much more useful, because they test the input and output of a system, rather than how it’s implemented. I can change my domain without having to modify my tests and that makes changes to the domain much simpler.
That being said, I also definitely recognize the advantages of TDD, I just don’t think it’s a silver bullet; there’s good projects for it and bad ones