Readit News logoReadit News
Vedor commented on Why Fennel?   fennel-lang.org/rationale... · Posted by u/behnamoh
giraffe_lady · 5 months ago
I would love to see a stripped back ML-style language that targets lua, just something like ocaml's type system and exhaustive pattern match right on top would be all I need. There have been a few attempts but nothing I know of that got usably far and is maintained.

There might be a way to get standard ML to output lua or something but I'm not that familiar with it. I think it would be an incredible fit for a third backend for gleam, but they say they aren't adding any more beyond erlang and js.

Vedor · 5 months ago
I think that LunarML [1] could fit this niche quite well. It's a StandardML compiler that targets Lua. I can't tell much more as I've only played with it a little and don't have much experience with ML languages in general, but it looks promising.

[1] https://github.com/minoki/LunarML

Vedor commented on In my life, I've witnessed three elite salespeople at work   slate.com/life/2024/12/wo... · Posted by u/mooreds
theamk · 8 months ago
I don't think the people you are describing are called "sales" - usually they are "post-sales support", or "account manager", or something similar.. Basically "project manager" equivalent for customer relationship.

Fully agree that they are great though.

Vedor · 8 months ago
In smaller companies, one person might cover multiple roles. Also, it might be different when your employer is focused on B2B sales, though I don't have enough experience to be sure about that.

Anyway, when I was working in sales, I was handling pre-sales, closings, and post-sales support. We were manufacturing and selling security equipment. The goal never was to simply close the deal. We wanted to expand the network of distributors, and to do so, we needed to build long-lasting relationships.

I quite liked the experience, but I was always more tech guy than salesman – I guess most of my clients were coming back because I was preparing projects of CCTV installations, I was providing trainings for clients and their crew.

But as a typical salesman described in the article, I would be terrible.

Vedor commented on Tog's Paradox   votito.com/methods/togs-p... · Posted by u/adzicg
gukov · 10 months ago
Well, travelling as a group of people almost always demands having a plan, otherwise “we’ll just wander around until we find something interesting” is a hard sell to get everyone on board.
Vedor · 10 months ago
Fair point. And that's why I prefer to travel alone or just with my fiancee. It's just much easier to, well, wander as you please.
Vedor commented on All possible plots by major authors (2020)   the-fence.com/plots-major... · Posted by u/ohjeez
teraflop · a year ago
Reminds me of "Book-A-Minute" (http://www.rinkworks.com/bookaminute/) from yesteryear.

Most of the entries are for specific books, but there are also some authors mentioned, e.g. "The Collected Works of Dean Koontz": http://www.rinkworks.com/bookaminute/b/koontz.shtml

Vedor · a year ago
"A Scanner Darkly" entry [0] is my favorite so far. Somehow, it's wildly accurate.

[0] - http://www.rinkworks.com/bookaminute/b/dick.scanner.shtml

Vedor commented on My first game with Carimbo, my homemade engine   nullonerror.org/2024/10/0... · Posted by u/delduca
samiv · a year ago
To anyone thinking about writing a game engine.

I've been cranking on a 2D engine for over 4 years and have put thousands of hours of work into it.

My summary:

If you want to write a game, just write a game. Don't start with your own engine since this will suck all your time and you'll end up spending 90% on engine and very little getting the game game done. Especially so in the beginning when you have no features and doing anything in the game requires engine work.

If you choose to create your own engine it's a compelling and fantastic domain where problems come in all shapes and sizes and you can and get to work with physics, maths, linear algebra, audio, rendering, graphics APIs, system level programming, most likely native programming AND scripting, game content, technical art etc.

But finally the real work is not the engine but the tooling and the editor around the engine.

If (when) you rely on free assets from (for example opengameart) you can expect no consistency. Not just the art style but just the technical part too, like your models are all inconsistent in shapes and sizes and axis, 2D content such as textures are by default without any meta data etc. So you really need to create a ton of tooling so that you can have sensible workflows and you can extract and consume the usable and interesting parts of any content package easily.

This inevitably leads to the concept of "editor" which easily comes with a ton of work by itself that has nothing to do with game or game engine per se. For example the concept of "Project", windows, resource management, basic editing functionality for creating content, undo/redo/ etc. A lot of this is not really related to the game or the engine in anyway but you really sort of "must have it" if you want to create something that is actually usable.

The feature creep is real! But once you get the over a lot of the boiler plate and you can actually use your own editor to stuff content into your own engine and have it running it's really a nice feeling even if nobody else cares!

On the technical side my advice is really to be able to do first principles type of thinking. It's of utmost importance to be able to break things apart into self contained features and pieces that the game can then combine to create bigger constructs.

If you can have your materials scroll textures vertically, when you combine that with shapes that are layered and place textures onto those shapes that scroll at various multiples of your "characters" speed then you've just created "parallax scrolling" essentially.

-----

https://github.com/ensisoft/detonator

Vedor · a year ago
For me, a great middle ground is building an engine similar to fantasy consoles (PICO-8, TIC-80, etc.)

This type of project is small enough to plan all the elements before you start (which helps to stick to the design and therefore to avoid feature creep). Yet, it is still complex enough to provide entertainment and challenge.

This approach also has the advantage – at least it is an advantage in the case of side projects – that you can see the results of your work quite quickly.

I'm working on such a project myself, and it is a great experience. Although to tell the truth, it is more of a "game creation kit" than an engine.

Vedor commented on Error Handling in Baby Toys   brainbaking.com/post/2024... · Posted by u/dave-x
cancerhacker · a year ago
The toy emitting "ut oh" on invalid input reminded me of a phonics toy - I think it was either a schoolbus or caterpillar, where phonemes could be pressed and it would sound them out "g-oo-d" "d-aw-g" - but if as a bored parent you tried "sh-ih-t" or similar it would emit "sh-<heeheehee>" I always wondered if it was localized per-market.
Vedor · a year ago
When I was a kid, I had a toy gun that would start with kind of distorted phrases, then continued with shooting sounds. I think it took me a couple of years before I understand that the voice was yelling something akin to "Baldy! Get the f... over there! <shooting noises>"

u/Vedor

KarmaCake day280February 29, 2020View Original