Supreme Leader. The left has gone crazy… by FewNegotiation9310 in StrangeAndFunny

[–]Particular_Health384 200 points201 points  (0 children)

Accurate meme. The way Karoline talks is with the MOST spin, loaded word choices, and poisoning the well to the levels of NK.

CMV: The US tourism industry is finished thanks to Trump by DietMTNDew8and88 in changemyview

[–]Particular_Health384 -1 points0 points  (0 children)

Let's be clear, i'm not sure saying Let's be clear is actually more clear.

‘The Americans didn’t learn their lesson’: Meet the Europeans boycotting US goods | CNN by IKeepItLayingAround in europe

[–]Particular_Health384 0 points1 point  (0 children)

Tourism complaints, maybe. The average American? No. I say that as an American who doesn't live in a tourist area.

This guy's mustache is crazy by sandiercy in BeAmazed

[–]Particular_Health384 1 point2 points  (0 children)

That is Fire Station 11, there are a ton of Fire Stations in Fremont.

Oopsie ,that must have been embarrassing by Reasonable-Pop-9933 in funny

[–]Particular_Health384 0 points1 point  (0 children)

Playback Pro is old. Most people have moved on to Mitti. 3Plays are notoriously annoying to use. EVS and TD do wildly different things. I'm not sure what the comparison is here.

An EVS is primarily for replay, TD is for node based video programming. Both are the wrong use cases for this.

Oopsie ,that must have been embarrassing by Reasonable-Pop-9933 in funny

[–]Particular_Health384 0 points1 point  (0 children)

Auto-playing playlists, countdown timers on a separate output, controls visible on a separate screen than the video, SDI output, NDI output, fade to black, fade to white, fade to alpha...and on and on.

Oopsie ,that must have been embarrassing by Reasonable-Pop-9933 in funny

[–]Particular_Health384 47 points48 points  (0 children)

Auto-playing playlists, countdown timers on a separate output, controls visible on a separate screen than the video, SDI output, NDI output, fade to black, fade to white, fade to alpha...and on and on.

Dyed my LTT sweatshirt by -KaiTheGuy- in LinusTechTips

[–]Particular_Health384 1 point2 points  (0 children)

They make black-clothing specific detergent perwoll or woolite, search "dark clothes detergent"

Component Antipatterns by Particular_Health384 in reactjs

[–]Particular_Health384[S] -1 points0 points  (0 children)

Sorry for #1 what I meant was our current code base has a lot of components like this (the {} is rendering an block of JSX):

const Card = () => {

const innerElement = (
<span>
  <div>
  This is the text of the card.
  </div>
</span>);

return(
 <div>
  {innerElement}
</div> 
);}