HackerTrans
トップ新着トレンドコメント過去質問紹介求人

timakro

no profile record

投稿

Answering 'OK' May Make Millennials and Gen-Zers Think You're Mad at Them (2019)

inc.com
4 ポイント·投稿者 timakro·5 年前·2 コメント

Subtleties of configuring Nginx’s auth_basic to “remember me”

tschumacher.net
3 ポイント·投稿者 timakro·5 年前·0 コメント

Vimpc is a client for mpd with vi-like key bindings

github.com
1 ポイント·投稿者 timakro·5 年前·0 コメント

コメント

timakro
·4 年前·議論
Small correction: contrary to what the post claims this does not compile:

    fn main() {
        let s = String::from("hello");
        foo(s);
        println!("{}", s);
    }

    fn foo(le_string: String) -> String {
        println!("{}", le_string);
        le_string
    }
This does, which is probably what the author meant:

    fn main() {
        let s = String::from("hello");
        let s = foo(s);
        println!("{}", s);
    }

    fn foo(le_string: String) -> String {
        println!("{}", le_string);
        le_string
    }
Great post!
timakro
·4 年前·議論
Amazon makes it easy to sell especially with FBA. That's as much a good thing as it can be misused. It allows new businesses to get started when they cannot afford to handle shipping to customers themselves.
timakro
·4 年前·議論
So it turns out the default on Debian is mawk which does NOT support Unicode. Thanks for pointing that out. This simple test gives different results for gawk and mawk.

  $ echo 'ö' | awk '{print length}'
timakro
·4 年前·議論
I believe no distro actually ships this version of awk by default. They ship GNU awk which has Unicode support anyways.
timakro
·4 年前·議論
Even though I'm a prospective developer I read the title as "realizations I had when writing in a public library". I was hoping for tips or insights when working in public spaces.
timakro
·5 年前·議論
Maybe if we'd do it more software would actually learn to deal with it.
timakro
·5 年前·議論
Some banks in Germany support chipTAN which doesn't require a phone. You can find a list of banks supporting chipTAN here: https://www.kostenloser-girokonto-vergleich.de/diese-banken-...