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
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 == "/": |
// Hook flow | |
// https://github.com/donavon/hook-flow | |
// http://localhost:3000/isolated/examples/hook-flow.js | |
// PLEASE NOTE: there was a subtle change in the order of cleanup functions | |
// getting called in React 17: | |
// https://github.com/kentcdodds/react-hooks/issues/90 | |
import * as React from 'react' |
# frozen_string_literal: true | |
def longest_word(sentence) | |
split_sentence = sentence.split | |
my_longest_word = split_sentence.max_by { |word| word.size } | |
same_length_words = split_sentence.select { |word| word.size == my_longest_word.size } | |
if same_length_words.empty? | |
my_longest_word | |
else | |
same_length_words.last |
This is a list of all the things that I use as part of daily workflow.
import './App.css' | |
import withListLoading from './components/withListLoading' | |
import List from './components/List' | |
import React, { useEffect, useState } from 'react' | |
function App() { | |
const ListLoading = withListLoading(List) | |
const [appState, setAppState] = useState({ | |
loading: false, |
After installing the Big Sir 11.0 update I attempted to install graphviz to use with a tool that will map dependecies in node.js projects. The output looked like this:
❯ brew install graphviz
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 4 taps (hashicorp/tap, homebrew/cask-versions, homebrew/core and homebrew/cask).
==> New Formulae
libbsd