xiaohanyu 最近的时间轴更新
xiaohanyu's repos on GitHub
1522 人关注
awesome-tikz
A curated list of awesome TikZ documentations, libraries and resources
Emacs Lisp · 26 人关注
ac-geiser
[Sleepy] Emacs auto-complete backend for geiser.
15 人关注
awesome-mantine
A curated list of mantine docs, libs and resources
1 人关注
awesome
:sunglasses: Curated list of awesome lists
CoffeeScript · 1 人关注
chinese-copywriting-guidelines
Chinese Copywriting Guidelines:中文文案排版指北
1 人关注
foundation-of-distributed-financial-systems
介绍金融级分布式系统的理论和实践基础
Python · 1 人关注
incubator-superset
Superset is a modern, enterprise-ready business intelligence web application
JavaScript · 0 人关注
500lines
500 Lines or Less
TeX · 0 人关注
AlgoXY
Book of Elementary Algorithms and Data structures
0 人关注
awesome-pwa
Awesome list of progressive web apps! (PR welcomed ;))
0 人关注
brew
🍺 The missing package manager for macOS (or Linux)
C++ · 0 人关注
brpc
Industrial-grade RPC framework used throughout Baidu, with 1,000,000+ instances and thousands kinds of services, called "baidu-rpc" inside Baidu.
C · 0 人关注
c4
C in four functions
0 人关注
chinese-independent-developer
👩🏿‍💻👨🏾‍💻👩🏼‍💻👨🏽‍💻👩🏻‍💻中国独立开发者项目列表 -- 分享大家都在做什么
Perl · 0 人关注
cloc
cloc counts blank lines, comment lines, and physical lines of source code in many programming languages.
0 人关注
cookie-butter
Python script for making graphics performance charts for an Android app.
Clojure · 0 人关注
core.cache
A caching library for Clojure implementing various cache strategies
Haskell · 0 人关注
course
Functional Programming Course
0 人关注
ddia-references
Literature references for “Designing Data-Intensive Applications”
Ruby · 0 人关注
developer.github.com
GitHub Developer site
0 人关注
docs
📖 Logto docs.
Python · 0 人关注
Flask-AppBuilder
Simple and rapid application development framework, built on top of Flask. includes detailed security, auto CRUD generation for your models, google charts and much more. Demo (login with guest/welcome) - http://flaskappbuilder.pythonanywhere.com/
0 人关注
flex
The Fast Lexical Analyzer - scanner generator for lexing in C and C++
0 人关注
formik
Build forms in React, without the tears 😭
0 人关注
goreplay
GoReplay is an open-source tool for capturing and replaying live HTTP traffic into a test environment in order to continuously test your system with real data. It can be used to increase confidence in code deployments, configuration changes and infrastructure changes.
0 人关注
homebrew-cask
🍻 A CLI workflow for the administration of macOS applications distributed as binaries
JavaScript · 0 人关注
jquery
jQuery JavaScript Library
0 人关注
js
🤓 Logto JS SDKs.
JavaScript · 0 人关注
js-xlsx
:green_book: SheetJS Community Edition -- Spreadsheet Parser and Writer
C · 0 人关注
json-tutorial
从零开始的 JSON 库教程
xiaohanyu

xiaohanyu

V2EX 第 33155 号会员,加入于 2013-01-27 22:01:04 +08:00
今日活跃度排名 22065
SaaS 产品集成 Stripe 支付的一些坑
Stripe  •  xiaohanyu  •  29 天前  •  最后回复来自 xiaohanyu
19
Safari 的 bug 真是茫茫多
Safari  •  xiaohanyu  •  149 天前  •  最后回复来自 xiaohanyu
12
PPResume 更新:文档站 docs.ppresume.com 上线
分享创造  •  xiaohanyu  •  251 天前  •  最后回复来自 xiaohanyu
8
PPResume 更新:支持 Google 登录了
分享创造  •  xiaohanyu  •  258 天前  •  最后回复来自 xiaohanyu
4
xiaohanyu 最近回复了
9 天前
回复了 coollest 创建的主题 设计 全干工程师怎么入门 UI 设计
@abc1310054026 #72

恰恰相反,我个人认为如果工程师要写出一个“不丑”的页面,最好不用用 tailwind 这种约束性比较弱的方案,还是找成型的更高级一些 UI 库比较好一些。

