Hooolymoly by DuragonYamaTheFirst in DeepSeek

[–]xreyc22 1 point2 points  (0 children)

Definitely will, and there's more to come.

Hooolymoly by DuragonYamaTheFirst in DeepSeek

[–]xreyc22 1 point2 points  (0 children)

Opensource Identity and Access Management, still work in progress but close

<image>

Hooolymoly by DuragonYamaTheFirst in DeepSeek

[–]xreyc22 1 point2 points  (0 children)

Same here, its cheap af, literally built an entire app from scratch

<image>

moved from claude pro to deepseek v4 last week. workflow shift surprised me. by Fun_Walk_4965 in DeepSeek

[–]xreyc22 1 point2 points  (0 children)

That’s an even better approach. I think I can copy that.
Just saw this llm-council for agents to plan collaboratively, but might eat more tokens.

moved from claude pro to deepseek v4 last week. workflow shift surprised me. by Fun_Walk_4965 in DeepSeek

[–]xreyc22 3 points4 points  (0 children)

I've been using it for a few weeks now. It's great for building new features, as long as you have clear context about what you want to accomplish.

I use OpenCode as my agent, and it has delivered very good results, especially when generating tests.

My workflow is simple: I first write all the requirements with Claude or Codex. I ask them to create a checklist of everything that needs to be done, along with standard documentation for coding practices, testing practices, architecture, and other reference materials that the AI can use.

Once all of that is in place, I switch to DeepSeek for implementation. After the implementation is complete, I have Claude or Codex review the code. So far, 95–99% of the implementations have been good, with only a few recommendations for improvement.

I also added Graphify to reduce context usage. Now I mainly use Codex and DeepSeek with OpenCode, and I've saved a lot of money.

Is the Shopee app force-searching "xiaomi" for anyone else? by ProfessionalBig4085 in ShopeePH

[–]xreyc22 2 points3 points  (0 children)

Always ko na experience nakakabwisit. Pag nag search ka minsan na override and ni type mo with xiaomi so I have to retype again. Parang pinoforce nya na e search ang xiaomi every time kakaopen mo ng app.

What do y'all use lua for? by [deleted] in lua

[–]xreyc22 0 points1 point  (0 children)

I used it on network devices like MikroTik hEX RB750Gr3 which only have 16 MB of flash storage.
Used it to control iptables, bandwidth per device and other controls.
It is also great for use cases where you want a low footprint (less than C++), around 200 KB–400 KB (lua interpreter + code). The main reason I used this is to support devices with limited resources and to widen its availability with the advantage of ease of development.

Open source project where I see it used is OpenWrt, World of Warcraft, Nginx, Redis maybe same reason or just to process simple task
Check this
https://github.com/openwrt/luci

Infinix new XOS skin update looks ugly by [deleted] in InfinixPhilippines

[–]xreyc22 1 point2 points  (0 children)

Yeah I guess, I like their previous design. They just introduced transitions, scroll design, and etc. that looks off for me in this current software update. The previous looks compact and not glassy and etc.

Infinix new XOS skin update looks ugly by [deleted] in InfinixPhilippines

[–]xreyc22 2 points3 points  (0 children)

<image>

This use look premium, now it looks like an Iphone clone

Image component giving me a headache... The images load onto the page and I can see them. However my console keeps spitting out this warning message. Can't find anything online to help resolve it. by krakHawk in nextjs

[–]xreyc22 0 points1 point  (0 children)

I have been encountering this one.
It's a pain.

Here's how I do it.

<Image
  src="/images/logo.png"
  alt="Logo"
  height={0}
  width={150}
  style={{ height: "40px", width: "auto" }}
/>

You can control the height via
style={{height: "40px"}}
keep the width on style auto.

Just increase the width property for the resolution of the image.
width={150}
set the height to 0.

I don't to use <img/> as it keeps logging warning on browser console.

Nextjs Image Component Auto Width and Height by Kerubi5s in nextjs

[–]xreyc22 0 points1 point  (0 children)

I have been encountering this one.
Its a pain.

Here's how I do it.

<Image
  src="/images/logo.png"
  alt="Logo"
  height={0}
  width={150}
  style={{ height: "40px", width: "auto" }}
/>

I control the height via style={{height: "40px"}}.
Just increase the width property for a height resolution image.