Friday, July 19
Daily News Stuff 19 July 2019
They Shall Not Grow Old Edition
They Shall Not Grow Old Edition
Anime News
Sentai Filmworks has a GoFundMe set up to try to help with the senseless tragedy that struck Kyoto Animation yesterday.
Tech News
- One terabyte microSD cards are actually available to buy on Amazon. (via Mashable)
- Europe's Galileo GPS service is back from vacation. (ZDNet)
- Microsoft is looking to Mozilla for their new system programming language. (Microsoft)
Specifically, Rust.
- Samsung has unveiled 12GB DDR5-5500 memory modules - for phones. (AnandTech)
Two of those would be the perfect accompaniment to a next-gen Ryzen APU with Navi graphics.
Disclaimer:
They shall grow not old, as we that are left grow old:
Age shall not weary them, nor the years condemn.
At the going down of the sun and in the morning
We will remember them.
Posted by: Pixy Misa at
10:42 PM
| Comments (5)
| Add Comment
| Trackbacks (Suck)
Post contains 141 words, total size 2 kb.
1
I've been doing r/roguelikedev's summer tutorial as an excuse to learn Rust. Getting my head wrapped around borrowing and ownership has been more annoying than I anticipated.
Posted by: Jay at Saturday, July 20 2019 01:13 AM (mrlXS)
2
I only spent a couple of hours reading the docs, but it did not look simple. Necessary, maybe, but not simple.
Posted by: Pixy Misa at Saturday, July 20 2019 02:07 AM (PiXy!)
3
ESR spent some time looking at it and decided to start writing code in Go instead.
Posted by: Rick C at Saturday, July 20 2019 04:38 AM (Iwkd4)
4
I do a lot of Go work in my day job, and I'm fond of it.
Rust is apparently close to putting an improved borrow-checker into the stable release, which does control flow analysis to permit some obviously safe code that the current stable lexical analysis forbids, such as:
let mut scores = vec![1, 2, 3]; let score = &scores[0]; scores.push(4); // error now, not laterSo that'll be nice. I spent an hour or two last week wrangling with the borrow checker over something similar.
Rust is apparently close to putting an improved borrow-checker into the stable release, which does control flow analysis to permit some obviously safe code that the current stable lexical analysis forbids, such as:
let mut scores = vec![1, 2, 3]; let score = &scores[0]; scores.push(4); // error now, not laterSo that'll be nice. I spent an hour or two last week wrangling with the borrow checker over something similar.
Posted by: Jay at Saturday, July 20 2019 12:08 PM (vuQH5)
5
(Well, that didn't come out the way it looked in the editor.)
Posted by: Jay at Saturday, July 20 2019 12:08 PM (vuQH5)
51kb generated in CPU 0.0176, elapsed 0.1231 seconds.
58 queries taking 0.1101 seconds, 353 records returned.
Powered by Minx 1.1.6c-pink.
58 queries taking 0.1101 seconds, 353 records returned.
Powered by Minx 1.1.6c-pink.