Skip to content

Instantly share code, notes, and snippets.

View gAmUssA's full-sized avatar
so hard

Viktor Gamov gAmUssA

so hard
View GitHub Profile
2025-04-01T03:53:36.898Z [confluent] [info] Initializing server...
2025-04-01T03:53:36.909Z [confluent] [info] Server started and connected successfully
2025-04-01T03:53:36.915Z [confluent] [info] Message from client: {"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"claude-ai","version":"0.1.0"}},"jsonrpc":"2.0","id":0}
/Users/vikgamov/.nvm/versions/node/v18.20.8/bin/node: bad option: --env-file
2025-04-01T03:53:36.939Z [confluent] [info] Server transport closed
2025-04-01T03:53:36.939Z [confluent] [info] Client transport closed
2025-04-01T03:53:36.939Z [confluent] [info] Server transport closed unexpectedly, this is likely due to the process exiting early. If you are developing this MCP server you can add output to stderr (i.e. `console.error('...')` in JavaScript, `print('...', file=sys.stderr)` in python) and it will appear in this log.
2025-04-01T03:53:36.939Z [confluent] [error] Server disconnected. For troubleshooting guidance, please visit our [deb
@gAmUssA
gAmUssA / Dockerfile
Created March 2, 2025 06:53
flink 1.20 and kafka and SR in docker
FROM flink:1.20.0
# Install necessary utilities
RUN apt-get update && \
apt-get install -y --no-install-recommends \
curl \
wget \
jq \
netcat-openbsd \
&& rm -rf /var/lib/apt/lists/*
#!/bin/bash
# Counters for Maven and Gradle projects
maven_count=0
gradle_count=0
echo "Starting to clean projects..."
# Recursively find directories containing pom.xml and run 'mvn clean'
while IFS= read -r -d '' file; do
@gAmUssA
gAmUssA / clone.sh
Created July 23, 2024 19:18
clone quick-start repo
#!/bin/bash
# Clone the repository
git clone https://github.com/startreedata/pinot-quickstart
# Extract the directory name and change to that directory
repo_name=$(basename https://github.com/startreedata/pinot-quickstart .git)
cd $repo_name
# Run the make command

Hello, Mermaid!

First Section

classDiagram
    class Item {
      <<interface>>
#!/bin/bash
# Set the path to your movies.json file
MOVIES_FILE="${MOVIES_FILE:-/app/movies.json}"
# Set the Kafka topic to produce to
KAFKA_TOPIC="${KAFKA_TOPIC:-your_kafka_topic}"
KAFKA_TOPIC_PARTITIONS="${KAFKA_TOPIC_PARTITIONS:-10}"
# Set the Kafka broker address
---
apiVersion: v1
kind: Namespace
metadata:
name: kuma-system
labels:
kuma.io/system-namespace: "true"
---
apiVersion: v1

Workshop: Service Mesh for Java Developers

Requirements for Attendees

To make the most out of the "Service Mesh for Java developers" workshop, attendees are expected to meet the following requirements:

  1. Basic knowledge of Java development: Attendees should be familiar with Java programming concepts and have experience working with Java-based frameworks such as Spring Boot and Micronaut.

  2. Familiarity with containerization:

#!/bin/bash
exec 3<>/dev/udp/"$1"/"$2"
echo -e "\n" >&3
cat <&3
exit
@gAmUssA
gAmUssA / gp.sh
Created November 2, 2020 16:21 — forked from sunsided/gp.sh
kubectl color output: finally you can tell Pending from Running
# https://unix.stackexchange.com/a/10065
# if stdout is a terminal
if test -t 1; then
# see if it supports colors
ncolors=$(tput colors)
if test -n "$ncolors" && test $ncolors -ge 8; then
bold="$(tput bold)"
underline="$(tput smul)"
standout="$(tput smso)"
normal="$(tput sgr0)"