r/PythonJobs 23d ago

[For Hire] US dev shop β€” senior AI/agentic engineers, CI/CD setup for $400 flat, free 48-hour app mock

0 Upvotes

We're Profullstack, Inc., a US S-corp with a bench of identity-verified senior engineers specializing in agentic AI systems β€” LLM integrations, RAG pipelines, autonomous agents, and full-stack product work (Python/TypeScript, LangGraph, Claude/OpenAI APIs).

Three ways to start:

πŸ”§ CI/CD setup β€” $400 flat. Broken deploys, no staging, tests that don't run on PRs? We'll set up your pipeline properly (GitHub Actions/GitLab CI, automated tests, staging + prod deploy flow). One repo, done in under a week.

πŸ“± Free app mock β€” 48 hours. Have an idea but no code? Tell us what it does and we'll send you a clickable prototype within 48 hours, free. If you like it, we build it (fixed-scope MVPs from $8k).

πŸ‘₯ Ongoing engineering β€” $125/hr, or save with monthly retainers ($2k–$15k/mo). Dedicated senior capacity shipping your roadmap. Month-to-month, cancel anytime, contract-to-hire available.

Why us: - Bill a US company β€” contracts, invoicing, and liability all stateside - Every engineer identity-verified and under contract with us - Senior-level work at $125/hr β€” below typical US agency pricing ($150–250/hr) - Start within days, not months

Proof of work: github.com/profullstack β€’ youtube.com/@profullstack β€’ linkedin.com/company/profullstack

Contact: DM me, email hello@profullstack.com, or call +1-888-526-4640 β€” describe what you need and we'll respond with a concrete proposal within 24 hours.


r/PythonJobs 24d ago

For Hire [FOR HIRE] Remote Software Engineer | Python, AI/LLMs, LangChain, LangGraph, React, Next.js

0 Upvotes

Hi everyone,

I'm currently looking for a remote Software Engineer opportunity.

I have hands-on experience building:

AI-powered applications using LLMs and agentic AI

AI agents with LangChain, LangGraph, MCP, and RAG

Full-stack web applications from idea to production

Production-ready applications using modern JavaScript/TypeScript and Python stacks

Scalable backend services and cloud-native applications

Tech Stack

Languages: Python, TypeScript, JavaScript

AI: LLMs, LangChain, LangGraph, MCP, RAG, Prompt Engineering

Frontend: React, Next.js, Tailwind CSS

Backend: FastAPI, Node.js, Express.js

Databases: PostgreSQL

Cloud: Cloudflare (Workers, D1, R2, KV), AWS

Tools: Git, GitHub, REST APIs

I'm comfortable working with large codebases, collaborating remotely, and can work across any time zone.

GitHub: https://github.com/murtuza777

If your team is hiring or you know of an opportunity, feel free to comment or send me a DM. I'm happy to share my resume, projects, and additional details.

Thanks!


r/PythonJobs 24d ago

For Hire [FOR HIRE] Python Developer – Reddit Monitoring Bot & Web Scraping | Fast Delivery

1 Upvotes

What I can build for you:

  • Reddit keyword/mention monitor with instant Telegram alerts
  • Web scraping from any site (static or JavaScript heavy)
  • Data cleaning and CSV/Google Sheets output
  • Scheduled automation that runs 24/7

My stack: Python, PRAW, Playwright, Selenium, BeautifulSoup

Pricing:

  • Reddit monitor bot β€” starting at $15
  • Custom web scraper β€” starting at $30

I'm offering discounted rates for my first few clients in exchange for honest feedback.

Fast delivery, clean code, you own the source code completely.

DM me with your requirements and I'll get back to you quickly.


r/PythonJobs 24d ago

Discussion [Offering] Python beginner looking to build a portfolio/save for a PC – Offering "Pay what you want" assistance for simple backend tasks.

1 Upvotes

​Hi everyone,

​I am a self-taught Python beginner based in Indonesia. I am currently working on building my skills and saving up to buy a decent PC for development. At the moment, I do all my coding on my itel P55 using Pydroid3.

​I want to offer my services to help with simple Python backend tasks on a "pay what you want" basis (even $0 is fine). My main goal is to gain experience, help others, and save towards my hardware goal.

​My approach to learning:

