-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Strip header as workaround until dyweb/dy-weekly-generator#25 is fixed
- Loading branch information
Showing
4 changed files
with
251 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
package main | ||
|
||
import ( | ||
"bytes" | ||
"testing" | ||
"time" | ||
|
||
"github.com/dyweb/gommon/util/testutil" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestFileName(t *testing.T) { | ||
s := FileName(time.Now()) | ||
t.Logf("%s", s) | ||
} | ||
|
||
func TestStripHeader(t *testing.T) { | ||
b := testutil.ReadFixture(t, "testdata/2020-01-06-weekly.md") | ||
s := StripHeader(b) | ||
assert.False(t, bytes.Contains(s, frontMatterDash)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
--- | ||
layout: post | ||
title: Weekly | ||
category: Weekly | ||
author: 东岳 | ||
|
||
--- | ||
|
||
From https://github.com/zenany/weekly/commit/0337e2bf4dd4eaa554abd90c310b1f903bbaf87b | ||
|
||
- https://github.com/includeos/IncludeOS yet another unikernel | ||
- https://zhuanlan.zhihu.com/p/100660049 llhttp是如何使Node.js性能翻倍的 | ||
|
||
*** | ||
|
||
Notes from NeurIPS 19 | ||
|
||
https://github.com/RobertTLange/conference-school-notes/tree/master/2019-12-NeuRIPS | ||
|
||
*Submitted via [bookmarklet](https://gist.github.com/htfy96/301ae2b1c477a4a644e943bbc27c9588)* :sparkles: | ||
|
||
*** | ||
|
||
https://github.com/DoctorWkt/acwj A Compiler Writing Journey | ||
|
||
*** | ||
|
||
https://blog.algolia.com/inside-the-algolia-engine-part-1-indexing-vs-search/ | ||
|
||
*** | ||
|
||
http://bangbangcon.com/west/speakers/ | ||
|
||
*** | ||
|
||
http://composition.al/blog/2019/03/31/toward-domain-specific-solvers-for-distributed-consistency-will-appear-at-snapl-2019/ cc @LukeXuan | ||
|
||
*** | ||
|
||
https://trailofbits.github.io/ctf/ CTF field guide | ||
|
||
*** | ||
|
||
https://github.com/Unikernel-Systems/unikernel.org a list of unikernels | ||
|
||
*** | ||
|
||
https://github.com/cetic/unikernels a very detailed survey on unikernels | ||
|
||
*** | ||
|
||
https://github.com/awslabs/deequ measure data quality in large datasets | ||
|
||
It has some anomaly detection https://github.com/awslabs/deequ/tree/master/src/main/scala/com/amazon/deequ/anomalydetection | ||
|
||
*** | ||
|
||
https://github.com/deislabs/krustlet Kubernetes Rust Kubelet using wasm runtime | ||
|
||
*** | ||
|
||
https://github.com/klauspost/compress/ high performance compression lib used by victoriametrics | ||
|
||
|
||
*** | ||
|
||
[Is Parallel Programming Hard, And, If So, What Can You Do About It?](http://kernel.org/pub/linux/kernel/people/paulmck/perfbook/perfbook.html) | ||
|
||
[Source](https://github.com/paulmckrcu/perfbook) | ||
|
||
*** | ||
|
||
https://github.com/rotisserie/eris yet another go error handling library, should look at it and put into alternative sections for gommon/errors | ||
|
||
*** | ||
|
||
https://www.aidungeon.io/ cc @arrowrowe | ||
|
||
*** | ||
|
||
Rust-powered Gitbook generator. | ||
|
||
https://github.com/rust-lang/mdBook | ||
|
||
*Submitted via [bookmarklet](https://gist.github.com/htfy96/301ae2b1c477a4a644e943bbc27c9588)* :sparkles: | ||
|
||
*** | ||
|
||
https://github.com/knqyf263/cob Continuous Benchmark for Go Project | ||
|
||
*** | ||
|
||
https://github.com/microsoft/verona Research programming language for concurrent ownership | ||
|
||
btw: the name is same as my apartment ... | ||
|
||
*** | ||
|
||
> https://github.com/microsoft/verona Research programming language for concurrent ownership | ||
> | ||
> btw: the name is same as my apartment ... | ||
It’s a city in northern Italy, so stay calm. | ||
|
||
*** | ||
|
||
https://gcc.godbolt.org/ | ||
|
||
Compiler Explorer | ||
|
||
*** | ||
|
||
https://lamport.azurewebsites.net/tla/paxos-algorithm.html?back-link=news.html The Paxos Algorithm | ||
or How to Win a Turing Award Leslie Lamport | ||
|
||
|
||
|
||
*** | ||
|
||
https://github.com/learnedsystems/SOSD bechmark for learned index cc @gaocegege | ||
|
||
*** | ||
|
||
https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-172-performance-engineering-of-software-systems-fall-2018/lecture-slides/index.htm | ||
|
||
Performance Engineering of Software Systems (MIT 6.172) lecture notes | ||
|
||
*** | ||
|
||
https://lemire.me/blog/2020/02/07/research-should-not-stop-with-the-research-paper/ cc @raspberryice | ||
|
||
*** | ||
|
||
https://github.com/sourcerer-io/hall-of-fame cc @gaocegege | ||
|
||
*** | ||
|
||
https://github.com/neuronetio/gantt-elastic saw it from @breeswish btw: cc @raspberryice | ||
|
||
*** | ||
|
||
> https://gcc.godbolt.org/ | ||
> | ||
> Compiler Explorer | ||
这个有点意思!!! | ||
|
||
*** | ||
|
||
From https://github.com/zenany/weekly/commit/d8f92d061460a608783198d914b6d14c45e21c09 | ||
|
||
- https://github.com/cli/cli official github cli cc @gaocegege | ||
- https://github.com/fullcalendar/fullcalendar full sized drag & drop event calendar | ||
- https://legrajs.com/ draw using LEGO® like brick shapes on an HTML `<canvas>` element | ||
- https://ultimateelectronicsbook.com/ | ||
|
||
*** | ||
|
||
https://eli.thegreenplace.net/2019/go-internals-capturing-loop-variables-in-closures/ | ||
|
||
*** | ||
|
||
https://github.com/MaterializeInc/materialize SQL for streaming data, use [timely dataflow](https://github.com/TimelyDataflow/timely-dataflow) which is based on an SOSP 2013 Paper [Naiad: a timely dataflow system](http://dl.acm.org/citation.cfm?id=2522738) from [MS](https://github.com/MicrosoftResearch/Naiad) | ||
|
||
*** | ||
|
||
|
||
|
||
http://olab.is.s.u-tokyo.ac.jp/~kamil.rocki/dca/ | ||
|
||
*Submitted via [bookmarklet](https://gist.github.com/htfy96/301ae2b1c477a4a644e943bbc27c9588)* :sparkles: | ||
|
||
*** | ||
|