Elisha Hollander
Elisha Hollander
Exactly how I got here too. This is a bit weird since according to Wikipedia, GitHub was Founded on February 8, 2008, and the Development of the GitHub platform began...
@toydotgame Even if the git history was pushed to GitHub from Git it doesn't explain the _created_at_ date of this repo which is `2007-10-29T14:37:16Z` which is four months before GitHub...
> Where are you compiling that code and with what? Compiling using `gcc`
That's odd, using `gcc` in cmd I get this (expected behavior): https://user-images.githubusercontent.com/61805754/152262671-27acfcbe-049c-46d5-86af-7404a949d27f.mp4 And in the terminal this: https://user-images.githubusercontent.com/61805754/152262642-cbc810f9-043a-4462-b5ea-f385c56bc79e.mp4
> > Compiling using `gcc` but it doesn't really matter > > I suspect it matters a lot. If your compiler are making some default assumption of using windows vs...
@237dmitry So? You're not actually printing the same thing...
I mean I print continuously such that each print covers the entire terminal the excepted behavior is for the terminal to show that string continuously
Using any type of Unicode special sequence is problematic when running the code from CMD because then it's actually printed...
Yeah, I know what an escape sequence I just didn't remember the term 😅 (yeah it isn't Unicode but you know what I mean), in my original issue (microsoft/vscode#142001) I...
> ```c > SetConsoleMode(GetStdHandle(STD_OUTPUT_HANDLE), ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING); > ``` You just blew my mind