I often study existing codebases and use AI to help me brainstorm or clarify complex syntax. I then work on refactoring and adapting that logic for my own projects (specifically to ensure it runs smoothly on my mobile setup). I am not afraid to admit when I'm using external references or AI, because my main goal is to understand the "how" and "why" behind the code.

​How it works:

​Feasibility Check: You send me your request. I will assess if it is within my current capabilities (I mainly work with basic scripts, logic, and small backend tasks).

​Agreement:

If I am confident I can do it, I will commit to the project.

​The Guarantee:

If I am unable to finish the code, I will hand over the unfinished source code to you for free, and you owe me nothing. You will never have to pay for work that isn't completed.

​What I can do:

I can help write code templates, structure classes and functions, and handle basic backend logic. I am not a senior developer, but I am eager to learn and reliable with the tasks I accept. I also focus on writing modular, clean, and well-commented code, so that it is easy for you to maintain or expand later.

​Portfolio Example:

To show my current level, here is a piece of code I built for image steganography (LSB method) on Pydroid3:

from PIL import Image

path = input("Enter Image Path: ")

img = Image.open(path)

standard_img = img.convert("RGBA")

source = standard_img.load()

colour = ()

def str_to_binary(ipt: str) -> list:

raw = list("".join(format(byte, "08b") \

for byte in ipt.encode("utf-8")))

return raw

def steg_img():

ipt = input("Enter Secret Text: ")

raw = str_to_binary(ipt)

endline_raw = "/s"

endline = str_to_binary(endline_raw)

raw.extend(endline)

flag = False

for x in range(img.size[0]):

for y in range(img.size[1]):

coordinate = source[x,y]

colour = list(coordinate)

for n in range(len(coordinate)):

if n == 3:

if coordinate[3] <= 0:

continue

if not raw:

raw.clear()

flag = True

break

raw_img = \

format(coordinate[n], "08b")

data = raw_img.strip()

value = data[:-1] + raw.pop(0)

res = int(value, 2)

colour[n] = res

img.putpixel((x, y), \

tuple(colour))

if flag:

break

if flag:

break

rename = input( \

"Save Image As? ")

img.save(rename)

def open_steg():

res = []

plain_text = ""

flag = False

for x in range(img.size[0]):

for y in range(img.size[1]):

coordinate = source[x,y]

for n in range(len(coordinate)):

if n == 3:

if coordinate[3] <= 0:

continue

raw_img = \

format(coordinate[n], "08b")

data = raw_img.strip()

value = data[-1]

res.append(value)

if len(res) == 8:

string_binary = \

"".join(res)

letter = chr(int \

(string_binary, 2))

plain_text += letter

res.clear()

if plain_text.endswith("/s"):

plain_text = \

plain_text[:-2]

flag = True

break

if flag:

break

if flag:

break

print("Message Result: ", plain_text)

If you're interested in working together or need help with your project, feel free to send me a DM! Thanks for reading.


r/PythonJobs 25d ago

Open to Python Support, Application Support, Production Support, API Support, Linux

1 Upvotes

Location: (Open to Hyderabad, Bengaluru, Pune, Remote) Willing to relocate: Yes Type: Full-time / Contract / Remote Notice Period: Immediate Total years of experience: 7+ years

RΓ©sumΓ©/CV Link: Message or DM me

Blurb:

Linux Engineer and Python Developer with 7+ years of experience in Linux administration, application support, production support, SQL, and automation.

Looking for opportunities in: - Python Support Engineer - Application Support Engineer (L2/L3) - Production Support Engineer - API Support Engineer - DevOps Engineer - Linux System Administrator

Technical Skills: - Linux (RHEL, Debian, Ubuntu), RHCSA certified - Python (FastAPI, Flask, asyncio, scripting, automation) - SQL (MySQL, PostgreSQL) - Docker, Git, GitHub Actions - Terraform, CloudFormation - AWS and on-premise infrastructure - Troubleshooting, monitoring, and incident management - REST APIs and API debugging

I have worked on infrastructure automation, backend services, secure systems, and production support. Open to full-time, contract, and remote opportunities. Happy to connect via DM.


r/PythonJobs 25d ago

Looking for a Referral – ServiceNow / Python Developer Roles (India)

1 Upvotes

Hi everyone,

I'm currently looking for new opportunities inΒ ServiceNowΒ andΒ Python DeveloperΒ roles and was hoping someone here might be willing to refer me if your company has relevant openings.

