Posts

Naming Convention Types and Where to Use Them

Short write up of naming conventions and how they are used. Naming Types When combing and describing words for functions, enums, structs, classes, etc… it is very useful to stay consistent to a naming convention. Naming conventions stick to a particular format type. Here is a table I created for future references of format types. Type Formatting Camel Case twoWords Snake Case two_words Pascal Case, Upper Camel Case TwoWords Kebab Case two-words Train Case TWO-WORDS Where These are Used The question is which format type do I use for my project....

March 14, 2024

Common Vulnerability Databases

In this post I wanted to go over some of the findings I have found when doing research into how vulnerability scoring works with vulnerability databases. CVE The Common Enumeration of Vulnerabilities (CVE) List is a database of reported vulnerabilities maintained by the Mitre Corporation. Vulnerabilities found can be submitted by organizations and even individuals. Each vulnerability is given a CVE-ID number to identify by. This list of CVE-ID’s is used by many other databases for application use and scoring....

February 13, 2024

Mulesoft Security Capabilities

After working with Mulesoft for a while, I wanted to write this blog post because I didn’t see very many resourse that were comprehensive on Mulesoft and it’s security capabilities. Many of these findings were by google searching, reviewing Mulesoft documentation and talking with Mulesoft reps for security capabilities. This post is not intented to include all of Mulesoft security capabilities but is just good starter for those looking to use Mulesoft security....

June 28, 2023

BASpi Installation Guide

The BASpi is a raspberry pi HAT that can turn your raspbery pi into a configurable BACnet device. BACnet devices are used in commercial HVAC building automation. It is how large commercial buildings are able to trigger during a certain time of day or trigger from another sensor. For example, a BACnet devices can be used for turning down and turning up building air conditioning during certain times of day or year....

July 14, 2022

Easy Blog Site Creation with Hugo

Like everyone else and their dog, I set up this blog website to post about personal projects in technology and other fun topics. Components Used: Mac Hugo PaperMod GitHub Pages Local Deployment: In Local Machine: Brew Install Hugo git init git submodule add https://github.com/adityatelange/hugo-PaperMod/wiki/Features#profile-mode themes/hugo-PaperMod hugo server -D Go to: http://localhost:1313 Stop Server: Ctrl C GitHub Pages Deployment: In Github.com: Create new repository named <username>.github.io, filling in your username In Local Machine:...

May 14, 2022