bolha.us is one of the many independent Mastodon servers you can use to participate in the fediverse.
We're a Brazilian IT Community. We love IT/DevOps/Cloud, but we also love to talk about life, the universe, and more. | Nós somos uma comunidade de TI Brasileira, gostamos de Dev/DevOps/Cloud e mais!

Server stats:

250
active users

#javascript

140 posts117 participants2 posts today

To my #CS #professor friends on MathsTodon.xyz: what #programming languages are you teaching as the "proper first language" to your freshmen, and what are the delights and dismays thereof?

Some 30y ago, I taught C and ML to the CS undergrads—my two favourite classic languages. But, boy, they were a handful to teach to novices. But then, you lot might well have an easier task now, given that a typical CS freshman today knows several languages already (at least #Python and/or #JavaScript🤦‍♂️), by the time they enter the uni.

🌘 Svggles:使用 SVG 打造互動插圖
➤ 簡化 SVG 互動插圖開發流程
svggles.vercel.app/
Svggles 是一個 React 工具包,專門用來使用 SVG 創建互動式插圖。它提供了一系列功能,例如動畫效果(發光、旋轉、形變)和互動行為(滑鼠追蹤、滾動觸發),方便開發者快速製作引人注目的視覺效果。Svggles 已經發布為 npm 上的 `interactive-illustrations` 套件,方便安裝和使用。
+ 哇,這個套件看起來很棒!對想用 SVG 做出一些特別效果的開發者來說,簡直是救星。
+ 之前用 SVG 實現互動效果一直很麻煩,有了 Svggles 應該能大大提高效率。
#JavaScript #React #SVG #開發工具

svggles.vercel.appVite + React + TS

Any #javascript devs familiar with #eslint able to tell me what I'm doing wrong here?

```
import mbxConfig from 'mbx-eslint-config';

export default [
{
ignores: [
"dist"
],
},
mbxConfig.configs.recommended,
];
```

`mbx-eslint-config` includes stylistic recommended rules and then a set of rule overrides, but the resulting config from this file is ignoring my override on the `max-len` rule.

`npx eslint --inspect-config` shows me the expected output.