HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nousermane

no profile record

comments

nousermane
·3 ปีที่แล้ว·discuss
Yep. If you go and register a new gmail account today, there will likely be no option to enable IMAP access for that account, altogether.
nousermane
·3 ปีที่แล้ว·discuss
> glue together some massively bloated thing that they have absolutely no understanding of

Relevant: https://xkcd.com/1988/
nousermane
·3 ปีที่แล้ว·discuss
> writing "return condition" instead of "if condition then return true else return false end"

> using the conditional-value ("ternary") operator in any capacity

Looks like author of some code I had to comb through recently, maybe had that among guidelines. Said code was replete with:

  if(function_that_returns_boolean()){
    return true;
  }else{
    return false;
  }
...and...

  if(foo()){
    return true;
  }else{
    if(bar()){
      return true;
    }else{
      return false;
    }
  }
nousermane
·3 ปีที่แล้ว·discuss
With newer android versions, you might want to check the "disable adb authorization timeout" option too. Otherwise, phone will "forget" your computer's adb key after a week.
nousermane
·4 ปีที่แล้ว·discuss
> plenty of people run a modern Bash out of their home

Ah, got it. Another failure mode. There is a /bin/bash, but it's an ancient, crummy thing, that is difficult to upgrade. MacOSX does this, so users paper this over by installing a private copy as ~/bin/bash. Thank you.
nousermane
·4 ปีที่แล้ว·discuss
About that "#!/usr/bin/env bash" business - are there any systems out there that have "/usr/bin/env", but do not have "/bin/bash"?