Brew Doctor Symlinks Prune

After running a brew update, it is best to next run brew doctor. Sometimes you may run into broken symlinks message like after an operating system or xcode update for example.

Read More

Angular Service

In software, the word “service” has many different meanings. For instance, what web development, we usually think of a service from a web server. These services provide us endpoints to an API to retrieve data.

Read More

Linters with Sublime

A linter is a small program that checks code for stylistic or programming errors. Linters are available for most syntaxes. The advantage of using SublimeLinter is that your code can be linted as you type (before saving your changes) and any errors are highlighted immediately, which is considerably easier than saving the file, switching to a terminal, running a linter, reading through a list of errors, then switching back to Sublime Text to locate the errors!

Read More

Word of the Day: Variadic Functions

Variadic Functions have come to JavaScript thanks to ES2015. A Variadic Function is a function that can accept any number of arguments. For example: funcName("one"); or funcName("one", "two"); or funcName("one", "two", "three");.

Read More

Ember CLI and Watchman

When Watchman is not installed, a notice is displayed when invoking various commands. You can safely ignore this message:

Read More

Installing Ember JS

Make sure you have Node and NPM installed.
Test to see if you have both installed and working correctly by typing the below commands on the command line.
Both should output a version number:

Read More

Angular Bootstrap Glyphicon Fix

In the bower.json file add:

	"overrides": {
		"bootstrap-sass": {
			"main": [
				"assets/stylesheets/_bootstrap.scss",
				"assets/fonts/bootstrap/glyphicons-halflings-regular.eot",
				"assets/fonts/bootstrap/glyphicons-halflings-regular.svg",
				"assets/fonts/bootstrap/glyphicons-halflings-regular.ttf",
				"assets/fonts/bootstrap/glyphicons-halflings-regular.woff",
				"assets/fonts/bootstrap/glyphicons-halflings-regular.woff2"
			]
		}
	}
Read More

Install brew Google Chrome

```bash $ brew cask install google-chrome ==> Caveats The Mac App Store version of 1Password won’t work with a Homebrew-Cask-linked Google Chrome. To bypass this limitation, you need to either:

Read More

Install Adobe Creative Suite with Homebrew Cask

$ brew cask install adobe-creative-cloud

``` ==> Downloading https://ccmdls.adobe.com/AdobeProducts/KCCC/1/osx10/CreativeClou ######################################################################## 100.0% To complete the installation of Cask adobe-creative-cloud, you must also run the installer at

Read More

Running Git through Homebrew instead of XCode

You are setting up your DEV environment. You setup Homebrew on your machine to so you can install node.js, GIT, and alike. Problem is that to install Homebrew, you needed to install XCode. XCode installs a version of GIT onto your mac automatically to use for Xcode development so when you input which git the directory points to /usr/bin/git. git --version prints git version 2.3.2 (Apple Git-55) when the latest is already GIT 2.5.0

Read More

Installing Homebrew on Mac

First thing out is going to the Apple App Store and downloading then installing XCode. Apple’s development software is used to build Mac and iOS apps.

Read More

Warning: gulp version mismatch Fix

$ bower install
$ gulp update
[10:31:22] Warning: gulp version mismatch:
[10:31:22] Global gulp is 3.9.0
[10:31:22] Local gulp is 3.8.11
$ gulp -v
[10:39:05] CLI version 3.9.0
[10:39:05] Local version 3.8.11
$ npm install gulp@3.9.0 --save
Read More

Great Quote of the Day

Some people, when confronted with a problem, think “I know, I’ll use regular expressions.” Now they have two problems.
–Jamie Zawinski, in comp.lang.emacs

Read More

New Blog Introduction

_config.yml
My name is Esko Cruzeta. Welcome to my new blog where I wish to share how-to and tutorials to problems I run into from server, web apps, computer programming, and hardware issues that I find little to no information anywhere online.

Read More