Viewing profile — settler4
settler4
HN member- Joined
- Thu, Jul 12, 2018, 4:28 PM UTC
- HN karma
- 34
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About settler4
No profile information was provided.
Recent public activity
-
comment
Comment #18885126
One of the best things of PHP today is the ecosystem. The PSR [0] interfaces let you build your own framework using libraries from the major frameworks or independent libraries sea…
-
comment
Comment #18884592
And composer!
-
comment
Comment #18884473
This is a very good resource for PDO: https://phpdelusions.net/pdo
-
comment
Comment #18764278
> import { test } from " https://unpkg.com/deno_testing@0.0.5/testing.ts "; This feels both very pragmatic and frightening at the same time.
-
comment
Comment #18573816
Great way to raise awareness. Now use the printers to warn people their IP cameras are exposed too.
- comment
-
comment
Comment #18555934
Maybe if your experience using a shell is only Window's CMD. I live in the shell. My Linux machines are configured to automatically open a terminal upon login and the first thing I…
-
comment
Comment #18464856
Do whatever the one that donates more money to him wants him to do.
-
comment
Comment #18460248
Thanks, I also found this information in the site: https://lists.sr.ht/~sircmpwn/sr.ht-discuss/%3C2018071822544... It seems a fresh revenue model after so much the-user-is-the-prod…
-
comment
Comment #18460002
This sounds too good to be true. Who's funding this project?
-
comment
Comment #18094011
The solution is to upgrade the users to know better than to get baited.
-
comment
Comment #18059611
And then find a way to run that and so turn it into a programming language?
-
comment
Comment #18027535
Doesn't the chained version still iterate over all the elements and squares them before taking the first 3 bigger than 5? the second version only goes over the minimum necessary el…
-
comment
Comment #18019384
You can buy it as a gift... to 300 of your close friends who are incidentally named like you and live in your house.
-
comment
Comment #17992008
At least it's not /r/os
-
comment
Comment #17987979
It would be nice to have a sectioin with things that work differently in both languages. For example in python `if []:` evaluates to False while in javascript `if ([]) {` evaluates…
-
comment
Comment #17983746
Are we broadcasting signals?
-
comment
Comment #17733579
4chans version: "Ironic shitposting is still shitposting"
-
comment
Comment #17516202
> (a := b) Will `with` start using this syntax instead of `b as a`: `with open('foo') as a:` == `with a := open('foo'):`? Update: found my answer on the pep. `with EXPR as VAR` act…