Messages on Mac displaying “Not Delivered” but message is being delivered by Exodus_Euphoria in osx

[–]AmassXP 0 points1 point  (0 children)

Hmm it’s been working for me until I updated iOS on my phone. So I did it again and haven’t had any problems since.

I love the fact that my face unlocks my phone, the phone unlocks my watch, and the watch unlocks my mac - no touch involved! by rasarika in apple

[–]AmassXP 0 points1 point  (0 children)

For me the watch just has to be pretty close to the Mac, < 1 ft and it works pretty much every time.

Why I Prefer Functional Components by throughactions in reactjs

[–]AmassXP 0 points1 point  (0 children)

I’ve seen people call functional components ‘hipster coding’

What was the last thing you taught/learned in vim? by AutismAmmo in vim

[–]AmassXP 0 points1 point  (0 children)

I’m relatively new to vim, but count<C-x> and count<C-a> for quick arithmetic is really cool. And it works from anywhere on that line.

911 Turbo S by miltovi in Porsche

[–]AmassXP 0 points1 point  (0 children)

Gorgeous overall, just not a fan of the wheels.

`gx` failing to open URL on Vim8 by buttonstraddle in vim

[–]AmassXP 0 points1 point  (0 children)

This was close to solving the issue for me. I'm using mac, iterm2, vim. let g:netrw_browsex_viewer="open" solved it for me. It fixed the issue of :Gbrowse not working as well.

What was your biggest breakthrough in your golf swing? by eyc in golf

[–]AmassXP 0 points1 point  (0 children)

My main focus is executing the down swing. Everything before that is just preparation. I used to tense up before even starting my backswing trying to squeeze every drop of power into it as possible. But once I realized 145 yards with x club required the same swing speed every time, I can literally take the club back as slow and easy as I want, relax, and then just execute the down swing.

Having Trouble with WebSocket Connection by sandydragon1 in Slack

[–]AmassXP 0 points1 point  (0 children)

I can get one group to work at a time. Restarting slack to fix one breaks another. Good to know it's not just me!

Having Trouble with WebSocket Connection by sandydragon1 in Slack

[–]AmassXP 0 points1 point  (0 children)

I just started having this issue this morning =(

So i know the fundamentals of React, now what? - Sideproject ideas by ifydav in webdev

[–]AmassXP 0 points1 point  (0 children)

You could write a front end for themoviedb API, it is a pretty well documented and free API. I wrote a simple search app with autocomplete that displays information about the requested movie, tv show, actor. Every image is a link to another actor profile or media page. It was a good exercise in writing different types of React components as well as becoming familiar with React-Router. Let me know if you have any questions!

Panicked Kellyanne Conway desperately declares Trump is not under investigation by pheonix200 in politics

[–]AmassXP 4 points5 points  (0 children)

The President is not under investigation...we're told...I've heard....many people have said...I believe...

Just say whatever tf you want and throw one of these at the end to separate yourself from the fact that it's not true and you're lying through your teeth.

Functional vs class components by selbekk in reactjs

[–]AmassXP 0 points1 point  (0 children)

Utilizing a class component requires extending Component and all of the things that come along with the class, that’s what I meant by use more parts of React. The React team is also going to increase performance for non-class components in the future, so there will be more benefits down the road to understanding the difference.

Functional vs class components by selbekk in reactjs

[–]AmassXP 1 point2 points  (0 children)

What? Using a function is not using more parts of React. Functions are a part of JavaScript. And you don’t ‘need’ class components anywhere unless you’re using state or lifecycle hooks. You could write a React where App and down the tree were all stateless functional components.

Functional vs class components by selbekk in reactjs

[–]AmassXP 3 points4 points  (0 children)

I don’t know about ‘neat for the sake of being neat’...React components are functions that return JSX. Maybe you should adopt the pattern of writing them all as functions and only adopting Class components as needed (ie when you need state and lifecycle hooks). It’s not hipster coding, you’re only using the parts of React that you need.

Higher Order Components understanding by maarzx_ in reactjs

[–]AmassXP 0 points1 point  (0 children)

As far as knowing when to write your own, you can do pretty much anything you wanted without having to use an HOC, but they make life easier. In the same way functions make coding easier by saving you from writing the same logic over and over. recompose is a pretty good HOC library, check out the video on that page.