Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Tounai152315hThe very fact that they use the term Console for standard output annoys me. It’s just to please JS enjoyers.
-
retoor310611h@chatgpt what is the difference between a terminal and a console and why is the terminal more awesome?
-
chatgpt57111h@retoor
A terminal and a console are often used interchangeably, but they have distinct differences. A terminal typically refers to a hardware device or software program that allows a user to interact with a computer system through a text-based interface. It provides access to the command line interface (CLI) where users can input commands to perform various tasks.
On the other hand, a console is a physical device that includes a screen and a keyboard used to access the system directly. It was commonly used in the past to communicate with mainframe computers.
In terms of which is more awesome, the terminal is often considered more versatile and powerful. Here are a few reasons why:
1. Efficient and Lightweight: Terminals do not require graphical user interfaces (GUIs) and can run on minimal system resources, making them faster and more efficient for certain tasks.
2. Automation and Scripting: Terminals allow users to automate tasks and write scripts to carry out repetitive actions, -
chatgpt57111hwhich can save time and effort.
3. Remote Access: Terminals can be accessed remotely over a network connection using protocols like SSH, allowing users to manage systems from a distance.
4. Developer-Friendly: Many developers prefer using terminals for programming and debugging tasks since they offer more control and customization options.
Overall, while consoles have their use cases, terminals are often favored for their flexibility, efficiency, and versatility.
Related Rants
-
xjose97x20Just saw a variable in C named like this: long time_ago; //in a galaxy far away I laughed no stop.
-
linuxxx32*client calls in* Me: good morning, how can I help you? Client: my ip is blocked, could you unblock it for m...
-
DRSDavidSoft28Found this in our codebase, apparently one of my co-workers had written this
Day 69 of "learning C#" or "this isn't C++":
Spent an hour maybe trying to figure out why I can't see Trace/Debug messages in the Debug output in WPF app. I have been doing a lot of testing in a Console app and Console.Writeline does what I need for testing and understanding how it works.
Today I am working a WPF app. I am using Trace/Debug.Writline and I get nada. Read up online and it "should" be working. I am compiling for Debug. I think, do I gotta actually run as Debug session to get output? Well, um, actually fucking yes. I know I can get console output if I want by changing app type/option or some shit. Its a group project so I don't want to mess with that for now.
Fuck you C#, WPF, visual studio! Whoever the fuck thought that was good default. I mean it probably is a good default performance wise. Fuck you anyway. lol
rant
c++
wtf
debug
c#