Skip to content

Instantly share code, notes, and snippets.

View carlisia's full-sized avatar
:octocat:
๐ŸŽ‰ โ€ผ๏ธ ๐Ÿ™‹โ€โ™€๏ธ ๐Ÿ˜œ ๐Ÿ‘€ ๐ŸŒŸ ๐ŸŒˆ โ˜€๏ธ ๐Ÿ’ฏ

Carlisia Campos carlisia

:octocat:
๐ŸŽ‰ โ€ผ๏ธ ๐Ÿ™‹โ€โ™€๏ธ ๐Ÿ˜œ ๐Ÿ‘€ ๐ŸŒŸ ๐ŸŒˆ โ˜€๏ธ ๐Ÿ’ฏ
View GitHub Profile
@carlisia
carlisia / output.md
Last active March 18, 2026 19:10
Output example for join failures

aws invocation error

2026-03-18T18:15:27.818Z INFO  Detected cloud provider cloud:EC2 installer/autodiscover.go:336
2026-03-18T18:15:27.821Z INFO  Generating teleport configuration teleport:/usr/local/bin/teleport args:[node configure --output=file:///etc/teleport.yaml.new --data-dir=/var/lib/teleport --proxy=carlisia-3.cloud.gravitational.io:443 --join-method=iam --token=*************************not-exist --labels=teleport.dev/account-id=278576220453,teleport.dev/instance-id=i-0b4b49015a18ffa5b] installer/autodiscover.go:796
2026-03-18T18:15:27.965Z INFO  Configuration written configuration_file:/etc/teleport.yaml installer/autodiscover.go:368
2026-03-18T18:15:27.965Z INFO  Enabling and starting teleport service systemd_service:teleport installer/autodiscover.go:372
2026-03-18T18:15:33.230Z INFO  Teleport agent is not ready yet status:teleport is starting and hasn't joined the cluster yet installer/autodiscover.go:462
2026-03-18T18:15:38.230Z INFO  Teleport agent is not ready yet status:teleport 
@carlisia
carlisia / blog.md
Last active May 21, 2022 21:27
worklog

โ€Žโ€Žโ€‹

@carlisia
carlisia / owners-file.sh
Last active May 21, 2022 20:14
gh-queries
#!/usr/local/bin/bash
# update local copies to be ready to checkout code for review when needed
# printf "๐Ÿงง co main: \n"
# gita super net checkout main
# printf "๐Ÿงง git fetch: \n"
# gita fetch net
# printf "๐Ÿงง git pull: \n"
# gita pull net
@carlisia
carlisia / knative-public-repos.md
Last active March 4, 2022 02:56
Knative release related repos
@carlisia
carlisia / support.rotation-eventing
Last active September 28, 2021 23:10
rotation eventing
# Eventing community contacts
#
# Begin metadata
#@ title: Eventing
#@ slack: #eventing-questions
#@ slacklink: https://knative.slack.com/archives/C017X0PFC0P
2021-01-04T01:00:00Z | n3wscott
2021-01-11T01:00:00Z | vaikas
@carlisia
carlisia / support.rotation
Created September 28, 2021 22:21
kn-rotation
# Serving community contacts
#
# Begin metadata
#@ title: Serving
#@ slack: #serving-questions
#@ slacklink: https://knative.slack.com/archives/C0186KU7STW
2021-09-27T01:00:00Z | dprotaso
2021-10-04T01:00:00Z | carlisia
2021-10-11T01:00:00Z | markusthoemmes
@carlisia
carlisia / e2etests
Last active September 18, 2021 18:30
Focus options on providers:
TCE
With focus:
GINKGO_FOCUS='Basic' BSL_BUCKET=c-aws-velero-bucket CREDS_FILE=/Users/carlisiac/creds/credentials-velero-aws CLOUD_PROVIDER=aws make e2e-test
-----
Exemple for filtering a test:
set GINKGO_FOCUS [APIGroup]
@carlisia
carlisia / things-bill-say.md
Created July 10, 2016 19:08
Things Bill Say (about Go)

channels are slow, do not use it for synchronizing access

don't use channels as a queue

channels provide guarantees in your software for orchestration

channels: don't use for performance, use them for continuity: to keep things going

the channels are not the buffer. Goroutines can be the buffer.

~/dev
โ˜ป go-gender-stats
panic: runtime error: invalid memory address or nil pointer dereference
[signal 0xb code=0x1 addr=0x8 pc=0x119236]
goroutine 1 [running]:
github.com/jbrukh/bayesian.(*Classifier).ProbScores(0x0, 0xc820063d28, 0x1, 0x1, 0x0, 0x0, 0x0, 0x123cb, 0x7e16c)
/Users/carlisiacampos/.gvm/pkgsets/go1.5.1/global/src/github.com/jbrukh/bayesian/bayesian.go:307 +0x46
github.com/hstove/gender/classifier.Classify(0x0, 0xc82053fe70, 0x5, 0x0, 0x0, 0x1)
/Users/carlisiacampos/.gvm/pkgsets/go1.5.1/global/src/github.com/hstove/gender/classifier/classifier.go:37 +0xd1
test
> jupyter notebook
/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/widgetsnbextension/__init__.py:30: UserWarning: To use the jupyter-js-widgets nbextension, you'll need to update
the Jupyter notebook to version 4.2 or later.
the Jupyter notebook to version 4.2 or later.""")
[I 16:30:58.810 NotebookApp] Serving notebooks from local directory: /Users/carlisiacampos/.gvm/pkgsets/go1.5.1/global/src/github.com/gophergala2016/gophernotes
[I 16:30:58.810 NotebookApp] 0 active kernels
[I 16:30:58.810 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/
[I 16:30:58.810 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).