Blogs
Coder Cruise Recap
I was honored to have been invited to speak at this years Coder Cruise 2018 conference. A web conference for all things web thats also held on a cruise ship, yes please. This years conference brought together technologists from all over the world for four days to talk and learn about all things web …
Useful Command Line …
Here are some useful command line snippets Get the number of files in a directory, by using the ls command this will count the result. ls -l | wc -l List all files in a directory/ directories recursively ls -LR Find all files in a directory based on a pattern ls | grep -P "^A.*[0-9]{2}$" And …
Version with Angular CLI
Displaying the version of your application is useful in almost every scenario. The Angular CLI, really Webpack, make it easy to access the current version from your package.json file. In your component file we first need to set to access the package.json file. const { version: applicationVersion } = …