@livepcstudios: Yeah it hurt not going to lie 😭 #trees #jumping #parkour #streetlegal #fun

24/7 •
24/7 •
Open In TikTok:
Region: US
Monday 27 October 2025 11:42:24 GMT
703961
54792
566
20011

Music

Download

Comments

holdupholdup7
Cjfjrjdidnd23 :
Pro jumper here. That fence saved dudes life
2025-11-04 18:59:02
3732
intelcorestar5
intelcorestar :
that adrenaline ain't gonna last long😭
2025-11-03 17:27:13
6267
themichaelfr
TheMichaelfr :
What was the end goal😭
2025-11-04 03:42:23
2092
baylen.trojanek
￴￴ ￴ ￴￴ ￴ ￴￴ :
Genuinely what was he thinking
2025-11-04 18:19:16
1159
johnnywhite018
johnnywhite018 :
Bro had the best possible outcome branches and that fence prolly saved bro
2025-10-30 05:55:25
1493
urfavdruggie15
￶ :
Always wondered why some fences had dents like that now I see why😂
2025-11-06 04:28:15
323
balke1121
Blake🛹🌲 :
2025-11-07 22:50:41
43
notyn.jjosh
Joshua :
What is the goal
2025-10-27 13:40:39
219
abicawrqrwl
Abi :
Dis not Fortnite man
2025-11-04 02:44:42
26
itzdemetriusfrm900
𝔇𝔈𝔐𝔈𝔗ℜℑ𝔘𝔖™️ :
2025-11-11 08:11:47
51
amir.ctfd
lllllll :
2025-11-08 20:41:01
179
sidsalazar6
sidsalazar6 :
that fence cushioned his fall 😬
2025-11-04 17:14:57
57
user242472231
ᴊxʏᴅᴇɴ :
It didnt even hurt bro
2025-11-08 00:41:45
56
1chris._.chris1
Christian🥷🏿 :
2025-11-07 02:42:01
18
klohhn._.v
Dex :
changed skins mid fall
2025-11-20 06:18:37
28
da808yeti
LAWDHAVMERCY :
2025-12-21 12:54:32
7
kyzuwtm
kyzu :
whats was he trying to do bro 💔
2025-11-04 20:20:43
95
camtheonefr
𝓒𝓪𝓶 :
And then he jumped
2025-11-11 03:33:19
9
masons123467
Mason smith :
2025-11-05 19:56:29
34
danihun41
danihun41 :
bro bent the rail😭😭😭😭😭
2025-11-05 19:50:52
20
louduniversity
▄︻̷̿┻̿═━一 :
I think he had mountaineer or specialist then pop a stim shot
2025-11-04 13:32:11
16
cvntluvr
cvntluvr :
I feel bad that bro did this for 700 likes he needs more bruh 😭
2025-11-04 14:44:14
19
jawgejangle
Jyörgy :
A classic.
2025-11-23 05:06:15
1
suzukimonkeymoto
Mr Suzuki :
I mean what you expect
2025-11-23 15:21:47
1
To see more videos from user @livepcstudios, please go to the Tikwm homepage.

Other Videos

