A debugger for xsl/xslt stylesheets which has functionality similar to a Unix/Linux "gdb". This is achieved using libxml2 and libxslt (gnome-xml).
A summary of commands types are
Help, running, template, breakpoint and node viewing
A GUI front-end to xsldbg is available for
* Qt5 called qxsldbg
* kate editor plugin called kxsldbg
A package for XEmacs is also available called xsldbg-mode
...
- Easily debug array index errors (when writing past the end).
- Easily profile memory usage and track down memory hawks.
- Click-And-Goto-Source support for Visual Studio.
- Integrated compatibility for new, new[], delete, delete[], malloc, calloc, realloc, free
Pastebin is here to help you collaborate on debugging code snippets
pastebin is here to help you collaborate on debugging code snippets. If you're not familiar with the idea, most people use it like this: submit a code fragment to pastebin, getting a url like hxxp://yoursite.com/1234, paste the url into an IRC or IM conversation, someone responds by reading and perhaps submitting a modification of your code, you then view the modification, maybe using the built in diff tool to help locate the changes
Http FX is a HTTP request mockup tool developed in JavaFX. It can make a HTTP request to a location with request parameters, HTTP authentication. It supports GET, POST, PUT and DELETE operation, and you can specify the encoding for sending data.
Unlimited organizations, 3 enterprise SSO connections, role-based access control, and pro MFA included. Dev and prod tenants out of the box.
Auth0's B2B Essentials plan gives you everything you need to ship secure multi-tenant apps. Unlimited orgs, enterprise SSO, RBAC, audit log streaming, and higher auth and API limits included. Add on M2M tokens, enterprise MFA, or additional SSO connections as you scale.
The Design By Contract framework for C++ allows developers to design software that accomplish the specification requirements. Obscure bugs in software are shown quickly due to its precond, postcond, class/loop invariants and new/delete runtime analysis.
...It does dynamic memory management with malloc and looks for potentiazl problems and leaks. It can also free up all leaked memory at the end of the program. I am currently working on hooking the new and delete keywords to wor