Readit News logoReadit News
goldbattle commented on static_assert is all you need (no leaks, no UB)   twitter.com/krisjusiak/st... · Posted by u/kris-jusiak
goldbattle · 3 years ago
Interesting work. Thanks for open sourcing. It would be nice if the "run" script has a bit of documentation, and maybe an "examples" folder the the run script can work with. From what I can see it seems to search the parent directory? I would want for example `./run <dir_with_tests>` to run all tests my specified project repo.
goldbattle commented on ChatGPT Plugins   openai.com/blog/chatgpt-p... · Posted by u/bryanh
mk_stjames · 3 years ago
I was drawn to the Wolfram logo blurb as well. It is funny because within days of ChatGPT making waves you had Stephen Wolfram writing 20,000-word blog posts about how LLM's could benefit from a Wolfram-Language/Wolfram Alpha API call to augment their capabilities.

On one hand I'm sure he will love to see people use their paid Wolfram Language server endpoints coupled to OpenAI's latest juggernaut. On the other, I'm sure he's wondering about what things would have looked like if his company would have been focused on this wave of AI from the start...

goldbattle · 3 years ago
This too is one of the most interesting integration to me. Allows for getting logical deduction from an external source (e.g. wolfram alpha), which can be interacted with via the natural language interface. (e.g. https://content.wolfram.com/uploads/sites/43/2023/03/sw03242...)

For those interested the original Stephen Wolfram post:

https://writings.stephenwolfram.com/2023/01/wolframalpha-as-...

And the release post of their plugin:

https://writings.stephenwolfram.com/2023/03/chatgpt-gets-its...

goldbattle commented on Explore Wikipedia's New Look   wikimediafoundation.org/w... · Posted by u/zebracanevra
rising-sky · 3 years ago
> Research has shown that limiting the width of longform text leads to a more comfortable reading experience, and better retention of the content itself

Surprised they did not include a citation for this research...

goldbattle · 3 years ago
It seems they link to a discussion page [1], which references this document (I can't find a published version):

    Computer text line lengths affect reading and learning 
    Peter Orton
    https://cdn.tc-library.org/Edlab/eye-tracking%20article.pdf
But it seems that Peter Orton has published quite a few works in this area [2], [3]. Specifically [3] seems to note that with a less wide text column width readers are not statistically significant faster (but are a bit), but do see that for difficult reading content, the shorter width requires less re-reading then a wider one along with significantly better retention of the contents of the document.

[1] https://www.mediawiki.org/wiki/Reading/Web/Desktop_Improveme...

[2] https://www.scienceopen.com/document_file/671b2d53-73ce-4a91...

[3] https://sci-hub.se/https://link.springer.com/chapter/10.1007...

goldbattle commented on Ask HN: Anyone tired of everything being a subscription now?    · Posted by u/CM30
baxtr · 3 years ago
The key word here is maintenance.

Most things you own you also maintain yourself. It doesn’t hold true for software. People expect software to work for some time.. On their new device, after the OS update. Bugs need to be removed, new features built.

You can and will fix your car. You will maintain it too. And you will happily pay for it. Same with the house you own. You might even renovate it, add a new level.

It is not possible to own and maintain software that way.

goldbattle · 3 years ago
I think this isn't the case for many open source projects I use. The reason I'm drawn to OSS is for the ability to be able to fix it down the line by myself. This also allows me to possibly contribute back those improvements so others can leverage them.
goldbattle commented on Live Captioning FAQ   whitecoatcaptioning.com/f... · Posted by u/mooreds
goldbattle · 3 years ago
I recently saw this great plugin for OBS which uses Google Speech Recognition api to stream captions to twitch along with your video. Not sure about the quality or delay.

https://github.com/ratwithacompiler/OBS-captions-plugin

https://obsproject.com/forum/resources/closed-captioning-via...

goldbattle commented on Show HN: Favicons for HN   gist.github.com/frabert/4... · Posted by u/frabert
JayGuerette · 4 years ago
My version, better alignment, grayscaled icons, eliminates duplicates on navigation:

    // ==UserScript==
    // @name     hacker news favicons
    // @match  https://news.ycombinator.com/*
    // ==/UserScript==
    for (let link of document.querySelectorAll('.titlelink')) {
      if (link.attributes["hasIcon"] != 'true') {
        const domain = new URL(link.href).hostname
        const imageUrl = `https://icons.duckduckgo.com/ip3/${domain}.ico`
        const image = document.createElement('img')
        link.attributes["hasIcon"] = 'true'
        image.src = imageUrl
        image.width = 16
        image.height = 16
        image.style.paddingRight = '0.50em'
        image.style.paddingLeft = '0.50em'
        image.style.verticalAlign = 'middle';
        image.style.filter = 'grayscale(1)';
        link.prepend(image)
      }
    }

goldbattle · 4 years ago
This had the cross origin issue for me. After combining with an above post that uses GM.addElement this looks really nice. Grayscale is the way to go to prevent the site from being more addictive than it needs to be.

* https://news.ycombinator.com/item?id=31096151

* https://gist.github.com/goldbattle/695f869e43fe8d0e628061cb9...

goldbattle commented on Pyrite – open-source video conferencing   garage44.org/posts/pyrite... · Posted by u/jvanveen
goldbattle · 4 years ago
It would really help if the author had a list of "features" on the github project. It is a bit difficult to figure out what exact functionality the project supports.

* https://github.com/garage44/pyrite/

goldbattle commented on Show HN: Netvyne – a Chrome extension to leave and read comments on any URL   netvyne.com/... · Posted by u/ksarw
ekanes · 4 years ago
You should open-source it anyways, which will help adoption a lot, and ease people past things like this:

"* The notice you see about having access to your history and website data is automatically generated because this extension runs on every tab. But it does NOT actually monitor your browsing history or require your personal information to work properly."

The world is correctly nervous about extensions that run on every page.

goldbattle · 4 years ago
I agree with this. What happens when I got to my bank with this extension? I would rather have either what another commenter suggested (a bookmark) or be able to see the source. I assume they use the "activeTab" permission to give temporary access to the current tab?

From a quick look, it seems to just request access to all pages? I am not sure if chrome really has a elegant way to handle per-website requests (as compared to per-tab).

https://robwu.nl/crxviewer/?crx=https%3A%2F%2Fchrome.google....

goldbattle commented on We handle 80TB and 5M page views a month for under $400   blog.polyhaven.com/how-we... · Posted by u/darknoon
goldbattle · 4 years ago
My thought is why don't the authors use github pages to host their static site with their links to a dedicated server with an unmetered link since their whole project is CC0. Downloading assets doesn't need to be low latency, thus I don't think the caching spatially near the user is important. Having a user login for patreon is something that would be missing and require some more thought I admit.

I think quite a lot of other people have mentioned in the thread that they are getting a lot of other "benefits" from using multiple services, but I don't see how these help solve the problem of data delivery besides taking advantage of the Cloudflare + Backblaze alliance which is $31 if their main website is a static one.

goldbattle commented on Raspberry Pi 3 Fastboot – Less Than 2 Seconds   furkantokac.com/rpi3-fast... · Posted by u/solarized
goldbattle · 4 years ago
This is a great write up and was really interesting to read. My question is why would the proposed changes are not already included upstream? Isn't a faster boot what everybody wants?

u/goldbattle

KarmaCake day30September 13, 2013
About
Student in computer vision and state estimation. Thoughts are my own.

https://udel.edu/~pgeneva/

View Original