Message from @Deleted User

Discord ID: 449264289388429344


2018-05-23 17:25:29 UTC  

<:think_woke:378717098681171988>

2018-05-23 17:25:35 UTC  

stronger cpu?

2018-05-23 17:25:39 UTC  

You root your phone?

2018-05-23 17:25:39 UTC  

am I blind

2018-05-23 17:25:48 UTC  

yeah, the 660 is better than the 636

2018-05-23 17:25:56 UTC  

yee I'm blind

2018-05-23 17:25:56 UTC  

@Deleted User
the one i'm using? no

2018-05-23 17:26:01 UTC  

it's old as fuck

2018-05-23 17:26:13 UTC  

no root phone-chan

2018-05-23 17:26:17 UTC  

You can loose warranty, you must be careful with this.

2018-05-23 17:29:24 UTC  

@Deleted User
Yeah, do it when the warranty is done

2018-05-23 17:45:14 UTC  

@Fulcrum010 it's not hard to trigger @Reaps

2018-05-23 18:25:31 UTC  

@Fulcrum010 for 30 euros a month and 100 up front for 2 years I get a 6gb contract with a galaxy s8 I get to keep afterwards

2018-05-23 18:25:44 UTC  

seems good

2018-05-24 05:43:58 UTC  

Overall, it's telling how MS treats their most essential engineers, why their software sucks at so many levels.

2018-05-24 05:44:11 UTC  

>I'm a unicorn
🤣

2018-05-24 05:44:14 UTC  

```
Griffin Aasen
2 weeks ago
Once they found out they were both robots they were talking about God, and seeking bodies. I'm moving to the next galaxy```

2018-05-24 06:33:04 UTC  

I feel like the same could be said for the code in most programs nowadays

https://cdn.discordapp.com/attachments/423219052849397773/449097482694164481/wolters-kluwer-cch-tax-law-pileup-2013.png

2018-05-24 17:35:53 UTC  

Nice

2018-05-24 17:35:59 UTC  
2018-05-24 17:36:06 UTC  

:/

2018-05-24 17:36:07 UTC  

This is my life right now.

2018-05-24 20:49:44 UTC  

https://cdn.discordapp.com/attachments/423219052849397773/449313072654319643/29572225_10156044277956413_2308614511555822689_n.png

2018-05-24 21:03:55 UTC  

https://cdn.discordapp.com/attachments/423219052849397773/449316643059793953/29386170_10156463159454617_588070816883939368_n.png

2018-05-24 21:04:46 UTC  

https://cdn.discordapp.com/attachments/423219052849397773/449316854738059274/image.jpg

2018-05-25 01:04:27 UTC  

https://cdn.discordapp.com/attachments/423219052849397773/449377176412880906/2018-05-24_17_55_16-000089.png

2018-05-25 01:05:41 UTC  

because coding is easy!

2018-05-25 01:50:06 UTC  

Spent it on the dinosaurs and not the pizza eating nerfherder

2018-05-25 01:57:40 UTC  

?

2018-05-25 02:01:54 UTC  

What if it went like this:
- I need a team of coders. Since it needs to be fail-safe code, with human lives at stake, it needs to be carefully designed, thoroughly tested, and ...
- I have faith in you, you can do it by yourself.
- (Fucking old geezer... I could burn the whole place down, you know?)

https://cdn.discordapp.com/attachments/423219052849397773/449391633759338496/oaq0yq.jpg

2018-05-25 02:02:32 UTC  

What’s the worse coding habits you guys have seen:

2018-05-25 02:06:38 UTC  

```using namespace std;```

2018-05-25 02:07:45 UTC  

I'd say, that's fine when done in a single .cpp file. But last week or so I've heard some idiots ("game devs") still use "Unity Builds".

2018-05-25 02:08:58 UTC  

For those that don't know, it's when you have a `everything.cpp` file with
```cpp
#include "main.cpp"
#include "utils.cpp"
#include "player.cpp"
#include "thatotherthing.cpp"
#include "networkfunctions.cpp"
#include "someotherrandomcrap.cpp"
...
```

2018-05-25 02:11:42 UTC  

Never mind that changing one single file now requires rebuilding your entire program, never mind that now you can't do parallel compilation in your shiny, expensive build machine with 32 cores, never mind that a .cpp file might just define a macro and never undefine it, never mind that multiple files might have a `static int profiler_counter;` variable that are now violating the one-definition-rule and are now shared across everything...

2018-05-25 02:12:02 UTC  

At least now you don't have to learn how to have more than one file on your IDE, so that's a win, right?

2018-05-25 02:12:39 UTC  

What's that, you ran out of memory for the compilation? Then delete some code!

2018-05-25 02:23:07 UTC  

Worst coding habit I've encountered is when the programmer knows absolutely nothing about other people's code. He never read code from anybody else for 10 years or more, has no idea about terminology and concepts. So he writes shit like
```cpp
void context_activate_get_task_prepare(Worker* worker,
int number,
char* buffer,
Context **ctx,
int* explanation,
int level,
int sublevel,
float delay,
ContextExtra *activity,
stack<int> connection,
char file,
char* file2,
int avoid)
{
// ... you don't want to see what's in here
}
```

2018-05-25 02:24:50 UTC  

And no, the documentation for this function doesn't make any more sense than the argument names.