Far Manager file view customization [closed] - customization

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
maybe some of you use Far Manager as a file manager and could help me with this. I want to be able to call a custom command on viewing a file with a specific extension, i.e. when I press F3 (command for viewing the contents of a file), some custom command is executed on that file and the output is shown in Far Manager's view window.
Appreciate any ideas.

Found what I need - under Commands > File associations need to create new entry with needed file mask, then under View command (used for F3) add this - far:view < your command.
I wanted this to be able to view decompiled Java class files, so I did this:
file mask: *.class
view command: far:view < jad -p !.!

Related

How can I run Win10 Camera application via command? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
This is the Win10 built-in Camera application.
We usually can run a normal Windows applicaion via command like
notepad
calc
in cmd or powerShell.
For the camera APP, I inspected the process via spy++
The process is ApplicationFrameHost.exe and with -Embedding parameter.
However, I run this command in PowerShell and turned out not work.
ApplicationFrameHost -Embedding
How do I run the Win10 camera APP via command line? Or I use C++, which function can achieve that?
Type follwing command in cmd.
start microsoft.windows.camera:

unable to copy paste on Google compute engine sshed on my browser [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I am unable to copy and paste text copied on my clipboard to the google cloud compute engine instance which I have accessed on my browser.
I have tried firefox and chrome both but it is not working.
I have tried cntrl+c and cntrl+v but it dosent work.
Do i need to change some system settings ?
you can copy text from Cloud Shell (I'm assuming you mean that) by selecting text with the mouse (some scissors icon flashes then), and one can paste text with <Ctrl> + <V>... when trying to paste into there, be careful not to trigger the copy command (eg. by first positioning the cursor and only hitting <Ctrl> + <V>, without clicking onto text)... also see the documentation, for further details.

mutt: how can I open a subfolder that has subfolders? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I want to start using mutt again after about 15 years. I first want to use it to access my gmail account. I'm running into a simple problem now: how to open a subfolder (tag in gmail) that has subfolders of its own?
When I go to TODO/ and press enter mutt takes me into the TODO directory. I simply want to open the TODO tag. How can I do that?
To view messages outside your inbox, type c and either type ? to view a list of all your tags and folders, or prepend your tag with an equals sign. So, to view messages tagged 'work', you'd type c, then =work, then hit Return.
Found the info on this post

Github & Trello lists [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I'm working on a project that's just about done.
Now I just need a list that shows all the things I've worked on. Luckily I've been using Github and Trello to keep track of all my work.
Does anyone know how to get a simple list of commits/activities from any of these 2 services?
I just need a simple list like this:
Date:
Title:
Description:
I'm working on a Mac but I'm using the Github client.
Github: In the terminal, you can navigate to the folder that you are working in and type git log. It will give you a list of commits. If you would like to save it in a text file you could typegit log > commits.txt.
Trello: In Trello you can go to the board you are working on and select print form the menu. This will give you a list of activities.

Make new filetype use custom icon [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am designing a new programming language, and I want to allow my users to embed a custom icon in the output binary file, which is not a standard EXE file.
EXE files allow custom icons (not all .EXE files use the same icon). How can I do that with my own binary files?
If you want to provide different icons for files with the same extension, you need to register an Icon Handler shell extension. For details, see this page in MSDN.
Your handler will need to know how to extract the icon from the file and return it to Explorer.
These instructions should help:
http://msdn.microsoft.com/en-us/library/windows/desktop/hh127427%28v=vs.85%29.aspx
Essentially, create the registry key in HKEY_CLASSES_ROOT for your extension (follow other examples, or that link) to specify an icon, and call SHChangeNotify() with SHCNE_ASSOCCHANGED.
This answer covers registry changes in C++:
Using C++ to edit the registry