Side project by Tom Granot. Check out my main offering Consume.

WAITLIST_OPEN

TURN YOUR VOICE
INTO A BLOG.

Let us write your personal blog posts for you.

1. We interview you (30 min/week).
2. We extract code & insights.
3. We publish to Dev.to, Hashnode, BearBlog, or Medium.

> Documentation-grade quality. A personal touch.

PERSONAL_BRAND_ENGINE

Build your authority without sacrificing coding time. We capture your voice, not just your keywords.

INPUT: VOICE

30-minute weekly interview. We ask the right technical questions to extract your expertise.

PROCESS: COMPILE

We write the post, including code snippets, architecture diagrams, and screenshots from our call.

OUTPUT: DEPLOY

We handle the CMS. We format the markdown. We hit publish. You just approve.

BEFORE → AFTER

Drag the slider to see how we transform your interview into a polished technical post

RAW_TRANSCRIPT
[00:15:32] Yeah, so basically what we did was we took the Kubernetes cluster and we had to scale it, right? Because we were getting like a ton of traffic. So we used HPA - that's Horizontal Pod Autoscaler - and we set it to scale based on CPU. But then we realized that wasn't enough because sometimes the CPU was fine but memory was spiking. So we had to add custom metrics using Prometheus and then configure the HPA to look at both CPU and memory. It was pretty tricky to get the thresholds right...
PUBLISHED_POST

Scaling Kubernetes with Custom Metrics

When our application started experiencing high traffic, we quickly realized that default Horizontal Pod Autoscaler (HPA) configurations weren't sufficient for our needs.

#The Problem with CPU-Only Scaling

Initially, we configured HPA to scale based on CPU utilization:

apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
  name: app-hpa
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: app
  minReplicas: 2
  maxReplicas: 10
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 70

However, we discovered that CPU metrics alone didn't tell the full story. Our pods would experience memory pressure while CPU remained stable.

#Solution: Multi-Metric Autoscaling

We integrated Prometheus to expose custom metrics and configured HPA to monitor both CPU and memory:

metrics:
- type: Resource
  resource:
    name: cpu
    target:
      type: Utilization
      averageUtilization: 70
- type: Resource
  resource:
    name: memory
    target:
      type: Utilization
      averageUtilization: 80

This dual-metric approach ensures our cluster scales appropriately based on actual resource consumption patterns.

WEEKLY_WORKFLOW

From interview to published post in 4 days

Monday · 9:00 AM

Interview

30-minute call where we extract your expertise

Wednesday · 2:00 PM

Draft Ready

We send you the complete post for review

Thursday · Anytime

Your Review

You approve or request changes

Friday · 10:00 AM

Published

Live on your blog with proper formatting

Total time investment: 30 minutes (just the interview)

SUPPORTED_PLATFORMS

We publish directly to your preferred platform

D

Dev.to

Developer community

H

Hashnode

Tech blogging platform

M

Medium

Publishing platform

B

BearBlog

Minimalist blogging

+ We can deliver raw Markdown for any other static site generator

WHY_SYNTAX_WRITER

Compare us to other options and see the difference

SYNTAX_WRITER
(You)
Ghost Writers
(Generic)
AI Tools
(ChatGPT)
DIY
(Write it)
Technical accuracy
Personal voice & style
Code snippets & examples
Time investment30 min/week2-3 hours1-2 hours4-6 hours
Monthly cost$499$2,000+$50-200Free
Direct publishing
SEO optimization
Consistency (4 posts/mo)

ROI_CALCULATOR

Calculate how much time and money you save by not writing yourself

4h
1h12h
$100
$50/h$300/h
Time saved per month:16 hours
Value of your time:$1,600
Service cost:-$499
Net monthly savings:$+1,101
Yearly savings:$+13,212

Plus: increased visibility, job opportunities, and speaking invitations from consistent blogging

PRICING_TIERS

Transparent pricing. Cancel anytime.

ONE-TIME

INIT_SETUP

$99
  • Blog architecture analysis
  • Platform setup (Dev.to/Hashnode/Bear/Medium)
  • Personal voice calibration
  • Cross-posting configuration
EARLY_ACCESS

DEV_LOOP

$499/mo
$999
  • Weekly 30-min interview
  • 4 Technical posts / month
  • Code snippets & screenshots
  • Direct publishing
  • SEO optimization
RISK_FREE_GUARANTEE

Zero Risk. All Upside.

We're confident you'll love the service. But if you don't, we make it easy to walk away.

100% Satisfaction

Not happy with a post? We'll rewrite it until you are.

Cancel Anytime

No contracts, no questions asked. Cancel with one click.

First Post Free

If we don't publish your first post within 7 days, it's free.

Join 50+ developers already building their personal brand with Syntax Writer

FAQ

? Do I need to review the posts?

Yes. We send you a draft (Markdown or Google Doc). You review the technical accuracy. We handle the rest.

? Which platforms do you support?

We officially support Dev.to, Hashnode, BearBlog, and Medium. We can also deliver raw Markdown for any other SSG.

? What if I don't have a blog yet?

We can help you set one up on your preferred platform (Hashnode, Dev.to, BearBlog, or Medium) during the setup phase.

? Can you handle complex code?

Yes. Our writers are technical. We take your code snippets from the interview or your repo and format them correctly.

? Is there a contract?

No. Cancel anytime. We believe in shipping value, not locking you in.