how to access source code of PolSARpro - open-source

I find the software PolSARpro is useful in my project.it says that this software is open-source, but how can I access to it's source code?
the website of PolSARpro:https://earth.esa.int/web/polsarpro/home

Just install the PolSARpro in your PC ,go to the directory in which it is installed,Locate "Soft" folder. In this folder the source code of every functionality is given.

Related

HelpNDoc : Problem to generate CHM format help - Error HHC5010

I would like to generate a CHM help file with HelpNDoc.
But I get an error message:
HHC5010: Error: Cannot open "c:\users\philippeDocuments\HelpNDoc\Output\chm\creabook.chm". Compilation stopped.
I tried to create the CHM folder myself, in the "Output" folder but no result.
I'm running Ubuntu 22.04.1 LTS and using Wine as a Windows emulator.
Maybe it's an authorization issue?
What is surprising is that I was able to generate the Word and html documentation.
Is someone can help me ?
I do not use Ubuntu or Wine as an environment and would like to recommend a machine with Windows for compiling CHM help files.
Despite the close connection of CHM help files with the Windows operating system, I do not want to completely exclude the possibility of compiling in a Wine environment.
My good old compiler Error Message Reference shows the following:
HHC5010: Cannot open ""file name"". Compilation stopped.
Problem: The specified file either doesn't exist, or another program has it open and is denying permission to read the file.
Result: The .chm file is corrupt and cannot be used.
Solution: If another program does have the file open, close the program. Otherwise either correct the name in your project file or remove it.
Please make sure that the CHM help file "c:\users\philippeDocuments\HelpNDoc\Output\chm\creabook.chm" is not open in Wine's HTML help viewer by using e.g. wine hh creabook.chm.
Please also try if you can open another CHM help file in your environment. Maybe you have to specify a windows path, e.g.
wine hh.exe `winepatch -w /some/dir/somefile.chm`
As mentioned above, this is somewhat problematic outside of Windows.
See also some notes at Installing Microsoft HTML Workshop under Wine

How to make PhpStorm access a proper directory?

I'm running Linux Mint. My existing projects are located at the /var/www/* folders. But when I'm trying to create a new project then the PhpStorm's file browser is not showing me that folder at all. Like there is just no /var/www folder, but I know it is there and is having a full access permissions (0777).
In addition it shows for example a folder /var/data/JetBrains which is not actually available in my system (terminal: cd /var/data - no such file or directory).
So it seems like it is showing some kind of its own /var folder (virtualized?), not the one that is actually in my system. How can I solve this problem, how can I make it so it use my system's /var folder?
Solved. Do not install the PhpStorm from the Mint's software manager. It comes there in some kind of wrapper that isolates the filesystem.

Readthedocs is not serving my documentation

I'm working on serving the doxygen documentation for our C++ project on readthedocs so it gets built automatically and documentation for all versions is available.
I'm using doxyrest to convert doxygen XML output to RST and this build fine both on my local machine and on readthedocs but, while I can download the pdf and the zipped html versions of the documentation off readthedocs, I just get the maze thing when I try and read it online.
Here is my docs directory
Turns out this happens if your conf.py is in docs/ rather than docs/source

Adding an external project directory in phpStorm 6.0 to keeping workspace files separated from code?

I am try to keep separate workspace directory and code directories in my php project and sweating to understand/find how this could be achieved. A couple of revisions back I tried phpStorm and found that it does not provide such feature.
I just want to know if phpstorm 6.0 has this feature or still lacking it ? If possible please help me out.
Work Around
File > Settings >[Directories]
+[Add Content Root] to add external directory
Assuming that you have created project separate from code.Some of the tool might not work
as expected
This works for linux using sshfs, sorry for windows users.
I've created this folder structure in my pc
/mnt/remote_code/code/
And i have to mount code from server like this
sshfs user#server:/var/www/server_code/ /mnt/remote_code/code/
Code from server will be mounted in code folder
In PS I open this directory: /mnt/remote_code/
So, that means PS will create this folder /mnt/remote_code/.idea (indexing and saving all project and ide settings), and keeps the code folder (with remote code inside) without changes.
Hope it help you.
Greetings.

Source files installation problem in Adobe AIR

wonder why when I export my project to *.air and I install it on my computer.
I can see the source files in the software installed directory.
Should I choose something? or it's should be like this... because, why should I write softwares on adobe air if everyone can install the project and watch my codes?
I programmed on ajax, html, js..
I search on google and adobe air forums and I cant find and answer to my question.
I should like to any kind of help...
By source, do you mean FLAs and AS files, or do you mean HTML and JS files? For HTML projects, yes, all your HTML and JS files will be visible to users in the packaged app. AIR basically just copies them to the user's installation directory and runs them. But for a Flash/Flex-based app, FLAs and AS files do not have to be distributed, only SWFs.
If FLAs and so on are showing up in your app directory, you'll want to change how you're exporting. The details depend on whether you're publishing from Flash, FB, or the command line, so if you can't find it please update your question with the details of what you're using.