tailwind 太自由了,也就是比裸写 CSS 高了一小档,个人自由发挥很容易就写出“奔放”过头的页面和设计,当然不可否认,tailwind 确实是有很多优秀的 template 可以参考。
9 天前
回复了 coollest 创建的主题 设计 全干工程师怎么入门 UI 设计
@PluginsWorld #65

对的,是这样的,看上去非常美好,但是如果你要统一尺寸的 unit ,或者 color pallete ,用 tailwind 这种 h-[xxxPx] 的写法,丢失了 TypeScript 中的类型信息,后续修改维护其实还是非常麻烦的。

我个人认为,tailwind 其实是给库的作者使用的,绝大多数人其实也没有用 tailwind 重新写一套组件库的必要。

普通产品开发,用一套成型的组件库,加上 tailwind 适当修饰一下,可能是一个比较好的折衷的办法。
9 天前
回复了 coollest 创建的主题 设计 全干工程师怎么入门 UI 设计
@abc1310054026 #62

class name 这个,用 CSS in JS 其实可以缓解不少了。

tailwind 的主要问题在于,如果重度使用,完全从头自己写组件库,其实维护性是蛮的,一个 `div` 几十个 class ,debug 起来其实蛮烦的,比如这种官方的例子,很难说是维护性很好:

```
<div class="sm:col-span-3">
<label for="last-name" class="block text-sm/6 font-medium text-gray-900">Last name</label>
<div class="mt-2">
<input type="text" name="last-name" id="last-name" autocomplete="family-name" class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm/6">
</div>
</div>

<div class="sm:col-span-4">
<label for="email" class="block text-sm/6 font-medium text-gray-900">Email address</label>
<div class="mt-2">
<input id="email" name="email" type="email" autocomplete="email" class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm/6">
</div>
</div>
```
9 天前
回复了 coollest 创建的主题 设计 全干工程师怎么入门 UI 设计
@abc1310054026 #59

大部分 CSS 的 UI 库应试都是以 4px 为基础单位的吧?我有用过 taillwind ,但是觉得 tailwind 还是有一些别的问题,最终还是放弃了。
9 天前
回复了 coollest 创建的主题 设计 全干工程师怎么入门 UI 设计
@PluginsWorld #47

其实大可不必自己去调试试验出一组颜色,网上有很多 color palette css generator ,选一个顺眼的克制使用,就行了。
9 天前
回复了 coollest 创建的主题 设计 全干工程师怎么入门 UI 设计
Refactoring UI 是本不错的书。

我个人觉得,工程师做设计,太花哨的就不要想了,做到简洁、归整就是胜利,主要的要点还是要克制:

1. 不要用太多的颜色
2. 4px 做为一个基础的 unit ,所有的尺寸尽量以这个为基础,4px/8px/16px/24px/32px 这种
3. 网页上的元素,尽量对齐,善用 grid
4. 适当学习下字体、排版知识

我个人基本上就是按照以上几条从头到尾完成了自己产品的所有设计: https://ppresume.com ,供参考哈。

早年间 qingcloud 有个前端工程师的分享蛮不错的: https://speakerdeck.com/imdonkey01/qian-duan-gong-cheng-shi-ru-he-jian-gu-she-ji-gong-zuo
@gogogo1203 我实际上用的是 react-pdf-viewer 来显示的 PDF ,是支持自己指定 character map 的: https://github.com/react-pdf-viewer/react-pdf-viewer/issues/107#issuecomment-643749966 ,然后就可以显示 CJK 了。

但是 react-pdf-viewer 这个库也有一些问题,最近可能不怎么维护了,另外就是 bug 也有点多。
很不错很不错
12 天前
回复了 coinxu 创建的主题 分享创造 为了推广你的产品,你都做了哪些尝试
reddit 上发一些帖子讲一些故事,效果还是不错的。
@cyp0633 看了眼 LaTeXML ,应该也就是一个 transpiler ,跟 LaTeX.js 有点像,但是我感觉这些项目都很难实现对 LaTeX 的 100% 兼容。我个人觉得,把 LaTeX 跑到浏览器里还是 wasm 这条路比较有前途。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5321 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 27ms · UTC 08:49 · PVG 16:49 · LAX 00:49 · JFK 03:49
Developed with CodeLauncher
♥ Do have faith in what you're doing.