Live data from Hacker News

Viewing profile — linkedlist007

linkedlist007

HN member
Joined
Fri, Feb 24, 2017, 4:41 PM UTC
HN karma
0
Public activity
6 items

About linkedlist007

No profile information was provided.

Recent public activity

  1. comment
    Comment #15933959

    Your data associated with AIM will be deleted after December 15, 2017. Is it my data? If it is, why are you deciding for me what happens to it?

  2. comment
    Comment #15909265

    If it will help me automate more, give me access to a new domain or framework for thinking to help me solve problems faster and more efficiently- I'd go for it.

  3. comment
    Comment #15909214

    Chase bank app: Take a picture of a cheque received and the money is credited to your account instantly.

  4. comment
    Comment #15909126

    Take on a more challenging project with deadlines, hopefully with a project manager that calls you at odd hours asking for updates. Your desire for twitter and hn will vaporize :)

  5. comment
    Comment #14299781

    Is there a book to learn more indepth about all these?

  6. comment
    Comment #13725212

    #python code def flat(x): if type(x) == type([]) and len(x)==1: return flat(x[0]) if type(x) == type([]) and len(x)>1: return flat(x[0]) + flat(x[1:]) else: return [x]