HN user

coldsauce

176 karma
Posts18
Comments43
View on HN
tophacker.news 1y ago

Show HN: Top of Hacker News

coldsauce
1pts0
github.com 3y ago

Save ChatGPT Conversations to Notion

coldsauce
1pts0
chrome.google.com 3y ago

Show HN: Lenses: AI-Augmented Twitter Timeline

coldsauce
1pts1
www.plasmo.com 3y ago

Building an Embeddings-Powered GPT-3 Bot for Our Browser Extension Community

coldsauce
2pts0
news.ycombinator.com 3y ago

Show HN: We just enabled Vercel's preview comments on our docs page

coldsauce
6pts2
github.com 4y ago

Show HN: Plasmo – a framework for building modern Chrome extensions

coldsauce
132pts37
github.com 4y ago

Show HN: Play Videos in the Chrome DevTools Console

coldsauce
1pts0
github.com 4y ago

Gitleaks – Scan Git repos (or files) for secrets using regex and entropy

coldsauce
3pts0
github.com 4y ago

Storing Data Inside URL Shorteners

coldsauce
3pts0
twitter.com 4y ago

AI Dreaming of Edgar Allan Poe's The Raven

coldsauce
15pts0
twitter.com 4y ago

Edgar Allan Poe's “The Raven” Visualized by AI

coldsauce
4pts0
github.com 6y ago

Play Videos in Chrome Dev Tools

coldsauce
2pts0
snoogism.com 6y ago

Show HN: Play Videos in the Chrome Dev Tools Console

coldsauce
5pts1
github.com 8y ago

SDS – Store Arbitrary Data in URL Shortener URLs

coldsauce
2pts1
medium.com 9y ago

Functional Error Handling in Scala

coldsauce
2pts0
github.com 10y ago

Cryptographically bulletproof crypto algorithm based on MD5 hashing

coldsauce
2pts0
itunes.apple.com 10y ago

Dividr – Use iOS 3D Touch to Avoid Obstacles and Get a High Score

coldsauce
2pts0
www.vimsnake.com 10y ago

Play the classic snake game with Vim keybindings

coldsauce
3pts1

While I agree those areas are much nicer, most people still need to commute to go work in, and spend considerable amount of time in soma, fidi, etc.

I used to live in one of those areas you talk about, yet still was attacked and threatened several times in the span of 6 months during my commute to our office on Market street.

We have a lot of ideas on how to make this problem a lot easier. It's a big reason why extensions aren't as big as they could be. Browser extension devs having to tinker and even think about the DOM or any other website-specific quirk is a leaky abstraction.

If it's an issue, people's usual approach to solving that problem is to create some mapping of "twitter-sidebar : some XPath selector" on the backend and have their extension query whenever they want to interact with the web page.

They'll have e2e tests to check if their selectors or xpaths still work. If not, they'll figure out what changed and modify the xpath. Some automate this step.

It's tricky because A/B tests are a thing, websites might change based on geographical region, and a bunch of other stuff that leads to users seeing different things in the DOM compared to the e2e test). Logging errors to something like Sentry mitigates some of this, but the complexity is still quite large.

It stems from the fact that frontends only consider humans, not robots. You either need to make your robot super resilient to change (above approach), make your robot act more like a human, have the website consider the robot ("Connect to Wallet", etc), or use the web app's backend API if it exists.

We're experimenting with all four of these approaches this year and seeing which ones are the most valuable to people, so stay tuned for more exciting extension stuff!

In his most recent testimony, Mudge mentioned that he was in the leaked OPM database with his details and clearance level leaked which implies he had clearance.

Our tooling is written in Node.js. So developers must have Node installed on their machines to utilize our tooling.

When they use our CLI to watch the file system for changes for live-reload or to build their extension, etc., that's a Node.js program.

The build target is browser Javascript, though.

We use Parcel under the hood and are huge fans! Our framework has opinionated abstractions on top of it that we think help improve the extension development experience considerably.

Features we've built so far:

- manifest.json is generated automatically. If you want to create a content script, you name a file content.ts, and it'll auto-gen the right manifest key-value pair for it. Same with backround.ts. [1]

- Mounting a React component to the popup or options page is similar. You create a popup.tsx or options.tsx file, export a default React component, and it'll automatically associate it in the manifest and mount the component automatically for you.

- We support environment variables with .env files [2]

- We just released support to automatically inject a shadow DOM into a webpage and mount a React component from a content script [3]

- We have remote code bundling that automatically fetches URL based imports (like Google Analytics) in build time to mitigate issues with MV3 not allowing remote code [4]

[1] https://docs.plasmo.com/#where-is-the-manifestjson-file

[2] https://docs.plasmo.com/workflows/env

[3] https://github.com/PlasmoHQ/examples/tree/57791e70549441e391...

[4] https://docs.plasmo.com/workflows/remote-code

Thanks! We wrote a custom Parcel runtime [1] inspired by Parcel's HMR runtime (which was too bloated and buggy for us) that injects a web socket listener into the development build of the extension.

Whenever a bundle change happens, Parcel sends it the refresh message and it either does `chrome.runtime.reload()` or `location.reload()` depending on the context.

[1] https://github.com/PlasmoHQ/plasmo/blob/main/packages/parcel...

There's standardization work being done at the moment with the W3C WebExtensions Community Group [1] which is definitely a step in the right direction!

Mozilla has also done some great work building a web extension polyfill library that attempts to abstract away the differences between the browsers [2] but the translation will always be imperfect, and edge cases are abundant.

[1] https://www.w3.org/community/webextensions/

[2] https://github.com/mozilla/webextension-polyfill

Thanks! Yeah it was fairly slow but we did some work to try to make it faster.

Our process was

1. Remove all JS and CSS from the HTML file

2. Compress the file into a gzip stream

3. Base64 encode the file

4. Send it as a stream of text messages with some metadata on sequence numbers, etc

SMS uses the GSM 03.38 encoding which is a 7 bit encoding. I think we were working on building a custom encoding scheme for it rather than using Base64's 6-bit encoding, but never got around to it.

I think reddit.com (back in 2014 when it wasn't so fancy as it is now) took about 20 text messages to load, so you can imagine it would take less than a minute.

Agree with you, on Windows. But when you go into Linux and Mac territory, there really isn't any OS Vendor specific security solution that does what many people need.

AV is still super important to have for people who don't understand that downloading a fake flash player to watch the newest game of thrones episode isn't the best idea. And there's a lot of those people out there.

Wow! I find it remarkable that you have had this question open for 25 years without a single answer.

This is just a hunch from me, but I think it has to do with the fact that people are in for a year usually. When the next year comes, you usually don't even remember how much you paid last time. It feels similar to how cable companies increase base prices after "deals" expire.

Anyone know what the best streaming solution for browser <-> browser video calling is? It probably has to be built on top of WebRTC but I'm wondering if there are codecs and forward error correction algorithms out there already in Javascript to use.