Message from @Legiondude

Discord ID: 449388664418467872


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.

2018-05-25 23:03:11 UTC  

@kotten Fedora.

2018-05-25 23:04:07 UTC  

It is quite handy for all the OpenShift/kubernetes stuff that I have to deal with.

2018-05-25 23:06:59 UTC  

Yeah it's nice

2018-05-25 23:07:33 UTC  

how is kubernetes treating you?

2018-05-25 23:10:37 UTC  

I am only using it as a developer, I don't setup clusters myself. And minishift works like a charm for my local machine.

2018-05-25 23:11:53 UTC  

@Deleted User what kind of apps do you develop?

2018-05-25 23:14:08 UTC  

I am a student, so nothing really exciting for now. Maybe in future.

2018-05-25 23:14:13 UTC  

You?