Readit News logoReadit News
greydius commented on Yamanot.es: A music box of train station melodies from the JR Yamanote Line   yamanot.es/... · Posted by u/zdw
makeitdouble · 4 days ago
Yes, it's that song.

The station is named after a beer company that operates there, and they used their beer CM song for the station chime as well.

greydius · 4 days ago
And the brewery got the name from Ebisu, a god who is believed to protect fishermen.
greydius commented on Tokyo's retro shotengai arcades are falling victim to gentrification   theguardian.com/world/202... · Posted by u/pseudolus
rtpg · a month ago
Kyoto Sanjo got "killed" by COVID. Lived in the area for a bit, and when I visited in 2024 there were so many things just gone
greydius · a month ago
I was there a few days ago. Doesn't seem dead to me, but I don't know what it was like pre-covid.
greydius commented on Did Akira Nishitani Lie in the 1994 Capcom vs. Data East Lawsuit?   thrillingtalesofoldvideog... · Posted by u/danso
mrandish · 3 months ago
> he claims that the game’s characters are not inspired by other sources, including video games and comic books.

Wow, that's a pretty implausible thing to claim under oath in a deposition. I mean, it's almost impossible to NOT be somewhat influenced by some pre-existing historical or cultural sources whether fairy tales, legends, books, movies, paintings, comics, games, bedtime stories, etc. I was wondering if some context in the question or answer might be missing, then I read the full context from the deposition transcript:

> "I understand that Data East has questioned the originality of the special moves in Street Fighter II. With the exception of carrying forward some characters, moves, and control sequences from the original Street Fighter, we did not take the characters, moves, and control sequences from any other videogame or any other source such as comic books."

And realized if you change a comma to an apostrophe, Nishitani's statement becomes much less controversial. Just change "we did not take the characters, moves, and control sequences from any other videogame" to "we did not take the character's moves and control sequences from any other videogame"

A deposition is a verbal Q & A that's transcribed by a court reporter based on what they hear the person saying. The punctuation is all added by the court reporter based on their interpretation of what's implied from the context. Of course, each side's lawyers get a copy of the transcription and have an opportunity to contest any errors they choose to. However, Capcom's U.S. attorney may have missed this distinction in the transcript or, alternatively, may have been just fine with the implications of the court reporter's inferred punctuation - which Nishitani probably never saw.

Narrowing it to just the character's moves and control sequences changes it to a more reasonable claim, especially if he meant a particular joystick + button combo triggering a specific kind move. However, I've never been into fighting games so I don't know if at that time there were already pre-existing de facto standards for certain control sequences triggering specific types of moves. If not, my naive interpretation is that a dozen different control sequences triggering a dozen different moves creates over a hundred control/move pairs which could arguably be unique. Of course I have no idea if Data East's game used all or most of those same pairings - and even if it did - if those pairings are legally copyrightable but, at a minimum, turning that comma into an apostrophe does change Nishitani's testimony from something pretty unbelievable (basically sort of implying "I was raised in a cave with no exposure to pre-existing culture") to something that's entirely plausible like "our control sequence/move pairings weren't derived from another game nor were they taken from how fighting moves were sequenced in comic book frames."

Just a couple minutes ago I was another shocked villager lighting my torch, ready to join the mob on the way to set fire to Nishitani's reputation and now I'm not so sure...

greydius · 3 months ago
> A deposition is a verbal Q & A that's transcribed by a court reporter based on what they hear the person saying.

Nishitani was most likely deposed in his native language where the particular English ambiguity you point out probably wouldn't happen. Listing things and marking possession use spoken helper words rather than punctuation.

greydius commented on Why I Program in Lisp   funcall.blogspot.com/2025... · Posted by u/ska80
terminalbraid · 5 months ago
I'm sure you are aware there is ultimately a chicken and egg problem here. Even given the case you presented, it doesn't invalidate the point that if it can implement lisp it must be able to do everything lisp can do. In fact given lisp's simplicity, I'd be hard pressed to call a language that couldn't implement lisp "general purpose".
greydius · 5 months ago
"You're a very clever man, Mr. James, and that's a very good question," replied the little old lady, "but I have an answer to it. And it's this: The first turtle stands on the back of a second, far larger, turtle, who stands directly under him."

"But what does this second turtle stand on?" persisted James patiently.

To this, the little old lady crowed triumphantly,

"It's no use, Mr. James—it's turtles all the way down."

greydius commented on The Tao of Go   bitfieldconsulting.com/po... · Posted by u/mu0n
valbaca · 7 months ago
"define Tao"

> (in Chinese philosophy) the absolute principle underlying the universe, combining within itself the principles of yin and yang and signifying the way, or code of behavior, that is in harmony with the natural order. The interpretation of Tao in the Tao-te-Ching developed into the philosophical religion of Taoism.

I'd say their interpretation (while reductive) is in the spirit of the Tao.

That said, I'm no expert and only have a passing familiarity with the Tao through pop-culture.

greydius · 7 months ago
I think you missed the joke. The first line of the tao te ching says something to the effect of the tao that can be named is not the real tao.
greydius commented on Ichigo: Local real-time voice AI   github.com/homebrewltd/ic... · Posted by u/egnehots
cassepipe · a year ago
Finally I can use one of the random facts that have entered my brain for decades now even though I can't remember where my keys are.

If I remember correctly, "ichigo" means strawberry in japanese. You are welcome.

greydius · 10 months ago
I think it's a bit of word play. 苺 (strawberry) and 一語 (one word) are both read "Ichigo".
greydius commented on Gleam Is Pragmatic   blog.drewolson.org/gleam-... · Posted by u/crowdhailer
devmunchies · a year ago
One thing I dislike with erlang based languages (both gleam and elixir) is that they use “<>” for string concatenation.

In F#, “<>” is the equivalent of “!=“. Postgres also uses <> for inequality so my queries and f# code have that consistency.

greydius · a year ago
One thing I hate about F# and SQL is that they use <> as a "not equals" operator. In Haskell, <> is the binary operator of any Semigroup instance.
greydius commented on Roc Lang – Elm but for everywhere [video]   youtube.com/watch?v=s--2X... · Posted by u/crowdhailer
lalaithion · a year ago
It should be possible to have a platform that has a mutable reference with an API like this:

    main = 
        x = pf.NewRef!
        pf.Write! x 5
        y = pf.Read! x

greydius · a year ago
Haskell:

    import Data.IORef
    
    main :: IO ()
    main = do
      x <- newIORef (0 :: Int)
      writeIORef x 5
      y <- readIORef x
      print y

greydius commented on How to Send an SMS in Haskell (2017)   twilio.com/en-us/blog/set... · Posted by u/mooreds
greydius · a year ago
I'd recommend using ghcup to install Haskell nowadays. (https://www.haskell.org/ghcup/) It makes it easy to install and switch versions of the compiler, language server, and build tools.
greydius commented on Japan is experiencing nationwide credit card payments issues   www3.nhk.or.jp/news/html/... · Posted by u/methou
computerfriend · 2 years ago
Japan no longer issues IC cards.
greydius · 2 years ago
Not true. I bought a new Icoca recently.

u/greydius

KarmaCake day998July 1, 2015View Original