un_ax

joined 2 years ago
[–] un_ax@lemmy.sdf.org 6 points 2 days ago (2 children)

EveryDoor works well on iOS for simple things like updating or adding shops etc.

"Go Map!!" is another one, and while I find it's interface a bit harder to work with, it has a "Quests" setting, which lets you configure a filter of missing tags that show up on the map.

[–] un_ax@lemmy.sdf.org 1 points 2 months ago

I was curious and it uses gTTS.

It calls what's probably the "speak" button on translate.google.com

This project is leveraging the undocumented Google Translate speech functionality

[–] un_ax@lemmy.sdf.org 3 points 4 months ago* (last edited 4 months ago) (1 children)

You could use WPAD on your network to point all clients to an i2p proxy. I'm not sure sure if it's secure or private to be able to access both at once though.

function FindProxyForURL(url, host)
{
  if (shExpMatch(host, "*.i2p"))
  {
    return "SOCKS5 [proxy ip]:4447";
  }
  return "DIRECT";
}