Readit News logoReadit News
chakspak commented on The End of Handwriting   wired.com/story/the-end-o... · Posted by u/beardyw
chakspak · 7 days ago
I'm a software developer, so I type a lot. Typing is very practical for throughput and speed.

But I still make time for writing by hand. I find it to be very valuable, because it forces me to think differently about things and sit with ideas longer. I also find journaling almost impossible to do on a computer but very accessible in a notebook.

Writing by hand is also portable and adaptable. You can write on paper, surfaces, and signs. You can write when there's no power. No subscription is required, it doesn't require firmware updates, and it never has connectivity problems.

I can understand why some people would be willing to say goodbye to handwriting, but it's a skill that I'm extremely grateful for and I would be very sad to see it disappear from the world.

chakspak commented on VC-backed company just killed my EU trademark for a small OSS project    · Posted by u/marcjschmidt
latchkey · 13 days ago
Can't agree more. Change your name to tikpeed and move on!
chakspak · 13 days ago
This name is perfect. I hope this gets traction.
chakspak commented on US government struggles to rehire nuclear safety staff it laid off days ago   bbc.com/news/articles/c4g... · Posted by u/niuzeta
nobunaga · 6 months ago
Its hilarious. Americans dont realise they are being played. All this BS from the MAGA people and trump are just shift attention away from the conversation to tax billionaires. You guys had been going in the right direction when it came to having the rich pay their fair share. Now look at what you are all talking about? Your fighting each other. What a shitshow.

I really dont think America will recover from this and while the world will suffer as a result, I think in the long term, things will work out. There will be some major suffering but thats the way the world works. WW2 happened, a lot of suffering then peace. We had peace for too long, people forgot about suffering and now look at the world. Thanks America, you played yourself and are now bringing the rest of the world down with you. Rather than focusing on the right things, you are being played to argue with each other.

chakspak · 6 months ago
Trump got a plurality of the popular vote, not a majority. There are lots of people who didn't vote for this. Many people are now doing whatever they can to limit the damage, but it's an uphill battle and plenty damage will be done in the meantime. It's been very hard to watch this unfold.
chakspak commented on Akaunting is free, open-source online accounting software for small businesses   akaunting.com... · Posted by u/excsn
chakspak · a year ago
BSL is not an Open Source license, as it does not meet the requirements of the Open Source Definition. https://opensource.org/osd
chakspak commented on Welcome to the PyPI Blog   blog.pypi.org/posts/2023-... · Posted by u/woodruffw
kinow · 2 years ago
The footer at that page says the site uses MkDocs [1]. Has anyone used it and knows how it compares to Sphinx and MyST-Parsee [2]?

[1]: https://www.mkdocs.org/

[2]: https://www.sphinx-doc.org/en/master/usage/markdown.html

chakspak · 2 years ago
Sphinx is powerful and hard to beat if you're looking to generate documentation from code in multiple languages or export to multiple document formats, but it's slow and creaky and hard to hack on.

MkDocs by itself is okay, but Material for MkDocs is life-changing:

https://squidfunk.github.io/mkdocs-material/

If it does everything you need it to do, it'll make creating and editing sites much faster and with fewer opportunities to break things.

chakspak commented on AWS Ground Station   aws.amazon.com/ground-sta... · Posted by u/shadeslayer
chakspak · 4 years ago
Holy wow, it never occurred to me that there were enough organizations launching satellites to warrant creating a managed service to support it.
chakspak commented on Risk of myocarditis following sequential COVID-19 vaccinations by age and sex [pdf]   medrxiv.org/content/10.11... · Posted by u/busymom0
civilized · 4 years ago
A bit off-topic but why does PDF export sometimes produce these incredibly, seemingly gratuitously fugly font renderings? The size and spacing of the letters seems to be random. Like, here's a giant d in the middle of a word for no reason.
chakspak · 4 years ago
PDF rendering is the bane of my existence. I've found it stunningly difficult to generate an acceptable output from a source format like Markdown, and the process usually requires massive dependencies and fiddly configuration to get something close to what you want. Don't even try to produce numbered headings or a cover page unless you're willing to write the whole thing in LaTeX from start to finish, but who knows if you'll ever get the table to appear in the right spot on the page. :D
chakspak commented on Summary of the AWS Service Event in the Northern Virginia (US-East-1) Region   aws.amazon.com/message/12... · Posted by u/eigen-vector
gingerlime · 4 years ago
> I wish we would just throw up a generic "Shit's Fucked Up. We Don't Know Why Yet, But We're Working On It" message.

