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
I am a beginner.
How can I change my VS code style from this
to this?:
Install this extension to your VS Code:
https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I want to build an animation like the one in slack-demo page. Basically I am trying to demonstrate a feature of my Application with animation. I can do so using Vanilla JS and CSS. But it will be a lot of code and difficult to maintain.
What library/Framework can I use to build animation like slack-demo?
Just looking at the code, it seems to have been made with https://greensock.com
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 mean, that's really the whole question... I need the auto-indentation on newline insertion and syntax highlighting, and perhaps there are other niceties that I take for granted but would miss if absent.
That's all.
I would use a vim plugin specifically for Markdown, but if you really want to use JS specifically you can use
autocmd FileType md set filetype=javascript
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I see a video which introduce the node.js. during the introduction, Ryan Dahl say javascript is a very bare bones language at 36:12.
what does this mean?
As the linked definition indicates, "bare bones" means "simple, elementary, no-frills." Think of a skeleton, rather than a filled-out body with all its organs. "Bare bones" is a general expression, with no meaning specific to the computing field.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'd like a small javascript scratchpad in which I can write and test (non-DOM related) functions.
I'm not happy using the Firebug console to do this.
Does such a thing exist as a standalone app?
There's jQueryBuddy, currently in beta.
It does support DOM manipulation, but you don't have to use that if you don't need it. And like LinqPad it has a very similar Dump() method for viewing objects.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm on the learning stage, and i need some feedback for the code I've write. Do you have any idea about how can I get another pair of eyes with a smarter brain to look over my code?
ps: It is about a code written in js.
There is a StackExchange site for that: https://codereview.stackexchange.com/
If you are learning Javascript make sure you pass your code threw JSLint (jslint.com) it will
find a lot of the stupid errors people tend to make.