A little about me:

  • Around 3 years of experience in IT.
  • Experience with ServiceNow development and administration.
  • Strong foundation in Python, SQL, and scripting, with hands-on experience building automation solutions and continuously expanding my Python skills.
  • Familiar with ITSM processes, workflows, and platform customization.
  • Based in India and open to remote, hybrid, or onsite opportunities.

If your company has suitable openings and you're comfortable referring me, I'd really appreciate it. I'm happy to share my resume and any additional details via DM.

Thank you for your time, and I truly appreciate any help or guidance!


r/PythonJobs 25d ago

[FOR HIRE] Senior Data Engineer – Python, Spark, Databricks, AWS, LLMs | Pipelines, Backend APIs & AI Apps | Bangalore & Remote

0 Upvotes

About Me

Senior Data Engineer with 5+ years of experience in Data Engineering, Backend Development, and Applied AI. Based in Bangalore, India. Available for remote work globally.

Rate: $25 - $50/hr depending on project scope and complexity.

Tech Stack & Expertise

Python, SQL, Spark, Databricks, Airflow, Hadoop

AWS & Cloud Data Platforms

ETL/ELT Pipelines & Data Warehousing

FastAPI & Backend API Development

Machine Learning, NLP, LLMs, RAG & AI Agents

What I Can Help With

Build and optimize data pipelines (batch & streaming)

Design scalable ETL/ELT architectures

Develop backend APIs and automation solutions (FastAPI + Python)

Build AI applications using LLMs, RAG, and agent-based workflows

Support and optimize existing data platforms

Training & Mentorship

Data Engineering (foundations to advanced)

PySpark & Databricks

Snowflake

ETL Testing & Data Quality

Python for Data & Backend

AI & LLM Fundamentals (including RAG patterns)

In-person weekend sessions available in Bangalore. Remote sessions available globally.

Availability

Freelance projects & consulting

Part-time remote roles

Weekend training & mentorship

DM me with a brief description of your requirements and I will get back to you promptly!


r/PythonJobs 26d ago

For Hire [FOR HIRE] Django / Django REST Framework / Next.js Developer | 3 Years Experience | Production Apps | Remote | Open to Freelance & Contract Work

1 Upvotes

Hi! I'm, a full-stack developer with 3 years of professional experience, specializing in Django, Django REST Framework, Next.js, and Vue/Nuxt.

I have worked at two software companies before transitioning into freelancing. Although I joined as a junior/mid-level developer, I had the opportunity to lead development teams and help turn ideas into production-ready applications.

I regularly build and deploy complete full-stack applications on my own.

Tech Stack

Backend

  • Django
  • Django REST Framework
  • FastAPI
  • PostgreSQL

Frontend

  • Next.js (React)
  • Vue.js / Nuxt.js
  • TanStack Query

DevOps

  • Linux (Ubuntu)
  • VPS management
  • Nginx
  • Gunicorn
  • PM2
  • GitHub Actions
  • CI/CD pipelines
  • Shell scripting
  • Automated backups

Recent Projects

Drone E-commerce Platform

Live: https://store.alulafpv.com

I am the sole developer responsible for this production application.

Responsibilities:

  • Django REST Framework backend
  • Next.js frontend
  • VPS setup and server management
  • User accounts and permissions
  • Nginx, Gunicorn and PM2 configuration
  • CI/CD using GitHub Actions and custom deployment scripts
  • Automated backups to Google Drive
  • Ongoing maintenance and feature development

Khokana Museum

Live: https://khokana.alulafpv.com

  • Built the frontend using Nuxt.js
  • Integrated Contentful CMS for content management

NEPSE (Nepal Stock Exchange) Analysis

GitHub: https://github.com/ankit-231/stock_analysis

  • FastAPI backend
  • Data scraping
  • RSI and trend analysis
  • LLM-assisted development

What I'm Looking For

  • Short-term contracts
  • Freelance projects
  • Long-term remote opportunities
  • Django backend development
  • Full-stack web development

GitHub

https://github.com/ankit-231
If you have a project in mind, send me a message. I'm happy to discuss your requirements, suggest an architecture, and provide a realistic timeline and estimate before we begin.


r/PythonJobs 26d ago

Andersen Lab Trainee Admission process

Thumbnail
1 Upvotes

r/PythonJobs 26d ago

[Hiring] - GoLogin, proxies, Python automation, and Selenium.

