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;
 
I came across a video regarding the use of AI/ML to work through complex datasets to determine complicated protein structures. It is a promising and beneficial use of AI/ML. AlphaFold - The Most Useful Thing AI Has Ever Done https://www.ebi.ac.uk/training/online/courses/alphafold/an-introductory-guide-to-its-strengths-and-limitations/what-is-alphafold/ https://en.wikipedia.org/wiki/AlphaFold https://deepmind.google/about/ Edit/update: The AlphaFold article in Nature John Jumper...
Thread 'Urgent: Physically repair - or bypass - power button on Asus laptop'
Asus Vivobook S14 flip. The power button is wrecked. Unable to turn it on AT ALL. We can get into how and why it got wrecked later, but suffice to say a kitchen knife was involved: These buttons do want to NOT come off, not like other lappies, where they can snap in and out. And they sure don't go back on. So, in the absence of a longer-term solution that might involve a replacement, is there any way I can activate the power button, like with a paperclip or wire or something? It looks...
Back
Top