flubba86

joined 1 year ago
[–] flubba86@lemmy.world 5 points 2 days ago (1 children)

I've been full time writing python professionally since 2015. You get used to it. It starts to just make sense and feel normal. Then when you move to a different language environment you wonder why their tooling doesn't use a virtualenv.

[–] flubba86@lemmy.world 8 points 2 days ago* (last edited 2 days ago) (1 children)

I like the idea of uv, but I hate the name. Libuv is already a very popular C library, and used in everything from NodeJS to Julia to Python (through the popular uvloop module). Every time I see someone mention uv I get confused and think they're talking about uvloop until I remember the Astral project, and then reconfirm to myself how much I disapprove of their name choice.

[–] flubba86@lemmy.world 6 points 2 days ago

In Australia our eggs are kept in the refrigerated section in the supermarket (usually near the cheese and butter, because everyone knows eggs are dairy), and we've always put them in the fridge at home, so I guess they wash the protective coating off here too.

[–] flubba86@lemmy.world 4 points 1 week ago

Dammit, now you've mentioned it, I'm going to have to watch every episode again for the 11th time.

[–] flubba86@lemmy.world 24 points 1 week ago

Nobody yet has mentioned the obvious solution. Get a wireless mouse that doesn't use bluetooth. There's lots of different varieties, but my favourite is the Logitech G304.

[–] flubba86@lemmy.world 2 points 1 week ago

Nice job, well done.

[–] flubba86@lemmy.world 2 points 1 week ago* (last edited 1 week ago)

+1 for Signal. It's already on my phone, and already on my PC and laptop. It is a simple Flatpak install on Linux. It's end-to-end encrypted. I use that for one-off notes and files between my phone and my PC or between my laptop and PC.

For notes and small files that I know I'll want to save to reference at another time, I put them in my KeePassXC database because that's already set to sync between devices.

[–] flubba86@lemmy.world 6 points 1 week ago* (last edited 1 week ago) (1 children)

That's so true. I studied Ba. Information Technology for two years in 2004-2005 and dropped out due to family reasons, then I went back 10 years later and did Ba. Software Engineering in 2013-2016.

In both instances, it was clear about half those enrolled in the programme were only in it for the money, you could tell that some people were just not excited about software. They were the ones who had dropped out by the end of first year.

The other lot were those who did find it exciting, but severely underestimated the difficulty of the discipline. These were the kind of people who have can edit game config files to add a bunch of mods to Skyrim, they consider themselves a tech wiz want to study to be a game developer. But they barely pass intro to Web programming with html and JS in the first year and fail the first oracle database course in second year. I had some good friends who failed out hard in second year of software engineering for that reason.

[–] flubba86@lemmy.world 8 points 1 week ago (3 children)

I agree with your comment in general, but it does depend entirely on the context and the situation. Eg, at work, you can't just ask someone out. That's a sure fire way to end up in front of HR.

[–] flubba86@lemmy.world 24 points 1 week ago (2 children)

It's certainly a bad sign if you leave the interview and you're not sure if the job is for writing PHP or pleasuring his wife.

[–] flubba86@lemmy.world 70 points 2 weeks ago (3 children)

Dude, it's common knowledge that NSA has contributed significant portions of (security related) code to the kernel. No tin foil hat required.

[–] flubba86@lemmy.world 5 points 2 weeks ago (2 children)

Yes, that's the theory, but it also has the side effect of making banks richer, because all the money that would be flowing out inflating the economy is now flowing into the banks inflating their stores.

 

Firstly, I need to mention I'm coming back to .Net for the first time in more than 10 years. Last time I used .Net was on a very old .Net Framework 4 ASP.NET commercial fast food ordering application in 2013. Since then I've been working with Environmental Scientists, researchers, and academics, using exclusively Python (Django, Flask, FastAPI, etc) for the last 10 years.

This new project I'm tasked with is a custom content publishing platform, so my first thought is obviously a CMS for the content. I feel that Headless CMS products are the go-to these days, and that fits well with our needs because it is the authoring/admin side that the customer is most interested in. The frontend, or "content consumption" side of things is a custom scientific data visualizer we are building in parallel.

My team has been given a MS Azure Cloud subscription to use, and we want to take advantage of as many "cloud-native" approaches as we can. Eg, using Azure Active Directory (AAD) for SSO, using Azure Blob storage for files, Azure SQL for DB, etc. For that reason, we have decided to use .Net to develop this CMS (plus, one of my guys has 5 years experience in .Net, so we don't want that to go to waste).

There are so many free open-source .Net CMS projects floating around that it should be pretty easy to pick one to use as a base to build upon. But it is proving to be a bit harder to choose than I thought. This is the wish list we are looking for:

  • Free and Open-Source, with permissive licence
  • Self-hosted, ie. not a SaaS
  • Cross-platform, with dotNet6 or dotNet7
  • Needs custom entity types, and entity type instances (we are publishing data types, not Posts and Pages).
  • Customizable content authoring pages for the custom entity types
  • Admin UI written in VueJS or ReactJS
  • Access the content via an Open API
  • Integration with AAD SSO (and bonus if we can use any SAML or OAuth or OIDC Auth)
  • Different user roles (Admin, Author, Reviewer)
  • Use other cloud-native integrations where possible
  • Workflow steps (Draft, Submit, Review, Approve, Publish, Revoke, etc)
  • Content versioning, change tracking
  • Activity auditing

I know this is a pipedream to find one tool that could do all of that out of the box. Back in my Uni days I would have immediately reached for Drupal, but that is PHP, we prefer to not use that anymore. I thought I found the perfect tool when I came across Cofoundry, it ticks a surprisingly large number of those wishlist boxes. The main reasons I am hesitant to go with Cofoundry are:

  • It is a project from 2017. It has continued to be updated, but not very often since 2018. It was ported from .Net Core to dotNet6 back in 2021, but nothing since then.
  • It uses Angular 1 for the JS side of the admin pages (not even Angular 2!)
  • They are very tightly tied into using MS SQL Server for the db with a bunch of custom MS TSQL stored procedures, and using other MS SQL Server-specific features.

I've looked at a bunch of others, but they tend to fall into the camp of SaaS offerings that are focused on publishing Posts and Pages, and not much else, or others that are hobby projects with low user base, and haven't been updated in the last 4 years.

Is there anything I'm missing? I'm looking for something a lot like Cofoundry, but more up to date, not so tightly tied to MSSQL Server, and uses ReactJS or VueJS for the Admin/Authoring pages.

view more: next ›