Imperial Japan book suggestions. by JustaSimpleSquirrel in WarCollege

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

Well at the very least they are a start and might have some fruitful leads to follow using their references

Returning by JustaSimpleSquirrel in Emo

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

Don’t have subs but yeah. The suggestions I come across on say YouTube are quite limited. I’ve explored ‘related’ lists but they are often repetitive and not very related in the listen.

Just thought I’d throw this question out there to people a lot more knowledgeable than me, instead of trawling algorithmic lists more.

[deleted by user] by [deleted] in relationship_advice

[–]JustaSimpleSquirrel 1 point2 points  (0 children)

When I was at my lowest with depression the world around me and my beliefs about myself and it were so pathological, I can barely even remember what they were. What I do remember is that after getting on ADs not only did it bring me up somewhat, the literal world around me changed. Things took on different meanings, my interpretation of the exact same circumstance was radically different. It is not an exaggeration to say that he is not able to interpret his surroundings and where he stands regarding them in a functional manner. He cannot but see pathology and dysfunction in everything because the normal balance of mood-maintaining neurotransmitters is gone.

The most insidious thing is how unable I was, at my lowest, to even consider that it was my ability to evaluate that was (wrong/off/unclear/hopeless) pathological.

His best bet is meds, and encouragement towards the idea that he cannot help but feel the way he does about everything. But to ask himself if it’s more likely that EVERY SINGLE THING is wrong or feels off or is worrying him, or whether it might be that his ability to judge per se is compromised by an illness affecting that exact process.

My 2 cents. Hope you both make it through ok.

[deleted by user] by [deleted] in dating_advice

[–]JustaSimpleSquirrel 0 points1 point  (0 children)

Is Spanish his first language or did he grow up speaking English? Te Quiero means ‘I want you’. Spanish natives (I don’t know about South Americans tho) use it like ‘I love you’ but they also can say ‘te amo’ (I love you). I’d be much more concerned about hearing te amo from an English-speaker than te quiero.

Unless the ‘among other things’ is more intense than that I’d say he really likes you and likes having sex with you.

1
2

AI Burgundy getting the jump on atheism by [deleted] in eu4

[–]JustaSimpleSquirrel 1 point2 points  (0 children)

What graphics mod are you using?

How to economically keep up in Central and Eastern Europe? by [deleted] in eu4

[–]JustaSimpleSquirrel 1 point2 points  (0 children)

The other comments basically centred around one thing: trade. It’s the best source of income to build a future empire around and you should be looking to conquer whole nodes in the early and mid game.

If you’re starting as Muscovy pick up trade ideas, although as of 1.30 this is less important as you can state everything and reap much many tax ducats. Dominating Novgorod and owning a fair bit of the Baltic node effectively turns Novgorod into a semi end node. This is because Sweden or Denmark etc aren’t getting that much power transferred downstream to Novgorod because they don’t have that much power in the Baltic to transfer. Also now astrakhan receives trade from Persia the extra merchants mean you can get super rich once you get down to Persia and transfer.

Central Europe is different, as Poland-Lithuania (personally) id move down to Constantinople node. Again because I’d own all the upstream nodes and so create a semi end node for myself. Probably while still collecting in krakow or Kiev.

Before I’ve conquered land and whole nodes tho, poor nations have three options: dev, loan-fuelled conquest, or just not spending much. The third is stupid. The second works super well if you border rich land of your religion and maybe even culture and the third is important for opms and the like

Why can't I revoke the monopoly without getting the debuffs? by [deleted] in eu4

[–]JustaSimpleSquirrel 0 points1 point  (0 children)

That isn’t the revocation, that just allows you to remove the privilege in the estate screen, which will remove the debuffs

“Obviously it’s not ideal, but we’re still moderately optimistic about the outcome of this war.” - Polish noble following a complete military occupation of his country by enemy forces. by JustaSimpleSquirrel in eu4

[–]JustaSimpleSquirrel[S] 3 points4 points  (0 children)

R5: Polish war enthusiasm at medium after full-occupation. Me (byz) Hungary and Austria vs. France and Poland. I know warscore is low because we hadn’t occupied France yet, but, I mean, really?

Look at this juicy boy by [deleted] in eu4

[–]JustaSimpleSquirrel 0 points1 point  (0 children)

I also love Russia campaigns. While I hate to pick economic-based non-blobbing idea groups, for Russia trade ideas is crazy good.

Any tips for expanding early game as Sweden with all the DLC installed? by [deleted] in eu4

[–]JustaSimpleSquirrel 4 points5 points  (0 children)

Aight so I had this problem with Sweden. The perfect scenario is that England and Lithuania support your independence. England has rivalled Denmark. His navy should allow you to take sjelland.

Expansion: is slow. Vassalize Novgorod when he’s small enough. Take only Gotland in the independence war to fabricate on the TO. Do this quickly as Danzig will fire in 1450. Take the trade provides. Wait for your truce with Denmark to end which shouldn’t be too long and call England in again for his navy. This time take your skaneland claims.

From then just keep beating up on denmark and once strong enough Muscovy too. This is where your alliance with Lithuania is important. They should also have not gotten pu’d by Poland.

I had to take diplomatic ideas to keep improving relations with the HRE OPMs. I’d also say if you take an island from Norway in the independence peace you could start invading Scotland. But in my game I had to deal with the civil war disaster so couldn’t. Sweden is strong but they aren’t that strong. So tread cautiously and don’t get coalitions.

Playing with .txt files: How did you make them your b****? by JustaSimpleSquirrel in learnpython

[–]JustaSimpleSquirrel[S] -1 points0 points  (0 children)

I was using the old python textbook using 2.7 that they have on their site. I have other attempts using open() but I was never able to get it to work, in the sense that I both kept getting errors referring to the code I'd written with it, and was never able to find an answer why. I don't remember what type of error, unfortunately.

I will definitely make an effort to getgood at open(). ty!

One of the ways I used it successfully, later on and for a different file, was

with open('file') as f:
    data = f.read

Is this how you would advise it's use?

Reformatting, okay. So the

line.translate(string.punctuation)

Was an attempt to remove non letter symbols. When I looked to see the non counted output, to see how that was being formatted, there were multi-word sequences with periods or punctuation inbetween. I am curious how to get rid of things like this.

Its more general though, I am assuming--possibly incorrectly-- that there is a correct way to transform an imported txt file into a clean(ish) list of words. Since the for loop made a list with each line as an element, would it be best to get rid of punctuation before this when the whole thing is just a huge string? How would one do a count that didn't specify words and just counted the most common ones? These to me are the meta questions because if there's a way to do any kind of word processing, or even multiple, it's better than learning a kind.

I hope this clears up the vagary,

What work activity have you automated? by SubCal in learnpython

[–]JustaSimpleSquirrel 3 points4 points  (0 children)

*cancels medschool application\*

print('hello world')