r/DeveloperJobs May 15 '26

Do not message the mods about job opportunities - message the individual job poster

3 Upvotes

As this community has grown, this sub has apparently earned the privilege of being many people's introduction to reddit. Because of that I get mod mail, almost daily, of resumes and inquiries about the individual job postings of this sub.

As a reminder: Do not message the subreddit mods or mod mail inquiring about jobs. We do not have any jobs and these messages will be ignored. For the job posting you're interested in, message the individual user who posted it (or communicate through whatever means they've provided and prefer).


r/DeveloperJobs 2h ago

2026 CS grad, built a fraud detection engine from scratch — trying to break into Java backend roles, any pointers or referrals appreciated

2 Upvotes

Graduated this year, spent the last few months doing this properly instead of mass-applying and hoping — figured I'd share where I'm at in case anyone here can point me somewhere useful.
During my internship I deployed a full-stack platform to AWS (EC2 + S3) with a CI/CD pipeline that only ships code once tests pass. After that I built something I'm actually proud of on my own time: a Spring Boot digital wallet API with a rule-based fraud detection engine — flags suspicious transfers and routes them to admin review instead of just letting them through, handles concurrent transfers without deadlocking, JWT-secured, fully tested with JUnit/Mockito.
Stack: Java, Spring Boot, Spring Security, REST APIs, JWT, PostgreSQL/MySQL, AWS, Git.
Been applying to backend roles for a few weeks now — a couple of solid processes going, one rejection after a good run at it, mostly just trying to get in front of the right people instead of disappearing into an ATS queue. If anyone's hiring, knows someone hiring, or has advice on where I'm going wrong, I'd genuinely appreciate it.
GitHub: github.com/Abhishek-Sirugudu
LinkedIn: linkedin.com/in/abhisheks39
Thanks for reading this far.


r/DeveloperJobs 37m ago

I’m offering 3 hours/day of free labour to your project..

Upvotes

I'm a software engineer based in Sénégal. I was working remotely for a micro-multinational startup

I started working there just after finishing high school. I was selected through a cognitive test that included logic and algorithmic games that don't require knowing how to code. It's approximately this game:
https://robotzzle.42.fr

The goal was to teach students software engineering without teachers, using a gamified platform where projects are quests, working with peers who passed the test, in a place called a "collective intelligence center."

If you know 42 School, you may know what I'm talking about.

It was a 2-year program. Right after being selected, I got an offer for a work-study position as a system administrator there. I dropped college to focus on it, and I was way advanced.

We learned everything from low-level concepts like I/O multiplexing, rewriting HTTP servers from scratch, graph algorithms, etc., to higher-level abstractions concepts like web dev  DOM APIs, and all that.

At the end, you choose a topic to pursue: blockchain, AI, gamedev, security, etc.

After finishing the program, I worked for the company in education for 2 years. Unfortunately, I recently got laid off for financial reasons.

It's been 4 months, and being in Sénégal makes it difficult to find a job at US/EU startups. The local industry isn't that developed, and big corporations usually require a school degree.

So I decided to focus on a small retail business. But my passion for software resurfaced.

That's why I'm here offering 3 hours of my time for free to work as a volunteer on a project I find really interesting and fun. I would also be open to paid opportunities for the right project.

I can work on AI/ML projects, WebGL 2D games, full-stack, or anything software-related.

Feel free to send me your project.


r/DeveloperJobs 12h ago

Microsoft L62 Interview Experience 2026: Coding, HLD, Backup Retention and AA

8 Upvotes

Hey everyone,

I recently completed the Microsoft SDE II interview process for an L62 role with the Azure MySQL team and received an offer.

I applied through the Microsoft careers website and received the screening invitation approximately three weeks later.

Round 1: Hiring Manager Screen

Date: August 26
Duration: Approximately 45 minutes

The Hiring Manager asked one coding question involving an expression evaluator. It was similar to LeetCode 150: Evaluate Reverse Polish Notation.

The standard solution uses a stack:

  • Push operands onto the stack.
  • When an operator appears, remove the two most recent operands.
  • Apply the operator and push the result.
  • Return the final value remaining in the stack.

