Skip to content

Instantly share code, notes, and snippets.

View navicore's full-sized avatar

Ed Sweeney navicore

View GitHub Profile
import os
parent_directory = "."
required_file = "renovate.json"
# Create the output Bash script file
with open("delete_dirs_without_required_file.sh", "w") as script_file:
script_file.write("#!/bin/bash\n\n")
# Iterate through directories in the parent directory
@navicore
navicore / bad_ssl.md
Created March 22, 2023 14:12
mTLS SSL TLS debug validate
@navicore
navicore / klog.sh
Created March 6, 2023 23:15
kubectl logs bash deployments
#!/usr/bin/env bash
if [ "$#" -ne 1 ]; then
echo "Usage: $0 DEPLOYMENT_NAME"
exit 1
fi
DEPLOYMENT_NAME="$1"
LOG_DIR="./logs"
@navicore
navicore / main.rs
Last active February 23, 2023 13:30
rust async hashmap map update
use std::collections::hash_map::Entry;
use std::collections::HashMap;
use tokio::runtime::Runtime;
async fn get_from_store(key: String) -> String {
// pretend to get this from an async sqlx db call
String::from(format!("value-for-{key}"))
}
async fn do_work() {
@navicore
navicore / hashmap_upsert.rs
Created February 20, 2023 03:59
rust get entry and async update entry if not found
use std::collections::hash_map::Entry;
use std::collections::HashMap;
use tokio::runtime::Runtime;
async fn get_from_store(key: String) -> String {
// pretend to get this from an async sqlx db call
String::from(format!("value-for-{key}"))
}
async fn do_work() {
@navicore
navicore / JAMuary2023.md
Last active December 24, 2022 22:56
JAMuary chatGBT Prompts

JAMuary chatGBT Prompts

I intend to ask chatGBT at https://chat.openai.com/ the questions below throughout January 2023 and will record each jam.

Day Question / Prompt for chatGBT to consider
1 In modular synthesis, what creative ways can both AM synthesis and PWM be combined?
2 In modular synthesis, in what creative way can a voltage controlled polarizer be used?
3 In modular synthesis, in what creative way can a voltage controlled switch be used?
@navicore
navicore / eks.saml2aws.md
Created December 13, 2022 19:52
eks saml2aws script for kubectl context setup

bin/ek

#!/usr/bin/env bash

# 
# install aws, saml2aws, kubectl 
# 
# Switch between AWS EKS environments w/o any menu selections.  You
# do not need to remember what AWS account or region a client is deployed in.
@navicore
navicore / chatgpt_product_manager_sprint_planning.md
Last active December 11, 2022 16:23
Today I asked OpenAI chatgpt: How should a product manager participate in agile sprint planning?

How should a product manager participate in agile sprint planning?

As a product manager, your primary role in agile sprint planning is to provide direction and guidance to the development team.

This involves working with the team to identify the goals and objectives for the sprint, as well as the specific features and tasks that need to be completed in order to achieve those goals.

During the sprint planning session, the product manager should work closely with the development team to understand their capabilities and capacity, and help to prioritize the work for the sprint. The product manager should also be prepared to answer any questions the team may have about the product, its features, and its target users.

It is also important for the product manager to be flexible and adaptable during the sprint planning process, as the team may need to adjust their plans based on changes in the product or market. The product manager should be prepared to make decisions and provide guidance to the team in a timel

@navicore
navicore / apple_virt_rocky_linux.md
Created December 11, 2022 07:03
setting up apple virtualization for rocky linux
@navicore
navicore / netty.md
Last active December 5, 2022 13:53
strategy for debugging netty pool issue

strategy for debugging netty pool issue

pass / fail so far

jserver ctext fserver ctext jserver TLS fserver TLS jserver mTLS fserver mTLS
java client TLS PASS fail perror fail perror
java client mTLS