Product Hunt logo dark
  • Launches
    Coming soon
    Upcoming launches to watch
    Launch archive
    Most-loved launches by the community
    Launch Guide
    Checklists and pro tips for launching
  • Products
  • News
    Newsletter
    The best of Product Hunt, every day
    Stories
    Tech news, interviews, and tips from makers
    Changelog
    New Product Hunt features and releases
  • Forums
    Forums
    Ask questions, find support, and connect
    Streaks
    The most active community members
    Events
    Meet others online and in-person
  • Advertise
Subscribe
Sign in
Subscribe
Sign in

prettyCode.online

A code beautifier that creates attractive animated videos

5.0
•1 review•

64 followers

A code beautifier that creates attractive animated videos

5.0
•1 review•

64 followers

Visit website
Share your code in style with this code beautifier and impress your followers. prettyCode allows you to include your name and avatar in the code so you will always be recognized when your code snippet goes viral, and express yourself by adding a video background.
  • Overview
  • Launches1
  • Reviews1
  • Alternatives
  • Team
  • More
Company Info
prettycode.onlineGitHub
prettyCode.online Info
Launched in 2022View 1 launch
Forum
p/prettycode-online
  • Blog
  • •
  • Newsletter
  • •
  • Questions
  • •
  • Forums
  • •
  • Product Categories
  • •
  • Apps
  • •
  • About
  • •
  • FAQ
  • •
  • Terms
  • •
  • Privacy and Cookies
  • •
  • X.com
  • •
  • Facebook
  • •
  • Instagram
  • •
  • LinkedIn
  • •
  • YouTube
  • •
  • Advertise
© 2025 Product Hunt
SocialX

Similar Products

Typeform
Typeform
People-friendly forms and surveys
4.8(33 reviews)
Survey and form builders
Jitter
Jitter
💫 Fast and simple motion design tool on the web.
4.9(82 reviews)
Interface design tools3D & Animation
Qriginals
Qriginals
Join our community, beautify your codes and share your art.
Design inspiration websitesAdvertising tools
prettyCode.online gallery image
prettyCode.online gallery image
prettyCode.online gallery image
prettyCode.online gallery image
Free
Launch tags:
API•Developer Tools•Video
Launch Team
David BoschJoaquim Cardona

What do you think? …

David Bosch
David Bosch

prettyCode.online

Maker
Hey everyone, I'm excited to announce the launch of "prettyCode.online" on ProductHunt. It's a code beautifier that helps you format and highlight your code, and adds a personal touch to make it even more unique and expressive. https://prettyCode.online One of the standout features of prettyCode.online is the ability to create an animation video of your code for social media sharing. This is a great way to showcase your skills and get more exposure. You can also sign your code with your name and avatar, so that you get credited for your work. And if you want to add some extra flair to your code, you can choose from a variety of custom video backgrounds that reflect your mood or style. I'm proud to say that prettyCode.online is completely free to use, thanks to the JSON2Video video editing API that powers the video creation process. I hope you'll give it a try and see for yourself how it can improve the appearance and impact of your code. I'd love to hear your thoughts on prettyCode.online and any feedback you have. I'm always looking for ways to improve the tool and make it more useful for developers like you. Thank you for considering it!
Report
2yr ago
Rhymer Espinosa
Rhymer Espinosa
@patbwill Congrats on the launch! <3 This looks super helpful.
Report
2yr ago
Joaquim Cardona
Joaquim Cardona

prettyCode.online

Maker
@patbwill I'm sure that prettyCode.online will be a valuable resource for developers looking to improve the appearance and impact of their code. Keep up the good work and I'm looking forward to hearing more about future updates and improvements to the tool. Thanks for all your hard work in creating and launching prettyCode.online!
Report
2yr ago
Awee Gee
Awee Gee
@patbwill Cheers to your new venture! There is nothing that you cannot overcome with your determination and perseverance. Congratulations, my friend!
Report
2yr ago
Utkarsh Raj
Utkarsh Raj
Seems very creative. All the best Team !!
Report
2yr ago
David Bosch
David Bosch

prettyCode.online

Maker
Thanks @utkarsh_raj3 !
Report
2yr ago
Niloy Gaming
Niloy Gaming

from moviepy.editor import *

from PIL import Image, ImageEnhance, ImageFilter

import numpy as np

import os

# Paths

image_path = "/mnt/data/A_digital_image_in_a_semi-realistic,_illustrative_.png"

output_path = "/mnt/data/gangstar_animation.mp4"

# Load image with PIL

img = Image.open(image_path).convert("RGBA")

# Slight neon glow effect

glow = img.filter(ImageFilter.GaussianBlur(radius=8))

enhancer = ImageEnhance.Brightness(glow)

glow = enhancer.enhance(1.8)

# Merge glow with original

blended = Image.alpha_composite(glow, img)

# Save temp processed image

temp_path = "/mnt/data/temp_glow.png"

