Details
-
AboutIf you are reading this have a nice day 😊
-
SkillsJS, PHP, Python, c, c++, c#, Java
-
LocationNo
-
Github
Joined devRant on 12/20/2017
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Flash was most popular vector video and game engine, now revived with Ruffle. After that everyone forgot about 2D vector graphics and only use 3D vector graphics.
-
Neither ubuntu nor arch linux worked on my laptop...
dead wifi -
I probably don't prompt chatgpt for anything that i can't immediately check correctness of. People shouldn't study something like history from LLMs.
-
I wonder if there's repetitive functions in that long ass file, because no one could be arsed to find one already declared.
-
There's tons of videos of how http and other protocols work, but they only provide surface level knowledge and don't dig deeper into how they look like in binary or textual form. It's so easy to show internals of http/1.1 when it is text based compared to http/2 or 3. When i implemented super simple htt-protocol server in C# i understood more about how sockets work. Like why there's how "many bytes to read" argument when i'm like "i dunno, tell me?". it's just endless stream of bytes, protocol implementer itself should define when to stop reading from that socket stream.
-
@Lensflare
when it's regular struct declaration, the names before ';' or after '}' are variable declarations of that struct
struct Point { int x, y; } p, *pPtr;
struct Point { int x, y; } p = { 5, 5 }; // you can even initialize it there
struct { int x, y; } p, *pPtr; // variables of that unnamed struct could be declared only once
When it's typedef it makes alias for "struct Point"
typedef struct Point { int x, y; } Point, *PointPtr;
So you can use "Point p = { 5, 5 };" instead of "struct Point p = { 5, 5 };"
When it's anonymous typedef
typedef struct { int x, y; } Point, *PointPtr;
you can only use "Point p" and not "struct Point p"
And it's useful when the type name shows that it's a pointer
PointPtr p = (PointPtr)malloc(sizeof(Point)); -
Reminds me of this
-
Arent' they in the cloud tho? /j
-
Better opened the website in incogito mode and didn't post it.
-
@Demolishun
struct Point {
int x, y;
} p, *pPtr;
I only knew about this from this syntax, but at the same time didn't correlate with regular variable syntax of pointers. -
Mental disorder is also enforcing particular code style by a compiler itself, instead of using linter. I understand if there's no other way because there's no brackets like in python (but it's interpreter so idk).
-
You can't even talk about this pronoun bullshit on reddit on popular publics or maybe everywhere, i was surprised to read comments about that here. They have power downvoting, comment bombing and silencing you, but they have no power over your money spending on their bullshit games. The only money they could get is through "black rock"...
-
@donkulator i rewrote mine with chat-gpt, but it uses such words that no normal people ever uses so it reads strange...
-
Don't know the situation when creating the CMake project by myself, but it gave windows users like me easy of use compilation process of open source projects. I compiled LuaJit that way in just few steps.
-
@retoor but there's already "git bash" that provides bash functionality in windows. Why it's "git" i don't understand though.
-
@retoor yeah it's nice. They wanted C# like scripting instead of bash, but they aliased common commands like "ls" to their real commands.
-
Is it considered "Rubber duck debugging" when there's no rubber duck and i didn't even articulate the problem, but the brain somehow found the pattern by itself
-
@Pogromist lmao solved this directly here 😂 red dots are just overlapping dots
-
I hated parsing names, prices, descriptions and characteristics of competing market places' products with a wordpress plugin and importing them to another wordpress marketplace. It was so repetitive. Only thing i semi liked was scraping website (with JavaScript in the browser itself not even using Puppeteer) to migrate it to wordpress system.
-
Please solve this, i'm stuck at this...don't see a pattern at all.
https://arcprize.org/play/... -
It's a snake, you just didn't check it before it went away
-
devRant UWP
-
It works on my docker virtual machine /jk
-
@donkulator if you translate a lot of japanese comments on youtube you would find they write 草 - literally translates to 'grass' but they're using it to write laughter
-
Googling a lot of times doesn't show me any answers to questions i ask it for. Chat GPT gives me comprehensive answers that i would have never encountered in the first or second page of google.
-
There's programming languages that everyone could use to make job done quickly and there's that user needs to fully understand to use properly.
-
games
-
Don't understand the trend or appeal of shooter games cartoonification
-
@awesomeest latest windows 11, i tried jspaint.app and it's just + and - as you said
-
What 🫤