Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)JB
Posts
4
Comments
504
Joined
2 yr. ago
  • First, thank you for the thoughtful and detailed reply. I find it helpful.

    Plain text accounting (and all the variants) sounds great, right until you need to use it to generate invoices, or depreciate assets, or do a monthly Business Activity Statement, or convert a currency, track repayments, etc.

    All of those things require that you write software to achieve that, which means that now instead of solving problems and writing software for my clients, I'm burning hours writing software so I can run my business

    Oddly enough, I feel the opposite: I'm so glad that I have the freedom to use other tools to do what I need and that I can simply write some custom software to achieve that. I always felt locked in by QuickBooks and now I can do anything from messing around in a spreadsheet to writing what I need with jq. Plain text as an interface means that the sky is the limit for flexibility.

    It has also made my company's financial information more accesible to me. Previously, I'd given it over to bookkeepers and accountants and only seen out of date financial statements when it was time to file taxes. Now I know what's going on whenever I want.

    It has also turned bookkeeping into a programming exercise, which made me more interested, not less. I don't have clients waiting impatiently for me to produce features for them, so I can enjoy this wro instead of having it feel like a distraction.

    I've been writing software for over 40 years and until last week I'd never heard of it. That's not something you want in business software.

    I feel that!

    Because I'm still running a 25 year old accounting package that doesn't run on current hardware, isn't supported, doesn't run under Linux and has all my data hostage.

    Our motivations definitely seem compatible, even if our constraints and preferences don't.

    Thanks again. Good luck.

  • cats @lemmy.world
    jbrains @sh.itjust.works

    The Hole in the Blinds Gang

    I'd love to say this was intentional, but no.

  • I speak a couple of languages in which there is no continuous present, but rather they use phrases such as "I sit and study Swedish" to mean "I'm studying Swedish (as in right now, that's the task I'm doing)" or "I am in the process of reading a book". They don't change the form of the verb to highlight this continuous aspect, so perhaps they aren't used to it.

    Add to that that the continuous aspect in English is surprisingly complicated and arbitrary. If you try to nail down rules for how and when to use it, you might struggle. 😉 Folks struggling to use it correctly might be overcorrecting or merely confused.

    There are, I'm sure, other reasons, but this is enough to account for some of what you're seeing.

  • I suppose I don't understand yet what you expect from a "relationship" that's different from a friendship, so it's hard to offer any advice.

    If you want to have sex with someone, it helps to ask. I understand that asking has risks, so you probably want to have some sense that the other person is not going to hit you before you ask. 😉 I don't know how to magically get them to ask you, except for maybe being generally sexually irresistible. That's outside my expertise.

    As you learn what you want, it will become easier to look for it and ask for it. Maybe it would help you to think more about what you want for now.

  • I just don't know how to (for lack of a better word) make others see me for more than just a friend.

    You don't. It's complex and subtle and annoying. 😉

    You don't turn someone who doesn't love you into some who does. You keep looking until you find a person who was already going to love you. And there are many, even when it doesn't seem like there are. And it takes a maddeningly long time for some folks. It did for me.

  • I'm not sure. Maybe. Sometimes. I don't know.

    I can only tell you that my best results have come from replying with a neutral "Thank you", then repeating the questions. I prefer it when they answer all my questions, but ultimately, if I want answers, I need to persist, and so I do.

  • Excellent! Indeed, I'd completely forgot about H2, H3, and so on, so I'm glad you found it comfortable to figure that out!

    I read Mastering Regular Expressions about 25 years ago and it's one of the best and simplest investments I ever made in my own programming practice. Regex never goes out of style.

    Enjoy!

  • I don't mind at all. Beyond my explanation, you might like to try to use an online regular expression checker to explore small changes to the regex to see how it matches what it matches.

    Headings always match #\s+, because that's the character # followed by whitespace (\s) one or more times (+). Other text matches this, but so not all matches are headings, but all headings match. (You might have # blah in the middle of the text, which would match. If that's a problem, then you can change the regex to ^#\s+, where ^ means "from the beginning of a line".

    Tags always match #[^\s], which means the character # followed by one not whitespace character. Be careful: tags match this regex, but this regex doesn't match the entire tag. It only says "there is a tag here".

    Fortunately, that doesn't hurt, because your Python code could match #[^\s] and then turn that # into \# and thereby successfully avoid escaping the #s at the beginning of headings. You could even use regex to do this by capturing the non-whitespace character at the beginning of the tag and "putting it back" using regex search and replace.

    Replace #([^s]) with \#\1.

    The parentheses capture the matching characters (the first character of the tag) and \1 echoes back the captured characters. It would replace #a with \#a and so on.

    I hope I explained this clearly enough. I see the other folks also tried, so I hope that together, you found an explanation that works well enough for you.

    Peace.

  • The most bulletproof way to do this seems to be to escape the # characters before running the document through Markdown. It might suffice to use a regex. (Insert regex and two problems joke here.) That seems promising because headings always match #\s+ whereas tags match #[^\s].

    I hope someone has an even better idea, but this ought to work.

  • Excessive apologies can feel disingenuous and perfunctory. That makes it difficult for me to know when an apology is genuine. That erodes my trust.

    Excessive apologies can signal to me that the other person sees me as a threat, and I don't want to feel like a threat, so I feel attacked.

    But I could also choose to interpret excessive apologies as a sign of past trauma, so I could choose to have compassion and patiently ask the other person to talk to me about what's going on. I can share how I feel and hope that they feel ready to discuss what's happening for them. Patience would be key.

  • What's normal is that you had a traumatic experience, then internalized a Survival Rule to avoid repeating the behavior that led to the trauma. Depending on your age when the original incident happened, the Survival Rule might sit very deep, causing you to follow it even without thinking and without knowing why.

    All that is normal: expected, sensible, reasonable.

    The rule itself might no longer be needed. Can you imagine a situation in which it would be perfectly fine to interpret as a joke something that someone says without specifying it as a joke? Can you imagine three? Ten?

  • Now it depends whether you mean actual DEI or the nonsense that companies do in the name of DEI or the unfortunate overreaction that some people support related to DEI due to the resistance to actual, reasonable, sensible DEI.

    "... regardless of all other factors..." sounds like the second of these.

  • System76 @lemmy.ml
    jbrains @sh.itjust.works

    Firmware update notification, but no update applied

    I run a lemp10. I saw a notification of a firmware update, but when I applied the update---apparently successfully---the firmware version did not change. Now I see no pending firmware update.

    What happened? Is this normal? Task failed successfully?!

    unket @sh.itjust.works
    jbrains @sh.itjust.works

    Den här låter ju bekant...

    ... men jag minns inte varifrån jag känner igen den.

    Pop!_OS (Linux) @lemmy.world
    jbrains @sh.itjust.works

    Why did I need to restart to upgrade my recovery partition?

    I tried to upgrade my recovery partition today and it failed with "No such device"/OS error 19.

    I found this discussion on Reddit in which @mmstick suggested restarting, but with no explanation as to why that was needed or would work. It worked for me.

    https://www.reddit.com/r/pop_os/comments/xun8vu/error_updating_recovery_partition_no_such_device/

    I'd like to know why it worked and why it was needed, mostly for two reasons: to generally understand the situation better and to imagine what I might have been able to do that didn't require restarting.

    Thanks.