Lucas Fernandes

@jaggiesweekly.bsky.social

Hello there! My name is Lucas, from São Paulo - Brazil, and I'm a Software Engineer with over 5 years of experience specializing in Ruby on Rails and SaaS products.

TIL: what are the pros n cons of open source ai? pros: full control (privacy/run anywhere), cheaper, customizable, no vendor lock-in, auditable n innovation multiplier; cons: complex setup, hardware intensive, fewer out of the box capabilities n you manage security, scale and uptime #ai #devlife

TIL: what are ai's capabilities and limitations? capabilities: conversational awareness, context switching without retraining and external tool integration. limitations are: hallucination potential, knowledge cutoff dates, complex reasoning challenges and context window constraints #ai #devlife

TIL: should I use single or double quotes in git commit messages? both works fine, but go for the single; double quotes might trigger "command substitution" on unix-like systems for example: ```bash echo "`ls`" ./docs/ ./node_modules/ ./package-lock.json ./package.json ./pages/ ``` #git #devlife

TIL: ruby, though dynamic, benefits from static type checking type checking occurs in runtime; ruby 3 adds .rbs files for type info; offers levels of checking; can use type profiler to detect type conflicts ruby abstracts type checking, keeping benefits without redundant declarations #ruby

✨today I found out that I can theme vscode with CSS and inspect elements with devtools, just like we do in browsers. how cool is that? 🤓 an editor is a software that we use regularly in our daily lives. for me, any effort to make it appealing and easy to navigate is worth doing. #devlife #vscode