Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
linkedlist007
searching PlanetScale…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
linkedlist007
9y ago
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.
▲
by
linkedlist007
9y ago
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.
▲
by
linkedlist007
9y ago
Chase bank app: Take a picture of a cheque received and the money is credited to your account instantly.
4.
▲
by
linkedlist007
9y ago
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.
▲
by
linkedlist007
9y ago
Is there a book to learn more indepth about all these?
6.
▲
by
linkedlist007
10y ago
#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]