blended.save(temp_path)

# Create clip from processed image

clip = ImageClip(temp_path).set_duration(5)

# Zoom-in effect

zoom_in = clip.resize(lambda t: 1 + 0.05 * t) # slow zoom

# Add smoke effect (simple overlay using semi-transparent noise)

noise = np.random.randint(0, 255, (img.height, img.width, 3), dtype=np.uint8)

noise_img = Image.fromarray(noise).convert("RGBA").filter(ImageFilter.GaussianBlur(radius=15))

noise_alpha = 50 # transparency level

noise_layer = Image.new("RGBA", noise_img.size, (255, 255, 255, 0))

noise_layer.paste(noise_img, (0, 0), noise_img)

# Save smoke overlay

smoke_path = "/mnt/data/smoke.png"

noise_layer.save(smoke_path)

# Create smoke clip

smoke_clip = ImageClip(smoke_path).set_duration(5).set_opacity(0.2)

# Composite zoom with smoke

final_clip = CompositeVideoClip([zoom_in, smoke_clip])

# Write video

final_clip.write_videofile(output_path, fps=24)

output_path

STDOUT/STDERR

t: 40%|███▉ | 67/168 [01:49<01:33, 1.08it/s, now=None]Moviepy - Building video /mnt/data/gangstar_animation.mp4.

Moviepy - Writing video /mnt/data/gangstar_animation.mp4

t: 0%| | 0/120 [00:00<?, ?it/s, now=None][A

t: 2%|▏ | 2/120 [00:00<00:35, 3.32it/s, now=None][A

t: 2%|▎ | 3/120 [00:03<02:38, 1.35s/it, now=None][A

t: 3%|▎ | 4/120 [00:05<02:46, 1.43s/it, now=None][A

t: 4%|▍ | 5/120 [00:06<03:04, 1.61s/it, now=None][A

t: 5%|▌ | 6/120 [00:09<03:28, 1.83s/it, now=None][A

t: 6%|▌ | 7/120 [00:11<03:29, 1.86s/it, now=None][A

t: 7%|▋ | 8/120 [00:12<03:22, 1.80s/it, now=None][A

t: 8%|▊ | 9/120 [00:14<03:18, 1.79s/it, now=None][A

t: 8%|▊ | 10/120 [00:16<03:28, 1.90s/it, now=None][A

t: 9%|▉ | 11/120 [00:18<03:35, 1.98s/it, now=None][A

t: 10%|█ | 12/120 [00:20<03:29, 1.94s/it, now=None][A

t: 11%|█ | 13/120 [00:23<03:43, 2.09s/it, now=None][A

t: 12%|█▏ | 14/120 [00:25<03:47, 2.14s/it, now=None][A

t: 12%|█▎ | 15/120 [00:27<03:46, 2.16s/it, now=None][A

t: 13%|█▎ | 16/120 [00:30<03:54, 2.25s/it, now=None][A

t: 14%|█▍ | 17/120 [00:31<03:32, 2.06s/it, now=None][A

t: 15%|█▌ | 18/120 [00:33<03:26, 2.02s/it, now=None][A

t: 16%|█▌ | 19/120 [00:35<03:21, 1.99s/it, now=None][A

t: 17%|█▋ | 20/120 [00:37<03:19, 2.00s/it, now=None][A

t: 18%|█▊ | 21/120 [00:39<03:10, 1.93s/it, now=None][A

t: 18%|█▊ | 22/120 [00:40<02:58, 1.82s/it, now=None][A

t: 19%|█▉ | 23/120 [00:43<03:05, 1.91s/it, now=None][A

t: 20%|██ | 24/120 [00:45<03:07, 1.95s/it, now=None][A

t: 21%|██ | 25/120 [00:46<02:53, 1.83s/it, now=None][A

t: 22%|██▏ | 26/120 [00:48<02:57, 1.89s/it, now=None][A

t: 22%|██▎ | 27/120 [00:50<02:54, 1.87s/it, now=None][A

t: 23%|██▎ | 28/120 [00:52<02:52, 1.87s/it, now=None][A

t: 24%|██▍ | 29/120 [00:54<02:54, 1.91s/it, now=None][A

Report
2d ago
Astrid: Personal Shopping Agent
Astrid: Personal Shopping Agent — The personal stylist programmed just for you
The personal stylist programmed just for you
Promoted

Do you use prettyCode.online?

5.0
Based on 1 review
Review prettyCode.online?
Reviews
Helpful

You might also like

Typeform
Typeform
People-friendly forms and surveys
Jitter
Jitter
💫 Fast and simple motion design tool on the web.
Qriginals
Qriginals
Join our community, beautify your codes and share your art.
View more
Jfjgjgjg 13ggdfttt
Jfjgjgjg 13ggdfttt
•1 review
This web is very nice work so good 😊😊😊😊😊😊😊😊😊😊😊
Report
11mo ago