stevecrox

joined 7 months ago
[–] [email protected] 1 points 1 month ago* (last edited 1 month ago)

I'd actually argue Python stops people learning how to solve problems.

I love teaching juniors and have done so for 10 years but I've noticed in the last 4-5 years since Python became the popular choice at universities Graduates aren't learning anything about Static Types, Memory Management, Object Oriented Programming, Data Encapsulation, Composition, Service Oriented Architecture, etc..

I used to expect most graduates to have a mixed grounding in those concepts and would find excuses for them to work on a small UI projects. I would do this as it gets them used to solving a small problem and UI's give instant feedback. As Python became dominate university teaching language the graduates aren't spending their time learning Typescript, Angular, HTML, etc.. but instead getting overwhelmed by the concept of types.

Those concepts I want them to learn were created to help make solving problems easier and each has their strengths and weaknesses but most graduates are coming through only knowing how to lay out a small amount of procedural logic using Python and really struggling to move beyond that.

[–] [email protected] 28 points 3 months ago* (last edited 3 months ago) (2 children)

QT is a cross platform UI development framework, its goal is to look native to the platform it operates on. This video by a linux maintainer from 2014 explains its benefits over GTK, its a fun video and I don't think the issues have really changed.

Most GTK advocates will argue QT is developed by Trolltech and isn't GPL licensed so could go closed source! This argument seems to ignore open source projects use the Open Source releases of QT and if Trolltech did close source then the last open source would be maintained (much like GTK).

Personally I would avoid Flutter on the grounds its a Google owned library and Google have the attention span of a toddler.

Not helping that assessment is Google let go of the Fuschia team (which Flutter was being developed for) and seems to have let go a lot of Flutter developers.

Personally I hate web frontends as local applications. They integrate poorly on the desktop and often the JS engine has weird memory leaks

[–] [email protected] 25 points 3 months ago (1 children)

I know a couple game devs and absolutely blasted them for that take.

We have had quite a few indy devs make the point that the "Linux" bugs are generally cross platform issues and Linux users are more likely to raise a bug report and tend to raise more useful bug reports.

Which means avoiding Linux due to higher bug reports is just hiding from technical debt.

 

I have been building several react components as libraries to use as part of a bigger idea.

While writing up documentation I realised the examples I provided were Stories I had created for Storybook to test the look of the components.

The storybook MDX documentation seems to provide a nice way to document your stories.

But I am hitting an issue, ideally I would like the Storybook Sidebar/view to be embedded into my page layout (for consistency) or failing that themed to use the same colours/icons/etc..

The documentation seems out of date with Storybook 8 using a different structure and while I have tried to populate a ThemeVar object it seems several of the fields need specific unspecified input.

Has anyone done anything like this before and how well did it work for you?

 

Recently I have been trying to play my old games (Worms, Sims, Black & White, etc..) on my Steam Deck.

I created an ISO of the various CD's via the dd command, but I have noticed Crossover doesn't support ISO. I needed to mount the ISO to a location.

This worked to install the game but fails copy protection. If I connect a USB DVD drive it detects the disc and works but this isn't particularly helpful.

Does anyone know what I should be setting or doing so the game sees the ISO or ISO mount as the disc?

A lot of the games I want to play simply don't have a steam version to buy

[–] [email protected] 2 points 3 months ago (1 children)

It was a mixture of factors.

Data was to be dumped into a S3 bucket (minio), this created an event and anouther team had built an orchestrator which would do a couple of things but eventually supply an endpoint a reference to a plain/txt file for analysis.