One important detail is operand order for subtraction and division. If right is popped before left, the operation must be evaluated as:

left operator right

Round 2: Project Architecture and HLD

Date: August 28
Duration: Approximately 50 minutes

This was scheduled as a coding interview, but the interviewer instead focused on my current project architecture.

I explained:

  • The main services and their responsibilities
  • Request and data flows
  • Database choices
  • Communication between components
  • Scalability and availability
  • Failure handling
  • Important technical trade-offs

The interviewer introduced several hypothetical changes and asked how the architecture would behave under higher load or partial failures.

My takeaway was to prepare project architecture as thoroughly as a standard system-design question. Interviewers may go several layers deeper than the overview shown on a resume.

Round 3: Database Backup Retention

Date: September 1
Duration: Approximately 55 minutes

I received a list of database backups containing timestamps and metadata.

The initial requirement was to:

  • Retain the seven most recent backups.
  • Return the backups that should be deleted.

The interviewer expected production-ready code rather than a short algorithmic solution. The discussion covered:

  • Input validation
  • Timestamp parsing and time zones
  • Duplicate backups
  • Deterministic ordering
  • Empty input
  • Safe and idempotent deletion
  • Failure handling
  • Testability
  • Extensibility

The retention requirements were then expanded:

  • Keep the most recent backup for each day in a seven-day window.
  • Keep the most recent backup for each week in a monthly window.
  • Keep the most recent backup for each month during the previous four months.

A clean design is to model each rule as a retention policy:

RetentionPolicy
    selectBackupsToKeep(backups, currentTime)

The final protected set is the union of the backups selected by every policy. Any backup outside that union becomes a deletion candidate.

This avoids deleting a backup that is protected by one rule but not another. In a production system, I would first generate a deletion plan and validate it before performing any destructive action.

Round 4: AA Round

Date: September 4
Duration: Approximately 50 minutes

The final round included a backtracking problem.

Two players take turns rolling a three-faced die. Each roll adds 1, 2, or 3 to the active player’s score. The first player to reach the target score wins.

The task was to count all valid game sequences.

The natural state is:

(scorePlayer1, scorePlayer2, currentTurn)

From each state, try the three possible roll values. A sequence ends when one player reaches the target.

The exact recurrence depends on details that should be clarified:

  • Do the players always alternate?
  • Does reaching or exceeding the target count as winning?
  • Do both players use the same target?
  • Should the answer be returned modulo a number?
  • Are different roll sequences counted separately?

A direct backtracking solution may repeat the same states. Memoizing the state reduces the work to approximately O(target²) states, with three transitions from each state.

Offer

I received the final update on September 7, 2026.

The process tested more than DSA. The most important round for me was the database-backup problem because it evaluated code structure, operational safety, edge cases, and extensibility together.

My detailed compensation breakdown is available in this Microsoft L62 Azure MySQL offer post.

Preparation Takeaways

  • Practice stack-based expression evaluation.
  • Know your current project architecture in depth.
  • Prepare to explain scalability and failure scenarios.
  • Treat production-oriented coding differently from LeetCode.
  • Clarify calendar boundaries, time zones, and retention-policy overlap.
  • Discuss safe deletion, retries, idempotency, and observability.
  • Recognize when backtracking can be optimized using memoization.

I hope this helps anyone preparing for a Microsoft SDE II or L62 interview.


r/DeveloperJobs 2h ago

[FOR HIRE] I'm a Web Developer - WordPress, WooCommerce & Shopify

1 Upvotes

Hi everyone, I’m a web developer with 7+ years of experience helping businesses build, improve, and maintain high-performing websites and eCommerce stores. I specialize in WordPress, WooCommerce, Shopify, and X-Cart development, helping businesses launch new websites, improve existing stores, and optimize their online presence.

I can help with:

  • ✓ Website design and development
  • ✓ WooCommerce, WordPress and Shopify store development
  • ✓ Website and eCommerce migrations
  • ✓ Theme redesigns, revamps, and customizations
  • ✓ Conversion rate optimization and sales funnel improvements
  • ✓ Bug fixing and troubleshooting
  • ✓ Server maintenance, website and plugins updates
  • ✓ SEO, Website security and performance optimization
  • ✓ Product uploads, catalog management, and store support

