created a post about adobe, did some proof reading

This commit is contained in:
Meleeman01 2026-05-30 16:27:30 -05:00
parent 6cb0667b0b
commit 9e88fc9486
8 changed files with 86 additions and 40 deletions

BIN
public/adobeSucks.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View File

@ -4,11 +4,24 @@ import BaseLayout from './BaseLayout.astro';
---
<BaseLayout pageTitle={frontmatter.title} >
<h1>{frontmatter.title}</h1>
<div class="flx(wrap) middle space-between">
<p style="font-size: 2rem;"> <em>{frontmatter.description}</em></p>
</div>
<div class="flx(wrap) middle right" >
<p class="mr-2">Written by: {frontmatter.author},</p>
<p>{frontmatter.pubDate.toString().slice(0,10)}</p>
<p> <em>{frontmatter.description}</em></p>
<p>Written by: {frontmatter.author}</p>
</div>
<div class="flx(wrap) center middle is-full mb-4" style="flex-shrink: 1;">
<img src={frontmatter.image.url} width="300" alt={frontmatter.image.alt} />
</div>
<slot />
</BaseLayout>

View File

@ -33,8 +33,31 @@ const textCase = "uppercase";
font-weight: var(--fontWeight);
text-transform: var(--textCase);
}
.about-p {
margin: 2rem 0;
}
</style>
<div>
<h2 style="text-align:center;">How VFP media Came to be</h2>
<figure class="flx(wrap) center middle is-full">
<img src="/vfpcattailfolded.png">
</figure>
<p class="about-p">VFP media started as a portfolio website for getting potential web development jobs. I eventually axed my portfolio website as I figured it no longer served me.
After awhile I started playing with Certbot and discovered I could have multiple subdomains with a wildcard DNS certificate, so now I end up controlling
as many websites as I want with the *.vfpmedia subdomain.
</p>
<p class="about-p">
Since then I've worked freelance making several small websites for myself and others, eventually the financial strain was too great, and I had to get a regular job.
I was gardening at the time, and I figured why not do something that I already kind of like doing and get paid for it?
</p>
<p class="about-p">
I met my now girlfriend and partner who encouraged me to start this business as a way to help artists get paid and have an online presence, artists that we know
are working hard at their craft rather than prompting an AI and trying to make money with it. We both have quite a disdain for AI as we've seen it disrupt the lives of our friends
and family. I believe we choose the technologies we want to exist in this world. It may seem like we are powerless, but I want to show people that you don't have to accept new technology.
I've been called a luddite but I refuse to accept a world where art isn't made by human beings. Why should we automate away the very things that make us human?
</p>
</div>
</BaseLayout>

View File

@ -8,12 +8,13 @@ import BaseLayout from '../layouts/BaseLayout.astro';
<BaseLayout pageTitle={'Blog'} >
<div>
<h2>My Astro Learning Blog</h2>
<p>This is where I will post about my journey learning Astro.</p>
<h2>VFP Media Blog</h2>
<p>Below are blog posts made by vfpmedia:</p>
<ul>
<li><a href="/posts/post-1/">Post 1</a></li>
<li><a href="/posts/post-2/">Post 2</a></li>
<li><a href="/posts/post-3/">Post 3</a></li>
<li><a href="/posts/stop-using-adobe-products/">Stop using Adobe Products!</a></li>
</ul>
<figure class="flx(wrap) center middle">
<img src="/vfpcattailfolded.png">
</figure>
</div>
</BaseLayout>

View File

