Skip to content

Instantly share code, notes, and snippets.

View vimarrow's full-sized avatar
🎯
Focusing

Andrei Bratuleanu vimarrow

🎯
Focusing
  • Iasi, Romania
  • 22:27 (UTC +03:00)
View GitHub Profile
[https://claudit-mirror.go.ro](https://claudit-mirror.go.ro)
import { useMemo, useState } from "react";
import "./App.css";
function PartialFillStar(props: any) {
const perc = props.fill > 0.99 ? 99.8 : props.fill * 100;
const elementId = `partialFill_${props.id}`;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
@vimarrow
vimarrow / .zshrc
Last active September 12, 2025 10:59
myDotFiles
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# Set up the prompt
autoload -Uz promptinit