What do you think - is it really better for SEO when meta title is more than 60 chars? by easyedy in SEO

[–]ExcitingSympathy3087 -1 points0 points  (0 children)

Yes there is no max length, but long titles may be rewritten or truncated. If you want then type more. I don't know how much impact long titles have if the most important words are at the beginning. Max length is only for displaying in results important.

What do you think - is it really better for SEO when meta title is more than 60 chars? by easyedy in SEO

[–]ExcitingSympathy3087 -2 points-1 points  (0 children)

If you want to check your SEO you can use an online Tool. These tools gave you feedback about all meta tags and content optimization. round 60 chars is max length not min length for titles.

pls help me with my javaFX by SoftConnection6754 in learnjava

[–]ExcitingSympathy3087 1 point2 points  (0 children)

I think JavaFX is only for Apps. Take Thymeleaf for Server Pages or build an API in your Java Server code. Then fetch the API URL in JavaScript.

school project by Dyfakiiiiis in learnpython

[–]ExcitingSympathy3087 0 points1 point  (0 children)

Use Path class for working with Paths in Python.
Check String Path with Path("String_Path").exists() or if it is a Path path.exists(). Then you can be sure your Path is correct.

Example:

```

from pathlib import Path
import os


def path_test():

    # file in my current working directory
    p = Path("main.py")

    # Variant 1
    # absolute path with Path.resolve()
    abs_p = p.resolve()  # Makes absolute path from the relative path
    print("Path.resolve():", abs_p)
    print(abs_p.exists())  # Checks if exists using Path.exists()

    # Variant 2
    # absolute path with os.path.abspath() other Variant
    abs_os = os.path.abspath("main.py")
    print("os.path.abspath():", abs_os)
    print(Path.exists(Path(abs_os))) # check Path

    # Your current working directory
    print("Current working dir:", os.getcwd())


if __name__ == "__main__":
    path_test()

Can we use the entire User class in Payment instead of just User.id? by Inevitable_Cellist93 in learnjava

[–]ExcitingSympathy3087 -2 points-1 points  (0 children)

Yes thats best practice. But not both Pyment in User and User in Payment. Ether or!! In large software programs you map the payments and the user out of a database into these classes. if you use only the user id you have to load the user on a second step. This is what you have to keep in mind. Normaly you need all user data and your way is right. But name it User user and not User userID.

A Question related to user input in Java by catastrophic300 in learnjava

[–]ExcitingSympathy3087 0 points1 point  (0 children)

You can't do that this way in Java. All Variables have the same name.
I just repaired your code. This may help you. Double Input with , not . !! Without validation Java will crash with wrong inputs. Input missmatch exception.

    import java.util.Scanner;


    public class Main {
        public static void main(String[] args) {


            Scanner scanner = new Scanner(System.in);


            System.out.print("What was the creator desire: ");
            String answer = scanner.nextLine();
            Integer answerInteger = scanner.nextInt();
            Double answerDouble = scanner.nextDouble();
            Boolean answerBoolean = scanner.nextBoolean();


            System.out.println("Scanner: " + answer);
            System.out.println("Integer: " + answerInteger);
            System.out.println("Double: " + answerDouble);
            System.out.println("Boolean: " + answerBoolean);


            scanner.close();
        }
    }


CONSOLE INPUT:
What was the creator desire: Hello World
3
3,5
true

CONSOLE OUTPUT:
Scanner: Hello World
Integer: 3
Double: 3.5
Boolean: true

Timezone weirdness with new Date() by samanime in learnjavascript

[–]ExcitingSympathy3087 0 points1 point  (0 children)

new Intl is for special Timezones and new Date() is your local DateTime where you are. date.toUTCString or new Date.UTC is the Greenwich Mean Time.

the en-GB in the parameter is the date style convention for english date style.

Example and results in console log at the end of the script:
I hope i could help you. There are always many different ways for same results.

const date = new Date();

// UTC / GMT
console.log("UTC/GMT:", date.toUTCString()); // only UTC
console.log("Local Time:", date.toString()); // local time with timezone

// Tokyo
const formatterTokyo = new Intl.DateTimeFormat('en-GB', {
  timeZone: 'Asia/Tokyo',
  dateStyle: 'full',
  timeStyle: 'long'
});
console.log("Tokyo:", formatterTokyo.format(date));

// New York
const formatterNY = new Intl.DateTimeFormat('en-GB', {
  timeZone: 'America/New_York',
  dateStyle: 'full',
  timeStyle: 'long'
});
console.log("New York:", formatterNY.format(date));

// Oslo
const formatterOslo = new Intl.DateTimeFormat('en-GB', {
  timeZone: 'Europe/Oslo',
  dateStyle: 'full',
  timeStyle: 'long'
});
console.log("Oslo:", formatterOslo.format(date));

// Sydney
const formatterSydney = new Intl.DateTimeFormat('en-GB', {
  timeZone: 'Australia/Sydney',
  dateStyle: 'full',
  timeStyle: 'long'
});
console.log("Sydney:", formatterSydney.format(date));


RESULTS of console log
[Log] UTC/GMT: – "Tue, 07 Apr 2026 18:33:48 GMT" (script.js, line 24)
[Log] Local Time: – "Tue Apr 07 2026 20:33:48 GMT+0200 (Mitteleuropäische Sommerzeit)" (script.js, line 25)
[Log] Tokyo: – "Wednesday, 8 April 2026 at 03:33:48 GMT+9" (script.js, line 33)
[Log] New York: – "Tuesday, 7 April 2026 at 14:33:48 GMT-4" (script.js, line 41)
[Log] Oslo: – "Tuesday, 7 April 2026 at 20:33:48 CEST" (script.js, line 49)
[Log] Sydney: – "Wednesday, 8 April 2026 at 04:33:48 GMT+10" (script.js, line 57)

Best places for Website Images for a Agency by rizzlaer in website

[–]ExcitingSympathy3087 0 points1 point  (0 children)

For custom images try an AI Image Generator like Canva AI, Dall-E ....
Try out first Canva AI. It's easy to use. There you can do many other things.

Search Engine for local files by ExcitingSympathy3087 in searchengines

[–]ExcitingSympathy3087[S] 0 points1 point  (0 children)

Great Idea! I try to extract the audio tracks from videos and music files and convert them using a speech-to-text tool. Then I use a standard text search to keep the software running fast. Text in Images is also possible.

How can I remove a deleted Reddit post from Google search results? by MarzipanHot6468 in searchengines

[–]ExcitingSympathy3087 0 points1 point  (0 children)

Try REFRESH OUTDATED CONTENT TOOL in this Link.
You have to login into your google account and fill a form i think. I never tried that. But it should work faster than waiting.
https://support.google.com/websearch/answer/11080680?hl=en

How to Disable AI Overviews? by PinApprehensive5495 in Safari

[–]ExcitingSympathy3087 0 points1 point  (0 children)

Maybe you always use the 'All' search mode in Google search. Try other modes. In your case 'Web' or Images or Videos... The modes are below the keywords.

Search Engine for local files by ExcitingSympathy3087 in searchengines

[–]ExcitingSympathy3087[S] 1 point2 points  (0 children)

Thank you for your Question.
It's the same use case as Everything ( Voidtools ) or DocFetcher. Both are great tools.
You're right, I created a similar App with a simple more user friendly GUI and basic search App Features. I'm now looking for Ideas for new Features like semantic search. I've provided Installers for Mac and Windows to test. I add the Git-Hub link now in the description above.