Building an app with AI is faster than ever… but shipping fast doesn’t automatically mean shipping securely. 🤖🔐 Tools like Claude Code, Codex, Cursor, Lovable and Replit can help you build working apps incredibly quickly, but AI-generated code still needs the same security controls, testing and review as code written manually. If anything, moving faster makes it even more important to know what to check before you put an app in front of real users. ⚠️ One of the biggest mistakes is exposing secrets. 🔑 API keys, database credentials, service tokens and private configuration should never live inside frontend code or be committed to a public repository. Keep secrets server-side, use environment variables or a proper secrets manager, restrict permissions and rotate anything that may have been exposed. Authentication is another area you should never simply assume is correct. 👤 Logging in is only half the job. Your application also needs proper authorisation so users can only access the data and actions they are actually allowed to access. Admin routes, APIs and database operations should enforce permissions on the server, not just hide buttons in the interface. Your database needs protection too. 🗄️ If you’re using platforms such as Supabase, review your Row Level Security policies carefully. Test what an authenticated user, another user and an unauthenticated visitor can actually read, create, edit or delete. Never assume the generated configuration is safe by default. Then look at your APIs. 🌐 Add rate limiting, authentication, request validation and sensible usage limits. Otherwise an exposed endpoint could potentially be abused, spammed or used to generate unexpected infrastructure or AI API costs. Validate everything coming from the user. 🛡️ Treat form fields, URLs, uploaded files, query parameters and API payloads as untrusted input. Use server-side validation, sanitise where appropriate, parameterise database queries and restrict file types, sizes and destinations. Dependencies matter as well. 📦 AI tools can generate code using libraries you didn’t consciously choose. Review what has been installed, keep packages updated, remove unused dependencies and run vulnerability scanning before deployment. And don’t forget visibility. 👀 Add structured logging, error monitoring, alerts and audit trails so suspicious behaviour doesn’t remain invisible. Combine that with automated tests, backups and a recovery plan. Security isn’t just preventing an incident, it’s also detecting and recovering from one quickly. A good AI development workflow should look more like: 💡 Generate 🔍 Review 🧪 Test 🔐 Security check 📊 Monitor 🚀 Deploy 🔁 Improve AI can help you build the first 80% incredibly quickly. The final 20% is where reliability, security and production readiness are won. Vibe code if you want. Just don’t vibe deploy. 😅🔒 Save this checklist before launching your next AI-built app and send it to someone currently building with AI. 👨‍💻🚀 #ai #cybersecurity #vibecoding #softwaredevelopment #appsecurity
Building an app with AI is faster than ever… but shipping fast doesn’t automatically mean shipping securely. 🤖🔐 Tools like Claude Code, Codex, Cursor, Lovable and Replit can help you build working apps incredibly quickly, but AI-generated code still needs the same security controls, testing and review as code written manually. If anything, moving faster makes it even more important to know what to check before you put an app in front of real users. ⚠️ One of the biggest mistakes is exposing secrets. 🔑 API keys, database credentials, service tokens and private configuration should never live inside frontend code or be committed to a public repository. Keep secrets server-side, use environment variables or a proper secrets manager, restrict permissions and rotate anything that may have been exposed. Authentication is another area you should never simply assume is correct. 👤 Logging in is only half the job. Your application also needs proper authorisation so users can only access the data and actions they are actually allowed to access. Admin routes, APIs and database operations should enforce permissions on the server, not just hide buttons in the interface. Your database needs protection too. 🗄️ If you’re using platforms such as Supabase, review your Row Level Security policies carefully. Test what an authenticated user, another user and an unauthenticated visitor can actually read, create, edit or delete. Never assume the generated configuration is safe by default. Then look at your APIs. 🌐 Add rate limiting, authentication, request validation and sensible usage limits. Otherwise an exposed endpoint could potentially be abused, spammed or used to generate unexpected infrastructure or AI API costs. Validate everything coming from the user. 🛡️ Treat form fields, URLs, uploaded files, query parameters and API payloads as untrusted input. Use server-side validation, sanitise where appropriate, parameterise database queries and restrict file types, sizes and destinations. Dependencies matter as well. 📦 AI tools can generate code using libraries you didn’t consciously choose. Review what has been installed, keep packages updated, remove unused dependencies and run vulnerability scanning before deployment. And don’t forget visibility. 👀 Add structured logging, error monitoring, alerts and audit trails so suspicious behaviour doesn’t remain invisible. Combine that with automated tests, backups and a recovery plan. Security isn’t just preventing an incident, it’s also detecting and recovering from one quickly. A good AI development workflow should look more like: 💡 Generate 🔍 Review 🧪 Test 🔐 Security check 📊 Monitor 🚀 Deploy 🔁 Improve AI can help you build the first 80% incredibly quickly. The final 20% is where reliability, security and production readiness are won. Vibe code if you want. Just don’t vibe deploy. 😅🔒 Save this checklist before launching your next AI-built app and send it to someone currently building with AI. 👨‍💻🚀 #ai #cybersecurity #vibecoding #softwaredevelopment #appsecurity

About