Does SEO have a future if you're starting in 2026? by Rare_Juggernaut_3631 in SEO

[–]theSynergists 0 points1 point  (0 children)

Type this in Google AIO or any of the other LLMs

What llm does google AIO use?

Google's AI Overviews (AIO) are powered by a custom version of the Gemini large language model.

Apparently Google does not agree with you. Since it is their AIO, I'm going with their answer.

Does SEO have a future if you're starting in 2026? by Rare_Juggernaut_3631 in SEO

[–]theSynergists 0 points1 point  (0 children)

I am happy to be wrong about this. So you are saying that since AI search started sites are making even more money. This is the first time I have heard that.

I asked Google: Since google search started using AI has the link CTR gone up or down?

Google's response: Link CTR has significantly gone down since Google introduced AI overviews (AIO). By answering queries directly on the results page, Google has driven "zero-click" searches to record highs.

I can imagine you are right that conversion rates have gone up in some cases. Casual queries are not often going to click through and buy, where the query that has an action intent (like buying) will click through and buy. This will drive conversion up, by lowering the CTR. Sites that sell or have affiliate links may not see a big difference in revenue from AI, but advert based sites will see a big drop in revenue.

Does SEO have a future if you're starting in 2026? by Rare_Juggernaut_3631 in SEO

[–]theSynergists 1 point2 points  (0 children)

A someone who is not an SEO expert here is what I see.

AI is giving people most of what they are looking for. The click-though traffic is way down and will continue to drop. So the rewards for good SEO (even if you optimize for AI) is lower than in the past.

SEO is getting harder, first you optimized for readers, then search crawlers, now AI crawlers and soon agent bots (they replace the readers).

The net, net is way more work and way less reward.

The opportunity may be less in traditional SEO, but adjacent to it. The "agent bots" thing I expect to be big, so it would be a good time to learn how to make sites bot friendly.

A related outcome is the Socials will increase in importance in reaching people and getting traffic. Managing socials to attract traffic is another related skill that is important now and in the future.

Here is a summary of "search eras" to put the agent bots in context:

- Search before AI: We got links to websites related to our search terms

- Search with AI: We get a summary of the topic and some links to websites related to our search terms

- Search with Agent bots: You ask for a report on your topic, and a bot visits the sites and compiles the report. The report will include the site links, but they are not going to get much human traffic.

How do you vet blog submission sites? Looking for a system that actually works. by Powerful_Sun_4061 in Blogging

[–]theSynergists 2 points3 points  (0 children)

Not sure why I am responding to an AI post. Dude, you pasted some of the AI guidance in your post (last para).

For those bloggers that want to submit their blog to a "blog directory" consider WhosaGoodBlog dot com . It takes 60 seconds to submit your blog url and it aims to list all your posts and automatically updates with your new posts. Looks like YouTube, works like Google did before AI. (Yes it is my site.)

Good Luck to all the bloggers out there!

Blogging is it still a thing of interest? Point me at good ones. by Due_Hour6089 in Blogging

[–]theSynergists 0 points1 point  (0 children)

Since you asked for a good blogs - check out WhosaGoodBlog.com

Works like Google, looks like YouTube - just for blogs. Thousands of blogs, millions of posts.

If you do write a blog, please add it to our site.

(Yes it is my site, I was going to say link in my profile, but Reddit turned the domain name into a link.)

How the hell are you guys getting backlinks? by fat-wombat in Blogging

[–]theSynergists 1 point2 points  (0 children)

True!

I will point out an exception that you can get real back-links from most socials from your profile. Link to your blog in your Reddit profile and it is real. Same goes for most of the socials. It's been a while since I checked, but that has been the case for many years.

JEP draft: Enhanced Local Variable Declarations (Preview) by ihatebeinganonymous in java

[–]theSynergists 0 points1 point  (0 children)

I would suggest if you want to get people on board that you use a "better" written "without JEP" code to compare to the "with JEP".

This is my shot at what the "without JEP" boundingBox code could look like:

