#React programming
Explore tagged Tumblr posts
superbat-lmao · 17 days ago
Text
The Justice League, on their way back from a deep space mission that was incredibly successful, received a distress signal from a galaxy they’re passing through.
As they investigate, they learn that a colony of a planet has been wiped out. Completely.
Slowly they piece together that there is some being out there that had been terrorizing planets, starting with colonies and then eventually going after larger settlements and home planets.
The League also learns they are not the first people to learn of this foe, or try to come up with a solution to stop them.
The colony they are inspecting has researchers on it that had fled or escaped from other planets where they piled together all they knew about their enemy, and in an attempt to sift through the mountains of data they had collected, created a device.
If a person was connected to the device, they would mentally experience the number of years required to process the data and come up with an attack plan in seconds. What the researchers had needed was time, so they created it.
As the League pieces this together, Superman sees that there is a being approaching the remnants of the colony and the defense system alerts the “remaining colonists” of the imminent threat. Their failsafe boots up and takes the nearest person, in this case, Batman, who had been studying some of its programming, and activates.
The rest of the team didn’t have a chance to react before Batman blinks and is in motion, setting up machines and dictating code without lifting a finger.
There is no fight, because after the two seconds Bruce was in the machine he was a flurry of motion and the enemy was contained.
They ask him how long had passed for him in the machine. It takes him a full minute to respond.
“150 years.”
89 notes · View notes
suja-janee · 10 months ago
Note
Need to see an animatic in your style to the song “red flags” with Sareena and Bi-Han
I’ve been thinking about this ask for so long, I just have major art commitment issues
Tumblr media Tumblr media
201 notes · View notes
what-bot · 6 months ago
Text
Headcanon
You know how when Kevin Flynn crashed that Recogniser in town and almost ran people over, nobody reacted?
I get the feeling that’s a pretty common Program reaction to danger unless they’re specifically designed to notice it.
So in a crisis Tron will pick people up and run off with them. Just slings em over his shoulder and does not elaborate
It’s easier than yelling at them to move, like
“THIS TOWER IS DECOMPILING YOU HAVE TO LEAVE”
“Hmm, it seems this email address is broken. Where should I take it then?”
“SCREW THE EMAIL YOU’RE GOING TO DEREZ”
“Oh hi TRON, what are you doing here?”
“MOVE YOU FUCKING MICROCHIP”
“This goes back to the user who sent it right?”
“AAAAAAAAA”
He does this to Flynn one time and he has a lot of feelings about it
63 notes · View notes
izicodes · 2 years ago
Text
Someone contributed to my project?!
Tumblr media Tumblr media
I wasn't even expecting someone to contribute, what?
I made an issue, that was really just targeted towadrs myself because I use Issues as like the project's to-do list, so I wasn't expecting someone to be like "Oh I can do this if you want" LIKE BRO WHAT I mean yes please?!
The issue was to make a dark and light mode for the to-do app, and he did it perfectly! He so cool, cool dude alert! I was going to do it eventually when I learn more React because I was confused how to translate the Javascript code, that I had in my head, into React...
Anyhoo, he did an amazing job, so erm like checkout what he did: LINK 🐸
(Also I made an issue for someone to make a 'How To Contribute' .md file, so if you're good with your html/markdown and writing skills, you should like... checkout that too? 💗)
257 notes · View notes
moghedien · 2 years ago
Text
ok ok ok so in TGH, when Elayne and Nynaeve rescue Egwene, part of their plan requires them to attack a random sul'dam/damane pair to get the a'dam and sul'dam dress so they can sneak in
now that might not happen since they already have an a'dam and it looks like it might work differently here, but I want it to because they don't attack the pair so much as sneak up on them and take the collar off the damane and kidnap the sul'dam. but the damane in question here, upon realizing she's free, immediately punches out her sul'dam and fucking books it out of town
anyway I want it to happen and if it does I'm honestly betting on it being her that fucking decks her sul'dam
Tumblr media
146 notes · View notes
anndcodes · 1 year ago
Text
Tumblr media Tumblr media
another day, another cat
today i finished the homework for week 1 of the react course and i had to "recode" the weather app into react components and it was pretty cool.
have a good weekend!
48 notes · View notes
paingoes · 7 months ago
Text
nother rant
its crazy cause delta KNOWS paris is insane and irrational towards him but it doesnt change anything. he still doesnt question his authority over him and it makes no difference in the way he internalizes the abuse. its also crazy because the way delta internalizes it completely decenters paris’s role in it. as far as delta is concerned any amount of harm or punishment he receives is karmic and it is between him and the universe. idk i think its a fun combo. he thinks he deserves to be hurt but he knows paris is doing it for wrong reasons.
17 notes · View notes
wiklm · 9 months ago
Text
every time i think i can be normal about laura by billy joel i hear it again and lose my fucking marbles. by jove man
Tumblr media
12 notes · View notes
lat-ino · 1 month ago
Text
Tumblr media Tumblr media Tumblr media
my progress so far, very proud
6 notes · View notes
hatkuu · 1 year ago
Text
anyways android kylar who you originally bought for security purposes that goes waaaayyy overboard and starts cutting up anyone who steps one centimetre into your home.
21 notes · View notes
izicodes · 1 year ago
Text
Mini React.js Tips #1 | Resources ✨
Tumblr media
I thought why not share my React.js (JavaScript library) notes I made when I was studying! I will start from the very beginning with the basics and random notes I made along the way~!
Up first is what you'll need to know to start any basic simple React (+ Vite) project~! 💻
What you'll need:
node.js installed >> click
coding editor - I love Visual Studio Code >> click
basic knowledge of how to use the Terminal
Tumblr media
What does the default React project look like?
Tumblr media
Step-by-Step Guide
[ 1 ] Create a New Folder: The new folder on your computer e.g. in Desktop, Documents, wherever that will serve as the home for your entire React project.
[ 2 ] Open in your coding editor (will be using VSCode here): Launch Visual Studio Code and navigate to the newly created folder. I normally 'right-click > show more options > Open with Code' on the folder in the File Explorer (Windows).
[ 3 ] Access the Terminal: Open the integrated terminal in your coding editor. On VSCode, it's at the very top, and click 'New Terminal' and it should pop up at the bottom of the editor.
Tumblr media Tumblr media
[ 4 ] Create the actual React project: Type the following command to initialize a new React project using Vite, a powerful build tool:
npm create vite@latest
[ 5 ] Name Your Project: Provide a name for your project when prompted.
Tumblr media
[ 6 ] Select 'React' as the Framework: Navigate through the options using the arrow keys on your keyboard and choose 'React'.
Tumblr media
[ 7 ] Choose JavaScript Variant: Opt for the 'JavaScript' variant when prompted. This is the programming language you'll be using for your React application.
Tumblr media
[ 8 ] Navigate to Project Folder: Move into the newly created project folder using the following command:
cd [your project name]
[ 9 ] Install Dependencies: Execute the command below to install the necessary dependencies for your React project (it might take a while):
npm install
Tumblr media
[ 10 ] Run the Development Server: Start your development server with the command (the 'Local' link):
npm run dev
Tumblr media
[ 11 ] Preview Your Project: Open the link provided in your terminal in your web browser. You're now ready to witness your React project in action!
Tumblr media Tumblr media
Congratulations! You've successfully created your first React default project! You can look around the project structure like the folders and files already created for you!
BroCode's 'React Full Course for Free' 2024 >> click
React Official Website >> click
Stay tuned for the other posts I will make on this series #mini react tips~!
115 notes · View notes
fangirlinc · 1 month ago
Text
Any MCR fans in software engineering/web dev?
I'm looking for mutuals who love to code and also love MCR. I wanna do a little project >:D also just want some buds to relate to.
Tumblr media
2 notes · View notes
ccaptain · 2 months ago
Text
H:SR Kaeya being threatened at knifepoint, only for him to close the other person's wrist in a vice-like grip, break the bones in it as if those were fresh sapling branches, and send them to bite the dirt. His expression doesn't change from a neutral one while he does this, no remorse, no pity and no mercy.
2 notes · View notes
muttsandmustelidae · 1 year ago
Text
garter snakes are so funny. theyre so spicy when they’re on the ground, then as soon as you pick them up they’re just 🧍
9 notes · View notes
anndcodes · 1 year ago
Text
Tumblr media Tumblr media Tumblr media
first week of learning react, there's a lot of new and exciting things to learn; this time having yogurt instead of coffee because it is extremely hot where i live so i have zero energy to do anything, but still trying to keep up with my studies. (there's a cat behind the pic, it's this cute baby yoda).
i'm taking notes of the lessons im taking because everything is really new to me. what i've learned so far this week:
components
properties (props)
multiple components
how to use html/css with react
31 notes · View notes
kyprogramming · 2 months ago
Text
youtube
16 -Sign Out (Actions Button) - (Next js 15, React 19, PostgreSQL , Prisma, ShadCN, Paypal, Stripe API integration)
2 notes · View notes