I have two concerns about the chide IDE

  • Thread starter Thread starter Eclair_de_XII
  • Start date Start date
AI Thread Summary
The main issues discussed involve problems with the chide editor, specifically that text appears as garbled boxes with numbers, indicating a potential character set issue, despite the system language being set to American English. Additionally, there is concern over the creation of a `gmon.out` file after each session, which is considered undesirable. Recommendations for alternatives to chide include Visual Studio Code for serious use and online platforms like repl.it or programiz for beginners. However, the user ultimately decides to use vim for offline editing, configuring it with specific settings for various file types and commands.
Eclair_de_XII
Messages
1,082
Reaction score
91
TL;DR Summary
I installed chide, and have two problems:

1. The text I input into the editor appears as garbled-up boxes of numbers.
2. Every time I close a session, a gmon.out file is created. I don't want my file-system littered with these files.

Incidentally, I am also open to alternatives to C interpreters and editors, preferably, those that are simple and lightweight.
The main concern I have right now is that whenever I open something up in chide, the letters look like boxes with numbers; the line numbers are like this, as well. I'm not sure what is going on, here. The second concern I have is that a file called `gmon.out' is created after exiting every chide session I open. I think this is undesirable, and would like to know how to stop this behavior. I understand that it is an important file, but at the same time, I don't approve of having files like this being created in my current working directory every time I open and close chide.

Screenshot_2022-02-09_21-50-29.png
 
Computer science news on Phys.org
Eclair_de_XII said:
1. The text I input into the editor appears as garbled-up boxes of numbers.
...
The main concern I have right now is that whenever I open something up in chide, the letters look like boxes with numbers; the line numbers are like this, as well. I'm not sure what is going on, here.
Looks like a problem with character sets, although I'm surprised its affecting every character including line numbers. Is your system language set to something with non-Roman numerals e.g. Arabic?

Eclair_de_XII said:
Incidentally, I am also open to alternatives to C interpreters and editors, preferably, those that are simple and lightweight.
I have never come across chide before: it doesn't look well maintained and I cannot think of a good reason to use it.

For serious use I recommend Visual Studio Code. For basic use just taking the first steps then you could look at something online like repl.it or programiz.
 
pbuk said:
Is your system language set to something with non-Roman numerals e.g. Arabic?
It's set to American English. I'm also running Linux Mint, but I'm unsure if it is relevant to the problem.

pbuk said:
For basic use just taking the first steps then you could look at something online like repl.it or programiz.
Thanks for the recommendations. But I should have specified that I was looking for offline editors.
 
In the end, I decided to just go with vim with the .vimrc settings:

set nocp
set expandtab
set tabstop=4
set shiftwidth=0
map <F5> :!myfile=%; if [ "${myfile: -4}" == ".tex" ]; then etex $myfile && xreader ${myfile/.tex/.dvi}; elif [ "${myfile: -3}" == ".py" ]; then python3 $myfile; elif [ "${myfile: -2}" == ".c" ]; then gcc -o "${myfile:: -2}" $myfile && ./"${myfile:: -2}"; fi;
 
In my discussions elsewhere, I've noticed a lot of disagreement regarding AI. A question that comes up is, "Is AI hype?" Unfortunately, when this question is asked, the one asking, as far as I can tell, may mean one of three things which can lead to lots of confusion. I'll list them out now for clarity. 1. Can AI do everything a human can do and how close are we to that? 2. Are corporations and governments using the promise of AI to gain more power for themselves? 3. Are AI and transhumans...
Thread 'ChatGPT Examples, Good and Bad'
I've been experimenting with ChatGPT. Some results are good, some very very bad. I think examples can help expose the properties of this AI. Maybe you can post some of your favorite examples and tell us what they reveal about the properties of this AI. (I had problems with copy/paste of text and formatting, so I'm posting my examples as screen shots. That is a promising start. :smile: But then I provided values V=1, R1=1, R2=2, R3=3 and asked for the value of I. At first, it said...
Back
Top