Trending

#CodeTips

Latest posts tagged with #CodeTips on Bluesky

Latest Top
Trending

Posts tagged #CodeTips

Post image

A cleaner way to cover a parent in CSS Skip width:100%; height:100%; top:0; left:0; and just use .overlay { position: absolute; inset: 0; } β€” inset: 0 stretches the element to all four edges instantly.

#css #WebDevelopment #FrontendDevelopment #CodeTips #programming #uiux #CleanCode #developers

1 0 0 0
Post image

If you want cleaner code, name your functions by what they do.
Bad: handle()
Good: handleLogin()
#CodeTips #JS

0 0 0 0

Just learned a neat JavaScript trick:

Instead of writing:

const new_user = {
id: nextId,
name: name
}
nextId += 1

You can simply do:

const newUser = {
id: nextId++,
name,
}

Small improvements πŸ˜„

#JavaScript #CodeTips #WebDev #Programming #LearnToCode #DevCommunity #CleanCode #JSTricks

4 0 1 0
Laravel Number::abbreviate() for Human-Readable Numbers

Laravel Number::abbreviate() for Human-Readable Numbers

#Laravel tip

Laravel's Number::abbreviate() method transforms large numbers into abbreviated, user-friendly formats perfect for displaying statistics, metrics, or counts in dashboards and reports.

#number_formating #helpers #tips #codetips #human_readable

3 0 1 0
Video

πŸš€ New CodeTips release!

Now with @shiki.style syntax highlighting 🎨 and notation comments to make your code tips clearer and more expressive.

#CodeTips #IndieHackers #WebDev #Coding #DevTools #Shiki #Programming

3 0 1 0
Post image Post image Post image Post image

Level up your JavaScript game with these 8 essential "Noob vs Pro" code cleanups. Stop writing JS like it's 2012. ✍️ Hit save and make your code cleaner, faster, and more readable. #JavaScript #WebDevelopment #CodeTips #JSPro

3 0 0 0
YouTube
YouTube Share your videos with friends, family, and the world

Why do coders care so much about semicolons?
New explainer goes live today at 11AM MDT!
Watch here: youtube.com/shorts/ypT-7...

#CodeTips #BeginnerCoders #CodingConcepts #Debugging #Programming #Coding

0 0 0 0
Post image

πŸ’‘ Laravel Tip:
Customize your route loading with withRouting() in bootstrap/app.php 🎯

πŸ‘‰ Add custom route files
πŸ‘‰ Change API prefixes
πŸ‘‰ Define health endpoints
πŸ‘‰ Full control over routing

Docs πŸ‘‰ laravel.com/docs/12.x/routing
#Laravel #WebDev #CodeTips

2 0 0 0
Preview
https://blog.stackademic.com/building-robust-processing-pipelines-with-the-command-pattern-in-go-d28c39fefc65?source=rss----d1baaa8417a4---4 Learn how to build scalable, maintainable processing pipelines in Go using the Command Pattern for robust, reusable workflows.

Struggling with tangled code in data processing projects? The Command pattern is a must-know for organizing complex operations. #codetips #programming blog.stackademic.com/building-robust-processi...

0 0 0 0
Video

😑 ¿Has intentado hacer un regex en JavaScript con caracteres especiales (por ejemplo c++) y todo explota?
πŸ‘‰ Usa escape y deja de pelearte con +, *, . y compaΓ±Γ­a.
#JavaScript #Regex #CodeTips

1 0 0 0
Post image

πŸ’‘ Stop repeating yourself in JS!

Use constructor functions + new to create multiple similar objects fast πŸš€

DRY, efficient & scalable! πŸ’»

#JavaScript #CodeTips #WebDev

0 0 0 0
Video

Magical VS Code Extensions #23 🎩πŸͺ„ | Code faster, code smarter!
Unlock next-level productivity with these tools.
Explore more at javidev (link in my profile)

#vscode #vscodeextensions #devtools #codingproductivity #webdevlife #frontenddev #softwaredeveloper #codetips #workflowhacks

1 0 0 0

🧠 JavaScript Tip:
Use map() to loop & return a new array:

code:
const doubled = nums.map(n => n * 2);

It's cleaner than forEach when you need transformed output.
Functional & elegant! ✨

#JavaScript #Frontend #CodeTips #WebDev #amankureshi
#amankureshiFrontend #javascript

0 0 0 0

⚑ JavaScript Tip:

Use optional chaining ?. to avoid errors:
user?.profile?.name

No more "cannot read property of undefined" 😎
Cleaner & safer code!

#JavaScript #Frontend #CodeTips #amankureshi #amanFrontend #js

0 0 0 0
Video

