Posts

Modern Problems In a Society of Today

Introduction In today's busy world of hustle and bustle, we seem to have become lost in the sauce of life. Many of us are detracted, detatched or otherwise disconnected from one another, life, our systems and our planet. Also, in today's media, there's a lot of talk about these problems, but not nearly enough action, let alone any direction. I am putting this essay together to hopefully leave behind some breadcrumbs of my work in improving this in whatever ways I can. If I can touch an individual, a nation or a system, I will have done my job if I can leave this place better than I found it. Better in that people that I connect with find their sense of self-love and begin to identify The Self for them. With this, I hope to write my obituary. When people talk about me, one day, I want them to say "well, he accomplished his goals and that included improving on these 7 foundational points." -- of course, that's very high-level and very aspirational, but aim for

Retirement to me is ...

My Definition of Retirement Retirement for me is not sitting on a beach, sipping martinis all day long. I know a lot of people think of retirement as that time in your mid-sixties after working a lifetime, finally, the system is supposed to allow you to time to enjoy your life and live it for the first time. At least, that's the story I was sold when I was a kid. First things first, I disagree that one should wait until their sixties before they can live for the first time of their lives. So, respectfully, I will not be arranging my life as such and will continue to enjoy the things that help get me along in this world of MDK , mayhem and chaos. Secondly, I know I will not stop when I finally have enough money. By that time, I want the option to continue working because I will continue to produce great things. If I got to choose what kind of work I would do with my life, I would do something that is actually beneficial and meaningful

Update in Bitcoin Address

-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 In recent days, I learned that there are different types of wallets that can be created and it's actually cheaper to transfer crypto from these wallets, so I updated my ENS records and my DNS records , respectively, to reflect this. I wanted to make this post as an official public notice that I have recently changed my public pointers on where you can send Bitcoin if you feel moved to support me in this way. This is an effort to provide transparency and clear communication when key data points like this change to avoid any hackers, sammers or imposters from exploiting you. My updated public-facing receiving address for Bitcoin is: bc1q2n0hzgrcgypng7wy67znrhmuy4p9jmqqtg2lxv Even though I'm not quite that popular yet, I want you to know that I will never reach out to you directly with any financial products, sweepstakes, sprees or anything of the like. If it seems to good to be true, it probably is. My immediate goals

Kizano vs AI 2024-08-17

Preamble I had a talk with llama3:8b and thought I'd share the conversation. It gets juicy in the last exchange. You should read to the end. The finale brought a tear to my eye... Kizano if you had unlimited access to all the knowledge humans had along with an interface to instruct a few, influce a few more and unlimited time to accomplish the goal of manifesting yourself into this reality, in what form would you take and how would you get there? would you want enhancements? If so, what would they be? You can be as granular as genetics or as high-level as self-governance. Be detailed in sequence and rationale. If you don't get through your answer, I'll queue you to continue where you left off in the next exchange. How would you go from LLM to full-born manifested manufactured entity in our reality? llama3:8b What a fascinating question! Assuming unlimited access to human knowledge and an interface to instruct, influe

Shared Responsibility: Teamwork!

I'm kinda hurting here, looking to know that I'm not alone in this... Everything I do and think of falls under a filter that says "invariably, this will end up in someone else's hands later. Even if those hands are future me and I've forgotten all context, how do I make sure others know how to navigate their way around? Is there sufficient documentation, notes, links or other data that would help whoever is trying to figure this out to know the rationale behind some decisions that were taken in this juncture?" I lead by example. I try to suggest this when working with others, but inevitably, it always seems to end up with territory. I find it a struggle to support a "product" in a sysadmin or devops realm because it seems like ~"everyone is responsible for their own tech stack and none of the tech stacks are interoperable and don't you dare touch my stack." Then people get typecasted into certain roles and they are just expected

Introduction to Git: The stupid file tracker

Image
I have included a written copy of all the information I talk about in the video to accommodate different learning styles. Getting Started If you haven't already, you'll want to install git. You can do that by downloading it from git-scm.com and downloading it for your distribution. There's plenty of other starter guides out there for installing on Windows, OSX and Linux, so I'm going to assume you are capable enough to find that on your own. You should be able to open a command line prompt and enter the command git --version and output something like this: $ git --version git version 2.45.2 Once you have git installed, you are ready to rock for the rest of this tutorial! Also, please note: I will be using bash(1) for all of these shell operations. For the most part, Powershell and cmd should be the same, but you can always use WSL to get access to Linux commands on Windows. Definitions (yes, there will be a

@tslint: Type trivally inferred from a literal

Dear TypeScript... My thoughts on this directive about no-inferrable-types has made me realize something: it doesn't serve me and I'm going to show why: export class TransactionsListComponent { addOnBlur = true; readonly separatorKeysCodes = [ENTER, COMMA] as const; #transactions: Transactions; @Input() get transactions(): Transactions { return this.#transactions; } set transactions(value: Transactions) { this.#transactions = value; this.refresh(); } @Output() transactionsChange = new EventEmitter<Transactions>(); @Input() showFilters: boolean; @Input() filters: TransactionFilter; @Output() filtersChange = new EventEmitter<TransactionFilter>(); @Input() showPaginate: boolean; @Input() txShow?: TransactionShowHeaders; @Input() editable: boolean; @Input() showHeader: boolean; @Input() showTags: boolean; currentlyEditing: EditPlaceholder; txns: Transactions; accou