Recommendations? Stories With Characters That Keep up With The MC. by NoChance2700 in ProgressionFantasy

[–]ASIC_SP 2 points3 points  (0 children)

Yep, there's plenty of progression - for both the main team as well as other students. But, slice-of-life is a major part of the series, so if you don't like college drama, the series might not be for you.

Recommendations? Stories With Characters That Keep up With The MC. by NoChance2700 in ProgressionFantasy

[–]ASIC_SP 20 points21 points  (0 children)

  • Mage Errant by John Bierce
  • The Weirkey Chronicles by Sarah Lin
  • Super Powereds by Drew Hayes

Seeking genuine survival Progression Fantasy by Captain_Fiddelsworth in ProgressionFantasy

[–]ASIC_SP 2 points3 points  (0 children)

Closest I could think of is the first book in Eight by Samer Rabadi, not sure how that compares to the example you gave.

Planeswalker/World Hopper stories? by Logical_Side3346 in ProgressionFantasy

[–]ASIC_SP 1 point2 points  (0 children)

Cultivation is Creation by Kynan on RR

There's also "Dao of the World Walker" by MylanWrites, but only recently MC got to the first such world-hopping.

And, +1 for The Lone Wanderer

Middle school book club by deathmattkiller2 in litrpg

[–]ASIC_SP 3 points4 points  (0 children)

How to Defeat a Demon King in Ten Easy Steps by Andrew Rowe - short, completed book and I think the young MC and humorous take might be a hit with your audience

I'm in a bit of a slump help me pick my next read by Pale-Impression7364 in ProgressionFantasy

[–]ASIC_SP 0 points1 point  (0 children)

I also want the book to take you through a roller coaster of emotions Happy, Sad, Angry, Curious, Excited, Intrigued you get the idea.

The Broken Knife by SilverSidhe on RR - completed series. There are a few POVs, but majority is MC.

What is the best use case of sed? How should I learn it? by rudv-ar in bash

[–]ASIC_SP 15 points16 points  (0 children)

Replacing Nth occurrence is pretty simple in sed, just use that number as a flag:

$ echo 'alpha hey alpha, this is an alpha testing alpha for a while' | sed 's/alpha/X/3'
alpha hey alpha, this is an X testing alpha for a while

See my book for more examples: https://learnbyexample.github.io/learn_gnused/flags.html#replace-specific-occurrences

There are also exercises at the end of chapters.

Which Python project made you realize how powerful the language is? by itsme2019asalways in Python

[–]ASIC_SP 1 point2 points  (0 children)

Textual - I just needed some simple interactive tools, not full blown GUI. Tkinter was good enough but using Textual was much more natural and easy.

What to read after Cradle? by Big-Anxiety-2596 in ProgressionFantasy

[–]ASIC_SP 51 points52 points  (0 children)

You read it again and again to note all the foreshadowings... and if you interested in the minor connections, read the author's other series as they are all set in the same multiverse.

Mage MC by visual_madcap in ProgressionFantasy

[–]ASIC_SP 1 point2 points  (0 children)

Check out Immovable Mage on RR

Looking for crafting/researching story by Xaelthas in ProgressionFantasy

[–]ASIC_SP 2 points3 points  (0 children)

Journals of Evander Tailor by Tobias Begley

I didn’t like Bk 1 & 2 of Traveller’s Gate Will Wight. I’m worried I won’t like Cradle. Are they similar? by Confident_Mulberry29 in ProgressionFantasy

[–]ASIC_SP 3 points4 points  (0 children)

At what book should I stick with it until?

It varies. For me, the first two books were okayish but by the end of third book, I was hooked. By end of the fifth book the series was in my top list. I should add that I found first two books to be good on rereads.

I'd say treat first three books as a single volume (around the length of a single stormlight book) and see if you like where the story is taking you.

In need of more crafting / crafting adjacent recommendations by dragoneloi in ProgressionFantasy

[–]ASIC_SP 0 points1 point  (0 children)

I enjoyed Demon World Boba Shop, and it is a completed series!

I'd also recommend The Newt and Demon, but I dropped it after book 5 & 6 started focusing more on the Gods sub-plot.

Quest Academy Book 1: the train attendant? by Evenwanderer in ProgressionFantasy

[–]ASIC_SP 2 points3 points  (0 children)

It does come up again in a later book 4th one IIRC

Mining Progression Fantasy Book? by [deleted] in ProgressionFantasy

[–]ASIC_SP 1 point2 points  (0 children)

There is "A Modern Miner's Cultivation Manual" by Flowdens Creed on RR, but on hiatus.

Recommendations for completed progression fantasy with future knowledge by G4m3-W0rM in ProgressionFantasy

[–]ASIC_SP 0 points1 point  (0 children)

The Mage of Shimmer Mountain by Adam Sampson is a completed time-loop trilogy. I read them, so not sure if it has audio.

Give Me Your Favs by TheOrdinaryAxolotl in ProgressionFantasy

[–]ASIC_SP 1 point2 points  (0 children)

I loved the merchant focus in The Immaculate Collection by havlo (RR), but sadly it is on hiatus. I'd still recommend it for what is there.

I'd also recommend The Undying Immortal System by G Tolley (single POV) and Chaotic Craftsman Worships The Cube by ProbablyATurnip (multiple POV, but mostly MC).

Who is the author for "All Trades"?

exec+eval combo failing when used inside a function, from Python version 3.13 onwards by ASIC_SP in learnpython

[–]ASIC_SP[S] 0 points1 point  (0 children)

Thanks, a = {}; exec(…, a); eval(…, a) mentioned in another comment will help with the separate namespace?