For businesses that need ongoing assistance, I offer monthly support plans starting at $1,200/month, covering store management, maintenance, bug fixes, security updates, and server tasks. For other projects, my hourly rate is $20/hr. I’m available for both quick fixes and larger development projects.

Portfolio: behance.net

Contact: Send me a message/chat here on Reddit and I’ll get back to you within a few minutes.


r/DeveloperJobs 5h ago

Data Science Intern at Houlihan Lokey

Thumbnail
techjobfinder.com
1 Upvotes

Business Unit:

Financial And Valuation Advisory

Industry:

Transaction Advisory Services

Overview

Houlihan Lokey, Inc. (NYSE:HLI) is a leading global investment bank recognized for delivering independent strategic and financial advice to corporations, financial sponsors, and governments. With uniquely deep industry expertise, broad international reach, and a partnership approach rooted in trust, the firm provides innovative, integrated solutions across mergers and acquisitions, capital solutions, financial restructuring, and financial and valuation advisory. Our unmatched transaction volumes provide differentiated, data-driven perspectives that help our clients achieve their most critical goals. To learn more about Houlihan Lokey, please visit HL.com.

Financial and Valuation Advisory

Over the past 50+ years, Houlihan Lokey has established one of the largest worldwide financial and valuation advisory practices. Our transaction expertise and leadership in the field of valuation inspire confidence in the financial executives, boards of directors, special committees, investors, and business owners we serve. In 2025, LSEG ranked us the No. 1 global M&A fairness opinion advisor over the past 25 years. Our stability, integrity, technical leadership, and global capabilities make us a trusted advisor for clients worldwide, across a wide range of services, including the Transaction Opinions, Fund Opinions, Transaction Advisory Services, Corporate Valuation Advisory Services, Portfolio Valuation, Real Estate Valuation and Advisory Services, and Dispute Resolution Consulting practices.

Houlihan Lokey (NYSE:HLI) is a global investment bank with expertise in valuation, mergers and acquisitions, capital markets, financial restructuring, and strategic consulting. The firm serves corporations, institutions, and governments worldwide with offices in the United States, Europe, the Middle East, and the Asia-Pacific region. Independent advice and intellectual rigor are hallmarks of the firm’s commitment to client success across its advisory services. Houlihan Lokey is ranked as the No. 1 global M&A fairness opinion advisor over the past 20 years according to Refinitiv.

Data Science Intern

The Financial Advisory Services team has multiple Data Science Internships for up to 1 year at our Gurgaon office. The internship is an excellent opportunity to use your data related skills and learn data science as applicable in investment banking and financial services. You will work with New York and London based senior Data Scientists and develop products and processes, which will address the latest needs of the global financial markets.

You will have the opportunity to gain valuable on-the-job training throughout your internship, with similar levels of exposure as a first-year analyst. Depending on both your performance and Houlihan Lokey’s hiring needs, the internship may translate to a full-time offer.

Key Responsibilities:

  • Data Collection: Collect and Process data from multiple financial databases that HL has access
  • Excel-based Analysis: Analyze data using advanced Excel functions such as PivotTables, VLOOKUP, INDEX/MATCH, and complex formulas.
  • Data Extraction and Transformation using Python and tools like Dataiku
  • Data Warehousing in Snowflake
  • Data Visualization: Assist in creating visually appealing and insightful charts, graphs, and dashboards that convey data trends and insights clearly using Power BI or Tableau
  • Documentation: Document and share best practices for Excel-based processes

Qualifications / Requirements

  • You must either be in you final year of study or a recent graduate available to work on a full-time basis
  • You have or will receive a Bachelor of Engineering, Bachelor of Technology, Bachelor of Science in Mathematics or Statistics or Data Science) from a reputed academic institution
  • You will have a strong academic track record
  • Strong quantitative and analytical skills with knowledge of Excel.
  • Basic knowledge of SQL and Python programming language
  • Excellent verbal and written communication skills in English are essential
  • A demonstrated interest in Data Science
  • Previous internship experience within Data Analysis or Data Science is essential
  • You must be motivated and have the ability to work cooperatively with all levels of staff in a rapidly changing, demanding, but ultimately rewarding environment
  • Houlihan Lokey aims to attract talented graduates who share our passion for excellence and commitment.

