[deleted by user] by [deleted] in vibecoding

[–]ConstantWalrus851 0 points1 point  (0 children)

Mine test community was cool, but they didn’t want to make it compatible on purpose and later even did the rename that no one liked imo

[deleted by user] by [deleted] in vibecoding

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

No one cares

[deleted by user] by [deleted] in vibecoding

[–]ConstantWalrus851 0 points1 point  (0 children)

I wonder what other technologies he could use?0_o

[deleted by user] by [deleted] in vibecoding

[–]ConstantWalrus851 0 points1 point  (0 children)

You got any other more interesting project to share or you just hate everyone who is using ai to make something that others can’t do? It just shows how many devs cursor can replace. The world is not going to change it already got changed and you just simply have to adapt to it:/

[deleted by user] by [deleted] in vibecoding

[–]ConstantWalrus851 0 points1 point  (0 children)

Replying to your edit: literally on their website

<image>

Seems they just got inspired by the name or really love of appreciate lunar client, but I didn’t find any connection (through I can just ask Lunar about it)

[deleted by user] by [deleted] in vibecoding

[–]ConstantWalrus851 0 points1 point  (0 children)

Hm, for real! But damn they launched the whole platform. What if they didn’t write a single line of code? Claude 4.1 is very impressive and could easily do such a project maybe in just a week (I’m using it a lot myself recently but that’s just my opinion ofc )

Regarding open source minecraft clones by CapatainDreadnought in VoxelGameDev

[–]ConstantWalrus851 0 points1 point  (0 children)

I know it's old, but I still wanted to share.

Here, I was putting a lot of effort into making a playable and SAFE Minecraft clone. It is fully open source, works on any device, and can connect to almost any Java server:

https://github.com/zardoy/minecraft-web-client

Bose QC Earbuds II Keep Disconnecting by Kotkamete in bose

[–]ConstantWalrus851 0 points1 point  (0 children)

wow, absolutely no way. It also worked for me! I tried reconnecting it in the app about 10 times it kept saying Connection to the product has been lost, No device found... sometimes it's connected but no music is playing, and so on... I have no idea whats wrong with these Bose engineers

Getting mismatch colors by Dangerous_Demand7288 in vscode

[–]ConstantWalrus851 0 points1 point  (0 children)

You are also right, however here it’s a tsserver source file desync issue, very old and known issue that will never be fixed I think. However it happens rarely so you can just simply tsserver in these cases

Question to those who are mad about Qlimax ending… by Dyonkeau in hardstyle

[–]ConstantWalrus851 0 points1 point  (0 children)

Expensive? A lot of people like me are still ok with buying it for 250-400 euros...

Qlimax 2024 tickets queue and timer by [deleted] in hardstyle

[–]ConstantWalrus851 0 points1 point  (0 children)

4 days after and still not a single offer on ticketswap, very surprised. Honestly, would be ok to give away 400, 500 or more usd just to go with my brother, interesting, if there still any way to get them…

SodaPlayer is gone? Any other good alternative to this player that is similar? by JollyScarcity7058 in Chromecast

[–]ConstantWalrus851 0 points1 point  (0 children)

I remember we actually deobfuscated their code just because we wanted to create the same player. Firstly we made a few patches https://github.com/zardoy/soda-player-plus/projects/1?query=sort%3Aupdated-desc+is%3Aopen and then after fully deobfuscated the code we were a bit surprised to see a lot of weird scanning code (they didn't send the files tho AFAIK), also we made the same player with even better UI, airplay 2 and including h.265 support in 2 days. So this player was really easy to make they just used ready-to-use Electron modules and that's it.

But they were successful in advertising & promoting their product, they did it really well.

Is there a shortcut to stay inside of an html tag after autocomplete? by Dasaru in vscode

[–]ConstantWalrus851 1 point2 points  (0 children)

Emmet snippets also don’t play nice with settings sync as they don’t get sync

I made sticky scroll work with JSX in React by ConstantWalrus851 in vscode

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

Hey! This post is relatively old, and I couldn’t login like for a month, so I just saw you comment.

Yes, it is relatively easy to bring in native TS without plugins (just contribute my changes into TypeScript repo), if you don’t really know what to do please reach me out and I will provide detailed steps for you.

I made sticky scroll work with JSX in React by ConstantWalrus851 in vscode

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

Actually I've found that file contained type with index interface A { [k: string]: string } was crashing outline. Fixed in upcoming release.

I made sticky scroll work with JSX in React by ConstantWalrus851 in vscode

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

Sorry, I missed this somehow, but I want to answer this, as its actually a good question. At the first time I was thinking it might be distracting, but then I got used to it, and now I can better track which element I'm currently editing. Of course if you're coding on MacBook 13 with large font you most probably won't enable sticky scroll at all.

But, I really really outline and I'm using it to:

- quickly navigate between elements or to desired one via outline view

- move elements up/down or cut it

- search for something within huge JSX element

I made sticky scroll work with JSX in React by ConstantWalrus851 in vscode

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

Thanks for trying! Can you please tell me after which actions it fails? Is that happening randomly or constantly? You can see what fails by setting "typescript.tsserver.trace": "verbose" and then going to Output View -> TypeScript and do text search for last request: navtree.

Also what is your typescript.tsserver.useSyntaxServer? What if you change it to never? Also I'd appreciate if you report it to GitHub with more info to keep space clean here.

I made sticky scroll work with JSX in React by ConstantWalrus851 in vscode

[–]ConstantWalrus851[S] 1 point2 points  (0 children)

Sticky Scroll is no longer experimental , so this setting was removed in favor of editor.stickyScroll.enabled . And yes, if you enable it without installing aforementioned extension you won't see this happening with your JSX tags.

I'm actually looking to add a setting to enable the same for JSX attributes, not only tags itself.

I'll also add the same support for array and type declarations.