HN user

liberia

970 karma
Posts43
Comments69
View on HN
blog.logrocket.com 3y ago

Why You Should Be Using the Dialog Element

liberia
2pts0
russmaxdesign.github.io 3y ago

HTML Content Model Categories

liberia
4pts0
en.wikipedia.org 3y ago

Resilient File System (ReFS)

liberia
3pts1
www.ghacks.net 3y ago

Windows 11 is getting ReFS support

liberia
14pts2
www.beehiiv.com 3y ago

Beehiiv – The newsletter platform built for growth

liberia
1pts0
uglyemail.com 3y ago

Ugly Email – Gmail extension for blocking read receipts and tracking pixels

liberia
1pts0
foundation.mozilla.org 3y ago

Amazon Echo Show: Privacy and security guide

liberia
1pts0
netmeister.org 3y ago

Whatsthatcert – fetch the TLS cert from a given site

liberia
3pts0
privacypatterns.org 3y ago

Privacy Patterns

liberia
3pts0
addons.mozilla.org 3y ago

LibreJS – Detects and blocks nonfree nontrivial JavaScript

liberia
2pts0
cortexjs.io 3y ago

Mathlive.js – A web component for math input

liberia
3pts0
partytown.builder.io 3y ago

Partytown – Run Third-Party Scripts from a Web Worker

liberia
2pts0
scottberkun.com 3y ago

The Cult of Busy (2010)

liberia
2pts0
www.historyofvisualcommunication.com 3y ago

The History of Visual Communication

liberia
1pts0
www.peculiarmanicule.com 3y ago

The Peculiar Manicule

liberia
1pts0
jotai.org 3y ago

Jotai: Primitive and flexible state management for React

liberia
1pts0
vitto.cc 3y ago

How to Create and Deploy an ERC20 Token

liberia
2pts0
blog.logrocket.com 3y ago

Understanding and using the new CSS style queries

liberia
3pts2
blogs.bing.com 3y ago

Fast Front-End Performance for Microsoft Bing

liberia
2pts0
doh.tiar.app 3y ago

Tiarap – Privacy-First DNS Resolver

liberia
2pts0
www.itsnicethat.com 3y ago

Richard Turley on the originality myth and the perks of phoning it in

liberia
1pts0
oisinmoran.com 3y ago

How I Made a Self-Quoting Tweet

liberia
2pts0
twitter.com 3y ago

Tweet Quine. Recursive URL

liberia
2pts2
github.com 3y ago

ImHex – A Hex Editor

liberia
467pts70
www.amazon.com 3y ago

Amazon Cloud Drive Is Being Sunsetted

liberia
1pts0
www.amazon.com 3y ago

Amazon Drive Deprecation

liberia
3pts0
news.ycombinator.com 3y ago

Ask HN: Why are there so many shady browsers in the iOS App Store?

liberia
3pts4
www.x86matthew.com 3y ago

Embedding an EXE inside a .REG file with automatic execution

liberia
205pts97
emoji.supply 3y ago

Emoji Kitchen

liberia
850pts190
www.netflix.com 3y ago

How to Change Your Mind

liberia
1pts0

I browse with Safari on iOS with JS disabled by default. I do this for privacy and accessibility reasons (gotta stop those annoying popup modals, trackers and other annoyances).

One thing I noticed with Wikipedia with JS /enabled/, all the sub-categories of a topic are by default, closed.

But when I browse with JS disabled, all the sub-categories are /opened/ and I have the full article.

Since most people browse with JS enabled, this means they have to make additional clicks just to read the sub-categories.

Which leads me to question: which version is better? The JS where you have to make additional clicks, or the no-js version where you get the full article?

Sorry to hear about your bounce rate. But even though ADs do not correlate to more sales, your message / slogan / unique selling point is in the minds of prospects, and the purchases will be potentially delayed.

I'm only saying this because as a consumer, I bought stuff roughly a year later when I had the money, even after seeing the AD a year ago! ADs plant the seed, then sales naturally follow, albeit delayed.

the current list of Mastodon servers feels very limited

Try this site: https://instances.social/

It helped me find some instances that matched my interests. Just keep in mind, most instances will die out if they're not sufficiently funded either by donations or the pocket money of the owners. This is why I treat all my Mastodon accounts as potentially ephemeral accounts that will die out given enough time. The more popular instances seem to be in it for the long haul, so go with those (as much as you enjoy the smaller instances).

The 'View Source' in browsers is what got me started initially in webdev. It was amazing seeing how sites were pieced together, and it was all progress from there. In the start I copied a lot of code, but then got comfortable writing my own.

