HN user

sflanker

14 karma

meet.hn/city/us-Honolulu Socials: - linkedin.com/in/paulwh Interests: Web Development, DevOps, Open Source, Startups --- Full stack web application developer. I also enjoy woodworking, cycling, and board games. ---

Posts0
Comments13
View on HN
No posts found.
Charles Proxy 7 months ago

This is a totally different class of software than what that post is ranting about. Charles is a local developer tool intended for temporary use when debugging. It only inspects TLS connections if 1) you enable that feature and 2) you add the domain being connected to the list to be inspected.

That being said, the mechanism is the same. Charles generates a root certificate that it uses to issue certificates for each domain in intercepts a TLS connection for and you need to install that root certificate in your OS such that your clients will trust that certificate. If you have a client that doesn’t use the Mac OS certificate store you may have to do some extra per client configuration.

I also despise “security” tools that intercept and inspect TLS traffic (such as ZAcaler for example), but I find a Charles to be very useful for what it does and the TLS inspection support is easy to use and really helpful/necessary in some cases.

Presumably she is young enough to have completely missed out on Myst, which will be very dated now but was groundbreaking at the time and is most definitely a work of art.

These puzzle games are all very distinctive and beautiful in my opinion:

- Limbo - Manifold Garden - Monument Valley

I think on its face the question “can video games be art?” Is both absurd and obviously answered. The question are their games your partner will enjoy playing and want to spend time on is obviously totally different.

The EU’s oppressive regulations are based an absurd lack of understanding of how technology works. If consumers find an aspect of the protocol bothersome they have the power to use a browser or extension that makes it possible to block or disable it. We do not need a nanny state government imposing fines and threats on legitimate well intentioned websites. IMHO: Good riddance to this broken regulation.

Same. I find perplexity to be much better for researching technical topics than Google or other classical search engines. I have only had occasional accuracy issues (like it suggesting something from a feature request that hasn’t been implemented rather than official documentation), but the reference links makes it easy to verify.

I have used Kaboom https://kaboomjs.com/ to help a diverse group of kids build a simple 2d game together. It’s a toolkit specifically geared toward 2d platform we type games but it could be adapted to make other 2d games. I liked that it was just JavaScript under the hood so you can introduce many programming language concepts, but the engine makes it easy to get things going with very little code. There are also lots of opportunity to focus on design aspects over pure code.

You can also use it online with Replit https://replit.com/@replit/Kaboom#code/main.ts which lets you get up and running quickly and share your work online easily.

Apparently it is no longer actively maintained by Replit, but I’m guessing it still works fine and there is also a community fork: https://github.com/kaplayjs/kaplay?tab=readme-ov-file

Oh duh, this is inherent in binary counting. When y is equal to one any even x will be a zero. The when y is equal to 2 you get groups of zeros two at a time 0, 1; 4, 5; 8, 9; etc. The pattern repeats in lengthening, self similar way as the values of y increase leaving ever lager gaps and sequences of zeros (with the top edges of the triangles corresponding to powers of two, which give long sequences of zeros or non zeros respectively.

I always think of this pattern geometrically so it’s weird to see it pop out in simple math.