Exciting news for developers! Have you heard of Zed? It's a high-performance, multiplayer code editor that's open source and written in Rust. Created by the same team behind Atom and Tree-sitter, Zed is sure to be a game-changer in the coding world. Check it out at zed.dev #coding #opensource #Rust
Karol Antoniewicz’s Post
More Relevant Posts
-
Hands-on Software Architect and Engineering Leader | Mentoring and Growing Teams | Fixing Startups | Shape-Up and Agile Coach
I have been using Zed almost exclusively since I posted this and thought of sharing a quick review here. Overall, it is one of the cleanest IDE UX I've experienced lately. They mentioned that they've written it like a game so the responsiveness of the UI and crispiness of the font is really good. I am using the default VS Code key bindings to your usual file, command and symbol searching shortcuts work out of the box. They have tried to build the global search in a different way as well. It is mostly up to personal taste but I like the improvement they’ve made by actually showing a little bit of context of the searched term. I also like their symbol search (within a file) and the way it is rendered in a pleasing way. The minimalistic approach does come with some downsides though. At this moment, the IDE doesn’t seem to allow installing third-party plugins so you’ll basically need to rely on its built in support for languages and other stuff. It does cover a lot by default but if you want to get added tools like Git Lens, Markdown previews etc, you’re out of luck. Give it a try, what is your favorite IDE? why do you prefer it over the others? hit me up in comments. #developer #productivity #code #ide #vscode #zed
Hands-on Software Architect and Engineering Leader | Mentoring and Growing Teams | Fixing Startups | Shape-Up and Agile Coach
🚨New and shiny IDE alert Zed is a powerful and multiplayer code editor from the creators of Atom. It is free and open source. I personally exclusively use VS Code and it’s been my go to editor for around 6 years now. #developer #tools #productivity
Zed - Code at the speed of thought
zed.dev
To view or add a comment, sign in
-
🚀 Exciting News Alert! 🚀 🌟 Say hello to Zed, a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter 🔹 Built on Rust and recently open-sourced, Zed boasts lightning-fast performance and rock-solid stability. 🔹 While currently available exclusively on Mac OS, the Zed team has exciting plans to expand to Linux and Windows soon. 🔹 Bid farewell to sluggish editors! With Zed's optimized design, experience near-instantaneous startup times and seamless integration of AI. 🔹 Collaborate effortlessly with your team in real-time, thanks to Zed's advanced collaboration features. Work together, code together, and achieve greatness! 🔹 Harness the power of AI right at your fingertips. With Zed's built-in support for GitHub co-pilot and OpenAI integration, coding becomes a breeze. https://zed.dev/ Join the Zed revolution and elevate your coding game to new heights! 💻✨ #CodeEditor #AIIntegration #Collaboration #TechInnovation
Zed - The editor for what's next
zed.dev
To view or add a comment, sign in
-
Level up your development skills with Techloset Bootcamp.
Navigating the code journey with finesse: 𝐂𝐨𝐧𝐬𝐢𝐬𝐭𝐞𝐧𝐜𝐲 for clarity 𝐎𝐩𝐭𝐢𝐦𝐢𝐳𝐚𝐭𝐢𝐨𝐧 for efficiency 𝐃𝐞𝐛𝐮𝐠𝐠𝐢𝐧𝐠 for flawless execution 𝐈𝐧𝐭𝐞𝐠𝐫𝐚𝐭𝐢𝐨𝐧 for seamless functionality 𝐄𝐧𝐜𝐫𝐲𝐩𝐭𝐢𝐨𝐧 for bulletproof security 𝐆𝐢𝐭 for smooth version control. Elevate your development game with TechloSet Solutions. #Techloset #techlosetsolutions #codingwithtechloset #CodeCrafting #EfficiencyMatters #DebuggingDoneRight #SeamlessIntegration #SecureCoding #VersionControl #visualcodestudio #coding #contentcreation
To view or add a comment, sign in
-
Full Stack Developer | 🚀 MERN Stack Developer | Building Cutting-Edge Web Applications with JavaScript, React, and Node.js
Leveling up my #React game with #ReduxToolkit has been a game-changer! 🚀 Say goodbye to Redux boilerplate and hello to streamlined state management. Seriously impressed with how much smoother my development workflow has become! 💻 #webdev #coding #Redux
To view or add a comment, sign in
-
👀 Looking for that elusive bug is difficult, even with a great tool like Ray. 💡 But when you finally find the bug, you'd better celebrate! 🎉 You can call `ray()->confetti()` to get the party started. Check our blog post in the comments to see it in effect. #ray #coding #debugging #webdevelopment
To view or add a comment, sign in
-
Navigating the code journey with finesse: 𝐂𝐨𝐧𝐬𝐢𝐬𝐭𝐞𝐧𝐜𝐲 for clarity 𝐎𝐩𝐭𝐢𝐦𝐢𝐳𝐚𝐭𝐢𝐨𝐧 for efficiency 𝐃𝐞𝐛𝐮𝐠𝐠𝐢𝐧𝐠 for flawless execution 𝐈𝐧𝐭𝐞𝐠𝐫𝐚𝐭𝐢𝐨𝐧 for seamless functionality 𝐄𝐧𝐜𝐫𝐲𝐩𝐭𝐢𝐨𝐧 for bulletproof security 𝐆𝐢𝐭 for smooth version control. Elevate your development game with TechloSet Solutions. #Techloset #techlosetsolutions #codingwithtechloset #CodeCrafting #EfficiencyMatters #DebuggingDoneRight #SeamlessIntegration #SecureCoding #VersionControl #visualcodestudio #coding #contentcreation
To view or add a comment, sign in
-
"In the realm of bits and bytes, I weave the tapestry of code. Debugging is my art, and every algorithm is a stroke of genius. Let's craft a digital symphony where innovation harmonizes with purpose. 🖥️🎨 #CodeWeaver #TechHarmony"
To view or add a comment, sign in
-
Pursuing at st.joseph's institute of technology || IT Student || Problem solving in Java programming
💻 Day 38 of 100 Days of Code 💻 Today, I tackled LeetCode problem #1140 - Stone Game II. 🎯 ### Problem Overview: The task was to determine the maximum number of stones a player can get in a stone game with optimal strategies on both sides. ### My Approach: - Dynamic Programming with Memoization: I used a recursive approach with dynamic programming to store results of subproblems to avoid recalculations. - State Transition: The solution involves checking each possible move for a player, maximizing their score, while minimizing the opponent's options in the next turn. ### Complexity: - Time Complexity: O(n^3), as we examine all possible splits for each pile of stones. - Space Complexity: O(n^2), for storing intermediate results. This problem was a great exercise in thinking ahead and optimizing decisions based on the opponent's potential moves! #100DaysOfCode #LeetCode #DynamicProgramming #GameTheory #Coding #ProblemSolving #CodingJourney
To view or add a comment, sign in
-
My first steps in exploring Redux - actions, action creators, reducers, store, dispatch, selectors , combine reducers, create slice and Redux DevTools extension. Started with the Redux documentation. #redux #frontenddevelopment #coding #learningjourney
To view or add a comment, sign in
-
Age of Empires developer, Matt Pritchard, reveals the iconic game's foundation in Assembly language. His insights on Reddit highlight how the use of assembly code allows for superior performance, higher resolutions, and faster sprite rendering compared to the competition. Learn more: https://lnkd.in/efEShZ-x #Code #GameDev #AgeofEmpires #Reddit #Strategy #GameDevelopment
To view or add a comment, sign in