HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tyfon

3,991 karmajoined il y a 12 ans

Submissions

[untitled]

1 points·by tyfon·il y a 4 mois·0 comments

FTC wants Apple News to promote more Fox News and Breitbart stories

arstechnica.com
9 points·by tyfon·il y a 5 mois·5 comments

comments

tyfon
·il y a 4 jours·discuss
For me they are killing the goose.

WoW has become quite soulless after the changes where everyone gets the same end game equipment but you have to grind upgrade currency to improve it.

My wife and I used to play quite a bit but it doesn't really engage anymore. Perhaps we are getting too old, but we should be in the correct customer segment (mid 40 years old).

Now I have spun up a local wotlk server with player bots powered by ollama which is actually a bit fun again.
tyfon
·il y a 14 jours·discuss
This big question now is how many of them will travel back in there and potentially being stuck for months, or just swap ship if their current ship is headed there.
tyfon
·il y a 26 jours·discuss
Just use mass grave scripts[1] and enable 5 years of security updates.

[1] https://massgrave.dev/
tyfon
·le mois dernier·discuss
It's not linking banking login with government id. It is a story of the banks solving an issue with remote identification and the system working well enough that the public/government also want to use it for other things.

Being able to sign contracts, engage with the healthcare system, file taxes, read messages from the government and do general banking without having to leave the home is a massive convenience boost.

We are a high trust society where the government or the banks are not out to "get you". The majority of the banks (not by volume but by numbers) are even in a structure without any ownership of the capital except for the depositors, and most of the profit from these banks that is not used to build the capital further is handed out to customers and/or the local community.
tyfon
·il y a 2 mois·discuss
Vipps which is available in Sweden supports this system.

I know the Swedish government is also pressuring swish to integrate with vipps. So I guess you'll have this ability soon.
tyfon
·il y a 3 mois·discuss
I think the biggest advantage for me with ollama is the ability to "hotswap" models with different utility instead of restarting the server with different models combined with the simple "ollama pull model". In other words, it has been quite convenient.

Due to this post I had to search a bit and it seems that llama.cpp recently got router support[1], so I need to have a look at this.

My main use for this is a discord bot where I have different models for different features like replying to messages with images/video or pure text, and non reply generation of sentiment and image descriptions. These all perform best with different models and it has been very convenient for the server to just swap in and out models on request.

[1] https://huggingface.co/blog/ggml-org/model-management-in-lla...
tyfon
·il y a 3 mois·discuss
There are a few countries just below as well like Norway with about 98% renewables in 2024 [1]. The gas power plant is mostly up north powering the gas compressors that fill LNG ships headed for Europe and the coal I think is for Svalbard but that mine/plant closed in 2025 [2].

[1] https://www.nve.no/energi/energisystem/energibruk/stroemdekl...

[2] https://www.nrk.no/tromsogfinnmark/norges-siste-kullgruve-pa...
tyfon
·il y a 4 mois·discuss
It would be really nice to have an option to not do this since a ton of companies deny VMs in their group policies.
tyfon
·il y a 5 mois·discuss
I didn't really understand the performance table until I saw the top ones were 8B models.

But 5 seconds / token is quite slow yeah. I guess this is for low ram machines? I'm pretty sure my 5950x with 128 gb ram can run this faster on the CPU with some layers / prefill on the 3060 gpu I have.

I also see that they claim the process is compute bound at 2 seconds/token, but that doesn't seem correct with a 3090?
tyfon
·il y a 5 mois·discuss
I was using gemini antigravity in opencode a few weeks ago before they started banning everyone for that and I got into the habit of writing "do x, then wait for instructions".

That helped quite a bit but it would still go off on it's own from time to time.
tyfon
·il y a 5 mois·discuss
My pro account also got banned yesterday, but I didn't use any clawd / molt stuff like the OP. I've only been using opencode.

Seems like only openai are willing to let people use their subscriptions with 3rd party tools.
tyfon
·il y a 5 mois·discuss
I'm having a hard time parsing the openai website.

Anyone know if it is possible to use this model with opencode with the plus subscription?
tyfon
·il y a 6 mois·discuss
I've been trying opencode a bit with gemini pro (and claude via those) with a rust project, and I have a push pre-hook to cargo check the code.

The amount of times I have to "yell" at the llm for adding #[allow] statements to silence the linter instead of fixing the code is crazy and when I point it out they go "Oops, you caught me, let me fix it the proper way".

So the tests don't necessarily make them produce proper code.
tyfon
·il y a 6 mois·discuss
That actually worked since I subscribed a few days ago specifically to try open code.

"Your subscription has been canceled and your refund is on the way. Please allow 5-10 business days for the funds to appear in your account."
tyfon
·il y a 6 mois·discuss
My PS5 can do 4k/120 hz with VRR support, not sure about the others.
tyfon
·il y a 8 mois·discuss
That is correct :)

Edit: I see from the sister post that it is actually llvm and not rust, so I'm half barking up the wrong tree. But somehow this is not an issue with gcc and friends.
tyfon
·il y a 8 mois·discuss
The system is actually running fine standalone since I have been able to avoid rust software.

As to why it should cater to it, it's more that there is no need to remove something that already works just to remove it.

It is possible to compile rustc on another system so it supports i586 and below. Just a small change in the command line options. And it doesn't degrade the newer systems.

I have plenty of faster machines, I just enjoy not throwing things away or making odd systems work. It's called having fun :)
tyfon
·il y a 8 mois·discuss
Yes, sorry I remembered incorrectly. The rust compiler claims to be i686 and the CPU is i686 too, but the rust compiler is using Pentium 4 only instructions so it doesn't actually work for i686.
tyfon
·il y a 8 mois·discuss
I have a dual pentium pro 200 that runs gentoo and openbsd, but rust doesn't ship i586 binaries, only i686+. So I would need to compile on a separate computer to use any software that is using rust.

There is already an initrd package tool I can't use since it is rust based, but I don't use initrd on that machine so it is not a problem so far.

The computer runs modern linux just fine, I just wish the rust team would at least release an "i386" boostrap binary that actually works on all i386 like all of the other compilers.

"We don't care about retro computers" is not a good argument imho, especially when there is an easy fix. It was the same when the Xorg project patched out support for RAMDAC and obsoleted a bunch of drivers instead of fixing it easily. I had to fix the S3 driver myself to be able to use my S3 trio 64v+ with a new Xorg server.

/rant off
tyfon
·il y a 8 mois·discuss
In Europe we have the PSD2 open banking [1] directive which essentially gives developers a standard api access to banking operations on behalf of a user.

It is a requirement for banks to implement this and the FSA will be on your neck if you are not compliant with the standard.

[1] https://finance.ec.europa.eu/regulation-and-supervision/fina...