@ -82,7 +82,7 @@ forced to outsource it to other companies who provide all in one solutions and m
etsy will nickel and dime you for just hosting products on your website. at vfpmedia, we only ask that you use modern compression using webp and webm,
and make sure your work is your own.
</p>
<p>etsy, square and shopify will also charge 20+ dollars for something that a simple payment processing api can be down in a few hours by someone whos done this
<p>Etsy, Square and Shopify will also charge 20+ dollars for something that a simple payment processing api can be down in a few hours by someone whos done this
several times before. word press is a complicated solution and can possibly work as a free option using woo commerce,
however vfpmedia has technology already in use that can be retrofitted and redesigned
to fit most ecommerce, portfolio, and blogging situations, that are much faster and uses more modern technology than wordpress.
@ -110,7 +110,7 @@ First, if you have a website, you provide us with your website and domain name,
flowchart TD
A[Give us your website]
A[Give us your website, or Website Design in PSD or other common picture format]
A ==> B[Migrate domain name to our servers] & C[Get a free subdomain]
B ==> D & F
@ -129,7 +129,7 @@ First, if you have a website, you provide us with your website and domain name,
vfpmedia@airmail.cc if you have any issues or need help. Expect a timely response within 24 hours and in the case of wanting us to build new features for your
store or leave issues related to the node.js store vfpmedia@airmail.cc is a valid place as well.
if you don't have a website, a basic blog, portfolio, ecommerce,website will be provided for you at no cost, and a free subdomain of your choosing.
if you don't have a website, a basic blog, portfolio, ecommerce,website will be provided for you at no cost, we'll work with you if you have a design in mind, and implement it and a free subdomain of your choosing.
(i.e. artistnamehere.vfpmedia.com) </p>
<figure class="flx(wrap) center middle">
<img src="https://cataas.com/cat" width="300px">

View File

@ -1,26 +0,0 @@
---
layout: '../../layouts/MarkdownPostLayout.astro'
title: 'My First Blog Post'
pubDate: 2022-07-01
description: 'This is the first post of my new Astro blog.'
author: 'Astro Learner'
image:
url: 'https://docs.astro.build/assets/rose.webp'
alt: 'The Astro logo on a dark background with a pink glow.'
tags: ["astro", "blogging", "learning in public"]
---
Welcome to my _new blog_ about learning Astro! Here, I will share my learning journey as I build a new website.
## What I've accomplished
1. **Installing Astro**: First, I created a new Astro project and set up my online accounts.
2. **Making Pages**: I then learned how to make pages by creating new `.astro` files and placing them in the `src/pages/` folder.
3. **Making Blog Posts**: This is my first blog post! I now have Astro pages and Markdown posts!
## What's next
I will finish the Astro tutorial, and then keep adding more posts. Watch this space for more to come.

View File

@ -0,0 +1,35 @@
---
layout: '../../layouts/MarkdownPostLayout.astro'
title: 'Stop Using Adobe Products'
pubDate: 2026-05-01
description: "You don't need to pay money to be a good artist musician or movie editor"
author: 'Vincent Paul'
image:
url: '/adobeSucks.jpg'
alt: 'The Astro logo on a dark background with a pink glow.'
tags: ["astro", "blogging", "learning in public"]
---
## why should I stop using adobe photoshop as a visual artist?
1. **Your art could potentially be used to train their AI**:
2. **The Free alternatives are genuinely capable for professional Use**:
3. **Adobe has had bad business practices in the past**:
## Why should i stop using adobe animate as an animator?
1. **Adobe Animate no longer exists*
2. **Photoshop sucks as a tool for animation, and after affects is hardly similar to 2d animation**
## Why should i stop using adobe audition as a musician?
1. **Nobody uses Audition for Music Production tbh.**
## Why should i stop using adobe premiere as a Video editor?
1. **Why pay for video editing when you can use ffmpeg directly?**

View File

@ -127,7 +127,7 @@ const pageTitle = "Pricing";
<p class="price">$10<span>/month</span></p>
<p>what u get:</p>
<ul>
<li>*Free Website migration</li>
<li>*Free Website creation/migration</li>
<li>*Free Node.js eccommerce conversion</li>
<li>*1 hour of free support per month</li>
<li>*Free Social media posting, and part of the VFP media Directory</li>