8 Star 7 Fork 0

navtool/cxy521

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
article.html 134.21 KB
一键复制 编辑 原始数据 按行查看 历史
纯洁的微笑 提交于 10个月前 . m
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="https://www.cxy521.com">
<meta name="keywords"
content="Cxy521,程序员我爱你,程序员导航,程序员一站式导航网站,在线工具,程序员,工具,开发人员工具,小工具,站长工具,代码格式化、压缩、加密、解密,下载链接转换,字帖,田字格,进制转换,二维码" />
<meta name="description" content="CXY521(程序员我爱你)是一个致力于一站式程序员学习工作娱乐导航网站,以让程序员更便捷为使命,始终围绕程序员需求,为程序员提供最新工具导航" />
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<title>程序员导航-CXY521</title>
<link rel="shortcut icon" href="./static/img/favicon.ico">
<link rel="icon" sizes="32x32" href="./static/img/favicon.ico">
<link rel="Bookmark" href="./static/img/favicon.ico">
<link rel="stylesheet" href="./static/css/bootstrap.css">
<link rel="stylesheet" href="./static/css/index.css?v=1.02">
<link rel="stylesheet" href="./static/css/common.css?v=1.01">
</head>
<body>
<header class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top" id="header">
<div class="container">
<a id="logo-1" class="navbar-brand text-truncate" href="/" title="拖动 LOGO 到书签栏, 立即收藏 CXY521">
<img src="./static/img/logo521.png" class="logo-2" alt="程序员一站式导航" title="拖动 LOGO 到书签栏, 立即收藏 CXY521">
</a>
<div class="d-none d-lg-block">
<span id="hover-logo" class="g-popover g-popover--light" style="display: none;">
<div class="gdd-favorite-guide gdd-favorite-guide__dark" style="top: 16px; width: 318px;">
<div class="gdd-favorite-guide__arrow">
<div class="gdd-favorite-guide__arrow--stem"></div>
<div class="gdd-favorite-guide__arrow--head"></div>
</div>
<div class="gdd-favorite-guide__content">
拖动 Logo 到书签栏, 立即收藏 CXY521
</div>
</div>
</span>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#nav"
aria-controls="navbar_collapse" aria-expanded="false" aria-label="展开菜单">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="nav">
<ul class="navbar-nav mr-auto">
<li class="dropdown">
<a href="index.html" class="nav-link demo1">首页<span class="caret"></span></a>
</li>
<li class="dropdown">
<a id="pub-book" href="ai.html" class="nav-link demo1">AI<span class="caret"></span></a>
</li>
<li class="dropdown">
<a href="article.html" class="nav-link demo1">推荐<span
class="caret"></span></a>
</li>
<li class="dropdown">
<a href="manual.html" class="nav-link demo1">手册<span
class="caret"></span></a>
</li>
<li class="dropdown">
<a id="pub-book" href="book.html" class="nav-link demo1">书籍<span class="caret"></span></a>
</li>
<li class="dropdown">
<a id="pub-dating" href="java.html" class="nav-link demo1">Java<span class="caret"></span></a>
</li>
<li class="dropdown">
<a id="pub-dating" href="python.html" class="nav-link demo1">Python<span class="caret"></span></a>
</li>
<!-- <li class="dropdown">
<a id="pub-wechat-" href="wechat.html" class="nav-link demo1">公号<span class="caret"></span></a>
</li> -->
<!-- <li class="dropdown">
<a id="pub-dating" href="http://cxy521.com/dating2.html" class="nav-link demo1">脱单<span class="caret"></span></a>
</li> -->
<!-- <li class="dropdown">
<a id="pub-dating" href="object.html" class="nav-link demo1">脱单<span class="caret"></span></a>
</li> -->
<li class="dropdown">
<a id="pub-wechat-chat" href="#" class="nav-link demo1">交流群<span class="caret"></span></a>
</li>
</ul>
<ul class="navbar-nav">
<li class="dropdown">
<a id="pub-wechat-chat" href="https://mp.weixin.qq.com/s/bscD8BoVk4ZUv9TJL1iK2A" target="_blank" class="nav-link demo1">星球<span class="caret"></span></a>
</li>
<!-- <li class="dropdown">
<a id="pub-wechat-chat" href="https://mp.weixin.qq.com/s/dl_PChAbbWmBMYnkEeWMnQ" target="_blank" class="nav-link demo1">闲鱼<span class="caret"></span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://www.itmind.net/" target="_blank">小白学堂</a>
</li> -->
</ul>
</div>
</div>
</header>
<main id="body" style="margin-top: 55px;">
<div class="container">
<div class="container1">
<div class="row1">
<div class="leftcl">
<div class="col-md-1s sidebars">
<div class="content-sidebar">
<dl id="goto">
<dt style="top: 83px;">
<span class="show-list"></span>
</dt>
<dd class="">
<a href="#2022_12" class="auto-scroll" data-offset="-20"
data-speed="500">1月</a>
</dd>
<dd class="">
<a href="#2022_12" class="auto-scroll" data-offset="-20"
data-speed="500">12月</a>
</dd>
<dd class="">
<a href="#2022_11" class="auto-scroll" data-offset="-20"
data-speed="500">11月</a>
</dd>
<dd class="">
<a href="#2022_10" class="auto-scroll" data-offset="-20"
data-speed="500">10月</a>
</dd>
<dd class="">
<a href="#2022_09" class="auto-scroll" data-offset="-20"
data-speed="500">9月</a>
</dd>
<dd class="">
<a href="#2022_08" class="auto-scroll" data-offset="-20"
data-speed="500">8月</a>
</dd>
<dd class="">
<a href="#2022_07" class="auto-scroll" data-offset="-20"
data-speed="500">7月</a>
</dd>
<dd class="">
<a href="#2022_06" class="auto-scroll" data-offset="-20"
data-speed="500">6月</a>
</dd>
</dl>
</div>
</div>
</div>
<div class="row">
<div id="main-container">
<div class="main-content" style="position:relative">
<!--===========2023_01开始===========-->
<div class="indexbox fNAV 0" id="2023_01" style="position:relative">
<div class="indexbox_title">
<strong style="font-weight: bold !important;">1月</strong>
</div>
<div class="showdiv" id="catalog_12">
<section data-catalog="download" class="active">
<ul class="website-list article">
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2023/2023_01_13.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247493851&idx=1&sn=7a59f84a9b1c7f2b2814d9c08abfd0d4&chksm=c23b91baf54c18acb8798f6f445f0c314a6b37bf21214e83d015b4d95cc63f42f54cef7cec21&scene=126&sessionid=1673867917&subscene=227&key=99f8d8d2c985f82c4e6feb7b9db8360fe9982ef69a92e6fcbda976e365db1144109ebba67653226ce424c08861a7c0fd9b40677d31a202ad8f8364b5e051221b89f2393642c4fbf8d632cecb57e6cac48bf1ceff966e16ae78f454d31b8f1c5d04ba5a5a944cf162da33d9b606b6b58d44a8d6c317686a1487457e2c6a68d305&ascene=7&uin=MjM2OTI5MDcyMw%3D%3D&devicetype=Windows+10+x64&version=6308011a&lang=zh_CN&exportkey=n_ChQIAhIQCB4iuFXxUjRNqRVHKqsYaRLgAQIE97dBBAEAAAAAAMnjFlpnucwAAAAOpnltbLcz9gKNyK89dVj0hxwimffvIl6mfV4Q8g%2Bo0HQcBVoq75Kj9SZIVMFJ2XO1l99KL7Z04LsEg8Sdh7eh2RFmMJtXydKNHRtC94W60hJKORp1MY5br8h%2BRvF3JyQFO379b26ILeVOzvz5zrrq8Lf5p0G%2Bvz24ySJhMLxEr88tPNSD%2Fkx%2BCEEoIJG402HlNbdKtIRxSDA9lnxZLd0%2BKVV4p%2BOIEmz7AnO%2FaknIbj4B1DA6MgcAaTnBFMI9%2B82N1fbBUS3tG00H&acctmode=0&pass_ticket=Ee6AGC6sXt0agGaIzlYT1dSsHpaFZKk1r1moitDV05JO02141HJiccqUBUsO5DqUnzqo88j5%2BI79n4cYDiG7JQ%3D%3D&wx_header=1&fontgear=2" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
什么情况投简历,BP问我要工具类???
</a>
<p class="description">2023.01.13 | 隐而巧的框架工具类 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2023/2023_01_05.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/rQ2OGdcc3R1r1E8wCBD6vA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
不可思议,代码还能这样调试!!!
</a>
<p class="description">2023.01.05 | python热重载调试工具 </p>
</div>
</div>
</li>
</ul>
</section>
</div>
</div>
<div class="clearfix"></div>
<!--===========2023_01结束===========-->
<!--===========2022_12开始===========-->
<div class="indexbox fNAV 0" id="2022_12" style="position:relative">
<div class="indexbox_title">
<strong style="font-weight: bold !important;">12月</strong>
</div>
<div class="showdiv" id="catalog_12">
<section data-catalog="download" class="active">
<ul class="website-list article">
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_12_22.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/xPgVNjAwJ-GknKRl6v4FrA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
这款开源文字识别工具,太拽了吧
</a>
<p class="description">2022.12.22 | 软件|OCR </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_12_19.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/G_eXZCF__5QyO__yOvSSUA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
什么情况,又涨了,40.9k Statrs...
</a>
<p class="description">2022.12.19 | Tabby </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_12_14.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/aqGhlfwn8WWHuCr_N-LohA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
有了这款神器,再也不怕丢三落四了,太香了!
</a>
<p class="description">2022.12.14 | 肆意放置你的文件 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_12_08.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/L6pqYhkOwwMzgOrifvkhtg" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
震惊免费APP!让人无处藏身的最新谍报科技,一眼看到你家门口!
</a>
<p class="description">2022.12.08 | 科幻大片中的酷炫3D地图技术一直让人震惊不已,通过一个小小屏幕,我们就可以看到世界任何一个地方的实时图像…… </p>
</div>
</div>
</li>
</ul>
</section>
</div>
</div>
<div class="clearfix"></div>
<!--===========2022_12结束===========-->
<!--===========2022_11开始===========-->
<div class="indexbox fNAV 0" id="2022_11" style="position:relative">
<div class="indexbox_title">
<strong style="font-weight: bold !important;">11月</strong>
</div>
<div class="showdiv" id="catalog_12">
<section data-catalog="download" class="active">
<ul class="website-list article">
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_11_30.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/FFWnFdUa1-Im7KXNuG9wnA" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 一个季度营收超10亿,堪称顶流的国产软件...-->
<!-- </a>-->
<!-- <p class="description">2022.11.30 | 营收超10亿... </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_11_29.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/2r-vC8zJQxxyINNmvn6sWw" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 中国人的生存法则变了!你再不懂就彻底晚了!-->
<!-- </a>-->
<!-- <p class="description">2022.11.29 | 小记|趣闻 </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_11_28.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/jIg5wHVAH7EIDWXBlGS4aw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
不要再这样用System统计时长了,太Out了...
</a>
<p class="description">2022.11.28 | StopWatch </p>
</div>
</div>
</li>
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_11_24.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/A8kG_z8frrYDGJ_8zkbMGA" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 细细的“红线”-程序员怎么面对35岁这道坎-->
<!-- </a>-->
<!-- <p class="description">2022.11.24 | 35 岁真是一道坎吗? </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_11_22.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/pzsllwxA82XE-a7mwW-P2w" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
谁,才是真正的“卷王”!
</a>
<p class="description">2022.11.22 | 统计项目的编码工作强度 </p>
</div>
</div>
</li>
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_11_18.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/QGXt76wG6RuBTcSPcw8wcA" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 纯靠技术,很难躲过中年危机了。。。-->
<!-- </a>-->
<!-- <p class="description">2022.11.18 | </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_11_16.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/u_UuxalSeOdXlYdI6tbbrA" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 上班时间干私活,被开了,还要赔偿公司10个月工资...-->
<!-- </a>-->
<!-- <p class="description">2022.11.16 | 合理?? </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_11_14.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/wpoeitDBN56IiW9bE-FqbQ" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 几个月,摇身一变,月入过万?-->
<!-- </a>-->
<!-- <p class="description">2022.11.14 | 小记|趣闻 </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_11_11.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/HASVuilV4gGQ5NUixFYVqA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
3年了,if-else都没学会。。。
</a>
<p class="description">2022.11.11 | if-else要上天啊 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_11_09.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/MX3xBlZ85Bu0bwnAgYQ_pA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
阿里P7大佬强推!这款Github标星 29.4k的Java诊断工具,提升10倍开发效率!
</a>
<p class="description">2022.11.09 | 阿里|Java诊断神器 </p>
</div>
</div>
</li>
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_11_07.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/I9kDfIX2EPgtCVgqrblRaQ" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 37岁失业,每月2万房贷,1万车贷......-->
<!-- </a>-->
<!-- <p class="description">2022.11.07 | 37岁失业,每月2万房贷,1万车贷...... </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_11_04.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/PpONljHusn_AxJs_7QhQTQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
强的离谱!阿里的这款IDE插件让开发部署效率提速8倍!
</a>
<p class="description">2022.11.04 | 阿里云|部署神器 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_11_03.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/spQox-0xUmRPao14tKxZCg" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
「实用」一款好用到爆炸的复制软件!你还不知道?
</a>
<p class="description">2022.11.03 | 可以保存历史记录的复制粘贴软件 </p>
</div>
</div>
</li>
</ul>
</section>
</div>
</div>
<div class="clearfix"></div>
<!--===========2022_11结束===========-->
<!--===========2022_10开始===========-->
<div class="indexbox fNAV 0" id="2022_10" style="position:relative">
<div class="indexbox_title">
<strong style="font-weight: bold !important;">10月</strong>
</div>
<div class="showdiv" id="catalog_10">
<section data-catalog="download" class="active">
<ul class="website-list article">
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_31.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/yLUju0yQbcfLmI0x9P-eCA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
小姐姐的一颦一笑,我都用录屏软件录清楚了!
</a>
<p class="description">2022.10.31 | 小姐姐的一颦一笑,我都用录屏软件录清楚了! </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_28.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/AHsGyydmdYqLMDbOlFH8AA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
新晋网红,15.6K star, 曝光一款开源图形化开发工具
</a>
<p class="description">2022.10.28 | 一个好用的JSON可视化工具,不仅能展示 JSON 数据,还能将其转化为类似思维导图的形式 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_27.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/8zdW4dh4h96NAcgpb4fInQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
「实用」一款好用到爆炸的软件!你还不知道?
</a>
<p class="description">2022.10.27 | 可以大大提高工作效率的办公神器,一款保存历史记录的复制粘贴的好用工具 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_26.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/LFDoko-TKjVfNLrhqmU75w" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
因为一个事故,妹子找我修电脑了,尴尬!!!
</a>
<p class="description">2022.10.26 | 硬盘分区及数据恢复软件 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_24.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/ELAa1nBvCClrjs32D1uLpg" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
75.7 Star,曝光一款性能强悍的前端动画库!
</a>
<p class="description">2022.10.24 | CSS 动画库 </p>
</div>
</div>
</li>
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_10_21.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/cT2eaX_z5eiye83c1CCinA" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 4个月,摇身一变,月入20K?-->
<!-- </a>-->
<!-- <p class="description">2022.10.21 | 走弯路了... </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<!-- <li class="hot-item">-->
<!-- <div class="item-card">-->
<!-- <div class="icons"><img-->
<!-- src="./static/img/article/2022/2022_10_19.png">-->
<!-- </div>-->
<!-- <div class="contents">-->
<!-- <a href="https://mp.weixin.qq.com/s/wscy7Q7hZc9ldV3O7NxCvw" class="website-article"-->
<!-- target="_blank" rel="nofollow" style="color:#444">-->
<!-- 今年这情况,真被裁员了...-->
<!-- </a>-->
<!-- <p class="description">2022.10.19 |大裁员... </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </li>-->
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_17.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/5Z0AFFQHIEEXCjchsGwa3A" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
招来助理后,我的效率还不如用这个工具!
</a>
<p class="description">2022.10.17 | PPT | 汇报 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_14.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/6bDW6kumSZ09nQx1FCb2OA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
双11剁手前的反思:你在网上买过的最无用的商品是什么?
</a>
<p class="description">2022.10.14 | 手机应用 | 购物软件 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_12.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/4tfgiPQUVYskZZrqW5AS1A" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
干净了!曝光上司的一个顶级软件!!!
</a>
<p class="description">2022.10.12 | Mybase的故事 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_10.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/4IWN4gTFxcHnuja5gJC4-Q" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
牛逼,这款免费的国产神器,让你再也不愁找文件!
</a>
<p class="description">2022.10.10 | 资源管理 | 标签 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_05.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/CGXOwBIeKNcKFugd1KzWSw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
这是2022年国产最好用的杀毒神器!?万万没想到...
</a>
<p class="description">2022.10.05 | 一款攻防一体的神器 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_10_03.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/EiCk4QlFgQdv2o2bcB5XQw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
30.1k Star,Github上发现一款编程宝典!
</a>
<p class="description">2022.10.03 | Python速查表 </p>
</div>
</div>
</li>
</ul>
</section>
</div>
</div>
<div class="clearfix"></div>
<!--===========2022_10结束===========-->
<!--===========2022_09开始===========-->
<div class="indexbox fNAV 0" id="2022_09" style="position:relative">
<div class="indexbox_title">
<strong style="font-weight: bold !important;">9月</strong>
</div>
<div class="showdiv" id="catalog_9">
<section data-catalog="download" class="active">
<ul class="website-list article">
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_30.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/k9HKY9AYELdxMyoAJVYZOw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
绝版!一键解锁SVIP敏感资源,低调使用!
</a>
<p class="description">2022.09.30 | 手机应用 | 音乐工具</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_29.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/RUuoixBT8v9mxKnH1DeDgQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
我用这个方法,5秒看了120篇文章。
</a>
<p class="description">2022.09.29 | 想要文章读的快,光靠眼睛可不行。</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_27.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/HBIFQLLU_NaMAd4EaCXQ4w" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
吊打Excel的数据可视化工具,颜值爆表还免费,太厉害了!
</a>
<p class="description">2022.09.27 | 办公工具 | 数据可视化工具</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_26.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/bdahCiJN2gQm7EEjDv4Cdw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
我的天,一个解决95%定时任务问题的项目,绝了...
</a>
<p class="description">2022.09.26 | 关于xxx-job的小秘密</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_23.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/2xdfMnrrAkAO7hxtX2w8HQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
真卷,13.2K Star,这款在线编辑器完全开源了!!!
</a>
<p class="description">2022.09.23 | 多人在线编辑...</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_19.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/I17kNMgP_tfroWhAfEaUXw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
推荐一个好用到炸的浏览器,浏览器界的一抹小清新|Quark
</a>
<p class="description">2022.09.21 | 极简界面,就是它了</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_19.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/uIv2zvVCLXEQ1FWspULCxw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
震惊了!10个有9个都在用的版本管理工具,用它!!!
</a>
<p class="description">2022.09.19 | 关于Sourcetree的小秘密</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_16.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/MI2BAkB0x31K5WKBeW5lDQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
12.5k Star,一行代码能实现什么丧心病狂的功能?
</a>
<p class="description">2022.09.16 | Html转pdf</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_14.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/OvVsRpixhsPD8OKPKfn_Xw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
梦回win10,7.5K Star项目让win11的开始菜单重新变回Windows10样式
</a>
<p class="description">2022.09.14 | 梦回win10,7.5K Star项目让win11的开始菜单重新变回Windows10样式</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_12.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/HuSQoKwY_FtnaWyy8hclNw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
性能爆表!曝光一个顶级监控!!
</a>
<p class="description">2022.09.12 | 地表最强监控系统</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_09.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/esCKCMbm1K2tY4IQ_0Gxfw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
撸熟这款Excel利器,秒变Office达人,太强悍了!
</a>
<p class="description">2022.09.09 | 为Excel赋能的小工具,让你工作更高效</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_07.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/JlRWCZKbOHv1XCy2VlhpbQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
能够自动打标签的知识库管理工具,太拽了吧!
</a>
<p class="description">2022.09.07 | TagLyst Next,一款超棒的文件管理软件,让您原本杂乱的文件瞬间就能变得整齐</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_05.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/3doxrcMyCQHiYRTGfrb0ww" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
一款国产良心开源、免费工具,堪称21世纪最强神器!
</a>
<p class="description">2022.09.05 | WGestures鼠标手势 for Windows. 一个更简单, 更现代的全局鼠标手势,让你工作更高效!</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_09_02.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/AsqKK4ojAvcd60QU19XOLw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
一款超强利器,知乎高赞10w+,用它就像是在开挂!
</a>
<p class="description">2022.09.02 | PPT外挂</p>
</div>
</div>
</li>
</ul>
</section>
</div>
</div>
<!--===========2022_09结束===========-->
<div class="clearfix"></div>
<!--===========2022_08开始===========-->
<div class="indexbox fNAV 0" id="2022_08" style="position:relative">
<div class="indexbox_title">
<strong style="font-weight: bold !important;">8月</strong>
</div>
<div class="showdiv" id="catalog_8">
<section data-catalog="download" class="active">
<ul class="website-list article">
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_31.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/xlwjqGIcJzuwDUHmmhDLig" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
做得了“女朋友”,打得过同类|Axure
</a>
<p class="description">2022.08.31|原型绘制神器! </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_29.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/PJXmFafqK2KZbrtjGe_GtA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
绝了,全网最强可视化库,免费分享!
</a>
<p class="description">2022.08.29 |最强报表工具! </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_26.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/AwmtbKfAMSCxnsuCKwCQYA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
绝了,发现一款顶级绘图神器!太拽了吧!
</a>
<p class="description">2022.08.26 |开发工具 | UML绘图工具 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_24.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/hZl-cg1IEZ3eoAoKhht6aQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
卧槽牛逼,成功靠它甩锅给前端...
</a>
<p class="description">2022.08.24 |关于接口调试的小秘密 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_22.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/ycMWZ3wWCV5MSTYaRb6uQw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
吊炸天!2.7K Star,堪称Word导出工具的天花板!
</a>
<p class="description">2022.08.22 |地表最强word导出工具 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_19.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/WWu2SiwgfLyhX0yxryAgWQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
撸熟这个画图利器,年年拿项目奖,太牛逼了!!
</a>
<p class="description">2022.08.19 |开发工具 | UML绘图工具 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_17.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/5Jfx5mIUzataZHSmBfkovA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
25.3K Stars, 堪称最高效的开发工具包,绝了...
</a>
<p class="description">2022.08.17 |最流行的开发工具包 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_15.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/FEn8otxxZf-gYVuCo0z9kg" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
牛逼,当今最快的数据恢复神器!
</a>
<p class="description">2022.08.15 |数据恢复利器 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_12.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/tAV-N5ETzFXHq-OPqOs6Kg" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
这四个网站,看过的99%会推荐给其他人!
</a>
<p class="description">2022.08.12 | 摸鱼|网站 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_10.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/8atDX-iLRokNeKHedE4WpA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
3.8K Star , Github上照片转漫画最强项目!
</a>
<p class="description">2022.08.10 | 漫画化|照片 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_08.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/1a2B4vCW-Kf8VmSpplmAUw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
简直不要太酷!开源12年+,完全可以说是程序员工具包的天花板!
</a>
<p class="description">2022.08.08 | 地表最强tree插件 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_05.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/5OXdBivrepz3RMRIUznrFg" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
真是太难得了,这款效率神器绝绝子,真的值得吹爆
</a>
<p class="description">2022.08.05 | 提升10倍工作效率 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_04.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/KgFR9CbQShgnhYINJce5_Q" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
这款神器这个功能好用到哭,可惜99%的人都不知道!
</a>
<p class="description">2022.08.04 | 一款多功能数据应用神器 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_08_02.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/bQb_DVEG6WKUHWTWpUMrEQ" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
聊天斗图不能怂,自从有了这个斗图神器,微信斗图再也没输过!
</a>
<p class="description">2022.08.02 | 居家斗图必备良器 </p>
</div>
</div>
</li>
</ul>
</section>
</div>
</div>
<!--===========2022_08结束===========-->
<div class="clearfix"></div>
<!--===========2022_07开始===========-->
<div class="indexbox fNAV 0" id="2022_07" style="position:relative">
<div class="indexbox_title">
<strong style="font-weight: bold !important;">7月</strong>
</div>
<div class="showdiv" id="catalog_7">
<section data-catalog="download" class="active">
<ul class="website-list article">
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_29.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/gMfq8ueKDh82iJbZCZqrJw" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
一款超强利器,堪称终端工具的天花板!!
</a>
<p class="description">2022.07.29 | 终端神器中的战斗机</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_27.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/XAJJWRzbnnEUvQXnRl2fFg" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
绝了,100层的xml,一行代码完成解析!这个开发包真的牛!
</a>
<p class="description">2022.07.27 | 地表最强xml解析工具</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_25.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s/MwTsJ1cmuEVfLuJhoUMvHA" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
一款摸鱼小工具,同事说一点都看不出来在摸鱼,很Nice...
</a>
<p class="description">2022.07.25 | 语音转换</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_22.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247489067&idx=1&sn=ed76f4ceb768042ac65b1fef02486de0&chksm=c2386f4af54fe65c2220a4108416aad1ab3acc81f075ef1d8f89096387fdb74777529fbd95b9&token=1702693004&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
31.5k Star,Github上又发现一款顶级开源作品!!
</a>
<p class="description">2022.07.22 | 一款顶级开源作品</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_20.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247489000&idx=1&sn=c81db84df09be34c043b17b0af615e81&chksm=c2386c89f54fe59fa669e8ee5f4699e5c3f6c246d4110b13959a5ed3674c25048765ddda4ed7&token=1702693004&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
厉害了!全球排名前5,一款堪称顶流辅助的开发者利器!
</a>
<p class="description">2022.07.20 | 顶流辅助利器</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_19.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247488764&idx=1&sn=e4bef4e168ef1c30d5d4628b6d1694ae&chksm=c2386d9df54fe48bde23e66ebb72bb3cfd3c0b986b7ddfa1a6d17a9e0143631b5b34a985d875&token=1702693004&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
牛逼,21世纪最强的国产终端神器!
</a>
<p class="description">2022.07.19 | 国产终端神器</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_18.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247488611&idx=1&sn=6ca149a2b0e753d8d7623d9b5abc4cda&chksm=c2386d02f54fe41421612d86fbfc1e6b401a9b3cb62452216943b639434695251007bad76235&token=1702693004&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
PDF随便转,90%的人都在用 | 送给小姐姐
</a>
<p class="description">2022.07.18 | pdf转换工具</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_15.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247488430&idx=1&sn=bdaff8c467d74abb57e04e0bb8c8484c&chksm=c2386acff54fe3d99b07d937481df6aa0d450bbe428eb06a527bd54d104b72603f8316c29f1e&token=1702693004&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
用户数1280万以上的JetBrains,不是只有IDEA...
</a>
<p class="description">2022.07.15 | 另一款JetBrains爆款工具!</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_13.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247488289&idx=1&sn=8dbc00e3728c610411c332b1078c3dd5&chksm=c2386a40f54fe356e1bb7bb61b822cb541a9b2774e74151cdde190d2455f14bb932d766ed6ec&token=1702693004&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
又发现1款效率神器!现在单手也能撸代码!
</a>
<p class="description">2022.07.13 | 单手撸代码!</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_12.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247488203&idx=1&sn=0cb886bd83c34ba6cc5814baa88892a8&chksm=c2386baaf54fe2bc099372c3d6314dcc14743b4a9f0363931b2df42fd1b8091e6c0cc43cf2fc&token=1702693004&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
没想到,最受程序员欢迎的编辑器竟然是这款......
</a>
<p class="description">2022.07.12 | 一款超强编辑器!</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_11.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247488202&idx=1&sn=d30ebc2e3895f8aeb8671f9b3bf10aca&chksm=c2386babf54fe2bd59c39c7437e5c965c55062a8f7d91400706ea6984a1c36e8395b58e0b108#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
一毛不拔的朋友,我教他用了这款工具,主动请我撸烧烤了!
</a>
<p class="description">2022.07.11 | 最强启动盘工具!</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_07_08.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247488003&idx=1&sn=e3893e83e6eb0ba1ea33919e0f4730b9&chksm=c2386b62f54fe274e5f0542079bd821e59fa31b58a2f98ea03ff1e8ad5a2e88fa6cbd12c1630#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
100层的json数据,用一行代码就解析出来了,嗖的一下...
</a>
<p class="description">2022.07.08 | 最强json解析工具!</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card ">
<div class="icons"><img src="./static/img/article/2022/2022_07_07.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247487838&idx=1&sn=68e1548a9b6126086a9a7171459c4746&chksm=c238683ff54fe129b5a7ed5f96372e8d1b24babb479f05b0c9a2d1c0c31bcf2807842efbf7de#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
这画图方法,绝了!赶紧学起来!
</a>
<p class="description">2022.07.07 | 又一款好用的画图工具!</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card ">
<div class="icons"><img
src="./static/img/article/2022/2022_07_04.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247487702&idx=1&sn=39a640a706fbf4a6bb00de5123dfcee0&chksm=c23869b7f54fe0a11a360f84e1b6ff717fc7eb02b4e915c38f283fc2b5a7f6579916290b56de#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
为了追到软妹子,程序员真的能写出各种软件,比如今天这款,就很离谱...
</a>
<p class="description">2022.07.04 | 追妹子软件 </p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img src="./static/img/article/2022/2022_07_01.png">
</div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247487362&idx=1&sn=e70433329a8e1031a7f77d873aee366d&chksm=c23876e3f54ffff5c6eb80a81346e39d43881143911935ab301daff32d3c7def20a10b87c6dc#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
有了Gpg4win,再也不怕被偷窥
</a>
<p class="description">2022.07.01 | windows加密工具 </p>
</div>
</div>
</li>
</ul>
</section>
</div>
</div>
<!--===========2022_07结束===========-->
<div class="clearfix"></div>
<!--===========2022_06开始===========-->
<div class="indexbox fNAV 0" id="2022_06" style="position:relative">
<div class="indexbox_title"><strong
style="font-weight: bold !important;">6月</strong>
</div>
<div id="catalog">
<section data-catalog="download" class="active">
<ul class="website-list article">
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_29.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247487345&idx=1&sn=4e7b7c4409721b6bb75d6bbb93b3ad20&chksm=c2387610f54fff069e83739fb072f6ad1baf06e38e82cf63906270f128bb866f3a03d53cf88e#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
天啊噜,离职那天,领导竟然还给我红包?
</a>
<p class="description">2022.06.29 | 好用的录屏工具</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_27.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247487262&idx=1&sn=7f23e852b609d3b0f9578c242ff49906&chksm=c238767ff54fff697dc28c8a1c24a173ce621692f3921fc8c314aab8b977a10be93e5dd25310#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
刚才那段骚操作,我都用截图软件录清楚了!
</a>
<p class="description">2022.06.27 | windows截图工具</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_23.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486978&idx=1&sn=205fda17597a4c7039518e64d5461d17&chksm=c2387763f54ffe754c1d0251a5ac5821c2707b4f32d484296407e6489bff5532a94cb48c0f80#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
程序员有了这4款超牛翻译器,公司的翻译员直接下岗了...
</a>
<p class="description">2022.06.23 | 翻译工具合集</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_22.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486924&idx=1&sn=668c8ae31db5c920ef72541fc6f0a476&chksm=c23874adf54ffdbbd28802d17b3cb0bc9a32d0bbfae999809d5cf45be258e211d443becf6418#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
1晚上研究了24种姿势,这份合集厉害了
</a>
<p class="description">2022.06.22 | PDF之24式</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_20.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486739&idx=1&sn=4bdfa7186d63009be3ff2b0f2c7e4098&chksm=c2387472f54ffd6402ffda6068547a459598a239981af7c2b0c7233c0317d873f04d52b90c6c#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
1块屏幕当做两块用的秘密,就藏在这款工具里
</a>
<p class="description">2022.06.20 | Mac截图神器</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_17.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486684&idx=1&sn=5e7bc685b903b9cb68321bd78968dea3&chksm=c23875bdf54ffcab409f1760851de2f16198e07c1115306ec0d98e04ad4853ad830988793735#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
遗忘的密码终于被破解!多亏了这款利器
</a>
<p class="description">2022.06.17 | 密码恢复神器</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_15.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486598&idx=1&sn=099b9e6708a3f87a1ddee61bac653913&chksm=c23875e7f54ffcf160daa71799963b00004dd3458c98267aad9be3a6bae2159a72a8b8928417&token=1315488028&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
4款程序员吃饭的家伙,第一个¥536一年
</a>
<p class="description">2022.06.15 | Mac编辑器合集</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_13.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486532&idx=1&sn=41a928c60ad1b2eb76fdf080ee2b0d88&chksm=c2387525f54ffc33e56893a08b48ebc1c54d1354af3ff6cf1364a4a8a58a7878874fb573a864#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
Python大牛和门外汉,只有1个网站、1个按钮的差距
</a>
<p class="description">2022.06.13 | python可视化网站</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_10.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486255&idx=1&sn=db5d78cfd5a2052fe24cac0a0f1f54f3&chksm=c238724ef54ffb5831732e999169fc38b55229a7838829682d0236c2d3fec4e64c3216b7c139#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
暴力下载,把B站迷人御姐的视频全给扒下来
</a>
<p class="description">2022.06.10 | B站视频下载神器</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_08.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486205&idx=1&sn=a72f5b3e6be6b6dbcb4e31bf87603e85&chksm=c238739cf54ffa8a01f3c6f1c90ef1df879f7ec7f471073282832a914f26d4339fc8de6bcb55#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
震惊,这款Markdown编辑器几小时下载量竟然过千万!
</a>
<p class="description">2022.06.08 | md编辑器推荐</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_06.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486171&idx=1&sn=7d404740a5c32fcdd2574a15567b3940&chksm=c23873baf54ffaacfa1d8a9c2f1937a44fd95ba26a8867848b234db91abca992e98152d2869a#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
这年头,连Postman都有女朋友了
</a>
<p class="description">2022.06.06 | Postman的女朋友</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_03.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486166&idx=1&sn=5b3f749c783b621dac1c63f06147e661&chksm=c23873b7f54ffaa106ac6442b4aa738da62a0e7705d7aabd1937968162c5580099dc6712090f&token=1315488028&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
女朋友亲授的程序猿幸福指南
</a>
<p class="description">2022.06.03 | 内含vscode插件</p>
</div>
</div>
</li>
<li class="hot-item">
<div class="item-card">
<div class="icons"><img
src="./static/img/article/2022/2022_06_01.png"></div>
<div class="contents">
<a href="https://mp.weixin.qq.com/s?__biz=MzkyNjMxNDUxMA==&mid=2247486111&idx=1&sn=daa1b284bec8d1d4708b3d45732b35d0&chksm=c23873fef54ffae8bf10cf9bb014e8525c92aefafe97129d7a0aabd525a201e76fbb0a2a3456&token=1315488028&lang=zh_CN#rd" class="website-article"
target="_blank" rel="nofollow" style="color:#444">
14.4k Star,Github超火的程序员防猝死指南
</a>
<p class="description">2022.06.01 | 防猝死指南</p>
</div>
</div>
</li>
</ul>
</section>
</div>
</div>
<!--===========2022_06结束===========-->
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="text-muted small bg-dark py-4 mt-3 d-none d-lg-block" id="footer"
style="background:#222c3c !important">
<div class="container">
<div class="row">
<div class="col">
<div class="">
<div class="footer-new">
<div class="about" style="width: 20%;">
<img src="./static/img/logo.png" alt="程序员一站式导航" style="width: 100%; height: auto;" />
</div>
<div class="about" style="width: 444px;">
<h2>关于</h2>
<div class="text">
CXY521 专注程序员一站式导航,提供最精华有趣的内容&nbsp;。 本站仅为网址导航,网站来源于网络,对其内容不负任何责任,若有问题,请联系我们。
</div>
</div>
<div class="about" style="width: 100px;">
<h2>友情链接</h2>
<div class="text">
<p><a href="http://www.itmind.net//" target="_blank" style="color:#eee">小白学堂</a></p>
<p><a href="http://www.buhuixiao.com/" target="_blank" style="color:#eee">不会笑青年</a>
</p>
<p><a href="http://www.ityouknow.com/" target="_blank" style="color:#eee">纯洁的微笑</a>
</p>
<!-- <p><a href="/about" target="_blank">关于我们</a></p>
<p><a href="contact" target="_blank">联系我们</a></p> -->
</div>
</div>
<div class="about">
<h2>公众号
<!-- &amp;小程序 -->
</h2>
<div class="">
<div class="text">
<div class="" id="t1">
<!--2023-02-16 by 流星绕指柔 修改公众号二维码图片请到index.js中修改-->
<p><img src="" class="appdown" style="width:108px;height:108px">
</p>
<p style="padding-bottom: 0;">回复888进群摸鱼</p>
</div>
</div>
</div>
<!-- <div class="qrmain">
<div class="qrbox">
<div class="qrcodepos" id="t1" style="">
<div><img src="./static/img/wechat/laughyouth.jpg" class="appdown" style="width:108px;height:108px">
</div>
</div>
</div>
</div> -->
</div>
<!-- <div class="about" style="text-align: center; width: 200px;">
<h2>程序员摸鱼群</h2>
<div class="text">
<p style="">
<img src="./static/img/wechat/laughyouth.jpg"" class="appdown" style="width:108px;height:108px;margin-top: 13px">
</p>
</div>
<p style="">回复521开启摸鱼</p>
</div> -->
</div>
</div>
</div>
</div>
</div>
</footer>
<div style="background: #2b374c;color:#818394;padding:12px;font-size:12px;" class="d-none d-lg-block" id="footer">
<div class="container">
<!-- <div class="footer_btnbox">
<div class="botton-footer active" data="-1">Copyright</div>
<div class="botton-footer" data="0">友情链接</div>
</div> -->
<div align="left" id="yqlinks-cate-00" class=" links-box">
Copyright © 2021-2022 &nbsp; &nbsp;
<a href="http://www.cxy521.com">
<span style="color: #868e96;">程序员一站式导航</span>
</a>&nbsp; &nbsp;
<a href="http://beian.miit.gov.cn">
<span style="color: #868e96;">京ICP备15067287号-4</span>
</a>&nbsp; &nbsp; 声明:网站上的服务均为第三方提供,与CXY521无关。请用户注意甄别服务质量,避免上当受骗。
</div>
<!-- <div class="time_content links-box" style="display: none;" id="yqlinks-cate-0">
<div style="line-height: 20px;">
友情链接:&nbsp;
<a href="http://www.itmind.net//" target="_blank" style="color:#eee">小白学堂</a>&nbsp; &nbsp;
<a href="http://www.buhuixiao.com/" target="_blank" style="color:#eee">不会笑青年</a>&nbsp; &nbsp;
<a href="http://www.ityouknow.com/" target="_blank" style="color:#eee">纯洁的微笑</a>&nbsp; &nbsp;
</div>
</div> -->
</div>
</div>
<div class="wx-public-container">
<div class="wx-public-dialog" style="z-index: 2009;">
<div class="el-dialog" style="display: none;">
<div class="el-dialog__header">
<span class="el-dialog__title"></span>
</div>
<div class="el-dialog__body">
<div class="top">
<p style="color: #000;padding-top: 20px;">扫码关注公众号</p>
</div>
<div class="qrcode">
<!-- <img src="./static/img/wechat/laughyouth.jpg" alt="不会笑青年公众号"> -->
<!--2023-02-16 by 流星绕指柔 修改公众号二维码图片请到index.js中修改-->
<img src="" alt="">
</div>
<div class="wx-name">
<span ></span>
<span>关注后回复:888,进群交流</span>
</div>
</div>
</div>
</div>
</div>
<!--<script type="text/javascript" src="./static/js/jquery.min.js"></script>
<script type="text/javascript" src="./static/js/tipso.min.js"></script>
<script type="text/javascript" src="./static/js/index.js?v=1.2"></script>
<script type="text/javascript" src="./static/js/girls/bootstrap.min.js"></script>-->
<script type="text/javascript" src="./static/js/common.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"></script>
<div style="display: none;">
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?195b6796d001b750b1bf8e507b220b98";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/navtool/cxy521.git
git@gitee.com:navtool/cxy521.git
navtool
cxy521
cxy521
main

搜索帮助