Show HN: I wrote a book about Go
131–140 of 160 posts
Re: Show HN: I wrote a book about Go
#132Hello all, After 2.5 years of writing, countless weekends and evenings, I released a book about the Go programming language. The book is available for free on the website because I wanted to give something back to the developer's community :) It is composed of 700+ pages, 41 chapters, and approximately 405 drawings/screenshots. I tried to cover all the important topics that a new Go programmer should know. At the end…
Create a command line application that accepts users inputs as below:
a. Mandatory "-firstName" flag to accept first name
b. Mandatory "-lastName" flag to accept last name
c. Optional "-middleName" flag to accept middle name
d. Mandatory "-age" flag to accept age - only integers between 0 and 200 should be accepted
e. Optional "-party" flag to accept political party following - only valid values are "D", "R" and "I"
d. Optional "-userId" flag to specify user id - if HOME environment variable is set, extract user id from home directory pathRe: Show HN: I wrote a book about Go
#133Earlier quoted context omitted.
MkDocs isn't a "format" as such. It requires you to write Markdown and then configure the mkdocs.yml file to define the website's properties, such as the navigational structure.
Thanks for this clarification I will check this.
Re: Show HN: I wrote a book about Go
#134Re: Show HN: I wrote a book about Go
#135Re: Show HN: I wrote a book about Go
#136Re: Show HN: I wrote a book about Go
#137Hello all, After 2.5 years of writing, countless weekends and evenings, I released a book about the Go programming language. The book is available for free on the website because I wanted to give something back to the developer's community :) It is composed of 700+ pages, 41 chapters, and approximately 405 drawings/screenshots. I tried to cover all the important topics that a new Go programmer should know. At the end…
Re: Show HN: I wrote a book about Go
#138Please, consider reviewing this line, from chapter 5, "I use Goland, which IntelliJ develops". GoLand is developed by JetBrains. IntelliJ IDEA is their Java IDE : )
Re: Show HN: I wrote a book about Go
#139Re: Show HN: I wrote a book about Go
#140Hello all, After 2.5 years of writing, countless weekends and evenings, I released a book about the Go programming language. The book is available for free on the website because I wanted to give something back to the developer's community :) It is composed of 700+ pages, 41 chapters, and approximately 405 drawings/screenshots. I tried to cover all the important topics that a new Go programmer should know. At the end…
Would you consider open sourcing the book? What systems are you using to create and maintain it?
I'm writing the book with Lyx. Lyx documents are converted to LaTeX docs, then converted to HTML with pandoc. Then I have a homemade Go script that generates the VueJs components (one per chapter).
This question is asked a lot so I will write something about the system because it can help other writers.