Tech-Asteroid

Results 9 comments of Tech-Asteroid

What worked for me was to pull the source for Qemu 4.2.1 and compile. I put this 4.2.1 version qemu-system-riscv64 in my path before the system version so it would...

@Taowyoo Nice catch. I tried debugging as well and I am also getting caught on mret but inside the timervec routine instead... when using QEMU 6.0.0 on Arch. I can...

@u2386 to debug OS boot you can use the provided "make qemu-gdb" which should start up xv6 in qemu waiting for a gdb session to connect. If you then run...

I tried out muuri in a few prototypes and I think its pretty cool. Kudos on your work. I think it would be nice to add the ability to center...

Yeah in both my prototypes I ended up adding the feature in myself due to the client's request. It would make the library a little more batteries included, but people...

Is this following another implementation or are you building toward a specification? This is so awesome. Wish I understood more about OS development terms and how all these seemingly magic...

Just some food for thought for cross platform support and implementing full syntax highlighting. 1.) It appears that Powershell and Command Prompt on Windows will not support using ansi escape...

goquery has a utility function named OuterHtml() which gives the raw html for the selected node. Activating this function with a query such as.... ``` bash pop -l go print...

Just quickly played around with goquery and came up with something like this... ``` go doc.Find(".answercell .post-text").First().Find("a").Each(func(i int, s *goquery.Selection) { href, success := s.Attr("href") if success == true {...