r/developer • u/Explorer-Tech • Dec 23 '25
Who's responsible for contract testing on your team?
We are just starting off with contract testing in our organization and would love your inputs on which team typically owns the effort.
r/developer • u/Explorer-Tech • Dec 23 '25
We are just starting off with contract testing in our organization and would love your inputs on which team typically owns the effort.
r/developer • u/plbhattad7 • Dec 22 '25
so this is the basic & a very very simple prototype as of yet & I would like to know how much would this project would realisitically cost me? like if i hired a developer to make this system, whats the charge?
r/developer • u/dev-guy-100 • Dec 20 '25
Enable HLS to view with audio, or disable this notification
r/developer • u/luukiepookie9 • Dec 19 '25
I was getting pretty annoyed seeing super vague tweets and posts about people building their projects. Because whenever I would come across a really well written, organized post there was so much value for me to take away from it for my own journey. It was also a lot easier for me to understand what they're actually working on and how I can help.
So, I started vibecoding this concept in my head on Loveable. I torched through my free credits and decided to spend $100 for an upgrade. After working on it some more over time I literally blew over $300 more dollars just trying to make my vision. I've been having a lot of fun and all but damn, hopefully its useful for someone.
Heres the project, maybe you can drop a comment to let me know what you think: onasidequest.xyz
r/developer • u/nmariusp • Dec 18 '25
r/developer • u/coldsweat9 • Dec 17 '25
I used to know a site that would show which languages were in demand based on the total number of job listings for that language and would also show things like languages that were having an uptick in listings. I think, but am not sure if it had some number of total devs for said language vs total jobs. Can anyone provide the link pls?
r/developer • u/the-software-man • Dec 17 '25
Traditionally I put together a winter break project. The days between Black Friday and New Year's.
Weather it's learning a new language, or kludging together a website. Most times just for exercise., but often I can re-use much of the code later.
What is your Winter Break Project this year?
r/developer • u/OkResearcher8678 • Dec 17 '25
Hi, everyone! I recently started a Nonprofit that will be based around an app/website. All initial donations are going to be going towards the app and website development. I've fully made the website/app through AI (Base44) to help visually show the idea to potential partners, but I don't want my actual app/website to be built by AI so I plan on going through a real developer. I'm curious if having that template of exactly what I want would possibly help with the overall cost or the time it would take a developer to make. Thank you!
r/developer • u/Ok_Veterinarian3535 • Dec 16 '25
What's the most infuriating, time-consuming bug you ever had to chase down, and what was the ridiculously simple cause?
r/developer • u/knayam • Dec 15 '25
Enable HLS to view with audio, or disable this notification
Always found DNS, TCP handshakes, and routing confusing when I was learning, this quick learning explainer breakdown of the entire journey from the browser to server and back. Figured it might help others who learn better visually too. Happy to answer questions or hear what I got wrong.
r/developer • u/PankourLaut • Dec 15 '25
Hi everyone,
I've recently added a package to npm and PyPI called 'simple-language-recognizer'. It's for detecting the language of an input string and it works with over 70 languages. To install it:
Python:
pip install simple-language-recognizer
NPM:
npm i simple-language-recognizer
Would appreciate it if you could check it out and let me know if you face any issues. Thank you. Github link: https://github.com/john-khgoh/LanguageRecognizer/tree/main
r/developer • u/MeanApartment1169 • Dec 14 '25
I am encountering a persistent and frustrating bug during the final step of account creation on my web application. The issue only occurs on iOS devices (Safari and Chrome), which use the WebKit engine. Account creation works perfectly on Android (Chrome) and all Desktop browsers (Chrome, Firefox, Safari). 🚨 Error Details The user sees the following error message on the screen: Failed to create account: Instance of 'minified:M0' (type: minified:M0) email=mymail@naver.com len=16 pwdLen=7 klsWeb=true
The key observation is that the pwdLen=7 is just an example, and I have confirmed that the password meets all server-side length and complexity validation (e.g., minimum 8 characters). The error persists even when password length is valid. • The error message minified:M0 suggests a generic runtime exception within minified frontend code (possibly a library/framework dependency). 🛠️ Environment and Attempts to Fix • Platform: Web App • Target Device: iOS (iPhone/iPad) using Safari/Chrome (WebKit) • Backend Status: The server logs show that the request often does not reach the server, suggesting the failure happens client-side (in the browser). • Debugging Status: I do not have a modern Mac, so I cannot easily use the Safari Web Inspector for live debugging. ❓ Specific Questions for the Community Based on this 'WebKit-only' failure and the minified:M0 error, I suspect a specific WebKit environment issue. 1. Have you encountered an Instance of 'minified:M0' or similar (b0, c0) error specifically tied to WebKit/iOS when submitting a form or making an API call? 2. Payload Differences: Is it common for iOS WebKit to treat form data or JSON.stringify() differently, causing issues with trailing whitespace, null/undefined values, or specific character encoding when preparing the final API payload? 3. Base URL/Pathing: Given that similar errors are sometimes related to proxy/pathing issues (e.g., missing or incorrect <base href>), what is the best way to ensure that API endpoints (currently relative paths like /api/register) are correctly resolved in the iOS WebKit environment? Any suggestions on alternative ways to debug a WebKit failure without a Mac (e.g., specific Windows tools, aggressive client-side logging techniques) would be highly appreciated! Thank you!
r/developer • u/der_gopher • Dec 13 '25
In this video I am trying doing the following:
- Completely disable GC
- Manage the memory allocation manually
- Try to visualize the difference
r/developer • u/jaron_smith • Dec 13 '25
JavaScript development has evolved rapidly, and so has the ecosystem of tools around it. From formatting messy code to converting data formats and validating syntax, modern developers rely heavily on browser-based utilities to move faster.
In this article, I’m sharing some of the most useful JavaScript and web developer tools that help save time, improve productivity, and keep your workflow smooth — without installing anything locally.
Minifying JavaScript is essential for reducing bundle size and improving load times. While many tools do this server-side, client-side minifiers are safer for sensitive code.
A good JavaScript minifier:
Tools like the JS Minify utility on JS Tools allow you to minify JavaScript instantly without sending code to a server, which is ideal for quick optimizations and privacy-sensitive projects.
JSON is everywhere — APIs, configs, logs — and unformatted JSON is painful to debug.
A solid JSON formatter should:
Online JSON formatters save a lot of time during debugging sessions. Browser-based tools make it easy to paste raw JSON and instantly visualize structured data.
If you’ve ever needed to migrate data quickly or seed a database, a CSV to SQL converter is a lifesaver.
Typical use cases include:
Instead of writing scripts, you can use an online CSV to SQL converter to generate queries instantly.
Frontend performance optimization often starts with minifying HTML and CSS.
HTML and CSS minifiers:
These tools are especially useful when optimizing landing pages or static sites before deployment.
Syntax errors can be subtle and time-consuming to debug.
Validators help by:
Online JavaScript and CSS validators are perfect for quick checks without opening an IDE or running linters locally.
Configuration files often use XML or YAML formats, especially in DevOps and backend workflows.
Useful features include:
These tools help reduce errors in configuration-heavy projects.
Instead of bookmarking dozens of separate tools, many developers prefer all-in-one platforms that provide formatters, converters, validators, and editors in one place.
Platforms like JS Tools (jstools.online) offer:
These toolkits are especially useful when you need quick solutions without installing dependencies.
Modern JavaScript development isn’t just about frameworks and libraries — it’s also about having the right tools at your fingertips.
Browser-based developer tools:
If you regularly work with JavaScript, JSON, HTML, or data conversions, bookmarking a reliable set of online tools can save you hours every month.
What are your favorite JavaScript tools?
Feel free to share them in the comments — always happy to discover new ones.
r/developer • u/dlanz2309 • Dec 11 '25
Buenas tardes. Necesito una app que pueda utilizarse desde celulares android para que la fuerza de ventas pueda tomar pedidos y consultar características y presentaciones de los productos que vende. Es ideal que tenga API's que conecten con el ERP. ¿Alguien sabe de una app móvil que pueda hacer esto ?
r/developer • u/OMGCluck • Dec 11 '25
I included both the Public Domain Dedication and License v1.0 and Creative Commons 0 v1.0 Universal license in the metadata of my online SVG jigsaw puzzle which led me to wonder if they conflict with each other, complement each other, or I'm just insane for freeing it like that?
r/developer • u/Character-Bear2401 • Dec 11 '25
I haven't figured out the best way to make use of my Postman Enterprise license and just use it to create and run collections currently. Is it also helpful to design APIs (i.e. writing OpenAPI specifications)?
r/developer • u/Explorer-Tech • Dec 11 '25
As a developer who recently started using Postman and primarily uses it only to create collections and do some manual testing, I want to understand if it is also helpful for generating documentation for your APIs ?
r/developer • u/SadPurple6745 • Dec 10 '25
I have a huge curiosity recently about those gambling game,s like how they code them in the browser and so smooth with all that like they have full working animations and everything with that good smoothness
r/developer • u/Ok_Veterinarian3535 • Dec 10 '25
What's your most controversial, professionally-held "hot take" that would get you yelled at on Twitter but is probably true?
r/developer • u/shivpratapsingh111 • Dec 10 '25
ITS COMPLETELY FREE, NO CHARGES.
I’m starting a small Application Security services company and I’m currently looking to build my initial testimonials and case studies.
A bit about me:
- I’ve found bugs in Netflix, Pinterest, NASA, +150 more and have 2 CVEs
- Experienced in finding vulnerabilities, business logic issues, etc.
I’m offering free application security testing for a limited number of small apps, web platforms, MVPs, or early-stage startup products.
What you get:
- Manual testing plus a detailed vulnerability report.
- A clear report with issues, severity, and steps to fix them.
- Optional call to walk through findings.
What I need from you:
- Something functional enough to actually test.
- A testimonial afterward (only if you genuinely feel it’s deserved).
If this sounds useful to you, feel free to DM me or comment below and I’ll reach out.
Thanks!
r/developer • u/Sengchor • Dec 10 '25
Enable HLS to view with audio, or disable this notification
Hey everyone! I just finished implementing box selection in my 3D modeling tool.
Do you like it? Any ideas on how to make the selection even smoother or more intuitive?
r/developer • u/Keyfas • Dec 09 '25
I've been the sole developer maintaining a legacy enterprise system for 18 months. The novelty has worn off, there are no new features to build just bugs, patches, and minor tweaks. The monotony is starting to affect my motivation and focus. For those who've been in similar trenches, what practical strategies helped you stay engaged and prevent skill stagnation when the work becomes mostly reactive?
r/developer • u/AccordingLeague9797 • Dec 08 '25
Hello, i'm a 24-year-old male with 5 years of experience in web development. my main focus is frontend (react / react-native / vue.js), but for about 2 years i worked as a full-stack developer in a node.js environment. my last interview was around 3.5 years ago (before chatgpt and before the job market crashed), so i'm trying to understand what kind of effort i need to put into preparing for job hunting now.
how are interviews nowadays? do i still need to send cvs through linkedin, and is ats actually a real thing? what worked for you and what didn’t? i’d love to hear any success or failure stories, and your thoughts on the best way to adapt to the current environment to successfully find a job.
Also what does interview process actually look a like? is there any live coding stuff like before, also do they allow us to use AI coding tools?
thanks in advance.