HackerTrans
TopNewTrendsCommentsPastAskShowJobs

irrational

no profile record

comments

irrational
·8 maanden geleden·discuss
As a kid, I had no idea they would someday print books, so each day I cut out the strip from the newspaper and paste it into a book. I’m sure my mom threw it away decades ago, but I wish I still had it.
irrational
·8 maanden geleden·discuss
As a child I identified with Calvin. Now as a 50+ year old I find I identify much more with the dad.
irrational
·9 maanden geleden·discuss
Maybe if your camera is broken? Or you are using one of those phones built without a camera (like the ones issued to people who work at secure government sites)?
irrational
·10 maanden geleden·discuss
LOL. What this tells me is I should never fly on a Boeing aircraft ever again. I wonder how much Boeing had to pay Trump to get the FAA to say this.
irrational
·10 maanden geleden·discuss
I have the same issue with board gamers. Now, admittedly it isn't as intrusive as audio/video uploads. But so many want to record the game along with the names of the players. When I request they don't use my actual name and just put Player A (or whatever) they look at me like I'm a weirdo. When did it become weird to want as little information about yourself to be online?
irrational
·10 maanden geleden·discuss
I just searched "Firefox" in the app store. The top result is Google Chrome with an Ad indicator (Google paid for higher placement). Second is Firefox.
irrational
·10 maanden geleden·discuss
Have you actually used Vue or any of the other options in a full application? Because what you are saying doesn’t match my experience.
irrational
·10 maanden geleden·discuss
It reminds me of the game MicroMacro

https://boardgamegeek.com/boardgame/318977/micromacro-crime-...

https://boardgamegeek.com/image/7774293/micromacro-crime-cit...
irrational
·10 maanden geleden·discuss
And here I am - an ancient history grad with a career in STEM. Life is odd.
irrational
·10 maanden geleden·discuss
Why better than law school grads?
irrational
·11 maanden geleden·discuss
So, it is surrounded by the least educated states. I guess that explains the stupid name.
irrational
·11 maanden geleden·discuss
> The flight test began with Super Heavy successfully lifting off by igniting all 33 Raptor engines and ascending over the Gulf of America.

It took me a moment to remember what the Gulf of America is. What stupidity.
irrational
·vorig jaar·discuss
20 years ago, but with gigabit Ethernet speeds and 5g WiFi. Oh, and modern dev tools in the browser. I’d hate to go back to only Firebug.
irrational
·3 jaar geleden·discuss
And here is DDG

https://imgur.com/gallery/i9OU844

I've had so many people tell me that DDG is inferior to Google Search, but that has not been my experience, at all.
irrational
·3 jaar geleden·discuss
Is it? CSS Grid and flexbox exist. What I do is design at the smallest screen size first (mobile first), then increase the screen size until it looks bad/breaks, then I set a breakpoint and use CSS to adjust things as needed. Rinse and repeat as many times as needed until it looks good at all screen sizes. It really is not difficult if you know what you are doing.
irrational
·3 jaar geleden·discuss
I have to wonder if Billinghurst even looked at the galaxytours website. I suspect not.

It is telling that he never responded to Davin Dbavandy question about why it is not a reliable source.
irrational
·3 jaar geleden·discuss
There is no sign that we will ever send out Von Neumann probes, so why should I believe that any other intelligent civilization will do the same thing.

Or, how do we know they haven’t reached us? Maybe they stayed in the outer solar system. Maybe they came, looked, and left. Maybe they have some sort of cloaking device technology. Maybe they are really small. Maybe they came during the age of dinosaurs and probe is still out there in space, shut down and waiting to be discovered.
irrational
·3 jaar geleden·discuss
No, anything you can do with arrow functions can be done without them. Arrow functions are just a simpler way of writing code. For example, you can control "this" in non-arrow functions using tools like call, apply, and bind. It is just more verbose.
irrational
·3 jaar geleden·discuss
My previous job was a full stack developer, but I had built the entire product from front to back on my own and knew how it all worked. I found it quite easy and even enjoyable. Now I'm working a job that is not full stack and I'm finding it extremely stressful because I didn't build the thing and still haven't figured out how the different parts work, much less work together.
irrational
·3 jaar geleden·discuss
> To successfully use an abstraction, you need to understand the problem the abstraction is trying to solve and also understand how the abstraction has solved the problem.

Not just abstractions, but just about everything we use. For example, why were arrow functions added to JavaScript? After all, everything you can do with arrow functions you could do previously without arrow functions. What was the problem that arrow functions were trying to solve and how do arrow functions solve that problem? I wish MDN was updated so that at the top of every page it first gave an overview of what problem this particular feature solves and how it solves it. Including how the problem used to be solved with "old" syntax and why this new syntax is preferable. And when it is not preferable.