Hacker News new | past | comments | ask | show | jobs | submit | zzygan's comments login

No issue with AU credit card here. Is a credit card and not a debit card though

Is it still difficult to obtain a suica / pasmo card in Tokyo? Last time I was there it was difficult to obtain the card.


Apparently as of ~last week or so regular Suicas have started popping up again.

But it was never a problem to get one at the airport, which where a vast majority of people should get them.

If you skipped that part, it was quite painful in the past few months because of the IC chip shortage.


Suica:

> Sales of JR East's Suica card (image of a penguin on the front) will be discontinued for the time being as of June 8 due to a worldwide semiconductor shortage. [1]

Welcome Suica (for short-term visits):

> Welcome Suica sales will be limited to the following for the time being from December 18th:

> * JR EAST Travel Service Center, Haneda Airport Terminal 3 Station

> * Welcome Suica exclusive vending machine, Tokyo Monorail Haneda Airport Line Haneda Airport Terminal 3 Station

> Please note that only one Welcome Suica will be sold per person.

> Please note that IC cards will not be sold at Narita Airport after the 18th. [2]

PASMO:

> The sale of blank PASMO has been temporarily suspended.

> The sale of Personalized PASMO has been temporarily suspended. [3]

PASMO PASSPORT (for short-term visits):

> The card is available for purchase at 21 locations. [4]

[1] https://www.jreast.co.jp/e/pass/suica.html

[2] https://www.jreast.co.jp/multi/en/welcomesuica/welcomesuica....

[3] https://www.pasmo.co.jp/visitors/en/normalpasmo/

[4] https://www.pasmo.co.jp/visitors/en/buy/


This is partly misleading and partly out of date: Welcome Suicas have been available at the airport throughput, and regular Suicas are available again at major JR East stations.


Thanks for the additional info. I didn’t intend to mislead; the quoted passages are straight off the Suica and PASMO websites, so they are only outdated insofar as those websites are outdated.


If you have an iPhone, just change your phone region to Japan, and use wallet app to add Suica card to your apple wallet. You can charge whatever amount to your Suica card using Apple pay and it's good to go.


As long as you aren't using a foreign Visa card! They are having some sort of spat with Visa right now.

Tourists should get a physical card at the airport. There are too many caveats and exceptions to phone wallet support for non-residents.


You don't need to change regions anymore.

And I think recently when you look up directions in Apple Maps, it even suggests adding a transit card if you don't have one!

Here, under Transit Cards in Maps. https://www.macrumors.com/guide/ios-16-maps/

It would be a _fantastic_ feature if I wasn't a control freak and didn't add one before I even boarded the plane, but still a very nice touch.


There’s no need to change any region; just open Wallet, press the + sign in upper right corner, scroll down to transit cards, and scroll down to Japan section to find Suica as well as PASMO and ICOCA.


I got mine from an ATM like machine years ago and it was very smooth.


They’re referencing the recent shortage in them.

I passed through visiting old friends last week and they had them at some stations but not all.



Obsidian is made by the team at dynalist - it would be amazing if they added the outlining features from Dynamist into obsidian


I love org mode for writing and that side of org is brilliant. It’s not just a task manager. In fact I’d love just a note taking tool that doesn’t care as much about tasks but focuses on a outstanding org mode note taking experience on mobile.


Give the TestFlight build a go. You may find an overlap with what's offered. Happy to take feedback.


Disagree. Type erasure is actually one of th best possible decisions made by the java designers. Languages that have higher kinded types (Haskell, Scala)are virtually impossible to implement without type erasure. This is why the .net runtime doesn’t have languages with HKT


I don't see how the absence of type erasure could possibly be a restriction. Cast everything to object if you must.

I've literally never run into a situation where I wished type erasure was there but didn't have it, but I've ran into situations where type erasure caused problems in Java and where the absence of type erasure let me do things the way I wanted in C#. typeof(T), new T[], new T(), default(T), etc.


> I don't see how the absence of type erasure could possibly be a restriction. Cast everything to object if you must.

Erasure can be nicer than casting to object everywhere, especially when dealing with interfaces. It means you don't have to define separate interfaces for the erased and specialized cases.

