Jump to content

What's your favorite tool(piece of software) you use everytime you code?

mrchow19910319
38 minutes ago, Umberto said:

zsh, vim, git, tmux

I love oh my zsh! 

If it is not broken, let's fix till it is. 

Link to comment
Share on other sites

Link to post
Share on other sites

I use Netbeans for (PHP, HTML, JS) for work.
Visual Studio 2017 for (C#, C++, ASP.Net) for work.
Unreal Engine for game dev side projects.

Used to use MSSQL server years ago and PHPMyAdmin for MySQL.

I also use some other tools that are licensed from IBM due to working on a POWER8 server.

Link to comment
Share on other sites

Link to post
Share on other sites

Emmet is the hands now best "autocomplete" addon for any web project and I use it pretty much every day.

 

It allows you to stuff like div (tab) and it will type out <div></div>

 

But can also do really complex stuff like (div>dl>(dt+dd)*3)+footer>p and convert to 

 

<div>
    <dl>
        <dt></dt>
        <dd></dd>
        <dt></dt>
        <dd></dd>
        <dt></dt>
        <dd></dd>
    </dl>
</div>
<footer>
    <p></p>
</footer>

here is a cheat sheet https://docs.emmet.io/cheat-sheet/

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×