Home New Trending Search
About Privacy Terms
#
#devhacks
Posts tagged #devhacks on Bluesky
Post image

Why worry when Kwala’s on speed dial 😎💪

#Web3Life #CryptoDev #EVM #SmartContracts #Blockchain #DevHacks #OnChain

0 0 0 0
Post image

Are you cloning your repo again just for a hotfix? 🛑

Use SmartGit Worktrees:

1️⃣ Repository > Add Worktree

2️⃣ Pick your branch

3️⃣ Get a fresh folder linked to the same history

1 Repo, 2 Working Dirs, 0 Compromises

Learn more 👉 youtu.be/3ulbYTk7lyo

🚀 Get #SmartGit: www.smartgit.dev

#Git #DevHacks

2 0 0 0

Your IDE is your battle station -> master the damn shortcuts. No mouse, no mercy. Saves hours weekly. Same goes for shell aliases. Laziness breeds efficiency. #DevHacks #WorkSmarter

1 0 0 0
Video thumbnail

From idea 💡 to prototype 🚀 in minutes with Traversal:

1️⃣ Define your data in JSON
2️⃣ Query instantly with GraphQL
3️⃣ Update in real-time — no migrations, no stress

Build faster. Ship smarter.

#DevHacks #GraphQL #WebDevelopment #CodingTips #BoldMines

5 0 0 0
type ArrayToUnion<T extends any[]> = T[number]

type MainParam = (string|number|boolean|bigint)[]

const main = (array:MainParam) => {
    const top = array[0]
    main2(top)
}

// const main2 = (head:string|number|boolean|bigint) => {
//     console.log(head)
// }

const main2 = (head:ArrayToUnion<MainParam>) => {
    console.log(head)
}

type ArrayToUnion<T extends any[]> = T[number] type MainParam = (string|number|boolean|bigint)[] const main = (array:MainParam) => { const top = array[0] main2(top) } // const main2 = (head:string|number|boolean|bigint) => { // console.log(head) // } const main2 = (head:ArrayToUnion<MainParam>) => { console.log(head) }

Unlock union types in TypeScript by using the all-powerful number keyword with array types! 🧠 Map any array's element types into a union, enabling flexible, type-safe utility functions. Level up your TS game! 🚀 #TypeScript #CodingTips #DevHacks #TypeSafety

2 0 0 0
Video thumbnail

Tools #58: Useful Programming Tools 🧙🏻‍♂️🪄
Work smarter, not harder — these tools are every dev’s secret weapon.
Discover them all at javidev — link in my profile.
Created by mystic.js
#ProgrammingTools #DevHacks #CodeEfficiently #WebDevTips #DeveloperGear #TechReels #CodeSmart #JaviDev

0 0 0 0
Video thumbnail

Extensions #5: Boost Your VS Code Power!
Discover a new magical extension to transform your coding – visit my site: javidev (link in my profile) 🧙🏻‍♂️🚀 Work smarter, code sharper.

#VSCodeTools #DevHacks #CodeMagic #ProductivityBoost #VSCExtensions #CodingTips

0 0 0 0
Video thumbnail

Useful Programming Tools You Didn't Know You Needed ⚙️✨ — Discover more at javidev (link in my profile). Created by mystic.js
#programmingtools #codertips #webdevlife #javascriptmagic #devhacks #productivitytools #codewizard #softwareengineer #techstack #developerlife

1 0 0 0
Video thumbnail

Magical Coding Tips Part #5: Padding CSS Shorthand 🧙‍♂️
Simplify your spacing spells with one clean line — explore more at javidev (link in my profile).
mystic.js

#CSSPadding #ShorthandCSS #SpacingTips #FrontendMagic #CodeBetter #WebStyle #CleanCSS #DevHacks #UIBasics #WebTips

0 0 0 0
Post image

🚀 Did you know? You can use Touch ID for sudo on macOS - no more password typing in Terminal

🔐 Just add this at the top of /etc/pam.d/sudo:
` auth sufficient pam_tid.so`

Next time you run sudo, you’ll get a fingerprint prompt.
That's how sudo should feel in 2025.
#macOS #TerminalTips #DevHacks

0 0 0 0

💡 Tired of setting up projects from scratch?

LaunchKit-CLI has you covered! Generate templates for Next.js, Vite, and more in seconds.

Try it now: https://github.com/TheRealPerson98/LaunchKit-CLI

#CodingLife #OpenSource #DevHacks

0 0 0 0
Video thumbnail

Wait for Pac-Man 🤯🍒 – Javidev link en mi perfil 🚀  

This Easter egg is next level! 👀🔥 Comment “surf” for a link to Windsurf IDE 🌊  

#Programming #Code #EasterEgg #DevHacks #SoftwareDeveloper #WebDev #Python #JavaScript #TechCommunity #LearnToCode #CodeNewbie #100DaysOfCode

2 0 0 0
Video thumbnail

Are you using console.table? 🖥️🔥 – Javidev link en mi perfil 🚀  

This tool will change how you debug! Check out how easy it makes viewing data! 👀  

#Programming #Code #DeveloperTips #JavaScript #TechCommunity #DevHacks #WebDev #CodingLife #TechSkills

1 0 0 0
Video thumbnail

AI coding hack every developer wishes they knew earlier 🤖🔥 – Javidev link en mi perfil 🚀  

This trick will change the way you code forever! Try it now! ⚡👨‍💻  

#Programming #Code #AICoding #DevHacks #SoftwareDeveloper #WebDev #Python #JavaScript #TechCommunity #LearnToCode #CodeNewbie #100DaysOfCode

3 0 0 0
Video thumbnail

I wish I knew about Number 1 earlier! 🤯🔥 – Javidev link en mi perfil 🚀  

This tip could save you hours! ⏳💡 Which one surprised you the most? 👇  

#Programming #Code #CodingTips #DevHacks #SoftwareDeveloper #WebDev #Python #JavaScript #TechCommunity #LearnToCode #CodeNewbie #100DaysOfCode

4 0 0 0
Video thumbnail

Comment “code” to get the source code! 💻🔥 – Javidev link en mi perfil 🚀  

Want to see how it’s built👇  

#Programming #Code #DevHacks #SoftwareDeveloper #WebDev #Python #JavaScript #TechCommunity #LearnToCode #CodeNewbie #100DaysOfCode #DeveloperLife

3 0 0 0

No more endless scrolling! Just type colon + line number to jump directly to that line in your active file. For example, typing :39 takes you straight to line 39. #DevHacks

0 0 1 0

Rule 9: Positive Conditionals Only ✅
Think positive! Replace if (!user.isLogged) with if (user.isLogged) for better readability. Your brain will thank you. Our brains will thank you. My eyes will thank you. Thank you!
#CodeReadability #DevHacks

0 0 1 0

Designing while listening to Florence + the Machine, pretending she's screaming at me to do the thing. #devhacks

6 0 0 0
Post image

🚀 Quick Web Dev Hack! 💻

Save time with this CSS tip:

Use clamp() for responsive font sizes:

font-size: clamp(1rem, 2.5vw, 2rem);

No more media queries needed! 🎯

What’s your favorite CSS trick? Let’s share! 🔧

#CSSLife #WebDevMagic #DevelopersOfBluesky #DevHacks

1 0 0 0