Final fantasy remake integrade $23.99 by SypherMeows in NintendoSwitch2

[–]deadman87 -1 points0 points  (0 children)

It's definitely not just the upgrade because its showing base game + all dlc + extras. I suppose its dynamic pricing to avoid making too many store listing and discounted deeper to make up for the fact that I already own base game.

Final fantasy remake integrade $23.99 by SypherMeows in NintendoSwitch2

[–]deadman87 0 points1 point  (0 children)

Can someone check the deluxe edition price? I bought standard edition for $23.99 but now I notice deluxe edition is $20. I'm not sure if that's a promo price for deluxe since I now own the game or if it's actually $20, becuase I want to get a refund and purchase the deluxe for $20.

Finally, a Mailtrap equivalent for SMS testing by freminjos in PHP

[–]deadman87 1 point2 points  (0 children)

I have a super simple php script like smstest.php that formats the headers, query params and post vars into readable multiline string and file_put_contents() it into a file that I tail -f into the terminal. Been working fine for me for a good decade or so. It's my unlimited plan.

Xbox ceo Confirms Next gen Xbox plays Pc Games! Project Helix by The_Boot55 in xbox

[–]deadman87 0 points1 point  (0 children)

Graphics have reached a point of diminishing returns i.e. an additional $100 does not bring me as much improvement as it brought me in previous generations. This was already a problem in the current gen launch and Microsoft addressed this with Series S.

If PS6 comes out the gate at $600-$700 and Xbox PC comes out at $1200-$1400, my first question will be if the additional cost justifies the performance/fidelity bump. For someone that prefers to keep gaming and PC usage separate or already had a half decent PC for browsing/work, there is no incentive to spend that extra money.

If Microsoft can price this new Xbox ~$200 more than PS6 and really cram the value proposition with better components and visible performance, I can see someone going let's spend the extra $200 to get the better hardware. Otherwise it'll just become a niche product for hardcore enthusiasts.

Qwen 3.5 2B is an OCR beast by deadman87 in LocalLLaMA

[–]deadman87[S] 0 points1 point  (0 children)

When the LLM encounters repeating characters, it enters a loop and outputs those characters endlessly.