e.g. in Java, implementing List<T> means you also implement List. Meanwhile, in C#, you have to implement both IList and IList<T> if you want to be able to use a collection in an erased context (and even then, the interfaces don't provide exactly the same functionality). Implementing both IList<T> and IList<object> isn't much of an improvement.

> I've literally never run into a situation where I wished type erasure was there but didn't have it, but I've ran into situations where type erasure caused problems in Java and where the absence of type erasure let me do things the way I wanted in C#. typeof(T), new T[], new T(), default(T), etc.

IMO most of these aren't too bad to work around. Although, sometimes erasure can cause problems with reflection and you have to use Guava's TypeToken or something similar.

One definite problem with erasure is that it doesn't play nice with unboxed value types.


The codebase I work with has base classes like Thing, then Thing<T> : Thing, with the parts that don't need the T going in Thing.


Sure, good interface design can ease things, but it doesn't really solve the problem I'm talking about.

In Java, List<Foo> and List<Bar> are the same interface. In C#, IList<Foo> and IList<Bar> are different interfaces that just happen to have similar properties/methods.

This means, in Java you can do

  Object obj = ...
  List<?> lst = (List<?>) obj
  Object item = lst.get(3)
Whereas, in C#, to do something similar, you have to dynamically compile at runtime a specialization of a generic delegate.


You can cast to plain IList and it works as expected. You can even use Add on it.

https://dotnetfiddle.net/jcjchk


Right, but again, it means you're implementing two separate interfaces. You can implement IList without implementing IList<T>, and you can implement IList<T> without implementing IList.


Could you elaborate? How does type erasure relate to HKT?


Yup, that doesn't seem to be a real restriction. Here's a comment on a roslyn issue for dotnet: https://github.com/dotnet/roslyn/issues/2212#issuecomment-98...

> Of course it could be implemented type-erased style, but that's an unpleasant can of worms.

> If it were implemented like C++ templates, it would be a source level feature, meaning you can't have higher kinded polymorphic methods in assemblies. I think we can reach consensus that such a feature would only pollute the language.

> If it were implemented like Java generics, it would lead to all sorts of nonsense. For example you couldn't do typeof(M<>) inside the hkpm, since the type has been erased.

And then a complex-but-good implementation idea follows. Type erasure is not necessary in this case.


The complexity is exactly is issue. So while it’s possible to implement on the .net runtime without type erasure, it’s hard.

Plus the only reason type erasure is bad is if you want reflection. Which in FP languages with a solid type system isnt idiomatic and safe anyway. Edit: value types are one other reason for not using erasure but Can be done other ways



I wouldn't be so sure about it. In those references people aren't lifting 300lbs, right?


They aren't that well trained either. And most well trained people will never clean and jerk 300+lbs. Even if every single kid who tried a 300lbs+ clean and jerk died from it on the spot, that still wouldn't make enough of a dent to make lifting a high risk sport.

The thing worth keeping in mind that people forget when questioning whether kids should lift, is that kids lift, or try to lift large percentages of their body weight to failure all the time during normal play. They have a training capacity and recovery ability that makes me insanely jealous as someone who's turned 40.

If lifting the weights they are physically able to is dangerous for them, then so is a lot of their regular playing.


Thanks for the links.


http://www.joelonsoftware.com/articles/GuerrillaInterviewing... There were earlier versions of that article as well. Joel kinda popularized the notion of those kind of problems


Is there a way to do XMonad style layouts with this system? Since moving to OSX, I've missed Xmonad badly. The big thing that has been lacking is the ability for newly opened windows to automatically be placed into a grid, according to the layout that is currently defined, and then have the ability to shuffle windows around within that layout.


That should be a really easy config, especially after events are added in 1.1; I'll see what I can do it create it and add it to the wiki, unless someone beats me to it :)


Credit card penetration is pretty high in Australia.

Its a few years old, but as of 2009 at least 65% of Australians have credit card debt. http://www.abs.gov.au/AUSSTATS/abs@.nsf/Lookup/4102.0Main+Fe...


Just in case you were wondering what kind of shots this rig can produce....

http://24x360.com/gallery


Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: