whs's recent activity
-
Comment on Denuvo DRM has been cirmumvented using hypervisor based bypass in ~games
-
Comment on Can we talk about rice cookers? in ~food
whs Link ParentAdam Ragusea did a video on this. I watched it long ago and what I remembered was that in some cultures rice is not safe to eat without washing it first. Also the fat in the rice grains will go...Adam Ragusea did a video on this. I watched it long ago and what I remembered was that in some cultures rice is not safe to eat without washing it first. Also the fat in the rice grains will go stale after exposure to air, so if you buy a small amount of rice and it is vacuum sealed your rice is of higher quality, while in places that buy large amount of rice that are not vacuum sealed will want to wash the smell off. (In Thailand the most common size for rice is 5kg non vacuum packed, while rice I found in a supermarket in Taiwan comes in 1kg bag vacuum sealed)
-
Comment on I'm glad Hideo Kojima went into games instead of directing movies in ~games
whs Link ParentI'd second the social strand feature is very important to the game's experience. In DS1 there's delivery to the wind farm early on in the game. The forest in front of the wind farm is infested...I'd second the social strand feature is very important to the game's experience.
In DS1 there's delivery to the wind farm early on in the game. The forest in front of the wind farm is infested with BTs and you'll need to sneak around. Once you connected the wind farm to the chiral network now you'll see people putting 👻 signs around BT dense area making the return trip easier to plot around.
Then there's a quest that asks you to go over the mountain to deliver to the next city. The mountain is also BT infested so you can't really use a vehicle. Once you're there I think the next quest would be a chilling one, instead it just throws you into a boss fight with no warning. I'm not equipped for a boss fight but you'll have ghosts of other players throwing gears at you (if you're offline they just unnamed ghosts) after that fight I went back to the boss area and throw down two loads of gear just for the next poor soul even though it looked like I'm just litterring the ground
-
Comment on Android to debut "advanced flow" for sideloading unverified applications in ~tech
whs Link ParentApple also does that for installing profiles. If you aren't at your usual location (eg. Home) you'll need to wait 4 hours. The attacks they're trying to prevent are real and prevalent in Thailand....Apple also does that for installing profiles. If you aren't at your usual location (eg. Home) you'll need to wait 4 hours.
The attacks they're trying to prevent are real and prevalent in Thailand. Either it will be a malicious phishing link sent via SMS (eg. There's something wrong with your account, tax refund, etc.) or a phone call from authority that tells you to contact the authority using a specific app which of course is a fake app.
Personally, I wish it's like Nintendo DS custom firmware. Open the battery tray, there's an electrical contact in one of the screw hole with warranty sticker. While flashing CFW you need to keep the contact bridged with a flathead screwdriver. I heard ChromeOS machines also require unscrewing something inside the machine. No need to wait for arbitrary time yet nobody will accidentally do it
-
Comment on What are people using instead of VS Code? in ~comp
whs Link ParentI find VS Code's AI internal implementation quite interesting even if the UI push it in your face. The Copilot UI is actually not that coupled with GitHub Copilot (although parts of it still is -...I find VS Code's AI internal implementation quite interesting even if the UI push it in your face.
The Copilot UI is actually not that coupled with GitHub Copilot (although parts of it still is - they often said in the docs that they will work on remove that). Internally, VSCode has a "Language Model Chat Provider API" which Copilot is one of them. Many other providers do provide alternative provider implementation (and Copilot allow for custom API key as well), so you can switch to your chosen provider.
There is also a Language Model API, which allow extensions to submit request to the provider, so that any extension you install in VSCode can utilize your LLM provider without providing API keys to every extensions. Of course, there are people who built an OpenAI/Anthropic-compatible API server in VSCode so that you can use in any LLM tools. I tried and it seems that you do get the Copilot billing for it (eg. GPT 4o is unlimited even when using the emulated API outside of VSCode).
-
Comment on Leon S. Kennedy is a car salesman now in ~games
whs LinkMy favorite YouTuber remarked that almost every single vehicle (before RE9) that Leon has ridden on didn't end well. And then they just want him to be a car salesman...My favorite YouTuber remarked that almost every single vehicle (before RE9) that Leon has ridden on didn't end well. And then they just want him to be a car salesman...
-
Comment on Is it worthwhile to run local LLMs for coding today? in ~comp
whs Link ParentI'd like to say I don't know much about running models locally. I'm just recently got past the Ollama stage. A tips I'd recommend is that you can add your hardware to HuggingFace which on GGUF...I'd like to say I don't know much about running models locally. I'm just recently got past the Ollama stage.
A tips I'd recommend is that you can add your hardware to HuggingFace which on GGUF model pages it will show whether you can load that specific model. Although loading is just the first step and running it with cache & context window & other workloads (eg. desktop GUI) you'd need to add your own safety margin.
-
Comment on Is it worthwhile to run local LLMs for coding today? in ~comp
whs LinkI went on this route, and even buying a RTX 5090, and I'd say I'm nowhere near usable if you don't have the budget for two of them and probably 128GB memory, all that in in one machine. That being...I went on this route, and even buying a RTX 5090, and I'd say I'm nowhere near usable if you don't have the budget for two of them and probably 128GB memory, all that in in one machine. That being said, people reported some success on Mac Studio's unified memory but due to the slower memory bandwidth it will be slower than proper NVIDIA setup.
The reason this doesn't work is:
- You can test a lot of open weight models on OpenRouter. I'd say Qwen3.5 9B is quite good for getting non-coding tasks done (like querying), for coding Qwen Coder is probably the best model you can run with a single RTX 3090 but it is nowhere near GLM-4.7 (you could point Claude Code to Qwen Coder but it's not as agentic as it should be).
- You need a LOT of VRAM to get the model to load. The top open weight models today, GLM-4.7, Kimi K2.5, MiniMax M2.5, etc. are not possible to be loaded on a single gaming GPU at all.
- I think there are tricks about MoE models that you'd only load specific experts to the GPU, but you still need enough RAM for it (or you can tolerate if it loads from your SSD - I tried HDD and it takes over 5 min to load Gemma3), and it requires some tuning with your LLM runtime.
- There are quantized models that may fit in to consumer GPU, but it will be significantly watered down. Q4, the common variant to run most models on consumer GPUs is about 10% loss.
- Not only you need the VRAM to load model, but you also need RAM to support large context window. I'm not sure if you need VRAM or RAM, because at this point I already have exhausted both of them on my gaming PC. I was planning to get 128GB RAM, but with XMP and doubling memory cost I don't think I'd be doing that any time soon. Currently I think my max context window with Gemma3 27B is about 50-60k compared to Claude and Qwen3.5's max context window of ~200k.
That being said, that one time I used Qwen Coder locally it was the 2nd fastest coding model I've ever seen, only beaten by Copilot's GPT4o (which I suspect that Microsoft probably bought provisioned throughput).
-
Comment on Motorola and GrapheneOS Foundation partnership announced in ~tech
whs LinkI wonder how Google Play certifications process will this phone needs, and also which apps (including Google's) will be preloaded. This could be the first bloatware-free phone with optional Google...I wonder how Google Play certifications process will this phone needs, and also which apps (including Google's) will be preloaded.
This could be the first bloatware-free phone with optional Google Play, zero other Google Apps and no Meta (Facebook) apps. From a previous court case in Europe, Google says they will provide Google Play for a premium if the OEM doesn't want other preloaded Google Apps, but I don't think there is any takers. (Also since you don't preload Google's Chrome, perhaps revenue sharing from ads may be impacted). I suppose Motorola could just push most of the OS development cost to GrapheneOS Foundation to offset the cost.
I would not be surprised if the phone is sold at a premium on top of the Google Play version of the phone, which you could say is the price you pay for privacy. But the vocal group in /r/android would only want a mid/budget range phone without this premium...
-
Comment on What games have you been playing, and what's your opinion on them? in ~games
whs LinkAbout to finish Trails Beyond the Horizon. I'd say after Act 2 this is one of the best Trails in a long while, easily better than CS4. Hitman is on sale currently on Steam, I think there was a...About to finish Trails Beyond the Horizon. I'd say after Act 2 this is one of the best Trails in a long while, easily better than CS4.
Hitman is on sale currently on Steam, I think there was a recent thread saying that this game is easily one of the best game this decade. A Tildes member recommended me that since last month, cross save is in and I can now restore progress from the original game. I don't know why I miss some map achievements though, and I was grinding the first two maps back before the sale.
Finally I've found StarCraft 2 coop relaxing and I try to get a game in daily. I can manage brutal fine and probably can solo it on some commanders, but nowadays I play on casual which give you damage/tank bonus so you can yolo more. If you get matched with a partner playing on hard it's like smurfing.
-
Comment on What games have you been playing, and what's your opinion on them? in ~games
whs LinkI'm playing Trails Beyond the Horizon. I'd say its prologue and Chapter 1 is not good, especially that they want me to patrol all of Edith several times. I'd say the story start picking up at...I'm playing Trails Beyond the Horizon. I'd say its prologue and Chapter 1 is not good, especially that they want me to patrol all of Edith several times. I'd say the story start picking up at Rean/Kevin's route at the end of Chapter 2 and then it only get more interesting from there.
-
Comment on What's a reasonable amount of time to spend on an RPG campaign? in ~games
whs LinkI think there's open world games like Fallout, Grand Theft Auto and Horizon (Zero Dawn/Forbidden West), which you could postpone the story for side quests as much as you wanted and you'll get...I think there's open world games like Fallout, Grand Theft Auto and Horizon (Zero Dawn/Forbidden West), which you could postpone the story for side quests as much as you wanted and you'll get bored at some point.
Then there's Pokemon (I haven't play any games past Emerald) and Death Stranding, where it's an open world but they put unlocks (esp. new map area) on the main quest, so you'd just need to get to the levels you wanted (infrastructure built, in case of Death Stranding) and move on with the main quest.
Finally there are railroaded RPG like Shadowrun games (from Harebrained), Trails (I'm playing!), and I haven't played Expedition 33 and Baldur's Gate but I'd assume they're in this category, where it's not a true open world game (you can't move to other areas freely or they may be void of content)
Personally, I play most of these games because they are narrative driven, and the story make you wonder what will happen next. The moment their narrative no longer interest me I immediately lose interest. This happen in Horizon Forbidden West (the middle part of the game feels like a filler), and Trails Beyond the Horizon's opening (The story starts picks up in Chapter 2)
As for the time, I suppose my play game in all these games are all about 60-100 hours so I suppose that is what the game studios target for. Like, there are too much times where I finish the game at exactly 60 hours...
-
Comment on Diablo | Warlock class cinematic trailer - New class for Diablo II, Immortal, and IV in ~games
whs Link ParentI really like D4, it's a good game to mindlessly play after work. That said, if you want a harder game that is not a series of pinatas smashes this would never be it.I really like D4, it's a good game to mindlessly play after work. That said, if you want a harder game that is not a series of pinatas smashes this would never be it.
-
Comment on 'Right-to-compute' laws may be coming to your state this year in ~comp
whs LinkAnd I thought the name would refer to rights to bootloader unlocking - you bought your own computing device you should be able to run any computing task you want on it.And I thought the name would refer to rights to bootloader unlocking - you bought your own computing device you should be able to run any computing task you want on it.
-
Comment on What programming/technical projects have you been working on? in ~comp
whs LinkI have too much projects and too little time with two long games (soon three as a Tilders told me Hitman is adding cross progression) I intend to play in Q1. This week I added user verification...I have too much projects and too little time with two long games (soon three as a Tilders told me Hitman is adding cross progression) I intend to play in Q1.
This week I added user verification spoofing to KeepassDX, which I already posted a PR. I also added AAGUID spoofing but that will need to be tested. The thing with passkeys is that websites can ask a passkey provider (eg. password manager) to perform a "user verification". Most user friendly ones like OS builtins will perform a fingerprint check or Windows Hello, so many sites interpret this as two factor verification (hardware protected key + whatever used to unlock the key). However, it doesn't make sense to unlock an already unlocked password manager. Also, why do software on our computer listen to random instructions from the internet anyway. So, KeepassXC got a huge drama where they say they will not implement it, and a Keepass committee member says you might be blocked.
KeepassDX's author think they can find a better common ground, so in their implementation you can either be 100% specs compliant where passkey request will requires you to unlock an already unlocked database, or you can disable verification which, if the website "requires" it, the password manager will block you from progressing at all. So, I think it is against open source spirit that such user hostile features are implemented, and I added a new "spoofing" option where if you disable verification, it will still says verification was performed.
Of course the author is not happy to merge it in, so I was planning to add my own CI and release a binary. But yeah, maybe sometimes.
Another project two years in the making is the port of libthai to Rust that I was doing around the new year vacation. libthai is a dependency of Pango, which is a dependency of GTK used by Linux apps. It depends on libdatrie from the same author, which I successfully ported it to Rust (I didn't like the Rust-side API too much, but at least it's working...). However, Rust doesn't have cdylib versioning and I believe it blocked some application compilation, which I have no clue how to debug. As for porting libthai, most of it are pretty easy. I tried comparing Claude Agent (in Jetbrains) output to mine, and I think most of it can be ported by LLM (I did not use LLM in the actual code, only for consulting and code review).
The hardest part in the port is the Thai word segmentation algorithm. The code itself is quite hard to read with pointer arithmetic instead of arrays. I asked the original author and he says that some of it is because that was the only way to write optimized code that would not rely on compiler optimizations, as back in the day some compilers are more primitive. From my understanding, the code use two linked list that acted as a priority queue and a recycle pool. Porting that code 1-1 is doable, as I have done that, but it was impossible to get rid of all
unsafewithout changing the data structure. Rust'sstd::collections::LinkedListis unusable in the real world - you can't even remove object in the middle that you already have, which is the point of using LinkedList over a Vec. And changing to other data structure (like a Vec or Heap) requires understanding the algorithm in full, which also calls to datrie data structure.Sometimes I ask myself why not just make this or Pango a glue to Unicode's ICU, which I believe Qt does use. I searched around, and it seems that in early 2000 IBM did ask Pango about contributing such a patch, but did not receive a reply. libthai's author told me that it might be because Pango's original design was already well thought out to support complicated languages already, and people back then view Pango as corporate-backed open source.
A few weeks ago I was doing the port in a maid cafe. Not exactly the best place to code since the point of such cafe is to interact with the cast members. They asked what are you coding, and I realize they're literally staring at output of word breaking algorithms all the time, yet, no laypeople would realize it is such a complicated piece of code. And yet, you either use the Thai word breaking written by non-Thai people (ICU, OS native, etc.), or libthai which is maintained by a single person in his late 40, who wrote it almost 30 years ago in a team that was demolished almost over 20 years ago.
-
Comment on What programming/technical projects have you been working on? in ~comp
whs Link ParentMy Zojirushi rice cooker pot had a scratch. Zojirushi Thailand's website listed several spare parts. However, the pot is listed as sold out. We called them and they say they'll contact us once it...My Zojirushi rice cooker pot had a scratch. Zojirushi Thailand's website listed several spare parts. However, the pot is listed as sold out. We called them and they say they'll contact us once it is in stock as they needed to import the pot. Two months later, it is still not in stock saying shipment delayed. Three months later it is back in stock and we ordered it.
The box says "Made in Thailand"
-
Comment on As Hitman 3 turns five years old, we surely have enough hindsight to declare it – this is one of the greatest of all time, right? in ~games
whs LinkI really wanted to finish Hitman 3, but I played in Game Pass and they do not allow cross-platform transfer of progress in the cloud, so I'd be forced to start over. I know Peacock can be used,...I really wanted to finish Hitman 3, but I played in Game Pass and they do not allow cross-platform transfer of progress in the cloud, so I'd be forced to start over. I know Peacock can be used, but without grinding to unlock items there's no point in playing it for me as I play for the progression and not the improv.
Freedom Fighters gave me months long burn out, I'm not going to do that ever again.a
-
Comment on Humble Choice - January 2026 in ~games
whs LinkI just realize it's January and I still haven't renew my yearly deal (I thought it'd be on sales around Christmas, but apparently it was on Black Friday) Oh well I probably have like 4 months left...I just realize it's January and I still haven't renew my yearly deal (I thought it'd be on sales around Christmas, but apparently it was on Black Friday)
Oh well I probably have like 4 months left from skippings
-
Comment on <deleted topic> in ~tech
whs Link ParentFrom the last outage I think the problem is Cloudflare refused to be a "done" product. Instead, they needed to upsell new products and added bot management, WAF, access, among others. Some of...From the last outage I think the problem is Cloudflare refused to be a "done" product. Instead, they needed to upsell new products and added bot management, WAF, access, among others. Some of those products run in the critical request path so even if you haven't purchased them or opt into them you're still getting their outages on the shared infrastructure.
The last outage is a bad bot management configuration, a product that costs a lot extra on top of the enterprise plan taking down all plans.
-
Comment on Tips for becoming a tea person in ~food
whs Link ParentUpdate: My dad replaced it with the second generation of the device after the same vendor said they no longer have spare parts for the first one. This version looks a lot smaller than the first...Update: My dad replaced it with the second generation of the device after the same vendor said they no longer have spare parts for the first one.
This version looks a lot smaller than the first one, fixed some of its issues and added some new ones.
The reservoir seems to have the same capacity, although it look much smaller. When you start the machine, it keep pumping water into the upper bowl until it runs dry. They removed the timer, so you're in control of the steep time now - but you'll have to steep it yourself by pushing a button. The water seems to be still at 75C hot. Finally, they added a hot plate at the bottom pot. Since it start warming when the machine start, I assume that if you forgot to steep not only you get worse tea but you will also risk breaking the bottom pot.
I suppose this is a promise that, unlike when cheats goes into/under the kernel and anticheats has to become kernel mode, Denovo will not become kernel mode anti tamper.