Oh, I forgot those were a thing. Ad blocking DNS does wonders
Seb the goblin
Gobble gobble
- 4 Posts
- 25 Comments
People can have more than one problem. Last time I checked, humans aren’t 2D. Or even if that’s the main reason the person went to therapy, perhaps they weren’t looking for a “how do I turn this frown upside down” solution, instead hoping to get some advice on how to better channel their frustrations, or gain clearer focus, or just to have someone to help sort out own thoughts. There can be many reasons.
Is the reason why I have a Gmail. It’s the same one I’ve had for a long time, last time I checked it, the unread emails count was past 9999. I wonder what Google thinks of me 🤔
A pigeon? How dare you! That’s almost as bad as calling someone an absolute walnut!
Seb the goblin@lemmy.worldto
No Stupid Questions@lemmy.world•What is this Iran War really about?
2·5 days agoThere’s a journalist that did a video walking down a hallway in one of the gov buildings in Washington. One office door after the next had a “I stand with Israel” sign
Seb the goblin@lemmy.worldto
Lemmy Shitpost@lemmy.world•I think NAMBLA or some other similar org might buy them...
10·5 days agoIt’s like being psychology adjacent and having to double check which CBT do people mean
Seb the goblin@lemmy.worldto
Linux@programming.dev•Windows Drops Under 60% in Global Desktop OS Share for the First Time in Years
1·21 days agodeleted by creator
Seb the goblin@lemmy.worldtoShitty Ask Lemmy@lemmy.uhhoh.com•What's the best way to get attention?English
1·25 days agoBe wrong
Seb the goblin@lemmy.worldtoMicroblog Memes@lemmy.world•Second hand smoking and drunk drivingEnglish
71·25 days agoAre you really having a good time when the munchies hit but you’re out of snacc?
Seb the goblin@lemmy.worldto
Android@lemmy.world•Tend — stay in touch with the people you care aboutEnglish
2·25 days agoOh, Monica is a FOSS site you can selfhost, hence my question. But an offline version is pretty neat, especially if it directly integrates with the device systems (e.g. notifications, calendar, etc).
Seb the goblin@lemmy.worldto
Android@lemmy.world•Tend — stay in touch with the people you care aboutEnglish
2·25 days agoHow is it different from Monica? Just that it’s a mobile app?
Seb the goblin@lemmy.worldto
Leftism@lemmy.world•"We were told that violence in itself is evil..." - Walter RodneyEnglish
6·1 month agoMight work in some places, might not in others. On a different note, did you know that according to the 13th amendment, slavery in the US has been abolished for all except prisoners? That’s right, it’s legal to punish people with enforced slavery. Is a great business by the way, pay people 10c an hour, sell the thing for 10$ a pop.
Even if I was a *illionaire I’d rather gargle lava rocks than touch Oracle with a mile long pole
Seb the goblin@lemmy.worldto
Programming@programming.dev•Contributors wanted for Open-Source Worker's Cooperative Management Software
2·1 month agoIn any case, good luck with your project, I hope it turns out wonderful, and you get all the hype and support 😁
Seb the goblin@lemmy.worldto
Programming@programming.dev•Contributors wanted for Open-Source Worker's Cooperative Management Software
2·1 month agoThanks for elaborating. To me, it looks like you could definitely use an experienced dev-background person to help organise the project. For example, login is low priority imo - it’s not needed until you’re going into testing. And I mentioned the project being US-focused since I noticed stuff like
eligible_1099in the table design - not a thing outside the US.Also, I’m working on a project for a non-profit, and as part of it I’m doing an audit trail functionality. Ended up thinking real hard over what’s PII you actually need. Turns out, don’t actually need to store phone numbers, for example. Makes life easier. And for data anonymisation - if someone makes a GDPR request, then the email gets replaced with a unique hash +
@redacte.d, and the IP gets salted + hashed, so that the same IP is the same hash in all entries. This is to ensure continuity in the audit trail, plus if someone gets banned for DDoSing, then does a data redaction request, then tries to access again, they can still be blocked since their IP still matches the hash (same logic as to how passwords work). I’m mentioning it since that’s the kind of details that are worth thinking about - however, it’s deep down the rabbit hole of details.Speaking of details, if you’re thinking of mobile, then there’s also the decision of app VS mobile-friendly site. If you want an app, then it’s worth swapping to React right now, since React Native (the framework for creating mobile apps) has a larger community and is more mature. If you’re OK not having a native mobile app, then go with whatever, have fun 😁
I asked about the MVP and day to day useage since that can inform you about what order to implement things. As mentioned above, having a login page is lower priority when starting a project. For example, if based on your knowledge and the feedback from existing cooperative(s) shows that the most heavily used functionality is ex. inventory tracking, then it’s worth building a good inventory tracking system first, and grow from there. Is also why I mentioned forking an existing project - is a huge project, and if you’re going at it solo, it’s gonna be painful.
But, there’s also alternative to forking - copy-paste. Just like artists use references, developers can also reference existing code. So, for example, I don’t know if you’ve seen this sheet (from this post) for additional info how people think co-ops should work, but it’s another piece of info to consider. Though it’s Java, you can still take high level structure or direct code inspiration from Adempiere, they’ve been around long enough to make a bunch of mistakes. There’s also a fork of Adempiere, Metasfresh, which is worth looking at re: how things work. Also Tryton, though that one’s in Python. Mentioning Tryton since it also uses the party approach, and has an architecture that’s worth considering: modularity. Essentially, having the core functionality that ties everything together, and a whole bunch of “modules” that each contain their own logic, SQL, etc.
Which brings me to my last point: it’s great to work on a new project, but learn from my mistakes - think of what it would be like to maintain in 6, 12, 24, 60 months. If you tightly couple everything, all things depend on all other things, the system is going to be fragile, hard to maintain, and less likely to be used. With your background I’m sure you’re already familiar with trying to update something someone else created in a way that doesn’t make sense to you.
So yea, basically, I’m trying to caution you to KISS (keep it simple silly), and not overcommit, lest your project ends up the same way my uncountable exciting startings have ended - in some random dusty git repo, untouched for years, too big or hard or no longer relevant to finish 😅
Seb the goblin@lemmy.worldto
Programming@programming.dev•Contributors wanted for Open-Source Worker's Cooperative Management Software
6·1 month agoThis looks interesting, though a mighty undertaking. Any reason why not take an existing project and fork it? Or even just an ERPNext module? Would help cover a bunch of potential issues rather than start from scratch. Alternatively, have you thought of what would the MVP be to test it out? That way won’t fall into the do-everything-now trap (been there, done that, don’t recommend). Also, it looks very US-centric, so not gonna ask about GDPR, data security, etc. Instead, re: FE - for prototyping, don’t need design, just functional HTML + forms. Or, can try and poke at some premade or quick-assemble templates. Have you thought about functional (not design) requirements for the user experience, AKA how you imagine the users of this would use it? That is, full day in the office VS checking it once-monthly VS yearly for taxes, etc.
Seb the goblin@lemmy.worldto
worldnews@sh.itjust.works•Norwegian crown princess's son found guilty of two counts of rapeEnglish
182·1 month agoStill better than some other countries where the more you rape, the higher the likelihood you become a *illionaire, or even a president
Seb the goblin@lemmy.worldto
Technology@lemmy.world•Google Employees Internally Share Memes About How Its AI SucksEnglish
93·2 months agoremovepaywall.com to the rescue
Pro tip: you know companies get branded shirts right? There are other companies that print/embroider them. And those companies do samples of blank shirts. Look for your local custom print shop 😉







Only within a relatively recent stretch of history, before that you only needed to pay for fancy stuff (think pyramids or castles or whatnot)