HackerTrans
TopNewTrendsCommentsPastAskShowJobs

theseanl

no profile record

comments

theseanl
·3 anni fa·discuss
This is one of a few apps that has perfect support for accessing /data/data directory on rooted phones.
theseanl
·5 anni fa·discuss
Just wanna point out that South Korea is one of the countries where people values wealth the most than other life goals, such as family life, work success, and other spiritual values. Regarding this South Korean problem as a problem of wealth inequalty is exactly how South Korean likes to think about. I think the opposite is true: rather than being wealthier, helping people noticing and fulfilling other life goals would be the right way.
theseanl
·5 anni fa·discuss
As a South Korean, I'm glad that you've noticed this oddity of women depicted in South Korean media. It is indeed very controversial topic in South Korea. There are a group of people, heavily funded by government, who like to push a narative that Korea's gender equality is very low, and use it as a leverage for their political power. Such politics has affected Korean mass media a lot, and gender conflicts among South Korean men and women are the highest than ever. You can safely assume that such female characters as depiction of crooked gender-culture in South Korea.

As a simple proof, fertility rate of South Korea has dropped to 0.6. This is lower than countries in war; Korean men have to serve military for about 2 years in their 20s, and Korea is the least country pay respect to soldiers. I think may American would find astonishing how South Korean, especially female, like to make fun and deride them. During young mens serve military, female develop their own youth culture, and get used to a very twisted view on the society in terms of gender.

As a result, popular culture is largely divided in terms of the gender of the audiences. The OP's linked article mentions BTS as one of Korean pop music's success, but ironically, they are not that recognized among Koreans actually; It is a product of those media targetting female audiences.

I think this culture is not 'sustainable', if this is the right term to use. As a result of this political groups (which affects legislation) and weird, disgusting self-view and society-view of females, well, fertility rate is dropping at unprecedented rate.
theseanl
·5 anni fa·discuss
Confusingly, according to the MDN document I linked, that permission is not needed.

Clipboard APIs are in general pretty permissive in writing, any websites can write anything to the clipboard without requesting any permission, if it's done within like 1000ms or so from user interaction. So you don't even need an extension to write to clipboard.
theseanl
·5 anni fa·discuss
I did found that the codebase does not seem to be using any `browser.clipboard` API, so `clipboardWrite` permission seems to be unnecessary. According to [MDN](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/Web...), `browser.clipboard` API mainly exists to enable extensions to write image contents to clipboards, and all the ClearURL needs is writing texts. Also, [another MDN page on clipboard interactions](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/Web...) states that extensions do not need `clipboardWrite` permissions to write to clipboards, e.g. by using `document.execCommand('copy')`.

Hopefully, removing this permission could help getting the extension restored.