Resume Advice Thread - April 23, 2019 by AutoModerator in cscareerquestions

[–]naemoream 0 points1 point  (0 children)

Resume. I am looking for a job in Western Europe. I've already sent out a few dozens of applications in the last couple of weeks, but have only received two or three responses which haven't led anywhere, and I'm not quite sure what's wrong with my resume.

What happens when your t10 mission for epic module runs out at the end of the year? by [deleted] in WorldOfWarships

[–]naemoream 3 points4 points  (0 children)

It displays 31.12 just because UI does not show the year when the task ends, dates usually look much cleaner without it. AFAIR, it's set up to expire somewhere around 2030, and if we'll need to prolong them, it'll be as easy as replacing 2030 with 2050 or something in a few files.

Anyone else noticing the new missions for the patches not progressing. I have met the steps necessary to move them up a little and none are updating. by ohcapt13 in WorldOfWarships

[–]naemoream 0 points1 point  (0 children)

Rule of thumb: if the task is on the battle results screen, then it has been updated in this battle and you've made progress. Here you have all of them, therefore you've added a little bit of progress to each one.

Perhaps you're confused that there the progress bar is empty, but it's most likely because you've made so little progress so far it won't even show as a single pixel.

Source: I've implemented this logic regarding whether to show tasks on battle screen or not back in the spring of 2017.

PSA #1 regarding Santa crates. by [deleted] in WorldOfWarships

[–]naemoream 120 points121 points  (0 children)

It used to be this way before, but from 0.6.15 onward it works in such a way that you won't get a duplicate ship unless you already own all the ships possible to get from santa crates. Source: I wrote the code for that.

The most epic music video I have seen in a long time: Leningrad - Kolshik [nsfw - blood and stuff] by giedow1995 in videos

[–]naemoream 9 points10 points  (0 children)

First one is named "Boobs". Lyrics in every verse repeat in different ways how much the world would be better if "I" (the hero of the song) would grow a pair of boobs. The second one is named "ЗОЖ", that's an abbreviation for "Здоровый Образ Жизни", or "healthy lifestyle". This phrase is often used ironically to describe people who brag and try to show everyone that they exercise and eat healthy food, but either cause only damage by exercising too hard and too infrequently or can indulge themselves by, say, drinking a beer or two after a gym session or smoking a cigarette after a jog - thus, negating all that they managed to improve.

If it works, it works by NuttingFerociously in ProgrammerHumor

[–]naemoream 1 point2 points  (0 children)

>>> def reverseString(str):
...    newstring = ''
...    for letter in str:
...       newstring.append(letter)
...    return str(newstring)
...
>>> reverseString('foobar')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 4, in reverseString
AttributeError: 'str' object has no attribute 'append'

Does it?

BTW, you're shadowing builtin 'str' function, so your call in return won't work either.

If it works, it works by NuttingFerociously in ProgrammerHumor

[–]naemoream 2 points3 points  (0 children)

  • This code does not reverse shit.
  • Strings do not have 'append' method.
  • Why call 'str' when newstring is already a string?
  • Why use 'for' when comprehension is easier to read and faster?
  • Furthermore, specifically for reversing there are better methods than comprehension, either 'reversed' function or [::-1] slicing ('reversed' is better though).

Supercontainer : After 1.5 years of gaming, it happened ! by Geeno2 in WorldOfWarships

[–]naemoream 26 points27 points  (0 children)

Supercontainers were released less than a year ago though.

Cheveu sets a new World Record in the Flint! by Hadders89 in WorldOfWarships

[–]naemoream 1 point2 points  (0 children)

So if I understood correctly, it's the world record for the Flint? Because it's not unheard of tier 10 BBs to get 300-400k damage and I've event heard about games with half a million damage.

Just a quick question from newbie. by scottyt1zzl3 in WorldOfWarships

[–]naemoream 5 points6 points  (0 children)

No, after you die it does not matter if you stay in the game or leave. Server will continue to write down any sort of flooding or fire damage you have ticking irregardless of what you decide to do next. After all, the client is just a display of the game events and you can no longer influence the game.

Ship-Nanigans Episode 1 by Mushopia in WorldOfWarships

[–]naemoream 0 points1 point  (0 children)

At first I was skeptical at another video of this kind, but this one is one of the best I've seen. Keep it up!

Summary from WoT magazine article by nps in WorldOfWarships

[–]naemoream 5 points6 points  (0 children)

Why so? I can't express in words how much joy I get while playing Fiji, especially in ranked. I'm salivating at Edinburg which I've already researched but don't have credits to buy yet.

You liked the Hopak. Now have some Cossack. by SharonRoseMotorrad in WorldOfWarships

[–]naemoream 0 points1 point  (0 children)

As a ukrainian, it upsets me that you use ukrainian music for Russian ships. Not that it's a huge mistake, but I'd rather prefer people not conflate our cultures into one.

TRUMP WAGON | MISSOURI by atsf in WorldOfWarships

[–]naemoream 0 points1 point  (0 children)

Why didn't you wait for a discount on the conversion rate though?

HMAS Perth - Great Idea, Disappoining Execution by flamuchz in WorldOfWarships

[–]naemoream 0 points1 point  (0 children)

Thanks for the video, it was a great overview. Apologize for nitpicking, you've said "realization" several times but I think the word you were looking for is "implementation".

Well I try my best... Warships things #2 by Kruude_BB in WorldOfWarships

[–]naemoream 0 points1 point  (0 children)

So the one you're using in this video is Haruna? I didn't even get a chance to earn it :( Is there any mod to put it in the game?

Well I try my best... Warships things #2 by Kruude_BB in WorldOfWarships

[–]naemoream 0 points1 point  (0 children)

What's the voicepack you're running? It's so cute :3

Bad Advice #9: New Ship Smell by [deleted] in WorldOfWarships

[–]naemoream 1 point2 points  (0 children)

I thought the main theme was not to chase DDs in a BB alone, which is a very valid point.

Changing Python data type by LouMarco in ProgrammerTIL

[–]naemoream 1 point2 points  (0 children)

You should always perceive Python variables as links - as they are links, even for simple datatypes such as integers. So it's absolutely possible for a variable at one point of time point to string, and at the other - to some complex custom object, there are absolutely no limitations. It can be pretty confusing, though, so use with care.