notevenaperson

Results 40 comments of notevenaperson
trafficstars

I'm also interested in a feature like this. Youtube-dl has [--download-archive](https://github.com/ytdl-org/youtube-dl#user-content-how-do-i-download-only-new-videos-from-a-playlist) which is the same concept.

I came up with an alternative solution that is, simply stacking the [match-one-character wildcard](https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_13) `?` as many times as the number of characters we want to delete. It's dumb but...

I made a faster and powerful version a week later, but forgot to post it. Down to the syntax, it emulates Bash's [substring expansion](https://wiki.bash-hackers.org/syntax/pe#substring_expansion). ```sh #Usage: substr offset:length "string" rpt()...

The mercury extractor has [--format=markdown](https://github.com/postlight/parser/issues/316). In archivebox the option is set to [--format=text](https://github.com/ArchiveBox/ArchiveBox/blob/dev/archivebox/extractors/mercury.py#L68). You just need a way to change the argument. (`MERCURY_ARGS` config option when? 😄 (I could work...

I wonder if this could be done with CSS. But before that I need to brush up on `@media` queries. I'll get back to you later

The CSS idea was delusional but I wrote this little js snippet ```js var offscreendiff = window.innerwidth - erect.right if (offscreendiff < 0) { popup.style.left = `${offscreendiff}px` } // if...

> @notevenaperson Hi, I found this fix is not well rounded. SingleFile need a browser to run which could be set via `--browser-executable-path`. But for archivebox, the browser path is...

Oh I understand now. If the user sets `SINGLEFILE_ARGS=["--browser-executable-path=foobar"]`, single-file would be given the --browser-executable-path **two times**. I tested it and it does cause an error: ``` single-file --browser-executable-path=foobar --browser-executable-path=/bin/chromium...

@renaisun I sent a pull request to fix the issue. Thanks for bringing it up. If you accept the pull request, it'll be added here. [renaisun/ArchiveBox/pull/1](https://github.com/renaisun/ArchiveBox/pull/1)