flubba86

joined 1 year ago
[–] flubba86@lemmy.world 1 points 6 minutes ago* (last edited 46 seconds ago)

I'm also a landmark graduate, and I can confirm it is a life changing experience.

Doing the forum allowed me to realise I have so much wasted potential, I didn't have to be working minimum wage repairing laptops at the local computer store, I enrolled at University in a IT degree with the goal to be a software engineer. Doing the forum gave me the confidence to tell my boss I'm quitting and going to be a full time student and how that's a good thing for him. The forum gave me the confidence to talk honestly with my wife about what I want from our marriage, instead of me constantly trying to appease her wants. It caused me to have a real, meaningful, deep conversation with my mother, for the first time in 20 years. I was able to tell her frankly that her narcissistic tendencies in my formative years caused me to suffer from debilitating chronic anxiety in my 20s, but it's okay because she did the best she could, and I'm now getting better.

I went on to do the Self-Expression and Leadership course, and later the Advanced course. My wife did the same. I eventually stopped because of the endless and relentless hard-sell routines to get all your friends and family to come and sign up. They have to realise that's off-putting to most people, but it's their only marketing avenue so it must work reasonably well.

[–] flubba86@lemmy.world 1 points 4 days ago* (last edited 4 days ago)
  • Ball rolls about two feet and stops just before it rolls off the table.
  • White ball, polished surface, shiny
  • Male
  • Tall person, slender build, light brown hair, clean shaven, white button-up collared shirt, blue jeans.
  • Ball was a bit bigger than a billiard ball, but smaller than a baseball. Smooth, and heavy. Like a white cricket ball but with no seams.
  • It was one of those large common fold-up trestle tables but with a white table cloth on it.
  • I knew all those without having to think about it, or choose afterwards.

To me the imagery seemed like a cheesy "how to push a ball" educational video with a paid actor to demonstrate how to push the ball in the correct manner.

[–] flubba86@lemmy.world 9 points 5 days ago* (last edited 3 hours ago)

How long does it take for the new features in Forgejo to appear in Codeberg? I suppose it's possible they're already there.

Edit: Codeberg is still on v8.0.3-53, but code.forgejo.org is on v9.0.

Edit2: Codeberg is now on 9.0 too.

[–] flubba86@lemmy.world 3 points 5 days ago

Motorola (technically owned by Lenovo now, but even some of the Lenovo phones are great).

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

I have this one. It's the best Android calculator I've used.

I love the widget feature. You can add a whole calculator to your home screen, I have it taking up my second page, so whenever I need a calculator I swipe across once and it's there.

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

As someone who went from being miserable running a pizza kitchen, to my dream job of being a software engineer, I can't fathom how anyone would want to go the opposite direction. Everyone has different preferences I suppose.

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

Don't forget to enable himem.sys

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

For some reason it never occurred to me to check if others online were sharing their own bad experience of the canonical recruitment process. That would have lessened the impact a bit at the time if I knew it wasn't just me.

I was going through two other recruitment processes at the same time, so I didn't stop too long to think about it.

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

I'm in Australia, not showing up for me.

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

Yep, perfectly average.

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

Yep, this is the reason. I have many different identity key files in my ~/.ssh folder, and for some reason ssh always tries all of those first, then exhausts the login tries and doesn't ask for a password.

I have the same problem when I specify a specific private key file with -i ./path/to/priv.key. If that key is different than the ones in my .ssh folder, it will use all those first before the specified one, and often exhausts login attempts giving a very hard to diagnose login failure. In that case I need -o IdentitiesOnly yes option to tell ssh to only use the one I specified.

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

I had the same experience with Canonical. They advertise hundreds of jobs in LinkedIn, in every major city around the world.

I applied for one that matched my skillset well, and the recruiter was enthusiastic about my application.

After my application was accepted, and passed the first round of scrutiny, they wanted a long and detailed cover letter answering some very specific and personal questions about your education and career. Eg. "How would your friends describe you in High School?" and "What was your least favourite subject in high school?". Man, high school was 20 years ago, how is that relevant? And weird stuff like "how can Canonical become a global leader in Software and compete against Microsoft, Apple, and Google?". I'm a senior software engineer, not a CEO.

I did a whole series of tests, did their online exam and weird online IQ test thing. I passed them all with very good results. Then suddenly got the rejection letter out of nowhere.

I don't think they actually want to recruit people. They have no budget to put on new software engineers. They just want to advertise hundreds of jobs on Linkedin and send candidates through meaningless hoops for weeks to make it look like they're recruiting.

 

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 ›