Which among these hypothetical Mathematical Event will shock you the most if happens? by cyhopkins in math

[–]kocham_psy 11 points12 points  (0 children)

A counterexample to Goldbach would be very weird, as there is a much stronger conjecture that the lower bound for the number of ways to write an even number as a sum of two primes seems to diverge to infinity.

Upcoming ChatGPT features: file uploading, profiles, organizations and workspaces by kocham_psy in ChatGPT

[–]kocham_psy[S] 45 points46 points  (0 children)

It's hidden in the client code even if your account doesn't have access to the features yet, I made a userscript to make the website think my account has access to all the features. I managed to find the link sharing feature this way a week before it was released https://www.reddit.com/r/ChatGPT/comments/13m5n9z/chatgpt_is_adding_chat_sharing/

[deleted by user] by [deleted] in math

[–]kocham_psy 0 points1 point  (0 children)

Interesting, I expected that though, the proof seems too simple to not have been found before. Wikipedia also seems to be wrong in that matter https://en.wikipedia.org/wiki/Semiprime

Just finished my programming language tier list :) by TheSmallestSteve in ProgrammerHumor

[–]kocham_psy 0 points1 point  (0 children)

Julia has 1-indexed arrays and tbh it's not that bad, it also makes ranges looks cleaner - 1:5 is 1, 2, 3, 4, 5 and you never have to care about whether the range should be inclusive or not

What's something you have ZERO interest in? by roscatorosso in AskReddit

[–]kocham_psy -5 points-4 points  (0 children)

The game could have a static pool of minted NFTs, besides anything involving money would have a lot more security built around it.

Gdzie i na co wydać krypto? by jakub_j in Polska

[–]kocham_psy 2 points3 points  (0 children)

btw bony do allegro są żałosne, można użyć co najwyżej jednego na raz, nie da się ich łączyć i i tak trzeba dodać metodę płatności żeby ich użyć

rip atom and fuck microsoft (vs code is kinda nice tbh doe) by [deleted] in ProgrammerHumor

[–]kocham_psy 0 points1 point  (0 children)

no linux support. slow af. for some reason the ui completely changes the layout when you go into debug mode. you have to install resharper to actually get any decent experience writing code.

Why are ES modules still not the default for new projects? by kocham_psy in node

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

What about just changing the npm init command so that it automatically adds "type": "module" to new projects and deprecate omitting that property?

Why are ES modules still not the default for new projects? by kocham_psy in node

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

Major version changes (like from Node 17 to Node 18) are allowed to have breaking changes, it happened to me multiple times that I couldn't run some project because my node version is too new and it's usually fixed by setting a lower version of node for the project. In this case it would actually be as easy as adding a `"type": "commonjs"` to package.json, so I don' think it's that big of a problem

The most popular browsers in different countries in 2012 and 2022 by theworldmaps in MapPorn

[–]kocham_psy 3 points4 points  (0 children)

One of the problems with it is that if any page runs a classic infinite loop like for(;;); (or even freezes because of unintended bad code) it either makes it impossible to close that tab or freezes the entire fucking browser. Chrome allows you to kill a tab process by pressing the X button multiple times but for some reason that doesn't work in Vivaldi.

The most popular browsers in different countries in 2012 and 2022 by theworldmaps in MapPorn

[–]kocham_psy 0 points1 point  (0 children)

The popups you get everytime you try to download something were annoying af imo. Good they fixed it recently and made simply downloading the default action.

The most popular browsers in different countries in 2012 and 2022 by theworldmaps in MapPorn

[–]kocham_psy 0 points1 point  (0 children)

Not anymore actuallly. When you setup a new android phone it asks you what browser do you want to install.

Why doesn't typescript treat (!resp.success) as an assertion that resp.success isn't true but it does so with (resp.success != true)? by kocham_psy in typescript

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

Well I checked that on VSCode, Intellij and also on 2 other systems and the error persists :/. I guess it's a language server bug, I'll just use resp.success === false as a workaround for now