Using Windows for Development

It’s been a few months since my 2011 Macbook Pro died. I’ve tried to find a replacement since. With rumors of a new Macbook Pro announcing soon, I haven’t found any justification to replacing it with another. I did however, purchased a 2015 12” Macbook. I bought for my son and I was planning to use it as a secondary development machine. I’m not expecting it to be a powerhouse laptop which is why it won’t be a primary device. I will share my thoughts on that once I play with it more.

So I’m left with looking for a Windows PC laptop. I could also dual boot it with Ubuntu if the Windows OS won’t work well with my development environment needs. But where’s the fun and challenge in that? I was also encouraged to try it out since Dave Rupert has had success with it. I won’t get into too much of setting up the environment since there are countless of articles out there. I will share some of the softwares I use.

Hardware

After many attempts at different laptops, I have finally settled with the Dell Inspiron I7568-2867T. It’s a 15” laptop with a touchscreen display running a Skylake i5 processor. I hope to write about it soon. I’m still getting used to it. As many of you know, I only run Windows at home and that’s for gaming. Otherwise, I primarily use Apple. This will be a good adventure.

IDE

One of the best text editors (that’s cross-platform) is Sublime Text. It’s fast, light-weight, and highly extensible. But that would leave me in my comfort zone. So I decided to try Microsoft’s Visual Studio Code. I’ve been hearing about this IDE and it is also open source and cross-platform. You can install extensions similar to Sublime Text. Here is a list of what I’ve installed so far.

I’ve only been messing with Ruby/Jekyll and Node. I have yet to get into PHP development. I haven’t decided whether to use PHP’s built-in web server or use IIS, Apache, or Nginx. I want to get into .Net development as well.

Version Control

I am using both Github and Bitbucket. There are two clients I’m using.

  • Sourcetree – I’ve been using this for a while now and like the ease of use.
  • Git-scm – This is needed for VS Code to work with local .git repo.

What about WSL

Since Windows 10 build 14316 (preview), you may enable Windows Subsystem for Linux (WSL). This allows you to install Ubuntu-based bash environment on Windows. It sounds great but what I’ve found is you cannot have Windows access the files in this environment. I was hoping to run the environment and have an IDE on Windows edit the files. Currently, this is not allowed.

While VolFs files are stored in regular files on Windows in the directories mentioned above, interoperability with Windows is not supported.

You would have to use VIM to edit your files which, for me, takes more time than using an IDE. I am not accustom to using VIM. I need my IDE. For those who are, this wouldn’t be an issue and should look at WSL as an option.

I wanted to mention the Command Line. I miss the terminal app on Linux and OSX and use it frequently. I’ve been able to use Command Prompt but you cannot have tabs. You would have to open a new window. In a laptop screen, it can get cluttered quickly. There are many alternatives but I want to try what is included in Windows. I am currently trying PowerShell ISE. It has tabs, yay! You can also adjust the font and color.

So far, that’s I’ve been using with my laptop. If necessary, I could use Laravel Homestead for developing with PHP. I’m very curious about .Net and MVC and considering converting a few projects to it. We’ll see.

powershell vscode sourcetree

PowerShell ISE, VS Code, and SourceTree

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.