Live data from Hacker News

Show HN: I wrote a modern Command Line Handbook

commandline.stribny.name

111–115 of 115 posts

Re: Show HN: I wrote a modern Command Line Handbook

#111

cool! Even though it’s getting easier to use AI to generate commands these days—I often ask AI to help me write commands myself—I still think it’s important to understand and systematically learn the command line. I’ll definitely recommend this book to my friends. One suggestion: maybe you could include some practical examples from real work scenarios in the book to make it even more approachable and engaging.

I don't want to just add to it because the entire idea is to have a short book, but I will be thinking about replacing/improving some sections. The examples already demonstrate the practical scenarios, but I think there could be a few sentences about how a particular concept can be used in real world scenario.

Thanks for sharing:)

Re: Show HN: I wrote a modern Command Line Handbook

#113

Earlier quoted context omitted.

You are right. It is wrong, will need to look into this.

These two tweaks should improve it (by preventing the largest text and book graphic from overflowing the viewport horizontally on some smaller screen sizes): diff --git a/index.html b/index.html index a0f978c..040e50e 100644 --- a/index.html +++ b/index.html @@ -21,3 +21,3 @@ h1 { - font-size: 3.8em; + font-size: clamp(2.2em, 7vw, 3.8em); margin-bottom: 0; @@ -60,2 +60,3 @@ .hero-img { + max-width: 100%; transform: r…

Oh that's great. Thanks!
Post reply on HN