MT5 Volume Indicator Explained | Trading Strategy
Sorta Stupid Reacts
Let’s be honest: watching a 20-minute video of someone sitting in their room watching a 10-minute video sounds, on paper, sorta stupid.
But here we are. Reaction content has taken over the internet. Whether it’s music producers breaking down a classic track for the first time, cinephiles analyzing practical effects, or just a group of friends losing their minds over a plot twist, the genre is massive.
At Sorta Stupid Reacts, we embrace the paradox. It shouldn't work, but it does. But why does it work? And how can you get the most out of your reaction content consumption?
Here is a deep dive into the psychology of the "react" and a guide to navigating the noise. Sorta Stupid Reacts
import React from 'react';
import createStore, combineReducers from 'redux';
const counterReducer = (state = 0, action) =>
switch (action.type)
case 'INCREMENT':
return state + 1;
default:
return state;
;
const store = createStore(combineReducers( counter: counterReducer ));
const Counter = () =>
const dispatch = store.dispatch;
const counter = store.getState().counter;
return (
<div>
<p>Count: counter</p>
<button onClick=() => dispatch( type: 'INCREMENT' )>Increment</button>
</div>
);
;
Best Practices and Optimization Techniques
Tags for each video:
sorta stupid reacts, reaction video, first time watching, dumb reaction but funny, wholesome react
Titles that work:
Community engagement:
Before reacting to complex science videos or historical documentaries, Jace often runs a timestamp disclaimer: "Look, I failed biology. We are going into this blind. Don't yell at me, just enjoy the crash." This preemptive surrender disarms critics and aligns the audience with his journey from ignorance to (slight) understanding.
The Stupidity: You pass a piece of data through 5 layers of components just to get it to the bottom layer. It’s like mailing a letter by passing it through every neighbor's house on the block. Let’s be honest: watching a 20-minute video of
The Stupid Way:
<App user=user>
<Header user=user> /* Header doesn't use user */
<Navigation user=user> /* Navigation doesn't use user */
<ProfileButton user=user /> /* FINALLY */
</Navigation>
</Header>
</App>
The Smart Way: Use React Context or a state management library (Zustand, Redux) for global data, or use composition.
// Composition approach (often cleaner for UI)
<App>
<Header>
<Navigation />
<ProfileButton user=user />
</Header>
</App>