Sebastian Sellmairblog.sellmair.io·2 hours agoDX; Deep Debugging and my new favorite System PropertyI think nobody here would disagree with me, saying that 'good Developer Experience (DX) is key to successful projects and teams'. Nice tests, reliable IDE integration and smooth CI are obvious. Sometimes, however, things get dirty: We do have complic...1 like·94 readsdebugging
Sergey Shishkinserj-aleks.hashnode.dev·Feb 6, 2025methodsТри функции дня … или метода … короче, символы, относящиеся к концепции объектной ориентируемости, которая здесь уже упоминалась, при чем в контексте базы данных. met, method и methods. meth - эта функция обычно не вызывается напрямую, а используется...picolisp
Geraldine Okekechummygeraldine.hashnode.dev·Feb 5, 2025Boost Your CSS Debugging Efficiency with Browser ToolsCSS issues can be some of the trickiest to debug in front-end development. Have you ever found yourself tweaking styles, refreshing the page endlessly, or adding !important everywhere just to make something work? If so, you’re not alone! But there’s ...1 likeCSS3
Abvhishek Kumarwhen-to-use-useeffect-vs-usefocuseffect.hashnode.dev·Feb 4, 2025Mastering React Native Debugging with ReactotronWhen working with React Native, debugging can sometimes feel like navigating through a maze. With various issues spanning from UI rendering to network requests, identifying the root cause of a bug can be time-consuming. That’s where Reactotron comes ...debugging
JealousGxblog.jealous.dev·Feb 4, 2025AWS Debugging Nightmare: How a Missing Host Header Led to Chaos and the Quick SolutionThe Problem: Lambda@Edge’s Response Size Limit Strikes Our team was racing against the clock to fix a critical API endpoint that suddenly started failing. The culprit? Lambda@Edge’s 1 MB response payload limit. Our endpoint’s dataset had grown expone...AWS
Snigdha Chaudharisnigdhachaudhari.hashnode.dev·Feb 1, 2025🐌 Debugging and Fixing Intermittent Latency in Multi-Cloud Connections🚀 “Our app works fine most of the time, but sometimes it’s just… slow.”Sound familiar? Latency is every engineer’s worst nightmare—especially when multi-cloud environments are involved. AWS, Azure, GCP, and others operate with different network arch...latency
Sergey Shishkinserj-aleks.hashnode.dev·Feb 1, 2025lint - диагностикаКакой ремонт или какая отладка без диагностики … Ассоциативный список это типа карты или ассоциативного массива, то есть список пар - “ключ-значение”. lint - проверяет определение функции или содержимое файла (в первой форме) или тело метода (вторая ...picolisp
Sergey Shishkinserj-aleks.hashnode.dev·Jan 30, 2025trace и *NoTrace?Продолжаем обзор функций отладочного режима. trace - вставляет вызов функции $ трассировки в начало тела функции или метода sym, так что информация трассировки будет выводиться до и после выполнения. Может использоваться только с EXPR и SUBR. Встроен...s-expr
Sergey Shishkinserj-aleks.hashnode.dev·Jan 29, 2025d и debuggingЕщё не сложилось какого-либо устойчивого представления об альтернативной потенциальной классификации функций и поскольку в планах пока руководствоваться авторской классификаией, не закончив первого цикла, перескакивая второй, хочется нарушить собстве...picolisp
Tushar Sahunonexpert.hashnode.dev·Jan 28, 2025Why I Use Loggers like Winston and Morgan in My Node.js Apps Instead of Console LogsAs a Node.js developer, debugging and monitoring are integral parts of my workflow. While console.log() might seem like the simplest and most obvious tool for this purpose, it’s far from the best option when building scalable and maintainable applica...Node.js