Appearance
第43期 35 week share 2025-09-11
本周我读到有趣的文章
1、nicegui
TIP
NiceGUI is an easy-to-use, Python-based UI framework, which shows up in your web browse. It is great for micro web apps, dashboards, robotics projects, smart home solutions and similar use cases. You can also use it in development, for example when tweaking/configuring a machine learning algorithm or tuning motor controllers.
python
from nicegui import ui
ui.label('Hello NiceGUI!')
ui.button('BUTTON', on_click=lambda: ui.notify('button was pressed'))
ui.run()2、TickerQ
TIP
TickerQ is a fast, reflection-free background task scheduler for .NET — built with source generators, EF Core integration, cron + time-based execution, and a real-time dashboard. [Quartz.NET]
TIP
JupyterLite is a JupyterLab distribution that runs entirely in the browser
4、CS231n
TIP
Deep Learning for Compute,硬核课程,现在学AI,应该也不会大晚吧
5、nifi
TIP
数据交换组件,在国外非常火,现在2.0后,热度又升了一些,主要就是根据业务流程,拖拽配置数据流程,基本上支持所有的数据源
TIP
SveltePlot is a visualization framework based on the layered grammar of graphics ideas
7、CSS 学习笔记
html
<style>
main {
height: 300px;
outline: 2px dashed;
}
p {
height: 50%;
background: tomato;
}
</style>
<main>
<p>
Hello world!
</p>
</main>