Configure Octave for UTF-8 in linux console - octave

I am not totally sure that I can ask this question here.
If it is inappropriate please tell me to remove it.
I have configure the Octave editor for UTF-8 in Lubuntu Linux.
But I cannot get Greek characters in Octave console.
I can type Greek characters and they displayed correctly, in linux console.
I tried all fonts for octave console from preferences.
I attach a screenshot.
So, the question is: What I can do, to get greek characters in Linux Octave console?

Related

running java program in IntelliJ terminal

Below is a screenshot of IntelliJ on my computer with a terminal up.
I thought I should be able to just type java random_uniformin the terminal to run the program but it complains withe the error message shown in the screenshot.
I have looked at similar questions to mine but still wasn't able to resolve the issue.
The terminal in IntelliJ is just your shell (if you're on unix) and cmd.exe-like command prompt (if you're on Windows). There's no magic.
So to run program in terminal you need to compile it as usually and run binary.
Here is an answer about how to compile Java program

Unable to display Octave figure in Atom on MacOS

I tried few different terminal implementations such as terminal-plus or platformio-ide-terminal on Atom (1.38.2) to run some Octave exercises. I noticed that the Octave shell runs normally until I try to plot anything.
When I type figure into the shell no window pops up and no error or any other messages appear in the terminal. Yet everything runs OK in Mac (Mojave 10.14.5) own terminal
Figured it out. The popup is there but it is buried under Atom itself. If I call figure(gcf) instead of simply figure it brings the window to the foreground and displays above the IDE. If anyone has a better answer I'll be happy to accept

In GNU Octave, how to solve libpng warning: iCCP: Not recognizing known sRGB profile that has been edited

I am doing math using GNU Octave, but no matter what version of GNU Octave I install, this warning appears every time I want to plot something, and then the program has no response.
libpng warning: iCCP: Not recognizing known sRGB profile that has been edited
My question has nothing to do with Android Studio.
I know it is not the problem of GNU Octave, but I do not know how to fix.
OS: Windows 8.1 x64
GNU Octave 4.2.0 installed by octave-4.2.0-w64-installer
this is the warning
All these warnings can be removed by using a command tool called "pngcrush" in git bash on Windows. And then Octave will work well.
follow this answer

octave on OSX Yosemite, print outputs doc, but graph is solid black

I used homebrew to install octave, rebooted machine. I can run plots successfully and see the graphs render normally. When I go to print them, the document saves with the legend and axes, but the body of the graph is solid black. I have tried this with png, pdf and jpg formats - all the same.
I do get a message that fig2dev binary is not available. I have searched for what I am missing but seem to have everything installed from homebrew that octave needs.
Any help would be appreciated.
It seems there is a problem with gnuplot 5 and Macs (see the bug report). I was able to solve this by doing as suggested in the link and downgrading to gunplot version 4.6.6
brew switch gnuplot 4.6.6
This answer has lots of good info on installing specific versions of software in homebrew.

Sublime Text 3 - Sublime Linter 3 - Why isn't "HTML Tidy" working?

I'm a brand new coder trying to wean myself off of the Codecademy web environment. I'm using Sublime Text 3 in tandem with Sublime Linter 3 in order to approximate the real-time error-checking to which I've become accustomed from Codecademy's site.
I know that each linter needs to be installed separately in ST3 and I've successfully integrated "csslint" and "jshint". Both work properly.
Now, I'm trying to get an html linter to error-check my html code and I can only seem to find "HTML Tidy", which I have installed via package control. Unlike the aforementioned linters, which simply require a pre-defined command line string for input at terminal, online tutorials have me installing "HTML tidy" via a winrar executable.
Now I am regrouping and would greatly appreciate any feedback you can provide that might move me incrementally closer to having a working HTML linter. I am using a windows xp computer. Many kind thanks for your help.
According to the Installation Instructions for the plugin, there is a Windows binary for Tidy available here.
For some background, Tidy is a command line tool that comes pre-installed with Mac and Linux but not Windows. Downloading the binary mentioned here and placing it in your path will allow it to be run. To check where it should be placed, run echo %path% from the command line.
Once that is there it will work. To see the available arguments to be run with Tidy, run tidy -help from the command line. These arguments can be added to "args" linter settings.
Just copy tiny.exe to folder C:\Windows\System32\, and restart ST3.