Message from @Ferdi321

Discord ID: 662120589548322816


2020-01-02 02:28:28 UTC  

I had a pleb tell me once they didn’t know how to debug their code

2020-01-02 02:28:36 UTC  

I was like. Binary search?

2020-01-02 02:28:43 UTC  

it took me 2 years to learn c++

2020-01-02 02:28:49 UTC  

I spent some years on c++

2020-01-02 02:28:55 UTC  

after that all languages are easy

2020-01-02 02:29:05 UTC  

Yeah.

2020-01-02 02:29:10 UTC  

I dont know a shit about the hardware trivia

2020-01-02 02:29:19 UTC  

https://cdn.discordapp.com/attachments/634367565304561675/662120210383503370/unknown.png

2020-01-02 02:29:32 UTC  

I dont know how many bytes int or char are

2020-01-02 02:29:35 UTC  

LMAO

2020-01-02 02:29:37 UTC  

I used to do mostly java and C#. Now I do more python, Haskell and php

2020-01-02 02:29:41 UTC  

when you look for a job

2020-01-02 02:29:49 UTC  

@virtue good luck learning the swedes launge lol gona take ages

2020-01-02 02:29:55 UTC  

wtf i love joe biden now

2020-01-02 02:30:04 UTC  

biden GANG

2020-01-02 02:30:10 UTC  

they want you to work with booring
frameworks and they want you to know lots
of trivia

2020-01-02 02:30:16 UTC  

https://cdn.discordapp.com/attachments/634367565304561675/662120448951189542/image0.png

2020-01-02 02:30:18 UTC  

Chars are arrays of bytes or double bytes if Unicode

2020-01-02 02:30:39 UTC  

Ints are 4 bytes or 8 bytes

2020-01-02 02:30:50 UTC  

most programmers don't care with data type. Use double anyway. And your fine 99% of the time. int for round numbers only.

2020-01-02 02:30:52 UTC  

there are CRAZY amount of word specific rules thats not based on the standard grammar system

2020-01-02 02:31:10 UTC  

Yes.. all chars and int
are all bytes..we know

2020-01-02 02:31:12 UTC  

I use big ints for everything. Only use int if you think it’ll go from like 1-100

2020-01-02 02:31:38 UTC  

I never needed to know how many bytes different variable types are

2020-01-02 02:31:48 UTC  

When I coded ansi C you had to malloc your own memory there was no garbage collection

2020-01-02 02:31:55 UTC  

I use floats and covnert them to int

2020-01-02 02:32:11 UTC  

So we had to malloc every bytes of memory ourselves and deallocae it when done

2020-01-02 02:32:17 UTC  

I usually use int for flags..

2020-01-02 02:32:34 UTC  

most often float or double are more usefull

2020-01-02 02:32:54 UTC  

You REALLY should know how many bytes data types are it starts to matter for big data say when you’re architecting tables server side

2020-01-02 02:33:07 UTC  

And you have billions of transactions

2020-01-02 02:33:22 UTC  

I can always check it up when I need it

2020-01-02 02:33:25 UTC  

I looked into python but to be honest. A lot of thins seem so counter-intiative, and this begins with the stupid using '4 spaces' in the next line, after you have declared a function.

2020-01-02 02:33:38 UTC  

I dont like python

2020-01-02 02:33:45 UTC  

python doesnt make sense

2020-01-02 02:33:57 UTC  

Ints and floats are 4 bytes. Big ints and doubles are 8 bytes.

2020-01-02 02:34:04 UTC  

Ok i will look at some other languages

2020-01-02 02:34:25 UTC  

C# is cool

2020-01-02 02:34:29 UTC  

Python is almost a hybrid language it reminds me more of a scripting language and less of a polished software language

2020-01-02 02:34:32 UTC  

I always use the big ones.