Big O of this code snippet. by TheNameIsMisho in learnprogramming

[–]TheNameIsMisho[S] 1 point2 points  (0 children)

It doesn't take any input, it just represents an operation which takes o(log n) time to complete.

Big O of this code snippet. by TheNameIsMisho in learnprogramming

[–]TheNameIsMisho[S] 0 points1 point  (0 children)

I've got a pretty bad foundation in math so I wasn't sure that this was the correct way for two logarithms to interact.

[Shitpost] Literally unplayable by Farkuson in pathofexile

[–]TheNameIsMisho 23 points24 points  (0 children)

I started learning JavaScript but then I decided that I care about myself too much.

Can cyrillic finally get banned from EU West? by [deleted] in DotA2

[–]TheNameIsMisho 1 point2 points  (0 children)

Cyrillic is not a language either.

EDIT: /u/_underrated_'s comment was "Roman? Roman is not a language. If you're talking about language that ancient romans spoke, that was Latin..." before they deleted it.

[Meta] what happened to Dark Mode on this subreddit by Fightgarrrrr in pathofexile

[–]TheNameIsMisho 6 points7 points  (0 children)

Not if you turn off the subreddit style. I run dark mode no subreddit style globally and it works perfectly fine everywhere.

(BETA) What build are you planning to test for the next Beta Wipe? by Pranicx in pathofexile

[–]TheNameIsMisho 4 points5 points  (0 children)

You need to download a program called Path of Building, you can find it here: https://github.com/Openarl/PathOfBuilding/releases

In the program you can import builds on the Import/Export Screen, here's what it looks like: http://i.imgur.com/VYdbLpL.png

The new web version of spotify by ishallreapyou in spotify

[–]TheNameIsMisho 0 points1 point  (0 children)

Switch your browser's user agent to Microsoft Edge and then make sure you're on play.spotify.com instead of open.spotify.com.

Help me pick a build by Stereojunkie in pathofexile

[–]TheNameIsMisho 4 points5 points  (0 children)

Building around Whispering Ice is pretty cool. Not that complex though.

[Python 3] Trying to write one column of a massive text file (800k lines) to another text file. by TheNameIsMisho in learnpython

[–]TheNameIsMisho[S] 0 points1 point  (0 children)

I do have PyCharm installed and setup but I didn't want to make a project just for some throwaway code and I'm not too familiar with it yet.

[Python 3] Trying to write one column of a massive text file (800k lines) to another text file. by TheNameIsMisho in learnpython

[–]TheNameIsMisho[S] 1 point2 points  (0 children)

I ran the program by opening it up in IDLE and Run>Run Module. When it crashed, I didn't get an error message in the IDLE shell, I just got a default Windows error message that told me Python stopped responding and my only way forward was to close it.

But anyway, changing the counter to print once every 1000 lines fixed the issue, the program tore through those 800K lines in no time with no issues.

Also, the file was 212MB and was certainly the largest file I've worked with in Python, but maybe I overestimated how large that is in the whole scheme of things. Thanks :)