below is a security analysis done by clause code. reference https://x.com/adibhanna/status/2046988777789555191 repo: https://github.com/ritualPlay-Net/RitualPlay/ the scammer: https://www.linkedin.com/in/dean-gallimore-440669234/ his email: [email protected] NOTE: if you decide to clone this repo, do NOT run npm install, or try to run it. it has a backdoor
Generate a standup summary and append it to a daily file. This serves two purposes: a quick verbal standup reference AND a personal work log.
-
Determine today's date:
date +%Y-%m-%d -
Set the standup file path:
/Users/adibhanna/Developer/standup/{date}.md- Create the directory if it doesn't exist:
mkdir -p /Users/adibhanna/Developer/standup
- Create the directory if it doesn't exist:
-
Read the existing file (if any) to avoid duplicating items already listed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Coding cockpit: neovim + claude + terminal in tmux | |
| nic() { | |
| local session_name="${1:-$(basename "$PWD")}" | |
| if [[ -n "$TMUX" ]]; then | |
| echo "Already in a tmux session. Detach first or run from outside tmux." | |
| return 1 | |
| fi | |
| if tmux has-session -t "$session_name" 2>/dev/null; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| ===================================================================== | |
| ==================== READ THIS BEFORE CONTINUING ==================== | |
| ===================================================================== | |
| ======== .-----. ======== | |
| ======== .----------------------. | === | ======== | |
| ======== |.-""""""""""""""""""-.| |-----| ======== | |
| ======== || || | === | ======== | |
| ======== || KICKSTART.NVIM || |-----| ======== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| font-family = BerkeleyMono Nerd Font | |
| font-size = 14 | |
| theme = GruvboxDarkHard | |
| shell-integration-features = no-cursor,sudo,no-title | |
| cursor-style = block | |
| adjust-cell-height = 35% | |
| title = " " | |
| macos-titlebar-proxy-icon=hidden |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| test_file=$(find . -type f -name '*_test.go' | fzf --prompt="Select test file > " --preview 'bat --color=always {}') | |
| if [ -z "$test_file" ]; then | |
| echo "No test file selected. Exiting..." | |
| exit 1 | |
| fi | |
| tests=$(grep -nE '^func Test[A-Z]' "$test_file") | |
| if [ -z "$tests" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| function go_modernize_interactive() { | |
| # Check if bat is installed | |
| if ! command -v bat &>/dev/null; then | |
| echo "bat is not installed. Please install it first (https://github.com/sharkdp/bat)" | |
| echo "You can install it with: " | |
| echo " - Homebrew: brew install bat" | |
| echo " - Ubuntu/Debian: apt install bat" | |
| echo " - Fedora: dnf install bat" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| function go_modernize_interactive() { | |
| # Check if bat is installed | |
| if ! command -v bat &>/dev/null; then | |
| echo "bat is not installed. Please install it first (https://github.com/sharkdp/bat)" | |
| echo "You can install it with: " | |
| echo " - Homebrew: brew install bat" | |
| echo " - Ubuntu/Debian: apt install bat" | |
| echo " - Fedora: dnf install bat" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| function go_modernize_fzf() { | |
| local go_files=$(find . -name "*.go" -not -path "*/vendor/*" | sort) | |
| if [[ -z "$go_files" ]]; then | |
| echo "No Go files found" | |
| return 1 | |
| fi | |
| local selected_files=$(echo "$go_files" | fzf --multi --height 40% --reverse --preview "cat {}") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| "vim.easymotion": false, | |
| "vim.incsearch": true, | |
| "vim.useSystemClipboard": true, | |
| "vim.useCtrlKeys": true, | |
| "vim.hlsearch": true, | |
| "vim.enableNeovim": true, | |
| "vim.highlightedyank.enable": true, | |
| "vim.insertModeKeyBindings": [ | |
| { |
NewerOlder