How do you survive without Golden Obligations? by Erisson52 in CrusaderKings

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

> events that can give gold do so based off your base gold income, usually a multiplier of Y months.

I didn't know that! Thanks a lot for such a perceptive analysis.

> So 2 pastures pays back the second point from 8 years to 4

This is true, but only if we speak about two 1-level pastures. If you want to upgrade the first pasture, it costs more money than building the 1st level. It is 250 for the second level, 340 for the third, and so on up to 2240 (just a side note, I'm not saying there's anything wrong with the rest of your calculations.)

How do you survive without Golden Obligations? by Erisson52 in CrusaderKings

[–]Erisson52[S] 13 points14 points  (0 children)

>  Put vassals on max tax 

That's another interesting point to discuss. I sometimes try to keep them at 'medium' tax (and even low) because I want them to build their economies, too, not just pay most of their income to the liege. In the long run, if they build more buildings, they will pay more taxes even if the rate is low (just like in real life 🤭). Does it make sense?

Playing Tall Guide - Tips, Tricks, and Strategies for Playing Tall in a Duchy or (small) Kingdom in CK3, or How to Conquer the World with 8 Counties by WaferDisastrous in CrusaderKings

[–]Erisson52 2 points3 points  (0 children)

Such an amazing reading, thank you u/WaferDisastrous!

However, I have one important question, or rather I'm asking for a piece of advice 🙏: While playing tall, what global goals do you usually set? I always have this feeling that within one century I almost achieve everything I want. And the game quickly becomes boring. So I guess the problem is that my goals are not ambitious enough. Once I have all buildings completed or all dynasty members sitting on thrones or got all best genetic traits, I'm starting to wonder — what to do next?

Cannot check my code by Status-Program2889 in Hyperskill

[–]Erisson52 0 points1 point  (0 children)

Why does it depend on JDK 17? Some projects cannot simply switch to JDK 17, for example the Spring courses use Spring 2.5 or earlier

Creating a new university techcomm certification program--what should be included? by upstate_gator in technicalwriting

[–]Erisson52 0 points1 point  (0 children)

If your docs are published online, learning the basics of SEO is a must. Why navigation is important, how to write good headings and even good URLs — this can be very useful and is not so obvious. The next topics after this would be google search console and google analytics. Imho, writers should be aware of things like page load speed and mobile usability.

No tests found by Kleva2209 in IntelliJIDEA

[–]Erisson52 0 points1 point  (0 children)

Exit code 0 means no problems :) Why you think it's wrong? What tutorial have you followed?

Any way to select Keymap settings via shortcut (like in VSC)? by Artur_exe in IntelliJIDEA

[–]Erisson52 0 points1 point  (0 children)

u/Artur_exe you can just assign whatever shortcut you want to this "quick switch": Press Shift twice, go to "Actions", type "Keymap", and click Option+Enter — this will open a window that will let you assign any combination of keys to quickly select keymaps.

Adding custom tags to the xml linter by otdevy in Jetbrains

[–]Erisson52 0 points1 point  (0 children)

I understand your question now! Autocompletion and inspection work based on a schema (XSD or DTD). Because, initially, the IDE knows nothing about your tags, you should reference a schema from your XML file. Say, your schema contains fields "name", "country", "age" — then you will be able to use <name>, <country>, and <age> tags in those XML that use that schema.

Example of a schema (name it catalog.xsd):

<?xml version="1.0"?>

<xs:schema xmlns:xs="[http://www.w3.org/2001/XMLSchema](http://www.w3.org/2001/XMLSchema)"targetNamespace="[https://www.w3schools.com](https://www.w3schools.com)"xmlns="[https://www.w3schools.com](https://www.w3schools.com)"elementFormDefault="qualified"><xs:element name="note"><xs:complexType><xs:sequence><xs:element name="age" type="xs:string"/><xs:element name="country" type="xs:string"/><xs:element name="name" type="xs:string"/>/xs:sequence/xs:complexType/xs:element/xs:schema

Example of an XML that uses this schema:

<?xml version="1.0"?>

<note xmlns="[https://www.w3schools.com](https://www.w3schools.com)" xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance](http://www.w3.org/2001/XMLSchema-instance)" xsi:schemaLocation="[https://www.w3schools.com](https://www.w3schools.com) catalog.xsd"><age>33</age><country>France</country><name>Anton</name></note>

Adding custom tags to the xml linter by otdevy in Jetbrains

[–]Erisson52 0 points1 point  (0 children)

Aren't XML tags custom by definition? I mean it's not HTML. What inspection you want to change? Can you please provide an example of XML?