This is a list of all the things that I use as part of daily workflow.
- Password Management: 1Password
- Flash Cards: Anki Flash Cards
- Alfred 4 Productivity App for Mac: Alfred 4 Workflow
- Airmail: Airmail
- App Tamer CPU Monitor: App Tamer
| # CloudBridge DevOps Platform - Makefile | |
| # This Makefile sets up the entire project structure and provides development commands | |
| .PHONY: help setup clean build test proto frontend backend docker dev-up dev-down migrate lint format | |
| # Default target | |
| .DEFAULT_GOAL := help | |
| # Variables | |
| PROJECT_NAME := cloudbridge |
| #!/bin/bash | |
| set -e | |
| # --- CONFIGURATION --- | |
| PARALLELS_VM_NAME="Kali Linux 2024.2 ARM64" # Name of your Parallels VM | |
| RAW_IMAGE="kali-exported.raw" | |
| S3_BUCKET="domhallan-kali-linux-bucket" | |
| AWS_REGION="us-east-1" | |
| # shellcheck disable=SC2034 | |
| PACKER_TEMPLATE="kali-aws.json" |
| # main.tf | |
| terraform { | |
| required_version = "~> 1.10.0" | |
| required_providers { | |
| aws = { | |
| source = "hashicorp/aws" | |
| version = "~> 5.82.0" | |
| } |
| spring.application.name=sb-ecomm | |
| # Expose more endpoints for IntelliJ integration | |
| management.endpoints.web.exposure.include=* | |
| management.endpoint.health.show-details=always | |
| management.endpoint.health.probes.enabled=true | |
| # Enable Spring Boot Admin features that IntelliJ uses | |
| spring.application.admin.enabled=true | |
| spring.jmx.enabled=true |
| 4:45:05 PM | CREATE_FAILED | AWS::CloudFormation::Stack | PartitioningStackN...ckResourceEE21A7DB | |
| Embedded stack arn:aws:cloudformation:us-west-2:844077369820:stack/AmazonConnectDataAnalyticsSampleBackend-PartitioningStackNestedStackPartitioningStackN-6LL8UQD53WXV/6ca7b0e0-6d38-11ef-8fb9-0241490f74bd was not successfully created: The following resource(s) failed to create: [A | |
| thenaResultsS3bucketAccessLogsDA26D92E]. | |
| :x: AmazonConnectDataAnalyticsSampleBackend failed: Error: The stack named AmazonConnectDataAnalyticsSampleBackend failed to deploy: CREATE_FAILED (The following resource(s) failed to create: [PartitioningStackNestedStackPartitioningStackNestedStackResourceEE21A7DB]. ) | |
| at FullCloudFormationDeployment.monitorDeployment (/home/ubuntu/amazon-connect-data-analytics-sample/cdk-stacks/node_modules/aws-cdk/lib/index.js:426:10236) | |
| at processTicksAndRejections (node:internal/process/task_queues:96:5) | |
| at async Object.deployStack2 [as deployStack] (/home/ubuntu/amazon-connect-data-analyt |
| .mtk3 { | |
| font-family: Operator Mono Lig; | |
| color: #00ffff; | |
| } | |
| .part.sidebar { | |
| box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25); | |
| } | |
| .line-numbers { |
| package main | |
| import ( | |
| "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2" | |
| "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam" | |
| "github.com/pulumi/pulumi/sdk/v3/go/pulumi" | |
| ) | |
| func main() { | |
| pulumi.Run(func(ctx *pulumi.Context) error { |
| func GetEventByID(id int64) (*Event, error) { | |
| query := `SELECT * FROM events WHERE id = ?` | |
| row := db.DB.QueryRow(query, id) | |
| var event Event | |
| err := row.Scan(&event.ID, &event.Name, &event.Description, &event.Location, &event.DateTime, &event.UserID) | |
| if err != nil { | |
| return nil, err | |
| } | |
| return &event, nil |
| def dynamic_reducer(numbers, operator): | |
| result = numbers[0] | |
| for i in range(1, len(numbers)): | |
| if operator == "+": | |
| result += numbers[i] | |
| elif operator == "-": | |
| result -= numbers[i] | |
| elif operator == "*": | |
| result *= numbers[i] | |
| elif operator == "/": |
This is a list of all the things that I use as part of daily workflow.