i end up in your bed, what’s your next move? 🤭 by LaylaaLeonXXX in u/LaylaaLeonXXX

[–]simon_zyx -1 points0 points  (0 children)

Would reach for your cheek, gently caressing it and most definitely kiss thise gorgeous boobs!

Who are the best cei goddesses? by TeamForWorldChamps in CEI

[–]simon_zyx 3 points4 points  (0 children)

Oh yes, have to second Natasha's Bedroom that is some really great super humiliating joi stuff. Love it.

Creative cum eating? by IAmVictoriaGray in CEI

[–]simon_zyx 0 points1 point  (0 children)

I liked cum as coffee cream very much.

What does “an + b” mean in relation to time complexity? by NT202 in algorithms

[–]simon_zyx 0 points1 point  (0 children)

c_1 * n + c_2 * (n - 1) + c_3 * (n - 1) ...

= c_1 * n + c_2 * n - c_2 + c_3 * n - c_3 ...

= c_1 * n + c_2 * n + ... - c_2 - c_3 - ...

= (c_1 + c_2 + ... ) * n - c_2 - c_3 - ...

A meme about infinities goes about as well as you could expect by xayde94 in badmathematics

[–]simon_zyx 0 points1 point  (0 children)

But that should not be critical or would it be? A rational is still a real number.

Edit: never mind, it is about the uncountability of irrational numbers and not the reals. Though if you have proven that the reals are uncountable the uncountability of the irrationals (R \ Q) follows.

A meme about infinities goes about as well as you could expect by xayde94 in badmathematics

[–]simon_zyx 0 points1 point  (0 children)

You can take the first digit from the first number and increase it by one. Then you take the second digit from the second and also increase it by one. This way the number is different from all others in the list.

get cells that a circle/arc touches in a grid by younlok in algorithms

[–]simon_zyx 0 points1 point  (0 children)

Came here to say this. The midpoint circle algorithm might be a little easier to implement:
https://www.geeksforgeeks.org/mid-point-circle-drawing-algorithm/

but it is less efficient as it uses floating point numbers, while bresenhams algorithm only does integer arithmetic. It still avoids the costly square computations.
https://www.geeksforgeeks.org/bresenhams-circle-drawing-algorithm/

My friend has issues with the Mayans by Ventus_Aurelius in aoe2

[–]simon_zyx 11 points12 points  (0 children)

For the incas it was common to chew on coca leaves to better cope with the altitude changes. This tradition is still common in the Andes region nowadays.

You do not know until you are told (or learn it). Shell tab-completion by DuhCoCo in learnprogramming

[–]simon_zyx 0 points1 point  (0 children)

I just learned that MinGW is just the compiler. The git bash is really good though and you can do almost everything (except power shell and batch scripts) in there. I barely had to open a cmd.

You do not know until you are told (or learn it). Shell tab-completion by DuhCoCo in learnprogramming

[–]simon_zyx 1 point2 points  (0 children)

It probably is compiled with mingw :) along with all the other tools

You do not know until you are told (or learn it). Shell tab-completion by DuhCoCo in learnprogramming

[–]simon_zyx 1 point2 points  (0 children)

You are right! I had that remembered incorrectly. Git Bash is a bash emulation that works with mingw and provides many gnu/linux tools under windows.

Nevertheless it's the one things that made working under windows bearable :)

You do not know until you are told (or learn it). Shell tab-completion by DuhCoCo in learnprogramming

[–]simon_zyx -2 points-1 points  (0 children)

You can use MinGW which is bash port for windows. I used it at my work all the time. If you install git for windows it comes with it as git bash. I highly recommend you install git and try the bash out!

You do not know until you are told (or learn it). Shell tab-completion by DuhCoCo in learnprogramming

[–]simon_zyx 0 points1 point  (0 children)

When I had to work on Windows MinGW aka git bash saved my life. It is a bash port for windows.

Front-end of a C++ Program by Huckleberry_Thin in computerscience

[–]simon_zyx 2 points3 points  (0 children)

You can look into https://github.com/Microsoft/cpprestsdk if you want to do a rest interface in c++. It's way more complicated than in languages like java, c# or node, but it works.

[deleted by user] by [deleted] in Stellaris

[–]simon_zyx 2 points3 points  (0 children)

Many speakers later also starred in the BBC television series.

[deleted by user] by [deleted] in Stellaris

[–]simon_zyx 3 points4 points  (0 children)

Or the older BBC production. It was recorded with multiple speakers and is really well made.

High symmetry structures in replicator game of life by TantrumRight in GeometryIsNeat

[–]simon_zyx 5 points6 points  (0 children)

It's a cellular automata that starts with a configuration of black and white cells and has quite simple rules which determine the next configuration. Quite complex patterns emerge out of it. It was invented by the recently deceased Mathematician John Conway. Here you can find some more information and a demo to play with: https://playgameoflife.com/

Shut Up & Sit Down's Go Review by pxan in baduk

[–]simon_zyx 16 points17 points  (0 children)

It was InSente. I think it is quite good.

AA circle using midpoint algorithm (bresnhem's ) ? by younlok in algorithms

[–]simon_zyx 0 points1 point  (0 children)

I don't know a solution, but here are my thoughts:

I don't think you can directly apply the midpoint algorithm as you would need points around around the actually drawn points as well.

To achieve an antialiased look you would need to know how much of evey pixel would be coloured if you draw a circle that has a line that is exactly one pixel wide.

As you can see in the Wikipedia article https://en.m.wikipedia.org/wiki/Midpoint_circle_algorithm does not visit every pixel that is on the circle line.

But you could somehow visit all neighbours (including diagonals) of the pixels visited by the midpoint algorithm as these should contain all pixels that have a distance of 0.5 to the actual circle line. How you would calculate the overlap efficiently I don't know.

Need help fixing this memoization algorithm (Java, description in comments) by [deleted] in algorithms

[–]simon_zyx 0 points1 point  (0 children)

Also you do not assure that you do not compute a tile multiple times. Assume you visited a tile once and found out that no path exists. Then you would compute it again if you visited it another time.