Message from @pandaxcentric

Discord ID: 458819748134780928


2018-06-19 19:38:56 UTC  

also, this thing runs LINUX

2018-06-19 19:39:00 UTC  

<:gay:382982146249326612>

2018-06-19 19:39:31 UTC  

oh geez

2018-06-19 19:39:36 UTC  

ain't that the best

2018-06-19 19:39:48 UTC  

when you don't know what your fucking problem was

2018-06-19 19:39:52 UTC  

debian is the gayest linux distro

2018-06-19 19:39:55 UTC  

oh yeah

2018-06-19 19:40:07 UTC  

not knowing is half the battle lost 🤣

2018-06-19 19:40:09 UTC  

debian? more like lesbian

2018-06-19 19:40:20 UTC  

which makes it the big gay

2018-06-19 20:20:25 UTC  

Today, I'm tackling this
https://bitbucket.org/libtcod/libtcod/overview

And this

https://en.wikipedia.org/wiki/Microsoft_Visual_Studio

They don't like each other >_>

2018-06-19 21:07:13 UTC  

visual studio gives me aids

2018-06-19 21:15:31 UTC  

says the roach

2018-06-19 21:15:48 UTC  

Isn't time for you to go to bed?

2018-06-19 21:29:53 UTC  

nein

2018-06-20 02:10:33 UTC  

@Legiondude is there a reason you have to use Visual Studio?

2018-06-20 02:11:08 UTC  

seems like it'd be easier to just code in python in something like Visual Studio Code

2018-06-20 02:15:29 UTC  

I'm most familiar with VS

2018-06-20 02:15:50 UTC  

And it's the only setup I've got on my box that has a compiler

2018-06-20 02:16:21 UTC  

you coding on windows?

2018-06-20 02:25:52 UTC  

if you use python you don't need to worry about a C++ compiler, and you'll be able to write code a lot faster

2018-06-20 02:26:28 UTC  

you don't need to worry about all the low level junk

2018-06-20 02:30:23 UTC  

I don't have experience with Python, thus the problem

2018-06-20 02:30:59 UTC  

There's an equivalent library for C#, but the documentation for that hasn't been maintained in some time

2018-06-20 02:32:20 UTC  

python would be a good language to learn if you get time

2018-06-20 02:33:29 UTC  

what do you use to compile python anyway?

2018-06-20 02:33:42 UTC  

nothing!

2018-06-20 02:33:43 UTC  

lol

2018-06-20 02:33:47 UTC  

wot

2018-06-20 02:33:54 UTC  

you never get compile errors 😃

2018-06-20 02:34:02 UTC  

.....

2018-06-20 02:34:05 UTC  

all the bugs happen at runtime

2018-06-20 02:34:12 UTC  

the way God intended

2018-06-20 02:56:40 UTC  

Python is all dynamic. It requires extensive runtime support, like Java or C#.

2018-06-20 02:58:33 UTC  

If you restrict what features you use, you can compile into a native program, using RPython.

2018-06-20 02:59:23 UTC  

"Restricted Python"

2018-06-20 03:00:22 UTC  

Then you can do silly things, like PyPy. It's a Python implementation written in Python. And it's faster than the standard Python interpreter.

2018-06-20 03:05:14 UTC  

Cython is probably the fastest way to do Python, though it's a little different.

2018-06-20 08:55:11 UTC  

Python written in Python <:think_madpepe:378717098630971395>
But what about Python written in Python written in Python written in Python written in Python?

2018-06-20 09:05:51 UTC  

Sounds silly, but it's legit. Performance very close to C code.

2018-06-20 09:07:27 UTC  

Because it's far easier (for Python programmers) to write a Python interpreter in Python. PyPy also supports stackless Python, and a JIT compiler (which is what gives the extra performance.)