HN user

ndrarmst

55 karma
Posts1
Comments10
View on HN

Driving between dead zones of opposite carriers is surprisingly difficult to do - would have been a great test, though!

I did test walking down the street away from Wi-Fi - the transition is much smoother, but I was only able to get it down to about 2 seconds or so. And that was when I turned around and ran back toward Wi-Fi when it started to switch, so that the call remained good on Wi-Fi until it actually cut over.

The counterargument to an all-software solution is that if you switch the profile on the Fi phone, it also remains switched if you move the SIM to another device. So however selection was made, it is 'sticky' across devices.

That's why I guessed it was a paired SIM app + intelligent Android app - but I couldn't verify that, so you could be correct.

Precisely - that stable IP between networks is what you need to have completely seamless switches.

This is what Touch Mobile (www.touch.com) does for their handover, for instance.

(author here) I didn't have a chance to test how the VPN works, but even if they were using MPTCP the switch wouldn't necessarily be seamless.

Especially how they are using it now - which hands over a Wi-Fi call (which is data) - to a cellular voice call (not data). It's a subtle point, but calls over cellular are not data, so they are not using TCP/UDP/MPTCP/etc.

Pretty RFC 14 years ago

Thanks for sharing! Much more convenient than Wikipedia, my usual go-to site for status codes.

From what I've seen, the Canadian stipends range from a low of about $15k, for those on research assistantships (paid out of their supervisor's research budget) or on provincial scholarships, to a high of about $21k (NSERC or other tri-council federal scholarships). There are a limited number of higher-paying tri-council scholarships as well.

Some universities will top up a federal/provincial scholarship (Waterloo tops up by $10,000), and teaching assistantships are available as well. However, part-time work hours (TA or otherwise) are usually limited by the terms of the scholarship/assitantship, so there is a limit to how much a student can reasonably earn while doing a degree (NSERC limits to 10 hours worked/week, the expected hours for a TA).

Tuition is paid out of the student's stipend amount, though it's often quite a bit less than undergraduate tuition in CS and similar programs. My fee bill dropped in half when I finished my BASc and started an MASc.

Code review. Oddly enough, it wasn't so much the issues that were raised by the reviewers that made me a better programmer (though they certainly helped), but the knowledge that every aspect of my code could be inspected, and I'd be expected to fix it, that forced me to double- and triple-check my work before sending it off. Since that time, even when I'm working on personal projects, I find myself coding defensively, and will often write sections of code a couple times until I'm satisfied that it is unambiguous, correct, and clear.

This has helped immensely when I've gone back months later and tried to figure out what I was thinking; now, it actually makes sense!