Been really busy with work and the recent switch to Devops team but here's a little something I did for my personal use that I found useful to send my pfsense logs to elasticsearch via fluentd (highly reccomend opendistro aswell btw)https://github.com/davidsielert/pfsense_fluentd…
A little side project for a gaming group & podcast. I frequent with some long time friendsBuilt using Bootstrap 4.1, Font Awesome for frontend UX. Backend is a Java Spring Boot Application utilizing JPA (Hibernate), Spring Security, Spring MVC. I'll post a link when its finished!…
This is just a small feature of one of my favorite hobbies. Several iterations of this design and both a Max and XS version.Check it out @ https://www.thingiverse.com/thing:3165131…
Just a quick shout out to a not-so-documented feature of the Laravel/Symfony Cookie-bag.. Cookie::queued() allows you to retrieve cookies which were queued for creation on this request.…
At a company I've been working with, we have a set of some 33 odd or so Lambda functions that are triggered via Amazon's API Gateway. We recently discovered (the hard way!) about a unclearly documented limitation of using API gateway to trigger lambda functions. Per the Amazon documentation on the API Gateway Limits Integration timeout 50 milliseconds - 29 seconds for all integration types, including Lambda, Lambda proxy, HTTP, HTTP proxy, and AWS integrations. This can be somewhat conflicting if your new to lambda like I was, as the UI in Lambda has an option to configure the timeout…
Child component refs are somewhat documented in the offical documentation. But it doesn't really show you what or why you might need to do this. I have found that utilizting child component refs a somewhat edge case,but very useful. so creating them can be as simple as: $refs, while used on a normal HTML element will give you the DOM node, creating a ref on a component will give you direct access to its Vue instance allowing you to call methods, access properties etc. export default { methods: { callChildComponentMethod() { this.$refs.myCompInstance.deleteSomething(); }, accessChildComponentData() { this.$refs.myCompInstance.someDataField. } } } This can…
I have had the privilege of working with Vue + Vuex for about the last year or so. One of the more tediuous problems that I discovered early on with using these two libraries is that writing a getter and a setter for every form field and state value can get tedious!…