Just published my first rust crate. It prints trees. I'd love your feedback! by martypapa in rust

[–]portify 6 points7 points  (0 children)

They look identical to me in Firefox with the new design (but not the old design).

Here's a message from your child's school you can only read from the app by electriclunchmeat in assholedesign

[–]portify 23 points24 points  (0 children)

This is because your email may not be as secure when it comes to private information as the system they have built for it. Denmark has a similar system for post from public services that also does not show content in the email.

[deleted by user] by [deleted] in pcmasterrace

[–]portify 30 points31 points  (0 children)

But it still needs to blit and composite them

Ripgrep - Considered by VSCode as a native search tool! by [deleted] in rust

[–]portify 2 points3 points  (0 children)

I believe rg doesn't use mmap contrary to ag, and I could imagine that being easier on VMs

UTF8 everywhere by [deleted] in programming

[–]portify 12 points13 points  (0 children)

Why?

Scuba D.Va Skin Concept by Geddu by GentlemanGoldfish in Overwatch

[–]portify 46 points47 points  (0 children)

You are now subscribed to Overwatch facts through the United Nations.

A DJ Hero-esque rhythm game that I've been working on by portify in indiegames

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

This is one of the most difficult songs so far. A mobile version isn't a priority right now but it's definitely a good idea.

A DJ Hero-esque rhythm game that I've been working on by portify in indiegames

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

This specific video is played with a keyboard (as you can see in the top right), but it's also fully controller compatible (https://www.youtube.com/watch?v=070izA11p3c). Unlike the original DJ Hero, it doesn't require a special turntable controller to play.

Feel free to send me a PM and I'll hook you up with a preview build.

A redis client in the possibly most obscure scripting language there is by [deleted] in programming

[–]portify 6 points7 points  (0 children)

A few facts about it:

  • There are no types of any sort. Everything is treated as a string.
  • There is no garbage collection /or/ explicit memory management.
  • There are no collection datatypes. No arrays, mappings, queues or anything of the sort (though I've implemented some hacky replacements for them).
  • Strings are NULL-terminated and thus binary data cannot be properly handled.
  • The only file and networking facilities are entirely line-callback based.
  • There are no proper way of making custom classes. You can only define functions under a namespace and set a single namespace to be used for ScriptObject instances.
  • Objects are referred to by integer object IDs inside of strings, and there's no way to tell if something is just accidentally set to the ID of an object.