I wonder if they're going to change the name to include a K in it like their other apps? Kanimator has a good ring to it.
I don't work in hiring, but I do enjoy interactive portfolios. That said, I think this could get frustrating really quickly for people who just want a quick overview of who you are, what you work on, how to contact you, etc.. Recruiters have hundreds of applications to sift through, they might not have the patience to wade through dialogue. Maybe keep important information easy to access and make the rest a fun game for those who enjoy it.
Anyway, this looks great and I love the voice acting!
I'd recommend making the world smaller and highlighting NPCs so they wouldn't get lost or wonder what to do. Also be aware that a lot of people browse on phones or tablets, so this needs to play nice with portrait mode as well.
You'd think, but it boils down to just showing you the most popular content, even if it's just clickbait and advertisements.
I use Joplin. It's fairly simple and very comparable to Evernote if you've ever used that, but it's perfect for my needs.
I used LogSeq before, it's very similar to Obsidian, the big difference being that it's open source. It's got a ton of features and the built-in whiteboard is actually really good, but I found it a bit overkill for my simple note taking.
- Logseq also makes each line start with a bulleted list which quickly made me go insane
Not mentioned in this post but if anyone was thinking about using 4.4 for web exports, wait a little more. There's still a pretty bad issue with audio cackling that hasn't been fixed yet (though there's a PR submitted for it, so it might make it to beta 3).
I appreciate the rundown! I started getting used to Emmet now, it's certainly more friendly than it looks. I think this is what I was looking for.
The short-hand for CSS in Emmet is also pretty neat, but It'll take some time to get used to it. w75p m10
turns into width: 75%; margin:10px
I can't wait for the new game tab. There's been at least a few times where I needed to go through something frame-by-frame to see what's going on.
I don't think so, it'll just remove the bad results and you'll have to click next page yourself. Technology has its limits.
I think both of them would have a way to filter domains if you're self-hosting. The blocklist uses simple regex so you can probably copy-paste the blocklist straight into your filters.
I also bought a PSTV when they were on clearance for less than 20 bucks, makes for a nice little gaming console for the bedroom or guest bathroom.
The... Guest bathroom???
I owned a PSP Go a few years ago, it's a great device. I loved how tiny it is, but the screen was a little too small for me, and it didn't handle emulation that well. Loved playing Lumines and Patapon on it, though!
It's not a thing and I totally agree it should exist, there's a proposal for it on GitHub.
If you want to handle different types, the right way of doing it is giving your parameter a generic type then checking what it is in the function.
This prints
10 is an integer
andHello is a string
.If you really, really need to have a variable amount of arguments in your function, you can pass an array. It's pretty inefficient but you can get away with it.
Then you can pass [10, 20, 30] into it or something. It's a useful trick.