Skip Navigation
Jump
Another valuable life lesson from Elmo and friends!
  • So if you don't sell it, and instead rent it out to other people, he'd get a portion of the rent the future tenant pays? And I don't supposed said future tenant will also get equity?

    2
  • Jump
    Another valuable life lesson from Elmo and friends!
  • Have you consulted with a lawyer about this? The laws differ from place to place, but I'd be worried the equity you give him may also grant him some sort of claim on the house, which would mean he gets a say on financial things related to the real estate. This can complicate things in the future.

    Also - what does "percentage of revenue if we end up keeping and paying it off years later" mean? That after he leaves you will pay him for his share in your house?

    9
  • Jump
    #goals
  • If he thinks something doesn't matter just because the people involved are dead, maybe history is not the right academic field for him.

    20
  • Jump
    Anon is a good samaritan
  • The DNR doesn’t mean a damn thing until it is literally in your hands.

    How does the DNR get into the first responder's hand in practice? Do you get an emergency call and drive there as fast as you can through red lights with your siren on only to be greeted by a relative that made the call handing you the DNR document?

    But if the DNR turns out not to be real/legitimate

    Are you responsible for validating its legitimacy while in the field, when every second counts?

    42
  • Jump
    Nature saying the quiet part out loud.
  • Yup that's what I mean.

    Seems like a reasonable limitation then (not that the entire business model of scientific journals is reasonable in the 21st century is reasonable - just this specific limitation). The journal's theme is proprietary, but the paper's authors still have the LaTeX source so they can just slap a free preamble on it and publish it with that.

    1
  • Jump
    Please stop the bus of life, I want to get off
  • Poor "volunteers" will do the backbreaking manual labor. Rich volunteers will drive the heavy machinery in air conditioned cabins.

    14
  • Encountering one of these embedded tweets in a blog post, my hand instinctively moved to click the X and close it. That took me to the website.

    Could this be a clever ruse to generate more visits? Is Elon Musk actually more cunning than we give him credit?

    2

    I have this idea for a certain game development tool, but before I start another side project I want to check if something similar already exists.

    An important part of game development is fine-tuning numeric values. You have some numbers that govern things like character motion, weapon impact, enemy AI, or any other game mechanic. For most of these there is no "correct" value that can be calculated (or even verified!) with some algorithm - you have to manually try different values and converge to something that "feels right".

    The most naive way to fine-tune these numbers is to have them as hard-coded values, tweak them in code, and re-run the game every time you change them. This, of course, is a tedious process - especially if you have to go through long build times, game loading, and/or gameplay to reach a state where you can test these values (that last hurdle can often be skipped by programming in a special entry point, but that too can get tedious)

    A better way would be to write these numbers in configuration file(s) which the game can hot-reload - at least while in development mode. That way you can just edit the file and save it, and the game will reload the new values. This is a huge improvement because it skips the building/loading/preparing which can drastically shorten the cycles - but it's still not perfect because you have to constantly switch between the game and the configuration file.

    Sometimes you can use the game engine editor to tweak these while the game is running, or create your own UI. This makes the context switches hurt less, and also lets you use sliders instead of editing textual numbers, but it's still not perfect - you still have to switch back and forth between the game controls and the tweaking interface.

    Which brings us to my idea.

    What I envision is a local fine-tuning server. The server will either update configuration files which the game will hot-reload, or the game could connect to it via WebSocket (or some other IPC. But I like WebSocket) so that the server could push the new values to it as they get updated.

    After the server deduces the structure of the configuration (or read it from a schema - but providing a schema may usually be a overkill) you could use its webapp UI to configure how the values would be tweaked. We usually want sliders, so you'll need to provide a range - even if the exact value is hard to determine, it's usually fairly easy to come up with a rough range that the value must be in (how high can a human jump? More than 5cm, less than 5m). You will also decide for each slider if it's linear or logarithmic.

    The server, of course, will save all that configuration so that you won't have t reconfigure it the next time you want to tweak values (unless there are new values, in which case you'll only have to configure the sliders for them)

    Since this would be a server, the tweaking of the values could be done from another device - preferably something with a touchscreen, like a smartphone or a tablet, because tweaking many sliders is easier with a touchscreen. So you have the game running on your PC/console, gamepad in hand (or keyboard+mouse, if that's your thing), and as you play you tweak the sliders on the touchscreen until you get them just right.

    Does anyone know if a similar tool already exists?

    0