Not sure if these will appeal to you, but these are some of the books that I enjoyed:

  • The Sword of Kaigen by M.L. Wang
  • The Curse of Chalion by Lois McMaster Bujold
  • Books of the Raksura by Martha Wells
  • Howl's Moving Castle by Diana Wynne Jones
  • Half a Soul by Olivia Atwater
  • source
  • Practice Python Projects (learnbyexample.github.io)
     

    Hello.

    I recently updated my "Practice Python Projects" ebook, which presents five beginner-to-intermediate level projects inspired by real world use cases.

    You can read it online here: https://learnbyexample.github.io/practice_python_projects/preface.html

    Or, you can get pdf/epub versions via https://learnbyexample.gumroad.com/l/py_projects/free (free till this weekend).

    More resources related to projects: https://learnbyexample.github.io/py_resources/beginners.html#projects

    Happy learning :)

    [–] 6 points 1 year ago (1 child)

    Regex syntax and features vary between implementations. \d isn't supported by BRE/ERE flavors.

    GNU grep supports PCRE, so you can use grep -oP '/dev/loop\d' or grep -o '/dev/loop[0-9]' if you are matching only one digit character.

  • source
  • [–] [S] 6 points 1 year ago (1 child)

    Well, if you are comfortable with Python scripts, there's not much reason to switch to awk. Unless perhaps you are equating awk to Python as scripting languages instead of CLI usage (like grep, sed, cut, etc) as my ebook focuses on. For example, if you have space separated columns of data, awk '{print $2}' will give you just the second column (no need to write a script when a simple one-liner will do). This of course also allows you to integrate with shell features (like globs).

    As a practical example, I use awk to filter and process particular entries from financial data (which is in csv format). Just a case of easily arriving at a solution in a single line of code (which I then save it for future use).

  • source
  • parent
  • context
  • I'll recommend some from the lesser known progression fantasy genre:

    • Cradle by Will Wight
    • Mage Errant by John Bierce
    • Mother of Learning by Nobody103 (Domagoj Kurmaić)
    • The Weirkey Chronicles by Sarah Lin
    • Beware of Chicken by CasualFarmer
    • Super Powereds by Drew Hayes
  • source
  • view more: next ›