How can i open another terminal in Whack Whack terminal? - visual-studio-code

I'm trying to support two web applications on the same IDE (Visual Studio ) but not sure how can i have two terminals open. I would appreciate your help thank you!

Alright just so that if anyone comes across this block, they can get to know my experience.
I'm building a chat application using React and Socket.io and I'm using Visual Studio (IDE different than Visual Studio Code (text editor)). In order to run the react application and the server together I needed two terminals open at the same time to invoke functions(send messages) within the application and listen on the server for a response.
How I was able to do it
I already had the Whack Whack Terminal Extension downloaded and running and then i used the Developer Command Prompt where you can access in Tools/Command Line/Developer Command Prompt.
I hope this might come helpful to anyone who comes across this!

Related

Getting VS code server to run on Sagemaker Studio

I am currently in the process of exploring the possible use of VS Code Server on Sagemaker Studio. Of course, if you sign up through Code Server preview, I was able to set and start it up. However, when I tried to serve it locally, I encountered a blank page after modifying the /default/proxy/XXX part of the url like how we access tensorboard.
Just wondering on whether are there any tinkerers out there that managed to get it working? (and yes, I understand that somebody managed to get it running https://coder.com/docs/code-server/latest/CONTRIBUTING. but wondering whether anybody managed to use the native installation to work properly? Any possible steps that i may be missing?
Check out the blog post here for hosting code-server on SageMaker Studio - https://aws.amazon.com/blogs/machine-learning/host-code-server-on-amazon-sagemaker/
And associated git repo here - https://github.com/aws-samples/amazon-sagemaker-codeserver

Start Point for writing own debugger extension for Visual Studio Code

I want to migrate from Eclipse based IDE to VSC for working with remote Ruby apps and I stuck with writing VSC debugger extension.
Currently, the debugger in the Ruby App and debugger part in Eclipse IDE communicates via HTTP.
I have read the known widely article "Debugger Extension" and don't have yet clear understanding how exact to do it.
In my mind I must use Server type of VSC debugger, which starts to listen HTTP on specific port and translate commands to from DAP. But I cannot get workable sample of this.
Do somebody smthng like this?

Node.js Code Assist in the Eclipse Debugger

Does anyone know how to get code-assist working while debugging (say for instance while forming a watch expression) Node.js in Eclipse?
One of the motivations for my wanting to use Node.js on the server side was the idea that I could debug applications just as easily as I can debug client-side javascript code in a browser console like the one Chrome includes.
This seems like it should be a pretty easy one.
Thanks in advance.
For better Node.js debugging in Eclipse there is Nodeclipse project http://www.nodeclipse.org/updates/
It comes with Tern that gives mouse over hints

LabView web server cannot access

I would like to create the web server from LabVIEW VI but when i did the VI interface part was missing (that part is just blank and gave error). I tried to look for the solution from the internet and some says that plugins are missing so I downloaded and installed all plugin as suggest (windows silverlight and LabVIEW run time) but the result still the same.
Anybody have another suggestion?
(When i did this i followed this link: http://www.ni.com/white-paper/4791/en/)
Thanks,
Tanja
Try to install Latest version of Microsoft silverlight. After this make sure you open your interface via Internet explorer. Chrome would not like to open silverlight GUI.

Launching from Eclipses causes errors in browser

I've got a strange situation; when I run a Flex app from Eclipse (i.e. click run as web app), my remote calls always hang.
In Firefox, they return as failed.
But when I open up a browser and browse to my .html file in the bin-debug folder, the remote calls work.
Why is that?
Thanks for any helpful tips!
p.s. I'm accessing a websphere server and authentication is required but a Java developer hardcoded his ID in.
One thing to check:
Do you have a breakpoint set in your code somewhere? Eclipse may be waiting for you to interact with it so the program execution can continue. On my Win7 machine, when the debugger takes over, eclipse often does not take over focus; so I have to manually minimize IE.
My problem was solved today and the issue was getting through to the IBM websphere server; the authentication was still in place and the java developers had to create a cloned environment where authentication was not required. Thank you everyone for their helpful answers.