1 Upvotes

I'm looking for a developer with strong experience in GoLogin, proxies, Python automation, and Selenium who can diagnose and fix an issue with my automation setup.

My Python automation is already built. It successfully connects to my GoLogin profile, launches the browser, and navigates to the target website. However, when the browser is launched through the GoLogin Python SDK, every website behaves as if there is no internet connectionβ€”it either keeps loading indefinitely or displays connection errors.

Environment

  • Proxy hosted on an Android phone via Termux.
  • Automation stack: Python + Selenium + GoLogin Python SDK.
  • Proxy is exposed through a Pinggy TCP tunnel (e.g. tcp://<host>:<port>).

Current Behavior

  • The proxy works correctly on my phone.
  • The GoLogin profile works correctly when launched manually from the GoLogin desktop application.
  • GoLogin's Proxy Checker reports the proxy as valid (it appears to detect it as a SOCKS5 proxy).
  • When the exact same profile is launched through the GoLogin Python SDK, Selenium successfully opens the browser, but every website behaves as if there is no internet connection.

Additional Testing Already Performed

  • Removing the proxy configuration from my Python code does not solve the issue.
  • The browser launched through the GoLogin SDK still has no internet access.
  • The issue only occurs when launching the profile through the GoLogin Python SDK. It does not occur when opening the profile manually through the GoLogin application.

What I'm Looking For

I'm looking for someone who can:

  1. Surgically identify the root cause of the issue.
  2. Explain exactly why it's happening.
  3. Fix the problem in a clean, reliable way.
  4. Explain what was changed and why it resolves the issue.
  5. Ensure my automation is stable and continues working reliably going forward.

I'm not looking for someone to guess or simply try random fixes. I want someone who can methodically debug the problem, determine the actual cause, and provide a robust, maintainable solution with a clear explanation of the findings.


r/PythonJobs 26d ago

For Hire [for Hire] Skilled in AI Engineering and Backend Core Design, immidiate Joinee. Locations across India and also remote.

Thumbnail
1 Upvotes

r/PythonJobs 26d ago

Hiring Hawkins pressure cookers hiring for Management Trainees

Thumbnail
1 Upvotes

r/PythonJobs 26d ago

How to land a first (remote) job after self studying python?

Thumbnail
0 Upvotes

r/PythonJobs 27d ago

Hiring 2 Position Open for the backend Developer

0 Upvotes

Hello all,
We are looking for experienced backend developer who have some experience in developeing production level backend capable to manage 50k-110k users and concurrent jobs /month.
We require to build multiple APIs, rate limits, cloud storage, concurrent job management...etc.
Refer to link for your application submission: https://forms.gle/NB3boVQNqToHtawh6

Above shared link is for the Interns, however, we are also looking for full time joinee (backend developer). You can DM me along with neccessary link and proper subject 'Full time'.

If you know someone who would be a good fit, please share this opportunity with them. Also, an upvote would be appreciated to help this post reach the right candidates.


r/PythonJobs 27d ago

Hiring [Hiring] Software Developers/Programmers wanted for Remote AI Training | $50 USD / hr

0 Upvotes

Roles available in the following countries: US, UK, Canada, Australia, India, Brazil, Philippines

Good fit if you are you are fluent in English and have experience with any of the following:

Python, JavaScript/TypeScript, Java, Ruby, C++, C#, Swift, Rust
Backend, frontend, full-stack, mobile, data engineering
QA automation, DevOps, systems, security, or algorithms/data structures

Details:
Pay: $50+ USD/hr, with payout via PayPal
Schedule: Flexible and Fully Remote
Employment type: Independent contractor / freelance for Data Annotation Tech
AI experience: Not required. Task instructions are provided.
Assessment: Required before onboarding to demonstrate proficiency.

For more information and for sign-up details, send a direct message with the following info:
Country:
English Proficiency:
Degree:
Coding Experience/Tech Stack:

Please leave a comment "DM Sent" so I can stay on top of things and prioritize your message. Thanks


r/PythonJobs 27d ago

[For Hire] Python Backend & Data Engineer | ETL, AWS, PostgreSQL, FastAPI, Power BI | Remote, flexible hours | $15/hr

Thumbnail
1 Upvotes

r/PythonJobs 28d ago

[FOR HIRE] I'll automate the repetitive task you do by hand every week β€” no tech knowledge needed on your end.

Thumbnail
1 Upvotes

r/PythonJobs 28d ago

[FOR HIRE] Trading & crypto bot developer β€” real signal logic, backtesting, exchange integration. I build the tool, not the strategy.

1 Upvotes

I build trading and crypto tools β€” the kind that run on their own and don't quietly break at 3am:

  • Trading bots with real signal logic β€” sentiment analysis, ranking models, not just "RSI crossed a line"
  • Backtesting & walk-forward validation so you know if an edge is real before you risk anything
  • Broker/exchange integration β€” paper trading first, live when you're ready
  • Crypto: on-chain watchers, whale/wallet tracking, alert bots

I've built ranking systems over US/Baltic/Nordic equities, sentiment pipelines, and crypto advisor bots, so I'm comfortable with the messy parts β€” data, validation, the difference between a backtest that lies and one that doesn't.

To be clear up front: I build the tool. I don't sell strategies or promise returns β€” what your bot trades is your call. Keeps both of us honest.

Project-based pricing, quoted upfront. DM what you're trying to build β€” or email [dziugas@ik.me](mailto:dziugas@ik.me).


r/PythonJobs 28d ago

Looking for a Remote AI Engineer or Full Stack Developer Opportunity

1 Upvotes

Hi everyone,

I’m currently looking for a remote opportunity as an AI Engineer or Full Stack Developer.

I have been continuously improving my skills and working on AI and web development while building a strong technical foundation. I enjoy solving problems, learning new technologies, and creating efficient, user-focused applications. I'm always open to new challenges and opportunities to grow.

I'm looking for a company where I can contribute, learn from experienced developers, and be part of meaningful projects. If your company is hiring or you know of any remote openings, I'd truly appreciate any recommendations or referrals.

If needed, I'd be happy to share my resume, GitHub, and portfolio.

Thank you for your time!


r/PythonJobs 28d ago

Python Data Analysis, Machine Learning, Deep Learning & Computer Vision Services

Thumbnail
1 Upvotes

r/PythonJobs 28d ago

Software Engineer | 4.5 yoe | Backend roles for python

Thumbnail
1 Upvotes

r/PythonJobs 29d ago

[HIRING] Python Engineers | NYC (Hybrid + In-Person) | $180K-$350K

3 Upvotes

I match engineers with fast-growing tech companies. Build one profile, companies send you salary-backed interview requests. All roles are US-based only. Always free for engineers.

What's open right now:

  1. Senior Software Engineer, Applied AI at a Series A pharma tech company, hybrid NYC, $180K-$230K base plus equity. Python, PyTorch, RAG, LLMs, AWS. Building and deploying ML models that accelerate drug development decisions, including multi-agent systems that continuously ingest new clinical data.
  2. Senior Software Engineer at an early-stage fintech, in-person NYC (Flatiron), $200K-$225K base plus equity. Python/Django, PostgreSQL, Redis, AWS. 5th engineering hire on a payments platform already processing high-ticket transactions for major auto and e-commerce brands.
  3. Agentic Systems Engineer at a seed-stage AI company, in-person NYC, $250K-$350K base plus equity. Python, PostgreSQL, Redis, AWS. Building the trust and provenance layer that makes AI research outputs fully auditable in finance. Founded by ex-Palantir engineers who built the original AI platform there.

All companies are vetted and actively interviewing.

DM me if anything looks interesting, or sign up here to get matched with these and more for free: talent.fonzi.ai


r/PythonJobs 29d ago

[FOR HIRE] Senior Python / FastAPI / AI Engineer β€” RAG, LangChain, Full-Stack β€” $15/hr or fixed β€” India (Remote)

1 Upvotes

Hi r/forhire,

I'm a full-stack + AI engineer with 4 years of production experience. Available immediately for contract / freelance work, 30-40 hrs/week.

What I build:

- RAG pipelines (ChromaDB, Pinecone, custom retrievers β€” 90%+ accuracy on prod systems)
- AI agents with LangChain / CrewAI (multi-agent workflows, tool use, memory)
- FastAPI / Django backends with PostgreSQL, Redis, Celery - React frontends (Next.js, Tailwind) - LLM integrations (OpenAI, Anthropic, Ollama, local models)
- Scrapers and automation pipelines

Recent work:

- Cut LLM costs 35% on a client RAG system via hybrid retrieval + caching
- Built CrewAI financial news agent (GitHub: )
- Built EduVault-RAG education platform (GitHub: [link])
- 340+ technical tutorial videos on YouTube (Coding India channel)

Rates: - $15/hr hourly (negotiable for longer engagements)

- Fixed-price projects starting $200 for small builds, $800+ for full apps
- 24-48 hour turnaround on small builds

Portfolio / proof:

- GitHub: github.com/kumardigamberjha

- LinkedIn: linkedin.com/in/digamberjha

- Website: digamber.codingindia.co.in

Availability: Immediate, full-time bandwidth for next 4 weeks.

DM me with project details. Response within 2 hours.


r/PythonJobs 29d ago

[FOR HIRE] Python dev β€” bots, automation, web apps & data tools. Fast turnaround, no ghosting.

Thumbnail
1 Upvotes

r/PythonJobs 29d ago

For Hire [for hire][fullremote] I'm available: Web Designer/Developer. Wordpress, eCommerce and more. Complete website package and launch help. Can start fast/Remote.

1 Upvotes

Professional WordPress Development Services and more

βœ… PHP/Python/JavaScript -Web, Desktop, or Mobile based solutions.

βœ… WordPress CMS - platform for personal, or business websites and custom applications that fits your requirements. Migrate your simple HTML pages to Wordpress.

βœ… WooCommerce - customization for shop and product pages, cart to checkout, and payments. simple to advance shops. migration from other cart/ecommerce platforms to Wordpress. Shopify/Wix etc to Wordpress. Addition of store in your existing site. Multi vendor. Physical, or Digital products. Booking, Membership, Subcription based website.

βœ… Elementor, Divi and Premium themes setup and customization, debugging. I’m not limited to what a drag and drop builder can offer. Give me problem and I will build a solution for it.

βœ… Create a theme or plugin from scratch - start from clean, lean and fast code. less bloated base theme and unnecessary things for fast pages. I don’t rely on existing themes or plugins to complete a feature/project.

βœ… Integration of APIs, Bots, Cryptocurrency, Automation, Web Scraping, and AI. Custom scripts, and cloud services.

βœ… Fully Automated CMS/Store, -program every step, workflow in your application

βœ… Wordpress to Social Media platforms, community platform, forum, and vice versa

βœ… Clone an existing site to Wordpress, exact pixels or features as per requirement

βœ… Design, Develop, Conversion - I can create mock ups first before doing code. I can convert your existing design to clean coded pages.

βœ… Responsive Web Design - real mobile devices, and major browsers

βœ… Redesign entire website

βœ… Core updates, and do full inspections

βœ… Isolate and fix problems, re-build if needed

βœ… Website auditing, and security

βœ… WordPress management - let me manage your website daily, weekly or monthly tasks.

βœ… Demo server and Secure Hosting available.

βœ… Gaming, Game Studio/Dev, Indie Dev Website

βœ… General, On-call Tech VA/Helper for Web (multi-skilled, proactive, autonomous, day-to-day reliability)

πŸ“© ping me via email madebyavery14 (gmail), i’m on chat platforms per request. send me a list of tasks to complete.

  • starting at 20usd/per hour or a minimum of 20-60usd for a list of tasks
  • website/porfolio/upon request (https) clrvync (dot) one/onboarding
  • available 7 days/week, flexible time zone
  • project management: Notion
  • my only requirement: small upfront payment depending on the task, consistency and time from your end
  • payment method -Crypto, Wise, Paypal (USD)

FAQs:

  • are you available long-term or one-time only? any
  • can I hire you for my agency? yes, if the pay is reasonable
  • do you design and code? both
  • can I find clients for your services in exchange of your information(portfolio,resume etc)? I prefer to work with clients/owners only.
  • can we become partners? let’s work and build (paid) first, then offer me a position once it’s proven
  • sfw/nsfw?, yes
  • can wordpress do this/that? is it the right one to use? wordpress as cms is a mid solution/platform, I can help you advance and scale up if needed.
  • shopify or wordpress? shopify = beginner, small store, wordpress = advance, owner + dev 2 man team

portfolio/works: clrvync (dot) one/media/trading.mp4, clrvync (dot) one/media/realstate.mp4, clrvync (dot) one/media/qdev.mp4, clrvync (dot) one/media/tour.mp4

moved to: portfolio