Life
Sites
-
Recent Posts
Log In
Categories
Author Archives: Erik Calco
Mapping Vue 3 Pages to Firebase Hosting
Vue 3 has a concept called pages that let’s you define different HTML pages acting as entry points to your app. You define these in vue.config.js in the root of your project. Here is a sample: module.exports = { pages: … Continue reading
Protected: Ohio at Risk
There is no excerpt because this is a protected post.
In a world of ignorance, knowledge is power
Here is a very well documented list of the facts on using masks to try to control transmission from the Association of American Physicians and Surgeons (AAPS): Mask Facts And for those who like watching a video: Why Face Masks … Continue reading
Roasted Red Pepper Relish
This easy to make roasted relish is one of the healthiest thing you can make. But, it is also one of the tastiest thing you’ll ever eat. It can be used to add robust flavor to new and traditional dishes. … Continue reading
Posted in Food
Leave a comment
Using Duration in Typescript
I’m converting Java 8 code to Typescript. Java 8 introduced a great Duration class that uses ChronoUnit to specify units such as DAYS or HOURS. You then instantiate a duration using that: Duration.of(3, SECONDS); Duration.of(465, HOURS); Duration can then interact … Continue reading
Posted in Angular, Development, Technology, Typescript
Tagged angular, coding, development, duration, typescript
Leave a comment
Using FirewallD as a Linux Router
There are already blogs out there on how to use FirewallD as a router. In general, you enable masquerade. However, I could not find any that mentioned how to do it if you have public static IPs. Prior to using … Continue reading
Posted in Networking, Technology, Technology Services
Tagged centos, firewall, firewalld, internet, linux, networking, router
Leave a comment
Creating a new Angular Site on Google Firebase
Angular is a framework for creating front-ends for websites. Technically, the site is static from a web hosting perspective, meaning that in and of itself it does not have a database, but rather only serves static files from the web … Continue reading
Posted in Angular, Development, Technology, Web
Tagged angular, development, firebase, hosting, web
Leave a comment
Protected: The Super Rich, News and Profits
There is no excerpt because this is a protected post.
Using JSONP in Angular 8
JSONP is one way to get around CORS when getting data from a REST service. It does require a callback feature on the part of the service, which isn’t readily clear in some of the blogs and samples online for … Continue reading
Channels On Charts Need Log Scale
Log scale is an option you can turn on when doing most financial charting. Your software may default to off, so you need to check this. You should really have log scale on your trading and investing charts all the … Continue reading
Posted in Finance, Investing, Trading
Leave a comment