cubes | 3 months ago | on: Show HN: I built a dashboard to compare mortgage rates across 120 credit unions
cubes's comments
cubes | 8 months ago | on: Why SSL was renamed to TLS in late 90s (2014)
cubes | 8 months ago | on: Why SSL was renamed to TLS in late 90s (2014)
cubes | 2 years ago | on: Why you shouldn't join Y Combinator
The content in the article isn't inaccurate or misleading per se, but it's also basically repackaging well understood information about the economics of startups and venture backed businesses.
Further, the author asserts that, if you're trying to optimize your personal economic outcomes, you should not pursue venture funding. But this wrongly assumes that money is the sole motivator people have for starting a business. Further, it ignores the massive economic value that the venture ecosystem has created.
Some people want to retire early. Some people have bigger ambitions. Neither group is right or wrong, but, if you're starting the business, you should know which group you're part of.
cubes | 2 years ago | on: Welcome to Datasette Cloud
cubes | 2 years ago | on: Welcome to Datasette Cloud
cubes | 2 years ago | on: Welcome to Datasette Cloud
cubes | 2 years ago | on: Netscape Meteors
cubes | 3 years ago | on: Ask HN: What tone to use in code review suggestions?
cubes | 3 years ago | on: Twenty years of my blog
cubes | 3 years ago | on: Ask HN: Who is firing / laying off (June 2022)
NB: Do not navigate to fuckedcompany dot com, it's squatted.
cubes | 3 years ago | on: You don’t need to be “enterprise-ready” or “scalable”
History is littered with dead startups that designed for scale before they had enough usage to justify it. Within reason, having users knock your site over resulting in failures like the Twitter Fail Whale is a good problem to have.
With that said, you need to be prepared to scale up quickly once you have this problem. There's a reason Facebook counts its users in the billions, and Friendster is a footnote in internet history.
cubes | 3 years ago | on: figlet – a program for making large letters out of ordinary text
I agree that shell accounts weren’t as important by the aughts, but the culture was still going strong in the early aughts.
cubes | 3 years ago | on: figlet – a program for making large letters out of ordinary text
It's good to see that the CSUA encyclopedia still exists somewhere, even if it's not hosted on soda anymore: https://www.erzo.org/shannon/writing/csua/encyclopedia.html I had the good fortune to meet and work with the primary author at a small games company called Skotos Tech during my later undergraduate years.
cubes | 3 years ago | on: figlet – a program for making large letters out of ordinary text
cubes | 3 years ago | on: Python utility for tracking third party dependencies within a library
cubes | 3 years ago | on: figlet – a program for making large letters out of ordinary text
cubes | 3 years ago | on: Python utility for tracking third party dependencies within a library
cubes | 3 years ago | on: Python utility for tracking third party dependencies within a library
Quoting the docstring on the `track_module` function:
"""This function executes the tracking of a single module by launching a
subprocess to execute this module against the target module. The
implementation of thie tracking resides in the __main__ in order to
carefully control the import ecosystem.
Source: https://github.com/IBM/import-tracker/blob/67a1e84e5a609e52e...Here's the actual subprocess call: https://github.com/IBM/import-tracker/blob/67a1e84e5a609e52e...
# Launch the process
proc = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE, env=env)
I think this is clever, and maybe even necessary, but feels risky to do on unaudited third-party Python libraries.Maybe I'm misunderstanding something?
cubes | 3 years ago | on: figlet – a program for making large letters out of ordinary text