-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
437 lines (240 loc) · 13.3 KB
/
index.html
File metadata and controls
437 lines (240 loc) · 13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
<!DOCTYPE html>
<html>
<head><meta name="generator" content="Hexo 3.8.0">
<meta charset="utf-8">
<meta name="description" content="web developer.">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>
Wangx's blog</title>
<!-- highlight.js monokai-sublime theme css -->
<link href="https://cdn.bootcss.com/highlight.js/9.13.1/styles/monokai-sublime.min.css" rel="stylesheet">
<!-- highlight js -->
<script src="https://cdn.bootcss.com/highlight.js/9.13.1/highlight.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/fancybox/jquery.fancybox.min.css">
<script src="/js/pace.min.js"></script>
</head>
</html>
<body>
<main class="content">
<section class="jumbotron">
<div class="video">
<div class="video-frame">
<img src="/images/ocean/overlay-hero.png" alt="Decorative image frame">
</div>
<div class="video-media">
<video playsinline="" autoplay loop muted data-autoplay="" poster="/images/ocean/ocean.png" x5-video-player-type="h5">
<source src="/images/ocean/ocean.mp4" type="video/mp4">
<source src="/images/ocean/ocean.ogv" type="video/ogg">
<source src="/images/ocean/ocean.webm" type="video/webm">
<p>Your user agent does not support the HTML5 Video element.</p>
</video>
<div class="video-overlay"></div>
</div>
<div class="video-inner text-center text-white">
<h1><a href="/">Wangx's blog</a></h1>
<p>Whatever is worth doing is worth doing well.</p>
<div><img src="/images/logo.png" class="brand" alt="Wangx's blog"></div>
</div>
<div class="video-learn-more">
<a class="anchor" href="#landingpage"><i class="fe fe-mouse"></i></a>
</div>
</div>
</section>
<div id="landingpage">
<section class="outer">
<article class="articles">
<h1 class="page-type-title"></h1>
<article id="post-how-to-notarize-your-electron-app" class="article article-type-post" itemscope="" itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2020/10/15/how-to-notarize-your-electron-app/">如何公证(notarize)你的Electron应用</a>
</h2>
</header>
<div class="article-meta">
<a href="/2020/10/15/how-to-notarize-your-electron-app/" class="article-date">
<time datetime="2020-10-15T15:47:33.000Z" itemprop="datePublished">2020-10-15</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/electron/">electron</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p>为什么打包后的<code>Electron</code>应用在<code>macOS</code>上会提示无法打开,版本更新之后,接到了部分用户的反馈,提示无法安装我们的<code>App</code>,情况如下:<br><img src="https://i.loli.net/2021/06/06/CdjJLRGEc62qQft.png" alt="未公证"></p>
<a class="article-more-link" href="/2020/10/15/how-to-notarize-your-electron-app/">阅读更多...</a>
</div>
<footer class="article-footer">
<a data-url="http://blog.wangx.me/2020/10/15/how-to-notarize-your-electron-app/" data-id="clycmio4h001a86ulrp0vounm" class="article-share-link">分享</a>
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/electron/">electron</a></li></ul>
</footer>
</div>
</article>
<article id="post-solve-download-electron-release-slow" class="article article-type-post" itemscope="" itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2019/12/17/solve-download-electron-release-slow/">解决下载electron缓慢</a>
</h2>
</header>
<div class="article-meta">
<a href="/2019/12/17/solve-download-electron-release-slow/" class="article-date">
<time datetime="2019-12-17T08:57:14.000Z" itemprop="datePublished">2019-12-17</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/electron/">electron</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p>  由于近期在做electron开发,我发现如果需要切换或下载electron版本时会非常慢,有时候甚至会停滞无法下载。之前在medium上看到过类似文章,在国外也存在下载非常缓慢的情况,只有5k/s。因为electron的release都是发布在github上的,我们下载release也是从github上下载的。<br>
<a class="article-more-link" href="/2019/12/17/solve-download-electron-release-slow/">阅读更多...</a>
</p></div>
<footer class="article-footer">
<a data-url="http://blog.wangx.me/2019/12/17/solve-download-electron-release-slow/" data-id="clycmio4o001u86ulekej29qn" class="article-share-link">分享</a>
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/electron/">electron</a></li></ul>
</footer>
</div>
</article>
<article id="post-solve-github-access-slow" class="article article-type-post" itemscope="" itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2019/02/21/solve-github-access-slow/">解决github访问慢</a>
</h2>
</header>
<div class="article-meta">
<a href="/2019/02/21/solve-github-access-slow/" class="article-date">
<time datetime="2019-02-21T08:45:15.000Z" itemprop="datePublished">2019-02-21</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/网络/">网络</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p>  github在日常开发中会经常使用到,但其服务器部署在国外,我们访问会有较大的延迟(曾经还被墙),有时候即使用代理访问速度同样较慢,严重时甚至无法拉代码。我们可以通过修改<code>host</code>的方式一定程度上的解决该问题。<br>
<a class="article-more-link" href="/2019/02/21/solve-github-access-slow/">阅读更多...</a>
</p></div>
<footer class="article-footer">
<a data-url="http://blog.wangx.me/2019/02/21/solve-github-access-slow/" data-id="clycmio4q001y86ulc2tqrfr7" class="article-share-link">分享</a>
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/网络/">网络</a></li></ul>
</footer>
</div>
</article>
<article id="post-item2-user-command-line-proxy" class="article article-type-post" itemscope="" itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2019/01/27/item2-user-command-line-proxy/">iTerm2下使用命令行代理</a>
</h2>
</header>
<div class="article-meta">
<a href="/2019/01/27/item2-user-command-line-proxy/" class="article-date">
<time datetime="2019-01-27T08:48:01.000Z" itemprop="datePublished">2019-01-27</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/网络/">网络</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p>  在使用ss、v2ray等fq时,并不能在命令行进行代理。但我们实际使用时可能会经常在命令行下通过brew安装应用或者clone代码到本地。不使用代理会非常慢,有些时候github完全访问不了,代码都拉不下来。<br>  如果在命令行下使用代理的话,上诉问题能够得到一定程度解决。如果你会搭建软路由的话,直接使用即可,无需额外配置。如果不会或者不想折腾可以直接通过在命令行配置代理的方式实现。<br>
<a class="article-more-link" href="/2019/01/27/item2-user-command-line-proxy/">阅读更多...</a>
</p></div>
<footer class="article-footer">
<a data-url="http://blog.wangx.me/2019/01/27/item2-user-command-line-proxy/" data-id="clycmio4c001186ul4irbrgu9" class="article-share-link">分享</a>
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/network/">network</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/proxy/">proxy</a></li></ul>
</footer>
</div>
</article>
<article id="post-git-upload-subfolder" class="article article-type-post" itemscope="" itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2019/01/12/git-upload-subfolder/">如何使用Git进行版本控制管理hexo博客</a>
</h2>
</header>
<div class="article-meta">
<a href="/2019/01/12/git-upload-subfolder/" class="article-date">
<time datetime="2019-01-12T10:41:05.000Z" itemprop="datePublished">2019-01-12</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/git/">git</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p>  使用hexo或其它静态博客都会有这样的问题:博客的配置文件<code>_config.yml</code>、主题配置等如何保存?我们常用的电脑会存一份,但是把鸡蛋都放在一个篮子里是绝对不妥的,保不准电脑出故障或者其它问题。最稳妥的方式还是使用版本控制,由于个人的配置还是有一些私密性,所以要选择能建私有仓的。2018年1月9号github的私有仓免费了,是个不错的选择,另外gitee也能使用免费私有仓,速度较github要快一些。我之前是放在gitee上的,但github能用私有仓了,我还是选择切换到github上。</p>
<p>  hexo静态博客的主题多数会用别人开发的,克隆开发者的仓库,修改配置然后使用。也就是说我们的<code>hexo/</code>文件夹下还有一个版本控制的仓库?如何用版本控制管理呢?</p>
<a class="article-more-link" href="/2019/01/12/git-upload-subfolder/">阅读更多...</a>
</div>
<footer class="article-footer">
<a data-url="http://blog.wangx.me/2019/01/12/git-upload-subfolder/" data-id="clycmio4b000z86ultv01vtn7" class="article-share-link">分享</a>
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/git/">git</a></li></ul>
</footer>
</div>
</article>
</article>
<nav class="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><span class="space">…</span><a class="page-number" href="/page/8/">8</a><a class="extend next" rel="next" href="/page/2/">后一页</a>
</nav>
</section>
</div>
<footer class="footer">
<div class="outer">
<ul class="list-inline">
<li>© 2024 Wangx's blog</li>
<li>Powered by <a href="http://hexo.io/" target="_blank">Hexo</a></li>
<li>Github <a href="https://github.com/sevilen">sevilen</a></li>
<!--
<li><a href="/">wangx</a></li>
-->
</ul>
</div>
</footer>
</main>
<aside class="sidebar">
<button class="navbar-toggle"></button>
<nav class="navbar">
<div class="logo">
<a href="/"><img src="/images/logo.png" alt="Wangx's blog"></a>
</div>
<ul class="nav nav-main">
<li class="nav-item">
<a class="nav-item-link" href="/">主页</a>
</li>
<li class="nav-item">
<a class="nav-item-link" href="/archives">归档</a>
</li>
<li class="nav-item">
<a class="nav-item-link" href="/about">关于</a>
</li>
<li class="nav-item">
<a class="nav-item-link nav-item-search" title="搜索">
<i class="fe fe-search"></i>
搜索
</a>
</li>
</ul>
</nav>
<nav class="navbar navbar-bottom">
<ul class="nav">
<li class="nav-item">
</li>
</ul>
</nav>
<div class="search-form-wrap">
<div class="local-search local-search-plugin">
<input type="search" id="local-search-input" class="local-search-input" placeholder="Search...">
<div id="local-search-result" class="local-search-result"></div>
</div>
</div>
</aside>
<script src="/js/jquery-2.0.3.min.js"></script>
<script src="/js/lazyload.min.js"></script>
<script src="/fancybox/jquery.fancybox.min.js"></script>
<script src="/js/search.js"></script>
<script src="/js/ocean.js"></script>
</body>
</html>