lutherqueen's comments

lutherqueen | 3 months ago | on: Am I Wrong?

In my experience, some startup events are typically CEOs-only, most are CTO-welcoming. Maybe the question is if you are fully aligned and trust CEO to represent you, and if you're okay with not getting as much network building, in exchange for more focus time and skipping many unnecesary and repetitive meetings that us tech people often despise

lutherqueen | 1 year ago | on: Find the oldest line in your repo

Similar oneliner to paste on MacOS terminal and get the eldest line for each file extension:

for ext in $(git ls-files | grep -vE 'node_modules|\.git' | awk -F. '{if (NF>1) print $NF}' | sort -u); do echo -e "\n.$ext:"; git ls-files | grep "\.$ext$" | xargs -I {} git blame -w {} 2>/dev/null | LC_ALL=C sort -t'(' -k2 | head -n1; done

lutherqueen | 1 year ago | on: Optical Frequency Combs

> seamlessly connected to optical waves that oscillate at 10,000 times higher frequencies

Somehow four orders of magnitude sound too less for the transition from radio to light, but it makes sense. A i9 processor works at ~6 GHz, and light is at the THz range

lutherqueen | 1 year ago | on: Show HN: LLMpeg

Probably the fact that the AI has only access to the ffmpeg command is a value itself. Supervision is much less needed vs something that could hallucinate using rm -rf on the wrong place
page 1