Also the ability to write code in an editor and see it instantly reflected in the browser by hitting refresh was a game changer. No compiling. No writing code in a black box where you don't get instant feedback or don't know if the code is behaving correctly.

Recently I went to sign up for Rackspace and their systems flagged me as 'Suspicious'. I tried registering without a VPN in a brand new session, and again: 'Suspicious'. I provided all the right details for them, correct contact and address, etc I wonder what their churn rate for auto-flagging away potential customers is? They are in the business of taking people's money in exchange for services right?

I got a hard lockout to my LinkedIN account a few months ago, since I enabled 2FA and lost the device. I had to send a passport scan to support so they could verify it was me, so I could close my account. Not that I minded that much.

It goes to show you their support team is actually active and don't ignore queries (even if the service is free).

There's an interesting movie called Don't Look Up[0] which is a metaphor for climate change politics.

The impact event is an allegory for climate change, and the film is a satire of government, political, celebrity, and media indifference to the climate crisis.[6][7]

After watching, I agreed that when the world eventually burns, people will be live streaming and tweeting about it instead of going out and actually doing something about it. We all have a part to play in this, and armchair activism behind the comfort of social media will do jack shit to solve this problem. Addressing climate change head on will be the biggest amount of cooperation humanity will ever have to do. After we address it, it will not be as hard to maintain decent temps. We can sail on this rock for millennia once we get out there and make shit happen.

[0] https://en.m.wikipedia.org/wiki/Don't_Look_Up

I trust this over Bitwarden or Lastpass since you have to trust those services with your data (and I don't). Web-based password managers can be hacked, or have their login interface laced with third-party code that could be exfiltrating your master passphrase. My strategy is using KeePass and keeping multiple copies of the database in various cloud providers in case my local copy is lost/corrupted. It takes under a minute to sync my local copy to Dropbox, Google Drive, Box, etc

It's hard to code secure PHP. When starting, I was like: 'So I can just pass a query parameter with <script>alert(1)</script> and do trivial XSS on random sites if I wanted to?' Smart PHP coders always sanitize, but for PHP newbies, it's easy to introduce some vulnerabilities if you don't do defensive coding practices.

There's things like directory traversal attacks too (putting ../../ in requests etc) which you have to prevent. PHP doesn't do it for you, you have to be very defensive with it. Which is why I use PHP sparingly and use Python and Perl more. Those languages even still have potential vulns, but not nearly as bad as the ones you can introduce in PHP IMHO.

I've often wanted to follow specific individuals

I just create a load of bookmarks to user profiles in a Firefox bookmark folder found in the bookmarks bar then click 'Open all in tabs' which spawns a bunch of tabs, where I can check what my favorite profiles are posting. Some of my faves:

https://news.ycombinator.com/submitted?id=Tomte

https://news.ycombinator.com/submitted?id=todsacerdoti

https://news.ycombinator.com/submitted?id=memorable

All of humanity's problems stem from man's inability to sit quietly in a room alone.

Blaise Pascal

For another spin on it.

That quote is brilliant and profound. Sad that thinking is regarded as an afflicting disease and our devices are the cure.

I purposefully dedicate an hour to just do jack shit and be alone with my thoughts.

‘Oh you saw something in your mind? Relax it’s called an idea. Get used to them’

For me, I stopped being rigid. That takes courage to get out of a comfort zone. Try something totally oblique to what you’re used to doing. Recognize your strengths and build on top of them. (For me one of my strengths is curation and organizing information). You can only build on strength. Hope this helps.

ClamAV is good. No bloat and is a very simple program that Just Works. Also it’s compatible with Linux which is great since Linux is my daily driver. I do a scan every 3 months just to have some good security posture, although some classes of malware can evade AV, so it’s no silver bullet.

Do something that gives you energy both mentally and physically instead of something that saps your energy and leaves you drained. What’s your social media engagement look like? The two most important days of someone’s life is when they were born and the day they find out why.

Well I make sure the post is on topic. So funny stuff goes to humor groups. Inspirational quotes go to all the wisdom/spirituality/philosophy groups. Even better if it’s your own material. I find reposts of other’s content a bit shallow and meaningless.

What kind of game are Google playing at? They’re like evolution at play and routinely prune and trim away anything not working for them. They’re so Darwinian.

I’ve figured out a way to get loads of views on Facebook. The trick is to use their Groups feature. Join every group that has no less than 100,000 members then when sharing choose ‘Share to group’ and post to every group you joined. I’ve got silly little cat videos getting 1M views within a week of posting…

Part of going viral is luck too. If you’re lucky some high profile account will share your post, and the popularity soars.