Workspace Ronniedeveloper-ronnie.hashnode.dev·Nov 21, 2024Building Document Management System: PART 1Are you sick of tutorials that promise real-time features but deliver real-world headaches? You watch a video and get hyped about building the next big thing, but when you try to make it work in your project, you just get bugs, errors, and frustratio...DiscussFullstack ProjectsNext.js
Stefan Skorpenblog.skorp.io·Oct 30, 2024How to capture errors and exceptions with SentryKeeping track of errors in production is essential to maintaining a healthy application. While console logs and error messages might help during development, you need a more robust solution for production environments. This is where Sentry comes in –...Discusserror handling
Siddarth JainforNotes by Doctor Droidnotes.drdroid.io·Oct 16, 2024How to investigate Sentry Alert with Doctor DroidSentry Sentry is one of the best tools in the industry right now for error and exception tracking. It has high quality SDKs across the stack and has great integrations as well as a powerful dashboard for users to learn about an exception in the code....Discuss·1 like·111 readsPlayBooksobservability
Sudip Bhandaribhandarisudip.com.np·Aug 2, 2024How to Integrate Sentry with Django for Effective Error HandlingSentry is a powerful error tracking tool for real-time monitoring of errors and exceptions. Integrating Sentry into your Django project allows you to manage errors effectively. Start by signing up on Sentry's website, creating a new project, and conf...Discuss·56 readsDjango
Rowland Adimoharowjay.hashnode.dev·Jul 29, 2024CI/CD Pipelines Guide with GitHub Actions, SonarCloud, Codecov, and SentryI've been developing an open-source REST API for a book management system. I've set up all the components for an enterprise application, including Docker, Prometheus, and Grafana. Additionally, I've established a thorough CI/CD pipeline. Here's a sum...Discussci-cd
SUDIP BHANDARIdjangodev.hashnode.dev·Jul 18, 2024How to Integrate Sentry with Django for Effective Error HandlingSentry is a powerful error tracking tool for real-time monitoring of errors and exceptions. Integrating Sentry into your Django project allows you to manage errors effectively. Start by signing up on Sentry's website, creating a new project, and conf...Discuss·33 readsdjango error handling
Anaz S. Ajiajianaz.dev·Jul 5, 2024Mastering Error Tracking: Self-Hosting Sentry with Docker and Setting Up Sentry in FlutterIn today's fast-paced development environment, tracking errors effectively is crucial for maintaining high-quality applications. Sentry, an open-source error tracking and monitoring tool, offers powerful capabilities to help developers identify and r...Discusssentry
Anaz S. Ajiajianaz.dev·Jul 4, 2024Sentry: The Ultimate Open Source Tool for Error Detection and MonitoringIn the fast-paced world of software development, identifying and fixing errors quickly is crucial for maintaining a high-quality user experience. Sentry, an open-source tool, has become a go-to solution for developers looking to catch errors and moni...Discusssentry
Luca Restagnolucarestagno.hashnode.dev·Jan 29, 2024How to track errors with Sentry and Next.jsSentry is one of the most popular error-tracking platforms for software products. It tracks the errors that occur in your software, showing you the error message and relevant information about the execution context (like browser, language, screen siz...Discuss·1 likeNext.js
Tomislav Maričevićtmarice.hashnode.dev·Nov 29, 2023Why I always assign intermediate values to local variables instead of passing them directly to function callsInstead of def do_something(a, b, c): return res_fn( fn(a, b), fn(b), c ) I do: def do_something(a, b, c): inter_1 = fn(a, b) inter_2 = fn(b) result = res_fn(inter_1, inter_2, c) return result The fi...DiscussPython