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 |
#!/usr/bin/env bash | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 DEPLOYMENT_NAME" | |
exit 1 | |
fi | |
DEPLOYMENT_NAME="$1" | |
LOG_DIR="./logs" |
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() { |
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() { |
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? |
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.
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
https://bugzilla.redhat.com/show_bug.cgi?id=1751311#c16 https://forums.centos.org/viewtopic.php?t=74641 https://developer.apple.com/documentation/virtualization/running_gui_linux_in_a_virtual_machine_on_a_mac
choose auto partitionaing and change /boot to /boot/efi mountpoint with Standard Partition and EFI System Partition - I succeeded and didn't have to go into a rescue boot - first boot worked.