-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
896 lines (542 loc) · 36 KB
/
index.html
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- PACE Progress Bar START -->
<script src="https://raw.githubusercontent.com/HubSpot/pace/v1.0.2/pace.min.js"></script>
<link rel="stylesheet" href="https://github.com/HubSpot/pace/raw/master/themes/orange/pace-theme-flash.css">
<!-- PACE Progress Bar START -->
<title>远程公社</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="随时工作,随心生活">
<meta property="og:type" content="website">
<meta property="og:title" content="远程公社">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:site_name" content="远程公社">
<meta property="og:description" content="随时工作,随心生活">
<meta property="og:locale">
<meta property="article:author" content="远程公社创始团队">
<meta name="twitter:card" content="summary">
<link rel="alternate" href="/atom.xml" title="远程公社" type="application/atom+xml">
<link rel="icon" href="/css/images/favicon.ico">
<link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Montserrat:700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic" rel="stylesheet" type="text/css">
<link href="https://cdn.bootcss.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/9749f0/00000000000000000001008f/27/l?subset_id=2&fvd=n5) format("woff2");font-weight:500;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/90cf9f/000000000000000000010091/27/l?subset_id=2&fvd=n7) format("woff2");font-weight:500;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/8a5494/000000000000000000013365/27/l?subset_id=2&fvd=n4) format("woff2");font-weight:lighter;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/d337d8/000000000000000000010095/27/l?subset_id=2&fvd=i4) format("woff2");font-weight:400;font-style:italic;}</style>
<link rel="stylesheet" id="athemes-headings-fonts-css" href="//fonts.googleapis.com/css?family=Yanone+Kaffeesatz%3A200%2C300%2C400%2C700&ver=4.6.1" type="text/css" media="all">
<link rel="stylesheet" href="/css/style.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" >
<link rel="stylesheet" href="/css/hiero.css" >
<link rel="stylesheet" href="/css/glyphs.css" >
<link rel="stylesheet" href="/css/vdonate.css" >
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/my.css">
<!-- Google Adsense -->
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-0123456789ABCDEF",
enable_page_level_ads: true
});
</script>
<meta name="generator" content="Hexo 5.4.2"></head>
<script>
var themeMenus = {};
themeMenus["/"] = "Home";
themeMenus["/archives"] = "Archives";
themeMenus["/categories"] = "Categories";
themeMenus["/tags"] = "Tags";
themeMenus["/about"] = "About";
</script>
<body>
<header id="allheader" class="site-header" role="banner">
<div class="clearfix container">
<div class="site-branding">
<h1 class="site-title">
<a href="/" title="远程公社" rel="home"> 远程公社 </a>
</h1>
<div class="site-description">随时工作,随心生活</div>
<nav id="main-navigation" class="main-navigation" role="navigation">
<a class="nav-open">Menu</a>
<a class="nav-close">Close</a>
<div class="clearfix sf-menu">
<ul id="main-nav" class="nmenu sf-js-enabled">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/">Home</a> </li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/archives">Archives</a> </li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/categories">Categories</a> </li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/tags">Tags</a> </li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/about">About</a> </li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<div id="originBgDiv" style="background: #fff; width: 100%;">
<div style="max-height:600px; overflow: hidden; display: flex; display: -webkit-flex; align-items: center;">
<img id="originBg" width="100%" alt="" src="">
</div>
</div>
<script>
function setAboutIMG(){
var imgUrls = "css/images/pose.jpg,https://source.unsplash.com/collection/954550/1920x1080".split(",");
var random = Math.floor((Math.random() * imgUrls.length ));
if (imgUrls[random].startsWith('http') || imgUrls[random].indexOf('://') >= 0) {
document.getElementById("originBg").src=imgUrls[random];
} else {
document.getElementById("originBg").src='/' + imgUrls[random];
}
}
bgDiv=document.getElementById("originBgDiv");
if(location.pathname.match('about')){
setAboutIMG();
bgDiv.style.display='block';
}else{
bgDiv.style.display='none';
}
</script>
<div id="container">
<div id="wrap">
<div id="content" class="outer">
<section id="main">
<article id="post-rust" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/2023/02/20/rust/">秘猿科技rust工程师</a>
</h1>
</header>
<div class="article-meta">
Posted on <a href="/2023/02/20/rust/" class="article-date">
<time datetime="2023-02-20T06:51:00.000Z" itemprop="datePublished">February 20, 2023</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p><strong>薪资范围</strong>:[30k-50k]<br><strong>薪资月份</strong>:16薪<br><strong>工作地点</strong>:远程<br><strong>年限要求</strong>:5-10 年</p>
<h2 id="公司介绍"><a href="#公司介绍" class="headerlink" title="公司介绍"></a>公司介绍</h2><p>杭州秘猿科技有限公司( Cryptape Co.,Ltd.)的使命是用技术创造信任,为未来数字世界构建新的基础设施和服务。秘猿科技成立于 2016 年 ,2017 年获得招银国际战略投资,是一家以纯研究与工程为导向的技术公司,在区块链领域实力深厚。</p>
<p>我们具有丰富的区块链生态实践经验。从 2011 年开始参与或主导各种区块链项目,包括世界第一个开源的数字资产交易平台貔貅 Peatio ;星火矿池 Spark pool ; 以太坊 Ethereum ;以太坊爱好者社区 Ethfans ; 开源区块链底层内核 CITA ;与招商银行等主流金融机构进行的金融+区块链合作;以及现在正在开发的 Nervos CKB 、Godwoken 、Axon 等等,涵盖了区块链生态的各个方面。</p>
<p>我们的网站:<a target="_blank" rel="noopener" href="https://www.cryptape.com/">https://www.cryptape.com/</a><br>我们的代码: <a target="_blank" rel="noopener" href="https://github.com/cryptape">https://github.com/cryptape</a><br>我们的博客:<a target="_blank" rel="noopener" href="https://blog.cryptape.com/">https://blog.cryptape.com/</a><br>我们的研究:<a target="_blank" rel="noopener" href="https://blog.cryptape.com/series/research">https://blog.cryptape.com/series/research</a></p>
<h2 id="职位描述"><a href="#职位描述" class="headerlink" title="职位描述"></a>职位描述</h2><ul>
<li>Design and implement the inter-blockchain communication solution with Cosmos IBC for Nervos Network.</li>
<li>Research different blockchains and explore the possibility of connecting them with Nervos Network.</li>
</ul>
<h2 id="职位要求"><a href="#职位要求" class="headerlink" title="职位要求"></a>职位要求</h2><ul>
<li>3+ years experience in software development.</li>
<li>Proficiency in Rust/Golang language.</li>
<li>Familiar with distributed operating systems, experience with cloud native, cloud computing will be a plus.</li>
</ul>
<h2 id="岗位亮点"><a href="#岗位亮点" class="headerlink" title="岗位亮点"></a>岗位亮点</h2><ul>
<li>远程办公:无论你在哪里,我们都可以并肩奋斗!</li>
<li>弹性工作:无论你是早睡早起的好孩子还是不怕黑眼圈的夜猫子,我们都可以并肩奋斗!</li>
<li>商业保险:除五险一金外,额外购买商业保险为你提供更多保障!</li>
<li>成长机会:我们关注你的个人成长,线上学习平台线下活动交流都在碗里!</li>
</ul>
<h2 id="联系方式"><a href="#联系方式" class="headerlink" title="联系方式"></a>联系方式</h2><p>+v: wfnusee<br><a target="_blank" rel="noopener" href="https://user-images.githubusercontent.com/8191686/218785748-81f00957-4c9f-4a22-8b1a-810b5016db9c.png"><img src="https://user-images.githubusercontent.com/8191686/218785748-81f00957-4c9f-4a22-8b1a-810b5016db9c.png" alt="image"></a></p>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/jobs/" rel="tag">jobs</a></li></ul>
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-xmind" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/2023/02/20/xmind/">Xmind全栈工程师</a>
</h1>
</header>
<div class="article-meta">
Posted on <a href="/2023/02/20/xmind/" class="article-date">
<time datetime="2023-02-20T04:10:00.000Z" itemprop="datePublished">February 20, 2023</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p><strong>薪资范围</strong>:[30k-50k]<br><strong>工作地点</strong>:远程</p>
<h2 id="公司介绍"><a href="#公司介绍" class="headerlink" title="公司介绍"></a>公司介绍</h2><p>Xmind Ltd.是思维导图和头脑风暴软件的开发商,聚焦于提供优秀的用户体验,目前拥有 iOS, Android, Mac, Windows, Linux 多端思维导图产品,各具特色,满足了不同用户的使用场景需求。我们以提供优秀的生产力工具和服务,帮助人们节省时间并提升效率为目标。<br>我们每天为数十个国家的团队服务,从初创团队到世界 500 强企业。旗下产品深受好评,常年排名 Mac/iOS App Store 效率榜单前列,多次获得 App Store 推荐。</p>
<h2 id="职位描述"><a href="#职位描述" class="headerlink" title="职位描述"></a>职位描述</h2><ul>
<li>开发与维护 Xmind 产品的功能;</li>
<li>Xmind 创新功能的开发与维护;</li>
<li>运用客户端编程语言( JavaScript )解决产品需求;</li>
<li>配合交互设计师和视觉设计师,打造优质的用户体验;</li>
<li>配合后端工程师,完成服务代码的有效对接。</li>
</ul>
<h2 id="职位要求"><a href="#职位要求" class="headerlink" title="职位要求"></a>职位要求</h2><ul>
<li>一年以年以上全栈开发经验,具备云存储及协同项目经验;</li>
<li>精通 HTML/CSS/Javascript/Typescript/Node.js 的使用,熟悉现代原生 JS 的开发使用,精通 vue3 等 MVVM 框架的开发和使用</li>
<li>具备对云服务( AWS 、阿里云、腾讯云、Google Cloud 等)了解和使用经验,具备 AWS CloudFormation/ELB/DynamoDB 等服务的开发部署经验优先;</li>
<li>具备一定的前端自动化开发部署经验、熟悉 Docker 相关技术栈的使用;</li>
<li>具备良好的英语读写习惯和追求代码质量,熟练掌握常见的设计模式和数据结构算法</li>
<li>能快速学习、有效沟通,有团队合作精神,对新技术或不熟悉的领域有探索精神;</li>
<li>掌握操作系统和网络通信原理,理解 HTTP/HTTPS 协议、文件系统、并发、分布式,锁等概念;</li>
<li>其他优先考虑范围:有其他跨平台应用开发经验;有浏览器性能调试及优化经验;有 SVG 或 Canvas 等图形化界面开发经验;对软件的安全性或可访问性有一定研究。</li>
</ul>
<h2 id="联系方式"><a href="#联系方式" class="headerlink" title="联系方式"></a>联系方式</h2><p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/jobs/" rel="tag">jobs</a></li></ul>
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-gitlab" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/2023/02/19/gitlab/">极狐GitLab 全栈工程师</a>
</h1>
</header>
<div class="article-meta">
Posted on <a href="/2023/02/19/gitlab/" class="article-date">
<time datetime="2023-02-19T10:10:00.000Z" itemprop="datePublished">February 19, 2023</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p><strong>薪资范围</strong>:[30k-50k]<br><strong>薪资月份</strong>:13薪<br><strong>工作地点</strong>:远程<br><strong>年限要求</strong>:5-10 年</p>
<h2 id="职位描述"><a href="#职位描述" class="headerlink" title="职位描述"></a>职位描述</h2><ol>
<li>以快速迭代的方式开发并持续改进公司产品路线图中的功能。</li>
<li>和产品经理以及UX设计师一起讨论并定义公司产品的设计行为。</li>
<li>识别并解决公司产品中出现的功能性问题。</li>
<li>对开发团队其他成员的代码进行高质量的review。</li>
<li>持续进行技术积累并在开发团队内部进行技术分享。</li>
</ol>
<h2 id="职位要求"><a href="#职位要求" class="headerlink" title="职位要求"></a>职位要求</h2><ol>
<li>五年以上 Ruby on Rails 开发经验。</li>
<li>熟练使用 JavaScript 及各种相关的 Web 技术(如:CSS 和 HTML)。</li>
<li>熟悉以 PostgreSQL 为主的数据库技术。</li>
<li>熟悉以 Redis 为主的缓存技术。</li>
<li>熟练使用 Git,熟悉 DevOps 平台的主要功能,熟悉 CI/CD 流程中的各主要环节。</li>
<li>熟悉敏捷开发流程,熟练使用快速迭代的方式进行产品功能开发。</li>
<li>熟练的英语读写能力。</li>
</ol>
<h2 id="加分项"><a href="#加分项" class="headerlink" title="加分项"></a>加分项</h2><ol>
<li>熟悉主流前端框架,如:Vue.js。</li>
<li>热爱开源,有向知名开源项目做过代码贡献者优先。</li>
</ol>
<h2 id="更多岗位"><a href="#更多岗位" class="headerlink" title="更多岗位"></a>更多岗位</h2><p><a target="_blank" rel="noopener" href="https://gitlab.cn/careers/">https://gitlab.cn/careers/</a><br><a target="_blank" rel="noopener" href="https://www.liepin.com/company-jobs/13022811/">https://www.liepin.com/company-jobs/13022811/</a></p>
<h2 id="联系方式"><a href="#联系方式" class="headerlink" title="联系方式"></a>联系方式</h2><p><a target="_blank" rel="noopener" href="https://www.liepin.com/job/1947004409.shtml">https://www.liepin.com/job/1947004409.shtml</a></p>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/jobs/" rel="tag">jobs</a></li></ul>
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-nimbus" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/2023/02/19/nimbus/">Nimbus资深后端工程师</a>
</h1>
</header>
<div class="article-meta">
Posted on <a href="/2023/02/19/nimbus/" class="article-date">
<time datetime="2023-02-19T08:46:02.338Z" itemprop="datePublished">February 19, 2023</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p><strong>薪资范围</strong>:[80W-120W]<br><strong>工作地点</strong>:远程</p>
<h2 id="公司介绍"><a href="#公司介绍" class="headerlink" title="公司介绍"></a>公司介绍</h2><p>We deliver pre-configured cloud dev environments on lightning-fast cloud machines that can be managed centrally. This brings the speed, security, and flexibility of the cloud to help devs build better products.</p>
<h2 id="职位描述"><a href="#职位描述" class="headerlink" title="职位描述"></a>职位描述</h2><p>资深后端工程师</p>
<h2 id="职位要求"><a href="#职位要求" class="headerlink" title="职位要求"></a>职位要求</h2><ul>
<li>扎实的数据结构和算法基础</li>
<li>良好的代码设计</li>
<li>5 年以上软件工程师工作经验</li>
<li>2 年以上 Go 开发经验</li>
<li>熟悉 PostgreSQL 或者 MySQL</li>
<li>熟悉 Kubernetes</li>
<li>熟悉 AWS 服务与基础架构</li>
<li>流利的英文读写能力</li>
<li>优秀的团队合作能力</li>
</ul>
<h2 id="联系方式"><a href="#联系方式" class="headerlink" title="联系方式"></a>联系方式</h2><p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/jobs/" rel="tag">jobs</a></li></ul>
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-hashdata" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/2023/02/19/hashdata/">Hashdata CloudBerry内核团队-数据库内核工程师</a>
</h1>
</header>
<div class="article-meta">
Posted on <a href="/2023/02/19/hashdata/" class="article-date">
<time datetime="2023-02-19T04:10:00.000Z" itemprop="datePublished">February 19, 2023</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p><strong>薪资范围</strong>:[30k-80k]<br><strong>薪资月份</strong>:12薪<br><strong>工作地点</strong>:北京/上海/杭州/深圳/远程<br><strong>年限要求</strong>:3-5 年</p>
<h2 id="职位描述"><a href="#职位描述" class="headerlink" title="职位描述"></a>职位描述</h2><p>与数据库技术大拿一起,共同构建下一代世界级云数据库内核引擎,包括云原生查询优化器 / 执行器 / 存储引擎,使其能够高效处理 PB 级乃至 ZB 级的数据量。同时,你将有机会参与开源数据库项目,参加各种技术会议和发表技术文章。</p>
<h2 id="职位要求"><a href="#职位要求" class="headerlink" title="职位要求"></a>职位要求</h2><ul>
<li>计算机或相关专业,本科及以上学历,热爱技术,扎实的编程功底和技术基础,熟悉 Linux 下的编程环境下的 C/C++编程。</li>
<li>渴望快速成长,具备快速学习能力和优秀的问题分析能力,自我驱动力强,良好的团队协作与沟通。</li>
<li>没有相关经验但很喜欢也可以试试。比如,笔者就是从前端工程师转行数据库内核的。最近做的工作已经有一定复杂度,可参考笔者最近的<a target="_blank" rel="noopener" href="https://mp.weixin.qq.com/s?__biz=Mzg3Mzg3MTA0OA==&mid=2247483946&idx=1&sn=d2b8d3d24b290569d4db700972520dfd&chksm=ced8218df9afa89b91b53d776c75750f4d3610dd39d93427ccb4ec8cc31e8f5c6c09db46be30&token=1416424321&lang=zh_CN#rd">文章</a>。</li>
</ul>
<h2 id="加分项"><a href="#加分项" class="headerlink" title="加分项"></a>加分项</h2><ul>
<li>深入了解或参与过数据库、分布式系统者优先,包括但不限于 Postgres, MySQL, TeraData, Greenplum, Impala, leveldb, rocksdb, Presto, Clickhouse 等。</li>
<li>深度参与过开源项目或自己有代表开源作品者优先。</li>
<li>参与过复杂系统开发者优先,包括但不限于 Linux 内核,网络协议栈等。</li>
<li>学习过 MIT 6.824 ,CMU 15445 等课程者优先。</li>
</ul>
<h2 id="工作环境"><a href="#工作环境" class="headerlink" title="工作环境"></a>工作环境</h2><ul>
<li>此岗位可远程协同办公,我们的员工目前分布在国内各个城市,期待可以早日开拓海外市场。</li>
<li>每年都有 20 天年假,拒绝 996 。</li>
<li>每周五有下午茶。</li>
<li>内核团队每周都有内部技术分享;有的同事有 3k star 的个人开源项目,有的同事有 2w+ 技术公众号粉丝。当然,像我这样只会玩泥巴的同事也是有的,好在大佬们都很愿意和我一起结对编程~</li>
<li>可以从一件<a target="_blank" rel="noopener" href="https://mp.weixin.qq.com/s?__biz=Mzg3Mzg3MTA0OA==&mid=2247483879&idx=1&sn=2600ecbb3ef2407e4936fba8a5d777b6&source=41#wechat_redirect">小事</a>了解我们组的氛围和 Leader 。</li>
</ul>
<h2 id="联系方式"><a href="#联系方式" class="headerlink" title="联系方式"></a>联系方式</h2><p><a target="_blank" rel="noopener" href="https://app.mokahr.com/recommendation-recruitment/hashdata/58045?recommendCode=NTAMlhQ&hash=%23/job/9c1c4f67-b592-4b2d-9b9d-e695bd53085f?from=qrcode&isRecommendation=true">一键投递</a></p>
<p>或+v联系: wfnusee</p>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/jobs/" rel="tag">jobs</a></li></ul>
</footer>
</div>
</article>
<!-- Table of Contents -->
<nav id="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="extend next" rel="next" href="/page/2/">Next</a>
</nav>
</section>
<aside id="sidebar">
<div class="widget-wrap" style="margin: 20px 0;">
<div id="search-form-wrap">
<form class="search-form">
<label style="width: 75%;">
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" style="height: 42px;" placeholder=" Search…" value="" name="s" title="Search for:">
</label>
<input type="submit" class="search-form-submit" value="Search">
</form>
<div class="ins-search">
<div class="ins-search-mask"></div>
<div class="ins-search-container">
<div class="ins-input-wrapper">
<input type="text" class="ins-search-input" placeholder="Type something..."/>
<span class="ins-close ins-selectable"><i class="fa fa-times-circle"></i></span>
</div>
<div class="ins-section-wrapper">
<div class="ins-section-container"></div>
</div>
</div>
</div>
<script>
(function (window) {
var INSIGHT_CONFIG = {
TRANSLATION: {
POSTS: 'Posts',
PAGES: 'Pages',
CATEGORIES: 'Categories',
TAGS: 'Tags',
UNTITLED: '(Untitled)',
},
ROOT_URL: '/',
CONTENT_URL: '/content.json',
};
window.INSIGHT_CONFIG = INSIGHT_CONFIG;
})(window);
</script>
<script src="/js/insight.js"></script>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Connect With Us</h3>
<div class="widget widget_athemes_social_icons">
<ul class="clearfix widget-social-icons">
<li><a target="_blank" rel="noopener" href="https://github.com/ArkTicketTech/remote-or-opensource-jobs-cn/issues" title="Github"><i class="fa fa-github" aria-hidden="true"></i></a></li>
<li><a target="_blank" rel="noopener" href="http://www.yoursite.com" title="Weibo"><i class="fa fa-weibo" aria-hidden="true"></i></a></li>
<li><a href="" title="Twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="" title="Facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="" title="Google-plus"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
<li><a href="" title="Instagram"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="" title="Pinterest"><i class="fa fa-pinterest" aria-hidden="true"></i></a></li>
<li><a href="" title="Flickr"><i class="fa fa-flickr" aria-hidden="true"></i></a></li>
<li><a href="mailto:?subject=请联系我&body=我能帮你什么" title="email"><i class="fa fa-envelope" aria-hidden="true"></i></a></li>
</ul>
<!--
<ul class="clearfix widget-social-icons">
<li class="widget-si-twitter"><a target="_blank" rel="noopener" href="http://twitter.com" title="Twitter"><i class="ico-twitter"></i></a></li>
<li class="widget-si-facebook"><a target="_blank" rel="noopener" href="http://facebook.com" title="Facebook"><i class="ico-facebook"></i></a></li>
<li class="widget-si-gplus"><a target="_blank" rel="noopener" href="http://plus.google.com" title="Google+"><i class="ico-gplus"></i></a></li>
<li class="widget-si-pinterest"><a target="_blank" rel="noopener" href="http://pinterest.com" title="Pinterest"><i class="ico-pinterest"></i></a></li>
<li class="widget-si-flickr"><a target="_blank" rel="noopener" href="http://flickr.com" title="Flickr"><i class="ico-flickr"></i></a></li>
<li class="widget-si-instagram"><a target="_blank" rel="noopener" href="http://instagram.com" title="Instagram"><i class="ico-instagram"></i></a></li>
</ul> -->
</div>
</div>
<div class="widget_athemes_tabs">
<ul id="widget-tab" class="clearfix widget-tab-nav">
<li class="active"><a>Recent Posts</a></li>
</ul>
<div class="widget">
<ul>
<li class="clearfix">
<div class="widget-entry-thumbnail">
<a href="/2023/02/20/rust/" title=""><img width="50" height="50" src="gallery/9.jpeg" class="attachment-thumb-small size-thumb-small wp-post-image" alt="preview-16" title=""></a>
</div>
<div class="widget-entry-summary">
<h6 style="margin: 0;"><a href="/2023/02/20/rust/">秘猿科技rust工程师</a></h6>
<span>February 20, 2023</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-thumbnail">
<a href="/2023/02/20/xmind/" title=""><img width="50" height="50" src="gallery/10.jpeg" class="attachment-thumb-small size-thumb-small wp-post-image" alt="preview-16" title=""></a>
</div>
<div class="widget-entry-summary">
<h6 style="margin: 0;"><a href="/2023/02/20/xmind/">Xmind全栈工程师</a></h6>
<span>February 20, 2023</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-thumbnail">
<a href="/2023/02/19/gitlab/" title=""><img width="50" height="50" src="gallery/5.jpeg" class="attachment-thumb-small size-thumb-small wp-post-image" alt="preview-16" title=""></a>
</div>
<div class="widget-entry-summary">
<h6 style="margin: 0;"><a href="/2023/02/19/gitlab/">极狐GitLab 全栈工程师</a></h6>
<span>February 19, 2023</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-thumbnail">
<a href="/2023/02/19/nimbus/" title=""><img width="50" height="50" src="gallery/7.jpeg" class="attachment-thumb-small size-thumb-small wp-post-image" alt="preview-16" title=""></a>
</div>
<div class="widget-entry-summary">
<h6 style="margin: 0;"><a href="/2023/02/19/nimbus/">Nimbus资深后端工程师</a></h6>
<span>February 19, 2023</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-thumbnail">
<a href="/2023/02/19/hashdata/" title=""><img width="50" height="50" src="gallery/6.jpeg" class="attachment-thumb-small size-thumb-small wp-post-image" alt="preview-16" title=""></a>
</div>
<div class="widget-entry-summary">
<h6 style="margin: 0;"><a href="/2023/02/19/hashdata/">Hashdata CloudBerry内核团队-数据库内核工程师</a></h6>
<span>February 19, 2023</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-thumbnail">
<a href="/2023/02/19/mest/" title=""><img width="50" height="50" src="gallery/8.jpeg" class="attachment-thumb-small size-thumb-small wp-post-image" alt="preview-16" title=""></a>
</div>
<div class="widget-entry-summary">
<h6 style="margin: 0;"><a href="/2023/02/19/mest/">Mest数据仓库工程师</a></h6>
<span>February 19, 2023</span>
</div>
</li>
</ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Categories</h3>
<div class="widget">
<ul class="category-list"><li class="category-list-item"><a class="category-list-link" href="/categories/lifeStyle/">lifeStyle</a><span class="category-list-count">1</span></li></ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Tags</h3>
<div class="widget">
<ul class="tag-list" itemprop="keywords"><li class="tag-list-item"><a class="tag-list-link" href="/tags/jobs/" rel="tag">jobs</a><span class="tag-list-count">9</span></li></ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Tag Cloud</h3>
<div class="widget tagcloud">
<a href="/tags/jobs/" style="font-size: 10px;">jobs</a>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Archives</h3>
<div class="widget">
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2023/02/">February 2023</a><span class="archive-list-count">9</span></li></ul>
</div>
</div>
</aside>
</div>
<footer id="footer" class="site-footer">
<div class="clearfix container">
<div class="site-info">
© 2023 远程公社 All Rights Reserved.
<span id="busuanzi_container_site_uv">
本站访客数<span id="busuanzi_value_site_uv"></span>人次
本站总访问量<span id="busuanzi_value_site_pv"></span>次
</span>
</div>
<div class="site-credit">
Theme by <a href="https://github.com/iTimeTraveler/hexo-theme-hiero" target="_blank">hiero</a>
</div>
</div>
</footer>
<!-- min height -->
<script>
var contentdiv = document.getElementById("content");
contentdiv.style.minHeight = document.body.offsetHeight - document.getElementById("allheader").offsetHeight - document.getElementById("footer").offsetHeight + "px";
</script>
<!-- Custome JS -->
<script src="/js/my.js"></script>
</div>
<!-- <nav id="mobile-nav">
<a href="/" class="mobile-nav-link">Home</a>
<a href="/archives" class="mobile-nav-link">Archives</a>
<a href="/categories" class="mobile-nav-link">Categories</a>
<a href="/tags" class="mobile-nav-link">Tags</a>
<a href="/about" class="mobile-nav-link">About</a>
</nav> -->
<!-- mathjax config similar to math.stackexchange -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for(i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.js"></script>
<script src="/js/scripts.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="/js/main.js"></script>
<div style="display: none;">
<script src="https://s95.cnzz.com/z_stat.php?id=1260716016&web_id=1260716016" language="JavaScript"></script>
</div>
<script async src="https://dnqof95d40fo6.cloudfront.net/atw7f8.js">
</script>
</div>
<a id="rocket" href="#top" class=""></a>
<script type="text/javascript" src="/js/totop.js" async=""></script>
</body>
</html>