comp-sci

Discord ID: 423219052849397773


17,577 total messages. Viewing 100 per page.
Prev | Page 29/176 | Next

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.

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?

2018-05-25 23:17:09 UTC

@Deleted User it sure is the future, I am not a developer

2018-05-28 03:19:42 UTC

@meratrix Start on that Scala poll bot yet

2018-05-28 03:27:37 UTC

not yet, although I'm probably gonna have to do it in JavaScript because there isn't an official Discord API for Scala, and I don't wanna deal with using unofficial ones made using the Java API that may stop being updated.

2018-05-28 03:29:03 UTC

I'd use JavaScript because I want to integrate it with a webpage that displays the poll when visited and you enter the server and poll name.

2018-05-28 03:30:53 UTC

cool

2018-05-28 03:41:09 UTC

>JS

2018-05-28 03:41:12 UTC

<:super_edgy:426099058466095119>

2018-05-28 06:12:06 UTC

All the Discord APIs are unofficial.

2018-06-01 00:11:11 UTC

This program colors b/w sketches near perfectly. We have successfully started taking artists jobs now

2018-06-01 00:14:55 UTC

?

2018-06-01 00:15:00 UTC

are you shilling?

2018-06-01 00:15:25 UTC

No I just get boners from impressive tools

2018-06-01 00:15:33 UTC

oh ok

2018-06-01 00:15:55 UTC

I had an errection for at least a week after learning about deepfakes

2018-06-01 03:05:41 UTC

Meh, it's just a toy.

2018-06-01 03:06:39 UTC

Look at this shit, the hair got painted blue from the clothes.

2018-06-01 03:07:53 UTC

Then look at how many "hint points" are needed to get proper coloring: https://raw.githubusercontent.com/lrisviel/markdown/master/github/display3.jpg

2018-06-01 03:08:52 UTC

I don't see this being any better than coloring by hand, if the artist has a proper drawing tablet.

2018-06-01 05:01:47 UTC

Speed. Proper coloring takes hours. This can be done in 5-10 minutes by someone with much less skill

2018-06-01 05:04:38 UTC

Seriously, look at the number of points needed with white color.

2018-06-01 05:05:03 UTC

If I had to fight this much against this "automated" tool, I'd rather paint it by hand.

2018-06-01 10:20:45 UTC

a.k.a massive waste of taxpayers' money.

2018-06-02 13:41:04 UTC

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

2018-06-03 16:00:05 UTC

no, no,... no no no.

2018-06-03 16:02:03 UTC

Bitbucket > Github.

2018-06-04 15:06:13 UTC

anything not owned by microsoft > anything owned by microsoft

2018-06-04 18:06:12 UTC

I dunno where this attitude comes from that Microsoft is somehow the big evil. Microsoft are a pretty decent company especially when you are a professional dev

2018-06-04 18:09:09 UTC

There development tooling is second to none IMHO. They are far better at giving stuff away for nothing unlike Google for example. I been using TFS online for years (along side bitbucket and github) and they are all good.

2018-06-04 18:12:10 UTC

Github will be continue to be free. Microsoft will sell a "Github" enterprise which will be an onsite github

2018-06-04 18:21:00 UTC

Microsoft has terrible internal management.

2018-06-04 18:21:25 UTC

Github is going to go the way of SourceForge.

2018-06-04 19:08:55 UTC

lol didnt source forge get bought and turned around recently?

2018-06-04 19:57:42 UTC

SF had all projects once.

2018-06-04 19:59:01 UTC

But it stuck with an arcane system to upload files, CVS, and was as slow as mollasses in January.

2018-06-04 19:59:35 UTC

When everyone was moving to hg, git, SF announced support for... SVN.

2018-06-04 20:00:21 UTC

And then that scandal with the mirror sites injecting malware in the download files happened.

2018-06-04 23:25:44 UTC

I personally never liked source forge.

2018-06-04 23:26:28 UTC

And @andy is an edgi boi is right, fuck Microsoft.

2018-06-04 23:27:15 UTC

I like the test pipeline support of Bitbucket anyway.

2018-06-05 01:36:57 UTC

Sourceforge was really good back in 2003. The whole "fuck microsoft" is just really cringey when working in the professional world. I am from the UK and a huge number of jobs are .NET based.

Also the bitbucket pipelines stuff has been in TFS since 2013.

2018-06-05 02:18:06 UTC

@DanielKO The Dev management has always been pretty good. It is Office and Windows that has been historically a mess.

2018-06-05 03:17:13 UTC

@Deleted User you are not honestly comparing a free to use Bitbucket with a commercial product? Travis-CI combined with Github has them too, but then your code must not be in a private repo. Or there are solutions, which you can deploy for yourself.

2018-06-05 03:17:56 UTC

Replace "professional" with business, because I never saw .NET in my professional world.

2018-06-05 06:23:25 UTC

@Deleted User Bitbucket and Atlassian stuff isn't free to use if you got over X number of people in the team you have to pay, the same with Github (mainly private repos etc) and TFS Online.

As for .NET usage it is huge in the UK. I dunno about other countries. I know a lot of web dev shops don't tend to use it and usually stick to node / php. However I don't really want to get into a pissing match about languages because it is completely pointless

2018-06-05 07:20:08 UTC

Someone asked me to make an emitter of spinning hotdogs

https://cdn.discordapp.com/attachments/423219052849397773/453457983775703050/HotdogEmitter.gif

2018-06-05 10:35:39 UTC

I am aware of that, but this limitation is hardly a problem for most Bitbucket and Github projects.

2018-06-05 10:38:00 UTC

If you are a bigger company, you should have your own deployd solution anyway.

2018-06-05 11:38:01 UTC

Why durtle why

2018-06-05 11:43:21 UTC

@Deleted User well itโ€™s been a problem on some of the projects Iโ€™ve worked on. The pricing goes from free to like like ยฃ15 then like ยฃ1000

2018-06-05 11:49:47 UTC

@Deleted User in anycase All the major players have had their own ci/cd workflow for quite a while. In anycase it is ridiculous the freak out about github. The company hasnโ€™t had a ceo in months and most comments sections are full of the usual ms hating nonsense

17,577 total messages. Viewing 100 per page.
Prev | Page 29/176 | Next