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
|
11 months ago
|
on: Alphabet spins out Taara – Internet over lasers
How is better communication scary for military? The weapons themselves are
lutherqueen
|
1 year ago
|
on: Claude 3.7 Sonnet and Claude Code
> You like simplicity but your bash commands have more flags than the United Nations
lutherqueen
|
1 year ago
|
on: Where are all the rewrite rules?
I thought this was going to discuss about Apache RewriteRules
lutherqueen
|
1 year ago
|
on: AI-generated Answers experiment on Stack Exchange sites
Generally SO sites are my fallback after asking AI, and my way to know that the working solution I got is not using outdated or suboptimal features.
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: An update on Dart macros and data serialization
Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away
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
lutherqueen
|
1 year ago
|
on: China plans to build enormous solar array in space
I can only think of the dark spot in the sky, birds crossing the solar beam, effects in the atmosphere, satellite disruptions... but isn't this is the most obvious step towards Type III right now?
lutherqueen
|
1 year ago
|
on: dnSpyEx: .NET debugger and assembly editor
This tool is amazing. Would love to extend it with varible-naming using LLMs iteratively