For the Java devs they had to [modify the example camel docs.](https://camel.apache.org/manual/rest-dsl.html) and use the built in jackson library to convert the incoming object to a class. This used the default AWS S3 api to create a stream handle which fed into the OpenNLP docs. .

The Python project first hit a wall in setting up Flask. They followed the instructions and it didn't work from setup tools. The Java team had just created a new maven project from the Intelij but the same approach didn't work for the Python team using pycharm. It lost them a couple days, I helped them overcome it.

Then they hit a wall with Boto3, the team expected to stream data but Boto3 only supports downloading, there was also a complexity issue the AWS SDK in Java waa about 20 lines to setup and a single line to call, it was about 50 lines in Python. On the positive side I got to explain what all the config meant in S3.

This caused the team anouther few days of delay because the team knew I used a 350MiB Samsung TV guide to test the robustness and had to go learn about Docker volume mounting and they thought they needed a stateful kubernetes service and I had to explain why that was wrong.

Basically Python threw up a lot of additional complexity and the docs weren't as helpful as they could have been.

[–] [email protected] 2 points 3 months ago (1 children)

If you have the freedom try Typescript.

The tsx files are almost identical to jsx except for the need to define the field types your ingesting.

While thats a little extra work, it allows Visual Studio Code to perform deeper analysis and provide much more helpful contextual hints.

I grew to love JSX and tried TSX out of interest and you couldn't convince to go back to pure JS

[–] [email protected] 6 points 3 months ago* (last edited 3 months ago) (3 children)

You do, but considering the scales they process data I suspect Google would be better building Go tooling (or whatever the dominate internal language is).

A few years back I was trying to teach some graduates the importance of looking at a programming language ecosystem and selecting it based on that.

One of my comparison projects was Apache OpenNLP/Camel vs Flask/Spacy.

Spacy is the go to for NLP, I expected it to be either quicker to develop, easier to use, better results or just less resources.

I assigned Grads with Java experience Spacy and Python experience OpenNLP.

The OpenNLP guys were done first, they raved about being able to stream data into the model and how much simplier it made life.

When compared with the same corpus (Books, Team emails, corporate sharepoint, dev docs, etc..) OpenNLP would complete on 4GiB of RAM in less than a second on 0.5vCPU. Spacy needed 12GiB and was taking ~2 seconds with 2vCPU. They identified the same results...

Me and a few others ended up spending a day reading the python and trying to optimise it, clearly the juniors had done something daft, they had not.

It rather undermined my point.

[–] [email protected] 0 points 3 months ago* (last edited 3 months ago)

My expectation is whatever the solution it needs to dockerise and be really easy to deploy via docker compose or Kubernetes so people can quickly and easily set up their own.

The front end is effectively static files so I would probably choose Apache or Express (whichever gives me a smaller docker image)..

For the backend I would choose Java for Spring Boot. An Alpine image with OpenJDK and the app is tiny. Spring has a library for every kind of interface making them trivial to implement but the main reason is hibernate.

Hibernate (now Spring Data) was the first library for being able to switch out databases without having to change code (its all config). A lot of mastodon instances struggle with the resource requirements of elastic search so letting small instances use something like postgres would seem ideal.

I have noticed Go/Rust still expect you to write or manage a lot of stuff Spring gives away for free. Python is ok if your backend is really tiny but there is a lot of boilerplate in how Python libraries work so complex projects get hard to manage and I assume interacting with the fediverse will add complexity.

[–] [email protected] 2 points 4 months ago

I agree Grian shenanigans are fantastic.

I am currently working my way through Mumbo's S6 and the best episodes so far have Iskall and Grian in them.

The thing I have noticed it Mumbo isn't really pressuring himself on a build. He has just kept focus on the storage system because he is finding it fun.

I thought Grian was at his best with the barge, his episodes had a flow where he would resource, stock the bardge, do a "small" build/project and then shenanigans.

I am not sure that flow is sustainable but he was clearly having fun.

At the moment it just seems he is increasingly beating himself up on being a builder and needing to build the most epic base ever.

[–] [email protected] 25 points 4 months ago* (last edited 4 months ago) (1 children)

SpaceX are on track to launch 130 times this year. The industry competitors launch 6-12 times per year.

I suspect the higher incident rate is related, since you will need to manufacture, roll out, etc.. much more often.

The article also talks about most the incidents being in booster recovery. Only 2 Space competitors do that,

Blue Origins sub orbital booster always returned to launch site and at best managed monthly launch. This rocket hasn't launched in more than a year.

Rocket Lab perform ocean recovery but only launched 11 times last year and only recovered the booster twice.

So its hard to really compare

[–] [email protected] 2 points 4 months ago* (last edited 4 months ago)

I have listened and as the seasons go on I get increasingly worried about him. He is increasingly showing signs of burn out so clearly his flow isn't working for him.

Listen to season 7 as he talks about the back of the mansion. He is feeling self pressure to complete the back and he is getting fustrated at himself.

Its the same with the Ally, you can hear how excited he is at the start and as the season progresses anything to do with the ally he talks about like an unpleasant chore.

With the stones other hermits try to intervene to help him, his reaction there really doesn't seem a bit. It sounded a lot like the panic caused by burn out.

He clearly loves being on the SMP and his shenanigans and ideas are fantastic and clearly a lot of fun for him. I want him to stick around and think unless he learns how to break up work so he can find joy in all his builds he will loose that joy

 

I recently started watching Grian's hermit craft season playlists and watching them back to back, it feels like Grian is burning himself out as he repeats the same mistake.

TLDR; he keeps getting stuck planning huge mega builds that require so much grinding he gets stuck in procrastination cycles. He needs to break things down into small pieces (a building, tunnel, etc..) and learn to iterate towards a vision.

In each season he will quickly jump to mega scale for any project (the Tower, The Mansion, The Ally & The Entity). The issue with each project is any significant progress requires a huge amount of grinding and you see his avoidance of the main base gets worse with each season.

We do see large scale projects and the Entity and Barge actually shows the problem.

The barge started small and iteratively enlarged as the number of items increased, he then created 'big plans' schemed to get extra space and never fulfilled them. The next iteration became too much of a grind and he was clearly working hard to keep the current shop stocked.

Simialy the Entity went through quick iterations a rock, a Rock with a tree, a wheel, then it walked and he talks of his big plans at the end of the episode but he clearly started avoiding the entity because the plans became too much of a grind.

I thought he had gotten it at the end of Season 9, as he moved towards so many 'small' projects which results in a huge affect in the area.

In Season 10 he talks about taking it slow, but I really don't think he understands.

The dock was a perfect example, he was doing a lot of fishing and building a hut around the spot was a great idea and I found really interesting to watching. Building a secret vault would have been a great episode, similarly the Salmon tunnel was fantastic. Building each aspect for an episode would have been taking it slow.

You can see he is already avoiding his 'mega' build and yet again the opportunity to break stuff down was there. The bone meal farm being built and boxed in would have been a great episode, but you already know he has built a stucture and its going to hang around for months as he gets twisted up trying to design/plan a huge series of fronts and increasingly wants to avoid

 

I need help figuring out where I am going wrong or being an idiot, if people could point out where...

I have a server running Debian 12 and various docker images (Jellyfin, Home Assistant, etc...) controlled by portainer.

A consumer router assigns static Ip addresses by MAC address. The router lets me define the IP address of a primary/secondary DNS. The router registers itself with DynDNS.

I want to make this remotely accessible.

From what I have read I need to setup a reverse proxy, I have tried to follow various guides to give my server a cert for the reverse proxy but it always fails.

I figure the server needs the dyndns address to point at it but I the scripts pick up the internal IP.

How are people solving this?

[–] [email protected] 1 points 4 months ago

How would you buy it in the US? I can see any uk retailers stocking it

 

I have been waiting on Star Trek Lower Decks Season 4 to be released on Blu Ray for months, does anyone know where I can buy it?

Amazon listed it last year and it turns out that was in error and searching lists the release as April 16th and yet I can't find it in any where.

I am in the UK

[–] [email protected] 2 points 4 months ago (13 children)

While there is nothing wrong with trying something new, the point of using a franchise is to leverage the existing fanbase.

If you can't get the fanbase enthusiastic you have a problem. Since you aren't leveraging the existing fan base and the franchise will alienate some of your new target fan base.

Replying to every comment that expresses an ambivalent or pessimistic view about a new show doesn't change that. It just makes this space seem hostile to discussion.

 

Science minister Andrew Griffith took the seemingly unusual approach of trying to woo voters as his party flatlines in the polls on around 20 per cent

 

Labour has pledged more than £8bn into energy company if it wins UK General Election as Sir Keir Starmer tries to "get Putin's boot of our throat." | ITV News Wales

 

Mark Blyth, en economist who has advised the Scottish government, tore apart the economic case for Scottish independence

 

Mega-rich Tory Chancellor Jeremy Hunt was accused of being out of touch after he claimed that £100,000-a-year was a measly salary for his constituents

 

I find Maven sites look incredibly dated and I couldn't find a nice way to integrate other auto documentation tools such as MKDocs.

So I've written a series of Apache Velocity templates which integrate Bootstrap, I've tried to respect Bootstrap components and the layout/structure of Apache projects (you'll find various configurations under 'layouts').

You can apply various bootstrap themes to it to improve it dramatically.

view more: next ›