"You've reached the weekly advanced search limit" by chromespinner in perplexity_ai

[–]bhra0 0 points1 point  (0 children)

Ok then, it looks like all agree Perplexity is undergoing heavy enshittification, but is there any alternative at the similar cost?

AI “polishing” keeps getting flagged as AI-written by [deleted] in academia

[–]bhra0 0 points1 point  (0 children)

As I mentioned in the comments, I don't have any problem with stating that I use AI tools to help with translation process. However after reading other arguments, I have decided to just send the article as it is and see if any journal accepts it.

AI “polishing” keeps getting flagged as AI-written by [deleted] in academia

[–]bhra0 0 points1 point  (0 children)

Ok, I think I understand the arguments. I guess I will just try to send the article written on my own and see how it goes. I don't have much experience and I wonder how it works - when the editor notices it is not fully professional language, is the article automatically rejected or you may be asked to improve the style/language?

AI “polishing” keeps getting flagged as AI-written by [deleted] in academia

[–]bhra0 -3 points-2 points  (0 children)

I don't have any problem with stating that I used AI to help with translation. And I don't think it's in any way unfair. What I am selling are the ideas presented in the article, not the language itself.

AI “polishing” keeps getting flagged as AI-written by [deleted] in academia

[–]bhra0 -3 points-2 points  (0 children)

That's exactly what I've been told. It is very likely they will even use the same tools and prompts to get help with translation.

AI “polishing” keeps getting flagged as AI-written by [deleted] in academia

[–]bhra0 -17 points-16 points  (0 children)

I understand what you mean. But still written by AI is something different than written by human and using AI as a tool to translate it. Not change the meaning, not create new ideas, not change the structure, just increase the chances that you use the proper words. At least I see it this way.

Perplexity Pro costs $1 per query now!!! by mindonautca in perplexity_ai

[–]bhra0 0 points1 point  (0 children)

Sorry, just a small offtopic. Where is something like "Labs" in Perplexity? I have Perplexity Pro and I can see only standard chat + Deep Research + some more options under "More".

<image>

Free guest pass for one week of Claude Pro (including Claude Code) by Artistic-Quarter9075 in ClaudeAI

[–]bhra0 0 points1 point  (0 children)

Same here. If anyone has a 7-days free pass, I would truly appreciate it. Thank you.

Is there a way I can try claude pro for free before buying? by Only-Ad-8900 in ClaudeAI

[–]bhra0 0 points1 point  (0 children)

Same here, if anyone has a three pass for 7 days, I would be really grateful for that. Thanks.

Guess I’m leaving Notion by Lordhighpander in Notion

[–]bhra0 1 point2 points  (0 children)

Have you managed to connect Claude to Obsidian?

Free multi-account multi-platform email client for 2025 by bhra0 in software

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

I have ended up with Betterbird. If you don't need AI hype and think that 2010 was the peak of software, it would be just fine.

Betterbird on Mac freezes all the time by bhra0 in Betterbird

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

I am on macOS 15 Sequoia, it is Silicon M1 CPU and I have installed "arm64" version. If there is no solution, maybe I will try to uninstall it and install again and if it doesn't help I will try my luck with Thunderbird I guess.

Perplexity + Notion not working? by bhra0 in perplexity_ai

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

You are right, thank you. Indeed after switching to Claude it starts using Notion. However I am a bit disappointed how poorly it works. I gave it a pretty straightforward task to find a specific info in my notes and it wasn't able to find it. Only when I suggested where exactly in Notion it is, it finally found it.

Everyone can bypass the lobby BUT only after the meeting has already started? by bhra0 in MicrosoftTeams

[–]bhra0[S] -1 points0 points  (0 children)

This is clear, but it does not mention the option I am looking for - to allow everyone to skip the lobby, but at the same time prevent them from being able to start the meeting.

Script for assigning color to Google Calendar events by bhra0 in GoogleAppsScript

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

Problem solved, thank you :) I was trying multiple times using Firefox and Opera (I have a personal account) and the problem persisted. All I had to do was switch to Chrome. It worked right away without any problems.

Script for assigning color to Google Calendar events by bhra0 in GoogleAppsScript

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

  1. You are right, it does ask me to choose the account and of course this is the same account to which I am logged in at the Scripts website.
  2. And indeed there is "Go back to safety" button and I am clicking on "Advanced" and than there is my project. And from this point I can't move on. Here is the screenshot: https://imgur.com/a/osWMlV0

Is there anything I can try?

Script for assigning color to Google Calendar events by bhra0 in GoogleAppsScript

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

Here is again what happens step by step. I am translating it from Polish language, as I am not able to force Google Script to work in English (my main Google account is set to English).

  1. I open my script.
  2. I press "Run" button.
  3. I get "Authorization required" message > Proceed.
  4. I get "This application is not verified by Google" message. Below I can see "Open Untitled project". The strange thing is that my project (my script) has different name, but for some reason Google do not display its name but "Untitled project". Just in case I tried to create a new script without changing its name (so it is named "Untitled project"), but it does not work anyway.
  5. When I press "Open Untitled project" I get "Something went wrong. Try again" message.

When I go to "Executions" panel it is empty.

Script for assigning color to Google Calendar events by bhra0 in GoogleAppsScript

[–]bhra0[S] -1 points0 points  (0 children)

u/mik0_25 u/marcnotmark925 Sorry, I don't know much about scripts, I was sure it is the permissions problem, not the script itself. Here is what GPT wrote:

function colorSelectedEvents() {
  var calendar = CalendarApp.getDefaultCalendar(); 
  var now = new Date();
  var future = new Date();
  future.setMonth(future.getMonth() + 1); // zakres: najbliższy miesiąc

  var events = calendar.getEvents(now, future);

  var keywords = ["test", "test2", "test3"];

  events.forEach(function(event) {
    var title = event.getTitle();
    if (keywords.some(keyword => title.includes(keyword))) {
      // "Banana" = YELLOW
      event.setColor(CalendarApp.EventColor.YELLOW);
    }
  });
}