Magical VS Code Extensions #20 πŸ§™πŸ»β€β™‚οΈπŸͺ„ | Transform how you code!
Next-level tools every dev should use.
Explore more at javidev (link in my profile)

#vscode #vscodeextensions #codinglife #programmingtools #devworkflow #webdev #codetips #productivedev #frontendtools

1 0 0 0
Video

Magical VS Code Extensions πŸ§™πŸ»β€β™‚οΈπŸͺ„ | Boost your workflow instantly!
Supercharge your coding with these must-have tools.
Explore more at javidev (link in my profile)

#vscode #vscodeextensions #programming #developerlife #codingtools #webdev #productivity #codetips #mysticjs #techstack #frontenddev

2 0 0 0
Video

Useful Programming Tools #54 πŸͺ„πŸ’» | Upgrade your dev stack today!
Simple tools, powerful results β€” don’t miss these.
Explore more at javidev (link in my profile)

#programming #devtools #codetips #webdevelopment #softwareengineer #productivityboost #developerstack #frontendtools #buildbetter #mysticjs

2 0 0 0
Video

CSS Pro Tips πŸ§™πŸ»β€β™‚οΈ | Unlock smoother designs in seconds!
Level up your front-end game with this quick trick. πŸš€
Explore more at javidev (link in my profile)

#html #htmlcss #programming #coding #htmlhack #webdev #frontend #csstips #codetips #developers #cssmagic #techcreator #codewithstyle #mysticjs

0 0 0 0
Post image

πŸ”Ή JavaScript Data Types ✌︎

Ever wondered what typeof returns in JS? Let’s break it down πŸ‘‡

#JavaScript #WebDev #CodeTips #Programming #Frontend #JavaScriptFacts

0 0 0 0
Post image

JS Tip: Don’t use || for fallbacks β€” it treats 0, '', and false as falsy too!

Use ?? instead when those are valid values.
βœ… data?.score ?? 10
❌ data && data.score || 10
Combine ?. + ?? for safe, clear defaults.
.
#JavaScript #CodeTips

2 0 0 0
Preview
Understanding .toString() in JavaScript: A Beginner-Friendly Guide If you're new to JavaScript, you may have encountered .toString() when working with integers, strings, or arrays. But what precisely does this technique perform...

πŸš€ Just discovered how powerful toString() can be in #JavaScript! It conveniently converts numbers, booleans & objects to stringsβ€”super handy for logging or display. Pro tip: πŸ’‘ Don’t call it on null or undefined, or you’ll hit a TypeError! πŸ”₯ #CodeTips #DevLife
hivewave.mybloghunch.com/understandin...

2 0 0 0
Post image Post image

Just added a few lines of CSS today to make dark mode work on Captionz πŸŒ™βœ¨ Super easy if you use CSS variables for background and text colors πŸŽ¨πŸ’»

#css #webdev #indiedev #darkmode #frontend #coding #devlife #buildinpublic #codetips #webdesign

4 1 0 0

Stop Late-Night Debugging: This Simple 5-Minute File Setup Makes Your Code Cleaner, Faster, and Easier to Work With

#CodeTips #DeveloperTools #CleanCode #DebuggingHack #CodingWorkflow #DevLife #CodeSmarter #SoftwareEngineering #CursorDev #ProgrammingTips

youtube.com/shorts/35MQC...

1 0 0 0
Video

πŸ’‘ JobRunr Tip!

When scheduling a background job:
❌ Don’t pass full entities
βœ… Pass just the ID (UUID)

Why?
β€’ Smaller job payloads
β€’ Less serialization overhead
β€’ Hibernate loads it correctly in context
β€’ Fewer bugs, more speed πŸš€

#Java #CodeTips #OSS

4 1 0 0
Video

Extensions #9: Level Up Your VS Code πŸ§™πŸ»β€β™‚οΈπŸš€
Supercharge your editor with these magical tools β€” explore more on javidev (link in my profile).
Creation: mystic.js
#vscode #codinglife #devextensions #programmingtools #webdev #developers #productivity #javascript #softwaredev #codetips

1 0 0 0
Video

Extensions #8: VS Code Magic You Need πŸ§™πŸ»β€β™‚οΈπŸ’«
Transform your coding game with these top extensions β€” discover more on javidev (link in my profile).
Creation: mystic.js
#vscode #codeextensions #programming #developers #webdev #devtools #productivity #codetips #javascript #softwareengineer

1 0 0 0
Video

Boost your workflow with next-level dev tools βš™οΈ Discover more at javidev β€” link in my profile! Creation by mystic.js

#programmingtools #devworkflow #codetips #webdevtools #softwaredeveloper #techstack #productivitytools #codinggear #javascriptlife #usefulapps #buildbetter

1 0 0 0