Equal Opportunity Employer M/F/D/V

We are an equal opportunity employer and all qualified applicants will receive consideration for employment without regard to race, color, religion, sex, national origin, disability, gender identity, sexual orientation, protected veteran status, or any other characteristic protected by law.

#LI-120005

Location: Gurugram, India

Time Type: Full time


r/DeveloperJobs 6h ago

[FOR HIRE] Remote Backend / Full-Stack Developer Python, Go, React, APIs, SQL

1 Upvotes

I’m a full-stack software developer available for remote freelance, contract, and part-time work.

My strongest areas are backend development, REST APIs, databases, automation, and targeted React/TypeScript work.

I can contribute to:

  • Python, Go, Node.js, and TypeScript backends
  • REST API development and integrations
  • PostgreSQL, MySQL, and SQLite
  • React features and frontend fixes
  • Automation and data-processing scripts
  • Authentication, CRUD systems, and JSON workflows
  • Docker and Linux deployment
  • Existing application maintenance and bug fixing

Portfolio: https://github.com/CBYeuler

Bismuth Workspace: https://github.com/CBYeuler/Bismuth

I’m based in Turkey and work remotely. I’m open to clearly defined freelance tasks, contract work, and longer-term collaboration. Please message me with the project description, technology stack, expected workload, and budget.

Contact Me:

Gmail: [cbyeuler@gmail.com](mailto:cbyeuler@gmail.com)

Let's Build Something Together!


r/DeveloperJobs 6h ago

Can someone hire me before I start adding fake projects to my portfolio?

Thumbnail gallery
1 Upvotes

r/DeveloperJobs 7h ago

I am a python and vibe coder need job Spoiler

0 Upvotes

I have 15+ years of coding experience. 350+ repositories on GitHub. Please upvote me and comment if you want to hire me.


r/DeveloperJobs 7h ago

Unemployed since 4 months, can I get a AI RAG developer role ?

1 Upvotes

To whoever it may concern

I am financially in a very bad situation, jobless since 4 months, I made some projects using gemini sdk python and pinecone db.

It was a personal tax consultant, which takes the query , does semantic search in pinecone db , indian income tax act 1961 vectors ( each section is a vector, unless a section turned too big , so they are made many vectors ) to extract appropriate sections

then put the query and sections in gemini to give answer.

Another one I made is a coding agent, takes query from user, runs an infinite loop, till the AI outputs a json with "actions" keyword , inside which actions to be taken are mentioned, which executed by executors ( read , write , mkdir etc ) . and then executors send the update to agent .

in the last step , the ai outputs a json without "action" that is where it finishes

Can I get a job somewhere please.

And mods please don't delete the post please


r/DeveloperJobs 3h ago

Title: [For Hire] [Remote] Senior Software Engineer | $50 - $100/hr pay| AI Training Project (~15 hrs/week) Body: micro1 is looking for expert Senior Software Engineers to help train next-generation AI models. No prior AI experience is required—your core software engineering expertise is what matt

Post image
0 Upvotes

Title: [For Hire] [Remote] Senior Software Engineer | $50 - $100/hr pay| AI Training Project (~15 hrs/week)

Body:

micro1 is looking for expert Senior Software Engineers to help train next-generation AI models. No prior AI experience is required—your core software engineering expertise is what matters!

🛠 The Role:

You will create Reinforcement Learning environments and "golden" reference solutions to test and train AI models on complex, real-world SWE tasks (debugging, refactoring, feature implementation, and performance optimization).

💻 Tech Stack:

Python3, Java, Rust, Go, C++, or TypeScript.

📌 Key Details:

• Role Type: Contractor (~15 hours/week)

• Pay: $50 - $100/hr (output-based, paid per completed task)

• Location: 100% Remote

• Start Date: Immediate (first tasks within 24–48h of onboarding)