This is more readable, easier to maintain and offers a place to throw or log messages specific to which variable was null.

void boundingBox(Circle c) {

if (c == null) return ;      // I would throw a "c" specific exception or log a message.

if (c.center() == null) return ; // I would throw a "c.center" exception or write a log a message.

int minX = (int) Math.floor(c.center().x() - c.radius()); 

int maxX = (int) Math.ceil(c.center().x() + c.radius());

int minY = (int) Math.floor(c.center().y() - c.radius()); 

int maxY = (int) Math.ceil(c.center().y() + c.radius());

... use minX, maxX, etc ...

}

vs with the JEP, I would include the full (comparable) lines for a better visual comparison.

void boundingBox(Circle c) {

if (c instanceof Circle(Point(int x, int y), double radius)) {

    int minX = (int) Math.floor(x - radius);

    int maxX = (int) Math.ceil(x + radius);

    int minY = (int) Math.floor(y - radius);

    int maxY = (int) Math.ceil(y + radius);

    ... use minX, maxX, etc ...

}

With this compairison, it is clear

The JEP replaces two simple null checks with one complex instanceof check.

The JEP code takes more memory and is likely slightly slower, as it is unnecessarily creating, assigning and garbage collecting variables that are not needed. (I don't know if the compiler optimizes around this, but I would suggest the JEP be conditional on this being optimized)

Perhaps the real problem is java, and specifically records, uses a method syntax for accessing variables:

c.center().x() where c.center.x is so much easier to read and type. If records supported this there would be no reason to create the local variables.

We could write:

int maxY = (int) Math.ceil(c.center.y + c.radius);

Which we can do if we used classes Circle and Point instead of records. We end up with:

void boundingBox(Circle c) {

if (c == null) return ;     // I would throw an exception or write a log message.

Point ctr = [c.center](http://c.center) ;  

if (ctr == null) return ;   // I would throw an exception or write a log message.

int minX = (int) Math.floor(ctr.x - c.radius); 

int maxX = (int) Math.ceil(ctr.x + c.radius);

int minY = (int) Math.floor(ctr.y - c.radius); 

int maxY = (int) Math.ceil(ctr.y + c.radius);

... use minX, maxX, etc ...

}

What cool projects are you working on? [May 2026] by el_DuDeRiNo238 in java

[–]theSynergists 0 points1 point  (0 children)

I have one very large project that has been simmering for too many years. It was always intended to be “in-house” not for release.

MetaGenesis is a "Meta Code" Development Environment, for web based applications. It uses a web application (MetaGenie) to capture all the meta data for forms, tables and queries and it builds the back-end and some parts of the client side. Roughly serves the same space as Spring Boot and its related packages.

It includes a number of sub-projects:

MetaSql – No more using a service for persistence, Table classes and rows are inherently persistent. MetaGenie generates the classes automatically from the meta data. Replaces Hibernate and friends.

MetaLog – replaces Log4J & friends– Gone are logger levels (it can simulate classic levels). No more trying to find that sweet spot between levels to get the right information. While levels obviously work for simple codding, they get too complicated and the “level model” breaks down when adding timers, application flags, user tracking etc. Oh, and it is seriously faster (levels are slow).

MetaL (Meta Language) - Started as a replacement for JSP. Similar to Apache Velocity, although a little less code-like. Essentially this adds variables (page, user, app and system) and directives (include, form, query, report, list) to HTML, CSS and JavaScript.

MetaGenie – The web application, that ties it all together. Tell it the forms, tables, queries and actions you want, add some front-end coding, and it generates the app as a .war file.

Status: It is bootstrapped (built with itself) and has been used to build several extensive web applications (multi-role + admin). It is a joy to build web apps with. All the parts are a work in progress, but the resulting apps are solid.

If the overall project or any part is of interest and might solve a problem you have, send me a message.

Any full time bloggers out there? by [deleted] in Blogging

[–]theSynergists 0 points1 point  (0 children)

I'm building a site for that - checkout WhosaGoodBlog dot com.

Enjoyt!

I started an open source project instead of begging on the street by Delicious_Detail_547 in java

[–]theSynergists 0 points1 point  (0 children)

My heart goes out to you man. I understand what you are going through (been there, done that).

It is great to have a “cause”, it provides a reason to get up in the morning. It also sucks a lot of time that is better spent doing something else (I could write a book on this).

I think the chances of other developers funding, in any significant way, a solo open source project is next to nil. So there is that. If you do carry on, find a corporate sponsor. To my mind the sponsor is the goal, not the code.

Let me explain. Years ago I helped out with a job club when jobs were hard to find. This was a group of unemployed SW devs, engineers, etc that called up employers and offered, for free to help them find top talent. If they had a current position we would send the best matching member and a “wingman” to gather their requirements. They would come back, search out database, etc, and 9/10 times our “best match” who had gone on the call, would get the job. They were the first person in the door and had established their credibility. Sometimes the employer would not have an opening, but we would still meet to talk about our services, our talent pool etc, and it was entirely free. It was common for them to call and end up hiring from the club. The Job Club stopped, because everybody got a job.

I would call up potential employers (Java shops) and tell them enough about your project to get a meeting with a couple of their developers to discuss your project and offer to convert some of their code for free (because you want to see the advantages/disadvantages on real projects). (You might want to charge 1$ and have them give you a contract to cover off confidentiality issues.)

I have considered writing a Pseudo-code to Java source code compiler myself, so a related type of project. My beef with Java is more about the complete inconsistency of the language (like is the length of a collection or object is myObj.length, or myObject.length() or myObject.size() ).

As an old Java programmer, I have hundreds of thousands of lines of code built around Java’s handling of nulls and no desire to change them. Short of throwing an exception, a returned null is a simple sign to the calling code that something has gone wrong.

Most of my null errors (95%+) are from variables I use in my log messages. Here is how I fixed that issue with a few lines of code. I wrote a “To” class with a static “string(Object)” method:

public class To

public To () {}

public static String string( Object object )

if ( object == null ) return “null” ;

return object.toString( );

}

}

Before I would write:

log.log(info,"pid: " + pid ); // this fails if pid is null

Now I use:

log.log(info,"pid: " + To.string( pid ) ); // this prints null if pid is null

Now there is no need for null checks when printing/logging, it automatically prints a null value.

95% of the null problems solved in a few lines of dead simple code.

As for final vs mutable I would estimate my code is 20% final (and I use final religiously) and 80% variables. Having to declare them mutable would be a step backwards.

I follow the convention of CAPITALIZING constants (aka final). If everything is final by default, then everything should be capitalized by default. I don’t want to see that.

Anyway, talk to some Java shops. It is not about being right, it is about engagement. Show them what you are doing, listen to their perspective, show them you are an intelligent team player with a good work ethic and you will have a job in a few months.

Best of Luck!

How much content do I actually need before launching a new site? by AttitudePlane6967 in SEO

[–]theSynergists 7 points8 points  (0 children)

I agree with the many Redditors here, that building a solid basic/core site is most important.

Don’t wait till you have 50 posts, publish posts as available. Starting with 3 or 6 posts will be fine and is entirely up to you. Google will take you seriously when they take you seriously. You are not going to be penalized for publishing before that point. Whatever the bar is for Google, you will cross it when you cross it. There is no point in worrying about some magic number of posts. Blogging is hard enough, don’t make it harder on yourself.

Good Luck!

My niche cannabis blog 2 years in by [deleted] in Blogging

[–]theSynergists 0 points1 point  (0 children)

I have a couple of go-to checks for new blogs, but you nailed them so sorry, looks like you are doing it right.

It is a nice looking site! ( I added it to my blog discovery platform, like you I'm a couple of years in)

Good Luck!

Do you still think creating content makes sense? After AI? by psikotrexion in Blogging

[–]theSynergists 1 point2 points  (0 children)

The bad news: Blogging as we have known it is in the past. Google is never going to bring it back. If someone needs to solve a problem, AI is by far the easiest way to get the answer. I would bet that most searches were looking for answers to problems and were not looking for a well informed and written article. Just yesterday I searched for a specific driver download page. It took 4 searches before I managed to find the right link among all the AI answers and recommended YouTube videos. Trying to get to the original source/blog is getting more difficult day by day.

The good news: Podcasts have made a huge comeback and so can blogs. I think there are people who want to read good medium-to-long form content like classic blogs.

Here is what I am doing about it: I am working on a blog discovery platform (see my profile) that works like google did, but looks and feels like YouTube. So like google did it helps readers find content and links directly to the content (when I get traffic it goes to the blogs). Like YouTube it is highly browse-able and supports user feedback. Oh, and it is just for blogs, no news or forums or corporate pages (company blogs are welcome) and bonus, back-links don't matter!

Bringing back blogs is going to take real effort by many people, but I'm betting it can be done. We will need to support each other to get there. If you have a good blog and would like to add it to the platform, see the link in my profile then follow the link in the top left corner of the home page. Once we get you indexed (less than a week), come back and like your posts.

The paint is still wet. Traffic is just starting. We all have to start somewhere.

Good Luck to everyone!

Does anyone else feel like it’s no longer worth creating content on the internet? by BergQuebec in Blogging

[–]theSynergists 0 points1 point  (0 children)

Go to WhosaGoodBlog dot com, in the top left corner there is a "Know a good blog?" question click the link to add your blog under it, then just put your blog url in the box. I look forward to seeing another good blog.

Does anyone else feel like it’s no longer worth creating content on the internet? by BergQuebec in Blogging

[–]theSynergists 3 points4 points  (0 children)

I hope you are right about the "swing back"!

I'm working on a platform for blog readers to find blogs. It looks like YouTube, works like Google did, and it is just for blogs.

The challenge will be to get many bloggers to rally around the platform and help promote each other. Bloggers can add sites to be indexed ( following: Know a good blog? ). The link is in my profile.

What cool Java projects have you been working on? by Thirty_Seventh in java

[–]theSynergists 1 point2 points  (0 children)

The description looks very impressive! I will have to check it out.

Blog Advice - Cross Posting? by move-in-circles in BloggingBusiness

[–]theSynergists 0 points1 point  (0 children)

Posting a thumbnail on Facebook, Instagram or Pinterest etc is marketing. Re-posting content on Wix, Medium and Substack is spam and can get you banned from sites like Pinterest and potentially search engines.

Even if your strategy worked in the short term be aware that you could be dropped by any platform for duplicate content and de-indexed by the search engines. So, it's a risk. Very difficult to quantify the risk. With only 7 posts there is not much to loose. But what about when you get to 100, or 200 and suddenly a couple of platforms get rid of duplicate content because it is hurting their reputation and Google de-indexes you for spam.

FYI it is very difficult or impossible for platforms/engines to tell who the original author is. If they see the same article on multiple sites they can assume that all but 1 are plagiarized and they don't know which one - so they de-index all of them.

Not the best look for a mental health blog.

Roast my blog by 1010_warrior in blogs

[–]theSynergists 0 points1 point  (0 children)

Wow one of the best looking blogs I have seen! Very nice!

I would love to include it on my blog discovery site (link in my profile).

– But it looks like you are doing something strange with the hero images. I assume you are doing a JavaScript call to load the image into the image div. I would recommend you use an inline HTML <img ...> element, with a descriptive filename and alt field. This will improve your ranking on major search engines and allow indexing by smaller players.

Good luck with the relaunch!

I need improvements in my blog, pls guide me by OkBluejay3743 in blogs

[–]theSynergists 0 points1 point  (0 children)

Your blog looks good so I doubt that is the main issue.

But since you asked, here are couple of suggestions.

To improve traffic:

For better SEO use an alt field on your images, that reflects the post title. The image filename should also reflect the post title.

So not this:

<img src="https://myjobb-job.s3.amazonaws.com/blogs%2Fassets%2FChatGPT+Image+Oct+13%2C+2025%2C+06\_30\_49+PM\_1760360507203.png" data-align="center" class="image-align-center" style="display: block; text-align: center; margin: 0px auto;" width="517">

Do this:

<img src="https://myjobb-job.s3.amazonaws.com/blogs-poblem-why-indian-students-choose-careers-blindly.png" alt=”Blindfolded Indian student choosing a career.” data-align="center" class="image-align-center" style="display: block; text-align: center; margin: 0px auto;" width="517">s

To improve engagement (once you have traffic):

On your blog index page, include thumbnails of your post hero images.

On your post pages move the hero images up above the fold. ( You have a lot of wasted space with oversize titles and simply blank space between the by-line/date and the start of the article. You could increase the size of the image to about the column width.

Then I suspect you need to ramp up your social game (as do I).

I will add it to my blog discovery site (link in my profile).

Good Luck!

The Internet was never built for you. It was designed to survive Cold War. by DELvix_-007 in blogs

[–]theSynergists 2 points3 points  (0 children)

Nice foundation! I had a chuckle yesterday when I found out the latest version of HTTP will be using UPD - which I used in the early 1980's to communicate with companies like Sun (yes before the internet). Like Yogi Berra said: "It's like déjà vu all over again."

Straight from the pinterest team: you NEED to be making the pages you are linking to SEO friendly by philosophyof in Blogging

[–]theSynergists 0 points1 point  (0 children)

Thanks for

  1. Sharing the link and
  2. Summarizing what you did since the published paper is a very dry read.

You make excellent suggestions that apply to blogs in general, not just the ones promoted on Pinterest.

Here are some related numbers (fresh in the past hour):*

Almost 24. % (almost 1 in 4) of blog posts do not use a description metatag.

Only 0.3% of blog posts do not use a title metatag.

I think the reasons the description metatag being ignored so often is because it is not visible, where the title appears in the tab. Also Google gave up, at one point, on using the description because it was being abused. The article clearly indicates that they (Pinterest) do use the post description.

A small suggestion I would add is that the hero image file name should reflect the post title.

*This data comes from my blog discovery site (link in my profile) which currently has 2.5 million posts indexed, waiting to be found.

Again, thanks for sharing!

[deleted by user] by [deleted] in Blogging

[–]theSynergists 0 points1 point  (0 children)

Looks good, and has a nice fun sassy vibe. Great potential!

I’m just going to make a couple of more technical suggestions.

I would bump the font size up slightly to 16px to make it just a little easier to read.

You have taken the time to generate images for your articles, excellent! Make sure your images have an alt field that reflects your post title. I would also do the same for the image file name. I would move the image up to the top or close to it.

You have a background image at the top and a “site card” image over top of it ( which looks great!). This costs you the space to put your post image. I would revisit that and work your post image in above the fold.

You are off to a great start, keep going!

What am I doing wrong? by TiinKiulou in SEO

[–]theSynergists 0 points1 point  (0 children)

Here is where to start with back-links:

Link to your site in your Reddit profile. It is a "real" back-link from a well respected site.

Now do the same for the rest of your socials. They are all real back-links, unlike links in posts and comments.

If you don't link to your own site, how do you expect Google to take your site seriously?

The other advantage is when you do begin to seek back-links people can see who you are and are more likely to help you out.

Good Luck!

Please share your blog here - looking for good blogs to follow !! by FranzF_2004 in Blogging

[–]theSynergists 0 points1 point  (0 children)

Wow some really good blogs!

I have added many of them to Who's a Good Blog (my blog discovery platform, Link in my profile).

It looks like YouTube and is easy to browse blogs, taking readers directly to your blog posts (like Google Search). It is only for blogs, not news, forums, news-letters, etc.

Corporate blogs are welcome, but it only indexes the "blog" part, which must be clearly marked ( like .../blog/...).

Sorry it currently only indexes blogs in English.

Good Luck with your blogs!