HackerTrans
トップ新着トレンドコメント過去質問紹介求人

egorpv

no profile record

投稿

A guide to navigating AI chemistry hype

cen.acs.org
3 ポイント·投稿者 egorpv·10 か月前·1 コメント

WikiArquitectura: Online Architecture Encyclopedia

en.wikiarquitectura.com
1 ポイント·投稿者 egorpv·2 年前·0 コメント

How to Salt Water Test a Dice

thecriticaldice.com
6 ポイント·投稿者 egorpv·2 年前·4 コメント

Bridge to Nowhere

depth-first.com
172 ポイント·投稿者 egorpv·2 年前·98 コメント

Performance of Eigen vs. Blaze vs. Fastor vs. Armadillo vs. XTensor (2020)

romanpoya.medium.com
19 ポイント·投稿者 egorpv·2 年前·0 コメント

Repack Zoom .debs to remove the `ibus` dependency

hashman.ca
10 ポイント·投稿者 egorpv·2 年前·0 コメント

How Is GCC IR Different from LLVM IR?

stackoverflow.com
2 ポイント·投稿者 egorpv·2 年前·0 コメント

Encyclopedia of Optimization

link.springer.com
60 ポイント·投稿者 egorpv·2 年前·18 コメント

Predatory journals: no definition, no defence

nature.com
1 ポイント·投稿者 egorpv·2 年前·0 コメント

Molecular Interactions and the Behaviors of Biological Macromolecules

williams.chemistry.gatech.edu
40 ポイント·投稿者 egorpv·2 年前·1 コメント

Test Functions for Global Optimization

sfu.ca
31 ポイント·投稿者 egorpv·2 年前·2 コメント

How to generate uniformly random points on n-spheres and in n-balls

extremelearning.com.au
168 ポイント·投稿者 egorpv·2 年前·81 コメント

Interpolation methods (1999)

paulbourke.net
40 ポイント·投稿者 egorpv·3 年前·5 コメント

Why did base64 win against uuencode?

retrocomputing.stackexchange.com
225 ポイント·投稿者 egorpv·3 年前·103 コメント

コメント

egorpv
·10 か月前·議論
https://archive.li/JREl3
egorpv
·2 年前·議論
https://github.com/mpv-player/mpv/commit/1e70e82baa9193f6f02...
egorpv
·2 年前·議論
In such case, imo, it would be more appropriate to use ZIP container format which supports multiple independent entries (files) and index table (including sizes) for them. Compression algorithm is essentially the same (Deflate) so it would not be bloated in any way. As for practical implementations of serializing complex "objects" into ZIP, numpy [0] can be mentioned as an example.

[0] https://numpy.org/doc/stable/reference/generated/numpy.savez...
egorpv
·2 年前·議論
Similar but more verbose: https://infinity77.net/global_optimization/test_functions.ht...
egorpv
·2 年前·議論
> Unfortunately my css seems to break with every other Firefox release. It almost feels like it's being done intentionally. I recall how after one of the updates the entire contents of my custom userchrome file was automatically bracketed with css equivalent of `if false then`. It could simply be fixed by setting read-only attribute for the file but after some time they started randomly renaming css features without any obvious reason. It's like they are trying to make you to give up on customization and force to use the crappy default ui.
egorpv
·3 年前·議論
Same, but my version uses a different approach. It takes the selected (or entered via prompt) text, strip spaces and opens the sci-hub in a separate tab.

  javascript:  Qr = window.getSelection ? window.getSelection().toString() : document.selection.createRange().text; if (Qr) {     void(window.open('https://sci-hub.se/' + String(Qr).replace(/^\s+|\s+$/g, ''))); } else {     void(Qr = prompt('Enter URL/DOI to sci-hub it', ''));     location.href = 'https://sci-hub.se/' + String(Qr).replace(/^\s+|\s+$/g, ''); }