I have two concerns about the chide IDE

  • Thread starter Thread starter Eclair_de_XII
  • Start date Start date
Click For Summary

Discussion Overview

The discussion revolves around concerns related to the chide IDE, specifically issues with character display and the creation of an unwanted file (`gmon.out`) upon exiting the program. Participants explore potential causes and alternatives to chide, as well as personal preferences for text editors.

Discussion Character

  • Technical explanation
  • Debate/contested
  • Exploratory

Main Points Raised

  • One participant reports that text and line numbers in chide appear as garbled boxes with numbers, expressing confusion about the cause.
  • Another participant suggests that the issue may be related to character sets and questions the system language settings, proposing that non-Roman numeral settings could be a factor.
  • A participant mentions that they are using American English on Linux Mint, indicating uncertainty about its relevance to the issue.
  • Some participants express a lack of familiarity with chide, questioning its maintenance and suggesting alternatives like Visual Studio Code for serious use and online platforms for basic tasks.
  • One participant specifies a preference for offline editors, rejecting online alternatives suggested by others.
  • A later reply indicates a decision to use vim with specific settings, detailing a custom configuration for handling different file types.

Areas of Agreement / Disagreement

Participants do not reach a consensus on the cause of the display issue in chide, and multiple viewpoints regarding the suitability of chide versus other editors are presented. The discussion remains unresolved regarding the best approach to address the concerns raised.

Contextual Notes

Participants mention various system configurations and preferences, but the implications of these settings on the issues discussed are not fully explored or resolved.

Eclair_de_XII
Messages
1,082
Reaction score
91
TL;DR
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;
 

Similar threads

  • · Replies 24 ·
Replies
24
Views
10K
  • · Replies 20 ·
Replies
20
Views
3K
Replies
15
Views
11K
Replies
1
Views
6K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 16 ·
Replies
16
Views
4K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 33 ·
2
Replies
33
Views
3K
Replies
7
Views
3K
Replies
16
Views
3K