32 lines
717 B
Markdown
32 lines
717 B
Markdown
this-week-in-rust
|
|
=================
|
|
|
|
Data for this-week-in-rust.org
|
|
|
|
## How I get PR lists:
|
|
|
|
```
|
|
git log --author=bors --since='MM/DD/YYYY 12:00PM' --until='MM/DD/YYYY 12:00PM' --pretty=oneline > ~/entropy/twir.txt
|
|
# edit in vim to get rid of everything but PR number, copy into clipboard
|
|
for pr in $(xsel -ob); do firefox https://github.com/mozilla/rust/pull/$pr; sleep 0.07; done
|
|
# wait a long time...
|
|
# write TWIR
|
|
```
|
|
|
|
Alternately use GitHub search:
|
|
|
|
```
|
|
https://github.com/rust-lang/rust/pulls?q=is%3Apr+is%3Amerged+updated%3A2014-11-03..2014-11-10
|
|
```
|
|
|
|
## How I get new contributors:
|
|
|
|
Use the included `new_contribs.sh` script:
|
|
|
|
new_contribs.sh 6/21/2014
|
|
|
|
## Building
|
|
|
|
```
|
|
pelican content -s pelicanconf.py
|
|
``` |