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?
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.
Chase bank app: Take a picture of a cheque received and the money is credited to your account instantly.
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 :)
Is there a book to learn more indepth about all these?
#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]
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?
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.
Chase bank app: Take a picture of a cheque received and the money is credited to your account instantly.
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 :)
Is there a book to learn more indepth about all these?
#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]