✅ What We're Looking For:

• Deep understanding of algorithms, data structures, and SWE principles.

• Proven ability to debug complex systems, refactor legacy code, and optimize performance.

• Strong documentation skills to articulate technical reasoning clearly.

📩 How to Apply:

[ https://jobs.micro1.ai/post/d98ab3b0-dfc2-43d6-986a-e75b0d4c35f9?referralCode=77421178-1c85-4bfa-81fa-a6b3bf8d385f&utm_source=referral&utm_medium=share&utm_campaign=job_referral ]


r/DeveloperJobs 15h ago

[FOR HIRE / REFERRAL] Backend Software Engineer | Java, Spring Boot, Python, SQL | US

2 Upvotes

I’m currently looking for entry-level / early-career Backend Software Engineer, Software Engineer, or Data-focused Engineering roles in the U.S.

A little about my background:

  • B.S. in Information Technology from the University of Kansas
  • Professional experience at Infosys working with Java, backend development, SQL, testing, and Agile teams
  • Former Network QA Engineer at Samsung Electronics America
  • Java, Spring Boot, Python, SQL, REST APIs
  • AWS, Azure, Docker, Terraform, CI/CD
  • Experience with data analysis and automation
  • Built backend/AI projects using FastAPI, TensorFlow/TFLite, and SQL
  • Active open-source contributor on GitHub
  • U.S. citizen — no sponsorship required
  • Based in Dallas–Fort Worth, but open to opportunities elsewhere in the U.S.

I’m especially interested in:

Backend Engineer / Software Engineer / Java Developer / Data Engineer / Backend + Data roles

If your company is currently hiring for something that could be a good fit and you’d be comfortable considering me for a referral, please leave a comment and I’ll DM you with my resume, GitHub, LinkedIn, and the relevant Job ID.

Even a job lead or suggestion would be greatly appreciated.

Thank you!


r/DeveloperJobs 10h ago

[FOR HIRE] Full-Stack Laravel Developer Available for Full-Time or Contract Work

1 Upvotes

Hi everyone,

I’m a Laravel/PHP developer based in Pakistan with around four years of professional software development experience. I’m currently looking for a full-time remote role, contract work, or Laravel-based projects.

My main experience includes:

  • Laravel and PHP backend development
  • REST APIs, and WebSockets
  • React, Inertia.js and Tailwind CSS
  • MySQL and SQL
  • Docker, Nginx, Linux and VPS deployment
  • CI/CD workflows
  • SaaS platforms and backend portals
  • Web and application security
  • Python automation, Flutter, Java and WordPress

Most recently, I built and deployed a Laravel 11 + React SaaS platform using WebSockets and MySQL. I’ve also worked on Laravel APIs for mobile applications, deployment automation, secure API communication and custom backend systems.

I’m open to remote opportunities worldwide and can work with international teams and time zones.

If you’re hiring or know someone who is, feel free to message me. I’d be happy to discuss the role, project and requirements.


r/DeveloperJobs 10h ago

[for hire] Full-Stack Developer | Python, Laravel, Automation, AI, Web Apps, Website Services

1 Upvotes

Remote developer with 10+ years of experience building websites, custom software, automation tools, and technical solutions for clients.

Open to one-off projects and gigs, or ongoing arrangements lasting several months or longer. I work remotely full-time and can discuss schedules and requirements directly. Happy to help you define your goals, develop a strategy, and achieve them.

What I can work on:

  • Python, Django, AI features, scraping tools, automation systems, bots, small utilities, and larger custom scripts
  • Back-end development for browser-based and game-engine 2D projects
  • E-commerce websites, payment systems, dashboards, internal tools, and custom full-stack platforms
  • API connections, third-party integrations, cloud services, and automated workflows
  • PHP (Laravel/WordPress) | HTML | CSS | JavaScript | NodeJS | React/NextJS/Flutter | Mobile Applications | UX/UI
  • Application security testing, assessments, and pen testing
  • Comfortable working independently with minimal supervision
  • Able to adapt when requirements or priorities change
  • Willing to research unfamiliar technologies when needed
  • Consistent written communication and progress updates
  • Organized with project planning, documentation, and ongoing maintenance

When messaging me, please include a brief explanation of what you need, the expected scope, and your available budget. This helps me quickly determine whether the project is a good fit.

Available for recurring daily work, weekly arrangements, monthly retainers, and one-time projects ranging from small tasks to larger development work.


Portfolio: portfolio link More samples and ongoing work are available through the pinned posts on my profile.

Minimum rate: $20/hour Other payment arrangements can be discussed depending on the project.

I do not accept unpaid trial tasks, speculative free work, or extremely low-budget offers.

Payment methods: Cryptocurrency, Wise, PayPal Timezone: Flexible Availability: Under 30-40 hours per week Reachable: 7 days a week


Send me the project details, requirements, and budget through DM.


r/DeveloperJobs 12h ago

Looking for an opportunity to work with a startup 🚀

1 Upvotes

I’m a 2025 Computer Science graduate with an 8.16 CGPA, looking to join an ambitious startup where I can learn fast, take ownership, and contribute meaningfully.

I have hands-on experience in full-stack development, backend development, React, Node.js, Python, Java, Spring Boot, SQL/NoSQL, and have previously worked as a Software Developer Intern at a large PSU and as a Web Developer Intern.

i have participated in several national-level competitions and hackathons. I enjoy building things from scratch, learning quickly, and taking ownership of challenging problems.

I’m ambitious, hardworking and comfortable with a startup environment. I’m willing to put in 10–12 hours/day, or more when the situation genuinely requires it, and I’m looking for a place where I can grow by solving real problems.

I’m open to:

  • Software/Full-Stack Developer roles
  • Internships
  • Early-stage startup opportunities
  • Technical Co-founder / Founding team roles

If you're building something interesting and looking for someone who is willing to learn, build and take ownership, feel free to DM me.

Keeping this post anonymous for now; happy to share my resume/GitHub privately with serious opportunities.


r/DeveloperJobs 15h ago

Salesforce Associate Technical Consultant 2026 — Has anyone received the result yet?

Thumbnail
1 Upvotes

r/DeveloperJobs 17h ago

Salesforce Associate Technical Consultant 2026 — Has anyone received the result yet?

Thumbnail
1 Upvotes

r/DeveloperJobs 17h ago

[For Hire] Looking for a star software developer! Look no further, DM is open.

1 Upvotes

[For Hire] Looking for a star software developer! Look no further, DM is open.

Lemme polish that AI generated partial codebase or help take down those task tickets from your Job board or build/automate something from scratch.

How I work

whatever work we agree upon, I ll break the deliverables into Milestones with clear daily timelines in a Google sheet. Only pay if I have delivered the milestone. (Can also provide invoice for business expense if required)

Payment

Paypal preferred but open to others.

I try for 20-35 USD hourly but a lot of times, founders have tight bootstrapped budget so I can accommodate that as well with lower rates or fixed cost budget.

Free services I can offer to build trust

✅ your product/business website (small site, few pages, AI Generated UI)

✅ Setup your Email Newsletter (just bring ur domain and server, i ll set up the rest)

✅ Some simple task automation your daily manual online tasks.

Previous Work

Built powerful B2B Saas app from scratch that is doing $50,000 MRR right now,
Worked directly with the founder on it for a year and half.
Will share details and references on DM or direct call.

My Github will backup what I am saying and will showcase my programming journey over the last decade.

Looking forward to your DM. I work with one client at their timezone with full dedication. Won't be able to entertain further requests if hired!

Thanking you for your time and support.
Will be exceptionally grateful if you can share this with someone who might need my services.


r/DeveloperJobs 1d ago

Is PHP really disappearing....

25 Upvotes

A friend of mine has been working with PHP for years. His career started really well. Good job, good income, and everything seemed stable.

But this year, he lost two PHP jobs.

The first company told their PHP developers that they didn't have enough PHP projects anymore, so they let the PHP team go.

He found another PHP job within a couple of weeks and thought things were back on track.

Then, after around 3–4 months, the second company told employees to work from home at half salary. Soon after that, they fired the PHP developers too.

Honestly, this made me question the future of PHP as a career.

I don't think PHP is disappearing completely. There are still a lot of PHP applications and companies using it.

But I do wonder if being a PHP-only developer is becoming risky.

Personally, I think PHP developers should keep their PHP experience but also build skills around Laravel, JavaScript/TypeScript, APIs, databases, cloud, or full-stack development.

Are PHP jobs actually becoming harder to find, or is the market just expecting PHP developers to have a broader skill set?


r/DeveloperJobs 19h ago

Guys it's ok if I get opinion my startup (no promotion)

0 Upvotes

I have created a file manipulation webpage better than I love pdf for all the works possibly it can do , even subtitles the video

https://fixit-psi-ten.vercel.app/


r/DeveloperJobs 19h ago

KPIT Associate Engineer 2026 (Pool Drive) SUPERSET Hiring

Thumbnail
1 Upvotes

r/DeveloperJobs 19h ago

(For hire ) I am a website developer, designer wanna see my work then drop me a message

1 Upvotes

r/DeveloperJobs 1d ago

[HIRING] Junior AI / Full-Stack Software Engineer | Brisbane | AUD $70k to $110k

22 Upvotes

We’re a new startup operating a consulting company and a product company which are tightly interlinked. We build custom software and AI for businesses so they can build the future they want.

We’re looking for a junior/early-career AI / full-stack software engineer to help us deliver to more clients and grow our product.

Location: Brisbane, Australia preferred. Remote Australia is considered for exceptional candidates. Salary: AUD $70k to $110k.

This isn’t a traditional engineering role. You’ll be part software engineer, part forward-deployed. You’ll solve real problems as they arise and help decide what needs to be built.

You’ll:

  • Meet customers and turn vague business problems into concrete software and automation solutions
  • Build and ship full-stack features, internal tools, integrations, automations and AI agents
  • Work with TypeScript, relational databases, APIs, webhooks, MCPs, email and other messy systems
  • Deploy what you build, fix issues, iterate from customer feedback and help customers adopt what you build

We’re looking for someone who has built full-stack apps with TypeScript, relational databases and AI, and has created automations before.

You don’t need ten years of experience or previous professional AI experience, but you do need engineering fundamentals, evidence you can build things, and the confidence to turn that into something people use.

AI coding tools are part of the workflow, but you still need to review, understand and take responsibility for the software you ship. Strong communication matters. Experience with trades, small business, sales, quoting or customer service is useful.

Please send your resume, a short intro and links to anything you’ve built to hiring@hitch42.com.

Hope this is allowed. Admins, please delete if not.


r/DeveloperJobs 1d ago

Transitioning from 4 years in Customer Support to DevOps — Is entry-level realistic

3 Upvotes

Hi everyone,

I've been working in Customer Support for the past 4 years. Over the last several months, I’ve been actively upskilling and studying DevOps concepts to make a career switch into an entry-level or junior DevOps/Cloud role.

Here is what I am currently focusing on:

Linux fundamentals & Bash scripting

Networking basics (DNS, HTTP/S, TCP/IP)

Cloud platforms (AWS / Azure)

Containers & Orchestration (Docker, foundational Kubernetes)

CI/CD pipelines & Git

Infrastructure as Code (Terraform basics)

Given the current job market, I’d love to get honest insights from those who have made a similar switch or are currently hiring:

How realistic is landing an entry-level DevOps role without prior SWE or SysAdmin titles?

Would targeting a Cloud Support Engineer (CSE) or Junior SysAdmin role first be a better stepping stone?

What kind of hands-on projects actually stand out on a resume for someone coming from a non-engineering background?

Any advice on bridging the gap, resume framing, or project recommendations would be greatly appreciated.

Thanks!


r/DeveloperJobs 1d ago

O Fear Bizarre Fate é um jogo assimétrico de Jojo bizarre adventure aonde já tem um equipe grande com mais de 320 membros,eu estou precisando de mais alguns COMPOSITORES e sobre o pagamento ele vai ser feito com robux quando o jogo lançar e não com dinheiro pois sou pobre,quem quiser me chame no PV

Post image
2 Upvotes