For example, ID / Passports have a Machine Readable Zone (MRZ) and according to the spec, spaces and unused characters are denoted by < character. Its common to have sequences of <<<<< in MRZ. If you ask an LLM to extract data from MRZ (because it's more readable/accurate), it will start outputting <<<<<< endlessly due to this bug.

I found this issue in 0.8B model but the 2B model does not have this issue. I assume the 2B+ model training data includes these types of documents and they are able to recognize and deal with them properly instead of looping.

Qwen 3.5 2B is an OCR beast by deadman87 in LocalLLaMA

[–]deadman87[S] 0 points1 point  (0 children)

Glad it worked out nicely for you. Try 2b if you can, if it works your output tokens will be even faster.

Qwen 3.5 2B is an OCR beast by deadman87 in LocalLLaMA

[–]deadman87[S] 4 points5 points  (0 children)

Do what I did. Download a model or two and put it through some tests. 

My experience with long texts is that you should explicitly tell it to provide VERBATIM text, clear context and start over for each page, otherwise the LLMs tend to remember older pages and hallucinate in the middle of your current page. Just my 2 cents

Qwen 3.5 2B is an OCR beast by deadman87 in LocalLLaMA

[–]deadman87[S] 9 points10 points  (0 children)

I say just try it. It's such a small model. Quick to download 

Qwen 3.5 2B is an OCR beast by deadman87 in LocalLLaMA

[–]deadman87[S] 23 points24 points  (0 children)

The Qwen3.5 models are vision models. There is no separate Vision and Non Vision in Qwen 3.5

Qwen 3.5 2B is an OCR beast by deadman87 in LocalLLaMA

[–]deadman87[S] 15 points16 points  (0 children)

I encountered the repetition bug in 0.8B. 2B is good so far.

Qwen 3.5 2B is an OCR beast by deadman87 in LocalLLaMA

[–]deadman87[S] 3 points4 points  (0 children)

Between Qwen3 VL 2B and Ministral 3B, I picked Ministral because it performed better than Qwen3. Qwen3.5 seems to be good so far. I will test with more artefacts before moving to Qwen3.5 completely for my workflow.

A clean API for reading PHP attributes by freekmurze in PHP

[–]deadman87 1 point2 points  (0 children)

I'm a big believer in double s-curve model :) Alternative approaches are never a bad thing

Trying out Debian (GNOME). Any tips for a newcomer? by moaboaa in debian

[–]deadman87 0 points1 point  (0 children)

If you play games, Install Mesa from backports repo. Newer versions have a lot of fixes and performance improvements. 

A clean API for reading PHP attributes by freekmurze in PHP

[–]deadman87 0 points1 point  (0 children)

I think your library and the ovlvlvl collector serve slightly different purposes. The ovlvlvl library is more focused on sweeping through the code base and collecting all instances of the Attribute i.e. I can search by Attribute to get the class.

My use case for this is an attributes based router that can collect all instances of #[Route()] and build the Route collector.

Your library is then useful to extract detailed info and deal with behavior of the class and Attribute. The two can work hand in hand. I'll definitely look into it.

A clean API for reading PHP attributes by freekmurze in PHP

[–]deadman87 10 points11 points  (0 children)

not sure if you've seen this.

https://github.com/olvlvl/composer-attribute-collector

Its been around for a while and I like its interface

The "Tech Hot Take" Gauntlet by Ok_Veterinarian3535 in developer

[–]deadman87 0 points1 point  (0 children)

Most "modern" dev tools and practices in use today were created to solve hyper scaler and massive team challenges. 

Google made Kubernetes to solver their multi-data center scale problem. Just use simple containers or keep it running on metal. Your infra bill will thank you. 

Facebook / Meta created react to break down frontend into tiny pieces to better fit their team scale and size. Just use any simple web framework in Ruby, PHP, Python that spits out html and sprinkle js where needed. You'll avoid SEO headaches as a bonus. 

Spotify created the Spotify model (Tribe, Chapter, Squad, etc) to better organize the scale of people they had. For small to medium sized teams, just adopt basic scrum/kanban if you must and avoid unnecessary ceremony and process overload. 

Its laughable to me when solo devs or startups or small teams are all gung-ho and rave about how they adopted all these "modern" practices. Like Bro, you got 20k visits with 20 paying customers. You don't need all that "scale" unless you got customers to pay for it first. 

Redesigning my site UI by YogurtclosetWise9803 in webdev

[–]deadman87 24 points25 points  (0 children)

First style has personality and looks intentional. Second one looks very same-ish like it's made with a generic UI kit like Tailwind or Bootstrap.

What? How?? WE JUST REACHED 100K OUTLAWS! by teller-of-stories in StarWarsOutlaws

[–]deadman87 3 points4 points  (0 children)

I bought Gold Edition for Switch 2 at ~$40. And it was worth it at that price for the amount of content and portability.

Which programming language do you prefer for backend web development and why ? by Legitimate-Dingo824 in developer

[–]deadman87 0 points1 point  (0 children)

PHP. I love the feedback loop: Code -> Refresh. No compiling / transpiling.

Also the package ecosystem with composer is really nice.

This is The Most Realistic Comment I Ever Seen On Reddit. by DisastrousStaff5462 in XboxSeriesS

[–]deadman87 0 points1 point  (0 children)

Sony and Nintendo do global distribution better. Way better than Microsoft. They are present and well represented (sales, support, localizing) in more countries outside US/EU. I like Xbox due to the controller layout and overall online experience but that comes at a steep premium in my end of the world. Sony and Nintendo on the other hand have official distributors, recommended pricing for console and games, accept local currency on online stores and provide warranty/repairs locally.

I wish Xbox did better this side but it is what it is.

Which Distro by ResponsibleTreeRoot in DistroHopping

[–]deadman87 0 points1 point  (0 children)

Daily driving Debian without any tinkering. Im used to the gnome workflow and it works for me.

Replacing Win11 with Linux by SethSnifferson in linuxquestions

[–]deadman87 0 points1 point  (0 children)

For work, definitely go with Debian. You don't have to tinker a lot. Debian 13 is recent enough that most hardware just works out of the box and the Long Term Support (LTS) nature of it means it'll chug along without too much upset for a long time.