Saturday, January 21, 2017

The Literary Report

Hello,

The first review on my book blog - The Literary Report, is now live.

I decided to branch things out to a separate blog, as the posts on here are mostly technical and this audience may like that more than seeing book reviews pop up and having to sort through them to find the content they like.

I also did it to hold myself accountable

I always intend to read more, but I get sidetracked by various things. I'll start multiple books at once and not make it through any of them.

I'll be putting in a stronger effort in 2017 to read more. All content will be posted as books are finished. This puts an expectation on me to finish books.

I'm trying to keep the reviews shorter and include relevant information pertaining to the books. I'll also give each book "Literary Review points" at the end. This will be on a 0 out of 5 scale. This way I can quickly look back and see if I would want to read a book again or not. Hopefully, this format is beneficial to the audience as well.

So if you like that kind of thing, please head over and check it out. If not, thanks for reading this and continue to look forward to more Bit of a Byte posts coming in 2017!


~ Michael

Wednesday, January 11, 2017

Wednesday, December 14, 2016

Programming in C/C++ Within the Atom Text Editor [Mac OS]

This will be a quick walkthrough of setting up the Atom text editor to code in C/C++. Once setup, you will be able to write, compile, and run programs from within the Atom text editor. This guide assumes you have installed software before in a Mac environment and now how to move around the file system as needed.

First download and install Xcode on your system:

https://developer.apple.com/xcode/

After installing, open up Xcode for the first time. This will verify the program and finish the setup. You will also have to agree to the program terms which may involve running as root.

Next download and install the Atom text editor on your system:

https://atom.io/

After installing, open the program.

Click on Atom in the menu > Preferences.

Once the preferences page opens, click on Install on the left-hand

At the top there will be a search bar. Search for gpp-compiler.

Note: More info about gpp-compiler can be found here:

https://atom.io/packages/gpp-compiler

The results will up and it should be the first one in the list. Click install. After it installs. restart Atom.

Now code your first C/C++ program. When completed, right-click on the file in the tree view (left-hand side) and chose Compile and Run.

Your program will then compile using the tools already installed with Xcode and the terminal window should pop up to run your program. Figure 1 below shows a test Hello World! program written in C++ within Atom.


                                               Fig. 1: programming in c/c++ within Atom

Friday, December 9, 2016