首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏poslua

    Source Code Pro 字体其实并不完美

    其实这个字符叫 Hyphen (U+2010),而我们经常使用的减号叫 Hyphen-minus (U+002D)。它们都分布在 Unicode 的 BMP 平面上,只是所属的 block 不同而已。 「Hyphen」属于 General Punctuation Block 而「Hyphen-minus」属于 Basic Latin Block。 它把「Hyphen」渲染的几乎和「Hyphen-minus」一样了,肉眼根本无法分辨出来。而 Courier New 字体就不会这样: ? 问题是老版本的 Typora 会将 Hyphen-minus (U+002D) 替换为 Hyphen (U+2010)。 ---- 参考文献 Hyphen Dash Plane “Basic Multilingual Plane” 英文写作中标点连字号(hyphen)与连接号(dash)的输入 一种几乎无法被检测到的Punycode

    6.6K20发布于 2019-08-19
  • 来自专栏码农编程进阶笔记

    php生成唯一uid的解决思路

    'strtoupper' : 'strtolower', md5(uniqid(microtime(true), true))); $hyphen = chr(45); $uuid = $hyphen . substr($charid, 8, 4) . $hyphen . substr($charid, 12, 4) . $hyphen . substr($charid, 16, 4) . $hyphen . substr($charid, 20, 12); return $uuid; } //结果:37f14a07-cb18-2e54-4e40-da1e2fa0456d 二、生成唯一

    1.6K30发布于 2021-07-20
  • 来自专栏全栈程序员必看

    php生成唯一uid的解决思路「建议收藏」

    'strtoupper' : 'strtolower', md5(uniqid(microtime(true), true))); $hyphen = chr(45); $uuid = $hyphen . substr($charid, 8, 4) . $hyphen . substr($charid, 12, 4) . $hyphen . substr($charid, 16, 4) . $hyphen . substr($charid, 20, 12); return $uuid; } //结果:37f14a07-cb18-2e54-4e40-da1e2fa0456d 二、

    1.8K10编辑于 2022-07-19
  • 来自专栏康怀帅的专栏

    Fish Shell 命令补全

    An option is a parameter which begins with a hyphen, such as '-h', '-help' or '--help'. Arguments are parameters that do not begin with a hyphen. Short options are a single character long, are preceded by a single hyphen and may be grouped together Old style long options can be more than one character long, are preceded by a single hyphen and

    1.6K80发布于 2018-02-28
  • 来自专栏Java进阶架构师

    精选提高开发效率的15个idea插件

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snake_case, SCREAMING_SNAKE_CASE, dot.case, words 转换为SCREAMING_SNAKE_CASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    11.8K30发布于 2018-09-21
  • 来自专栏网络之路

    基于无线场景的本地MAC地址认证方案

    其中: with-hyphen:指定MAC地址带有分隔符“-”,例如“0005-e01c-02e3”。 with-hyphen normalcolon:指定MAC地址带有分隔符“:”,例如“00:05:e0:1c:02:e3”。 without-hyphen:指定MAC地址不带有分隔符“-”或“:”,例如“0005e01c02e3”。 Uppercase:指定用户名的形式为大写。 可以根据实际环境选择对应的格式,通常用without-hyphen最多。 1、MAC认证的用户名的格式为without-hyphen,就是0005e01c02e3没任何符号的,在创建用户名密码的时候可以统一为0005e01c02e3 2、认证模板本地我们可以采用默认或者是自定义

    74710编辑于 2024-01-08
  • 来自专栏网络之路

    基于无线场景的本地MAC地址认证方案

    其中: with-hyphen:指定MAC地址带有分隔符“-”,例如“0005-e01c-02e3”。 with-hyphen normalcolon:指定MAC地址带有分隔符“:”,例如“00:05:e0:1c:02:e3”。 without-hyphen:指定MAC地址不带有分隔符“-”或“:”,例如“0005e01c02e3”。 Uppercase:指定用户名的形式为大写。 可以根据实际环境选择对应的格式,通常用without-hyphen最多。 1、MAC认证的用户名的格式为without-hyphen,就是0005e01c02e3没任何符号的,在创建用户名密码的时候可以统一为0005e01c02e3 2、认证模板本地我们可以采用默认或者是自定义

    36110编辑于 2024-12-24
  • 来自专栏程序IT圈

    推荐 IntelliJ IDEA 牛逼的插件

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snake_case, SCREAMING_SNAKE_CASE, dot.case, words 转换为SCREAMING_SNAKE_CASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    1.6K20发布于 2021-01-18
  • 来自专栏ek1ng的技术小站

    WeCTF 2022 writeup

    return "line 1: cannot unmarshal" in res.text N = 64 hyphen_positions = [8, 4, 4, 4, 12, 8, 4, 4, 4 , 12] for i in range(1, len(hyphen_positions)): hyphen_positions[i] += hyphen_positions[i-1] assert hyphen_positions[-1] == N xs = [None] * N CHARS = "0123456789abcdef" # characters of uuid for i in range(N): ys = [] k = 0 cur = None for j in range(N): if j == hyphen_positions = None xs[i] = hit_c print(filename) filename = "" k = 0 for j in range(N): if j == hyphen_positions

    95420编辑于 2023-01-02
  • 来自专栏Java架构学习路线

    12个超好用的IntelliJ IDEA 插件!你用过几个?

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snake_case, SCREAMING_SNAKE_CASE, dot.case, words 转换为SCREAMING_SNAKE_CASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    8K50发布于 2019-08-20
  • 来自专栏企鹅号快讯

    盘点开发者最爱的 IntelliJ 插件 Top 10

    String Manipulation 提供强大的文本转换操作: 切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snakecase, SCREAMINGSNAKE_CASE 转换为SCREAMINGSNAKECASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    2.3K70发布于 2018-02-01
  • 来自专栏程序猿DD

    最好用的 IntelliJ 插件 Top 10

    String Manipulation 提供强大的文本转换操作: 切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snakecase, SCREAMINGSNAKE_CASE 转换为SCREAMINGSNAKECASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    3.1K100发布于 2018-02-01
  • 来自专栏数通

    18、【实战中提升自己】内网安全部署之端口隔离与MAC地址认证

    (4)改变MAC地址格式 默认情况下是跟平时的不一样的, 如果希望跟平时一样的话,可以修改[boss]mac-authen username macaddress format with-hyphen, 默认为without-hyphen (5)是否需要部署MAC地址认证功能 说明:该功能在如果在部署前已经登记了对应的MAC地址,这样的话部署起来比较方便,如果是后续需要实施该功能,需要通过一些工具批量查看

    27610编辑于 2024-12-03
  • 来自专栏纯洁的微笑

    12 个酷炫的 IntelliJ IDEA 插件

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snake_case, SCREAMING_SNAKE_CASE, dot.case, words 转换为SCREAMING_SNAKE_CASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    2.1K21发布于 2019-07-16
  • 来自专栏Java帮帮-微信公众号-技术文章全总结

    IntelliJ IDEA酷炫插件系列

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snake_case, SCREAMING_SNAKE_CASE, dot.case, words 转换为SCREAMING_SNAKE_CASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    1.7K20发布于 2019-07-22
  • 来自专栏wfaceboss

    JS控制文字只显示两行,超出部分显示省略号

    text.replace(/[\u00AD\w\uac00-\ud7af]+$/, ''); // remove fragment of the last word together with possible soft-hyphen options.onlyFullWords) { // remove fragment of the last or first word together with possible soft-hyphen

    5.1K40发布于 2019-04-08
  • 来自专栏程序猿DD

    各种 IntelliJ IDEA 酷炫插件推荐

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snakecase, SCREAMINGSNAKE_CASE, dot.case, words lowercase 转换为SCREAMINGSNAKECASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    1.7K20发布于 2019-05-14
  • 来自专栏成猿之路

    12 个免费又酷炫的 IntelliJ IDEA 插件!

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snake_case, SCREAMING_SNAKE_CASE, dot.case, words 转换为SCREAMING_SNAKE_CASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    2.2K20发布于 2019-08-14
  • 来自专栏Java研发军团

    动态图--推荐几个IntelliJ IDEA 牛逼插件

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snake_case, SCREAMING_SNAKE_CASE, dot.case, words 转换为SCREAMING_SNAKE_CASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    2.5K30发布于 2019-07-10
  • 来自专栏Linyb极客之路

    IntelliJ IDEA 酷炫插件推荐

    切换样式(camelCase, hyphen-lowercase, HYPHEN-UPPERCASE, snake_case, SCREAMING_SNAKE_CASE, dot.case, words 转换为SCREAMING_SNAKE_CASE (或转换为camelCase) 转换为 snake_case (或转换为camelCase) 转换为dot.case (或转换为camelCase) 转换为hyphen-case (或转换为camelCase) 转换为hyphen-case (或转换为snake_case) 转换为camelCase (或转换为Words) 转换为camelCase (或转换为lowercase

    1.4K40发布于 2019-06-20
领券