I think that's the crux of the matter? AWS seems to now have a reputation for ignoring issues that are easily observable by customers, and by the time any update shows up, it's way too late. Whether VPs make this decision or not is irrelevant. If this becomes a known pattern (and I think it has), then the system is broken.

disclaimer: I have very little skin in this game. We use S3 for some static assets, and with layers of caching on top, I think we are rarely affected by outages. I'm still curious to observe major cloud outages and how they are handled, and the HN reaction from people on both side of the fence.

chakspak · 4 years ago
> disclaimer: I have very little skin in this game. We use S3 for some static assets, and with layers of caching on top, I think we are rarely affected by outages. I'm still curious to observe major cloud outages and how they are handled, and the HN reaction from people on both side of the fence.

I'd like to share my experience here. This outage definitely impacted my company. We make heavy use of autoscaling, we use AWS CodeArtifact for Python packages, and we recently adopted AWS Single Sign-On and EC2 Instance Connect.

So, you can guess what happened:

- No one could access the AWS Console.

- No one could access services authenticated with SAML.

- Very few CI/CD, training or data pipelines ran successfully.

- No one could install Python packages.

- No one could access their development VMs.

As you might imagine, we didn't do a whole lot that day.

With that said, this experience is unlikely to change our cloud strategy very much. In an ideal world, outages wouldn't happen, but the reason we use AWS and the cloud in general is so that, when they do happen, we aren't stuck holding the bag.

As others have said, these giant, complex systems are hard, and AWS resolved it in only a few hours! Far better to sit idle for a day rather than spend a few days scrambling, VP breathing down my neck, discovering that we have no disaster recovery mechanism, and we never practiced this, and hardware lead time is 3-5 weeks, and someone introduced a cyclical bootstrapping process, and and and...

Instead, I just took the morning off, trusted the situation would resolve itself, and it did. Can't complain. =P

I might be more unhappy if we had customer SLAs that were now broken, but if that was a concern, we probably should have invested in multi-region or even multi-cloud already. These things happen.

chakspak commented on Don't Make My Mistakes: Common Infrastructure Errors I've Made   matduggan.com/mistakes/... · Posted by u/todsacerdoti
unbanned · 4 years ago
And when your client has a slightly different python install or some other library which deps on an older incompatible version of a lib... Then what?

Python is awful for this stuff

chakspak · 4 years ago
Don't disagree. It's a problem. As the parent poster and others have mentioned, you can use something like pipx, or bare virtualenv. At least once I've deployed via dh-virtualenv and rpmvenv, pyinstaller, cx_freeze, or tested for compatibility with the system Python if I could control for the client machines.

It's never fun. It's never pleasant. But to be fair, if I have a CLI tool that needs a deployed SSH client, or Tensorflow, or SDL or Qt or something else, I'm not convinced packaging gets much easier no matter what language we're talking about. If your use case is simple, Python is easy enough to deploy, and Go is even easier. If you can't disable CGO or need a third party component, I imagine the fun is just getting started anyway.

As a counterpoint, awhile back, discovered that Golang had a minimum kernel version requirement. That pretty much eliminated it as a possibility for writing tools for legacy systems. Python was viable though, Bash moreso. :) Couldn't tell you if that was still a requirement for Go today.

u/chakspak

KarmaCake day70February 12, 2021View Original