HackerTrans
TopNewTrendsCommentsPastAskShowJobs

whym

454 karmajoined há 11 anos
[ my public key: https://keybase.io/whym; my proof: https://keybase.io/whym/sigs/ObyObnZy-9u86hsxQvcZuSulaDOK1-Y5vFbLlnJVaIg ]

Submissions

Unintentional information disclosure in LaTex Files submitted to arXiv

ieeexplore.ieee.org
2 points·by whym·anteontem·0 comments

Unintentional information disclosure in LaTex Files submitted to arXiv

ieeexplore.ieee.org
1 points·by whym·anteontem·0 comments

Histomat of F/OSS: We should reclaim LLMs, not reject them

writings.hongminhee.org
2 points·by whym·há 5 meses·0 comments

Stop DDoS Attacking the Research Community with AI-Generated Survey Papers

arxiv.org
4 points·by whym·há 9 meses·0 comments

The Internet Under Attack

chathamhouse.org
3 points·by whym·há 2 anos·1 comments

comments

whym
·há 2 anos·discuss
If nothing else, the fact that many people write anything with ink and brush helps to sustain the calligraphy culture. Nowadays, to many (if not most) of them the new year kakizome ritual is the only occasion they practice brush calligraphy in an entire year.
whym
·há 2 anos·discuss
Various businesses provide paid service called 見守りサービス to have someone (or a machine) check up on you. The idea is to detect health emergencies early enough and act on getting help, in case family members and neighbors can't. Not that that is the best option, but at least money can help to some extent.
whym
·há 3 anos·discuss
It looks like this is what it does essentially:

                let luminance = (0.2126 * avg_r as f32 + 0.7152 * avg_g as f32 + 0.0722 * avg_b as f32) as u8;
                let character = match luminance {
                    0..=31 => '#',
                    32..=63 => '@',
                    64..=95 => '8',
                    96..=127 => '&',
                    128..=159 => 'o',
                    160..=191 => ':',
                    192..=223 => '*',
                    224..=255 => '.',
                };
https://github.com/thed24/ascii-gen/blob/main/src/converter....