HackerTrans
TopNewTrendsCommentsPastAskShowJobs

alex_studer

no profile record

Submissions

[untitled]

1 points·by alex_studer·3 jaar geleden·0 comments

comments

alex_studer
·2 jaar geleden·discuss
This seems like a cool idea! Some random feedback from using the website:

* I'm not really sure I understood what SkyView is? It seems like you need to enable that to book round-trip flights, and you have to pay for it? But then there's also SkyView Lite?? And that's free but needs an account? Is there no way to book round-trip without paying?

* Maybe ask people what cards they have on the homepage? I found it confusing that it suggested flights with points programs I didn't have, and didn't realize you could filter it at first.

* I don't think I fully understood the difference between this and just using my credit card's travel portal to book flights. Is it that you can compare multiple rewards programs at once? Or the idea that you can earn more value per point by transferring them? Maybe it would be good to clarify that on the homepage, because right now it just feels like a generic "book with points" search engine?

* Is there a way to allow discovering deals in any destination? (So rather than choosing a fixed destination, let it be open to any destination, and then plan a trip somewhere where you can get a good deal on a flight, if that makes sense?)

* On mobile, the filter popup is blocked by the "Log In/Sign Up" buttons on the bottom of the screen. Also on the homepage, the "Create an account" notification appears on top of the expanded hamburger.
alex_studer
·2 jaar geleden·discuss
Also!! From the full terms at https://developer.apple.com/contact/request/download/alterna... :

> If the Core Technology Fee does not apply to Your Applications under this Section 4.4, any Alternative App Marketplace (EU) You distribute may only distribute Applications from You or another developer registered with the Apple Developer Program and not subject to the Core Technology Fee under this Section 4.4.

So a hypothetical F-Droid for iOS would need all its apps to be from registered developers with fee waivers. (And individuals are not eligible for the waiver, so it could only contain apps from other non-profit organizations.)
alex_studer
·2 jaar geleden·discuss
There is also this requirement though:

> In order to establish adequate financial means to guarantee support for developers and customers, marketplace developers must provide Apple a stand-by letter of credit from an A-rated (or equivalent by S&P, Fitch, or Moody’s) financial Institution of €1,000,000 prior to receiving the entitlement. It will need to be auto-renewed on a yearly basis.

Source: https://developer.apple.com/support/alternative-app-marketpl...

It doesn't seem like the fee waiver removes this requirement.

And it seems like the cost for a standby letter of credit is roughly 1-10% of its value per year? So effectively it costs €10,000 to €100,000 per year just to have an alternate marketplace, separate from the core technology fee....
alex_studer
·5 jaar geleden·discuss
It looks like maybe the goroutine in that example doesn't actually get a chance to run before the program stops. If the main function lasts longer, then you'll see the effect of the panic. See https://goplay.tools/snippet/8SFlFkZ2P0y

Also, see the Go spec: https://golang.org/ref/spec#Handling_panics

> Next, any deferred functions run by F's caller are run, and so on up to any deferred by the top-level function in the executing goroutine. At that point, the program is terminated and the error condition is reported, including the value of the argument to panic.

It looks like, assuming it makes it to the top of the current goroutine, then it should be killing the whole program.
alex_studer
·5 jaar geleden·discuss
Out of curiosity, where do you send the emails from? (Are the IP addresses from AWS/some other large provider? Or something else?) I've heard that the IP address block has something to do with getting marked as spam.

I've checked everything on that list and it's all good, and I'm sending from IPv4. The really frustrating thing is that Google's own Postmaster Tools [0] doesn't want to tell me anything without "a sizable daily volume of email traffic (up to the order of hundreds)".

If it doesn't have to do with the origin IP's neighborhood, my only other guess is that I don't have enough email volume, which seems like a catch-22...

[0] https://gmail.com/postmaster/
alex_studer
·5 jaar geleden·discuss
Same here!
alex_studer
·5 jaar geleden·discuss
In case anyone is curious: I checked and the PTR record for my mail server (168.62.161.121 -> mail.studer.dev) is valid. mail-tester.com also gives me a 9.9/10, but I just tried sending an email to a Gmail account and it went straight to spam :(

I suspect it's probably a volume thing? As in I'm not sending enough email for Gmail to make any judgements about my mail server, since I'm only an individual. Of course there's not really a great way to resolve that...
alex_studer
·5 jaar geleden·discuss
Done, thanks!
alex_studer
·5 jaar geleden·discuss
Maybe slightly unrelated to the main topic, but:

> If you’re worried about mail deliverability issues, don’t be — it’s more or less a myth in $CURRENTYEAR. If you set up DKIM properly and unlist your IP address from the DNSBLs (a simple process), then your mails will get through.

Does this match most people's experience? Or is he just talking about the deliverability of smaller providers like Migadu? I run my own mail server and can never send emails to people on Gmail/Microsoft 365/etc unless it's in reply to an email that I received.

I've checked DKIM and the DNSBLs, and everything seems correct...is it just a matter of not having enough volume for email providers to trust me?