"Being born in France, I was immersed in Japanese culture from a very young age." I fail to see how these two things are connected?
Japanese cultural exports (anime and manga) are quite popular in France, tapping partly into an existing comic book culture.
Japanese explained to programmers
21–30 of 416 posts
Re: Japanese explained to programmers
#22Just a nitpick but the particle “ha”/“は” is not really used to set the subject but the topic or context. The topic or context can often be the subject but it’s an important subtlety. The particle to set the subject is “ga”/“が”.
Re: Japanese explained to programmers
#23 request.setURL("serverurl").send()
This style of sentence structure was one of the strangest things to get comfortable with. You have to think a bit differently.The function chaining makes sense here and I wonder if the language had influence on Ruby's development.
Anyone interested in the language should definitely check out the Genki series. It's written well enough you could fully teach yourself.
https://genki3.japantimes.co.jp/en/intro/ or amazon.
Re: Japanese explained to programmers
#24The one-to-many relationship between a given kanji and its many pronunciations makes it maddeningly difficult, even for native speakers. 生, for example, has at least nine pronunciations. The only way a programmer might “solve” Japanese would be with copious use of lookup tables or prefix trees.
Re: Japanese explained to programmers
#25Just a nitpick but the particle “ha”/“は” is not really used to set the subject but the topic or context. The topic or context can often be the subject but it’s an important subtlety. The particle to set the subject is “ga”/“が”.
A very important distinction which textbooks often fail to explain clearly. The subject is always and only が. Even if there's no が in the visible sentence.
Re: Japanese explained to programmers
#26I have to fundamentally disagree with the premise: Japanese is probably one of the least logical languages on the planet. To wit, it combines the written complexity of Chinese with the spelling inconsistency of English. The one-to-many relationship between a given kanji and its many pronunciations makes it maddeningly difficult, even for native speakers. 生, for example, has at least nine pronunciations. The only way…
Similarly to people thinking less of the country they were born/raised, I tend to find that people always think their first language(s) are the less logical ones, maybe that fits in here as well. Some sort of bias it seems.
Re: Japanese explained to programmers
#27request.setURL("serverurl").send() This style of sentence structure was one of the strangest things to get comfortable with. You have to think a bit differently. The function chaining makes sense here and I wonder if the language had influence on Ruby's development. Anyone interested in the language should definitely check out the Genki series. It's written well enough you could fully teach yourself. https://genki3.j…
Re: Japanese explained to programmers
#28Just a nitpick but the particle “ha”/“は” is not really used to set the subject but the topic or context. The topic or context can often be the subject but it’s an important subtlety. The particle to set the subject is “ga”/“が”.
Just another nitpick: "は" is pronounced as "wa" not "ha" when it is used as the topic marker, as in the well-known greeting "Konnichiwa".
Re: Japanese explained to programmers
#29Earlier quoted context omitted.
A very important distinction which textbooks often fail to explain clearly. The subject is always and only が. Even if there's no が in the visible sentence.
Not sure if I understand this invisible が idea. Where is it in「私は牛肉を食べます」?
Re: Japanese explained to programmers
#30English and French work in the same way.
However roles are usually determined by word order. But in essence it's the same thing as obj.do_stuff(), 'obj' is the thing that do_stuff.