Web development & automation — remote, freelance

We build things
that run without you.

Joshua & Ismael design clean websites and write small scripts that quietly do the boring parts of your business for you — every day, on their own.

01 — What we build

sites/

Websites

Fast, mobile-friendly sites for shops, portfolios and small businesses — built by hand in HTML/CSS, no bloated page builders slowing you down.

scripts/

Automation scripts

Python scripts that send reminders, move files, scrape data or fire off reports on a schedule — so the repetitive work happens without you touching it.

fixes/

Fixes & upgrades

Already have a site or tool that's slow, broken or outdated? We read the existing code, fix what's wrong, and hand it back running clean.

02 — Recent build

A reminder bot that never forgets

One client needed a daily email reminder sent to their team without paying for a subscription tool. We wrote a lightweight Python script using Gmail's own SMTP server — no paid APIs, no third-party dashboard, just a script that runs on schedule and sends the message every day.

  • Configuration kept in one clearly labeled block, so non-coders can edit it safely
  • Secured with an app-specific password and TLS encryption
  • Runs on a schedule with the free schedule library — set it once and forget it
reminder_bot.py
# Configuration — edit these variables
SENDER_EMAIL   = "your_email@gmail.com"
APP_PASSWORD   = "your_app_password_here"
RECEIVER_EMAIL = "recipient@example.com"
REMINDER_SUBJECT = "Daily Reminder"

# Function: send_reminder
def send_reminder():
    """Builds and sends the email via Gmail's SMTP."""
    msg = MIMEMultipart()
    msg["From"]    = SENDER_EMAIL
    msg["To"]      = RECEIVER_EMAIL
    msg["Subject"] = REMINDER_SUBJECT

03 — Who's building it

Joshua and Ismael

Joshua & Ismael

Two developers who'd rather ship something small and working than talk about something big and theoretical. We handle both sides of the stack most freelancers split in two: the site your customers see, and the scripts running quietly behind it.

If you can describe the problem in plain words, we can usually build it.

04 — Start a project

Have something that needs building?

Send a short description of what you're trying to automate or launch, and we'll reply with a plan.

Edit the email and WhatsApp link in index.html before you publish — placeholders for now.