Goobric Script Error - google-apps-script

I have been getting the pictured email for 3 weeks now. I have remove and reinstalled both Goobric and Doctopus to see if it would fix the error. I have attempted to debug as well to no avail. I know nothing of coding or script writing but I am willing to try anything to stop getting these. Any help is greatly appreciated.

Where it says "click here" you will be led to a place where you can remove the time trigger that is causing this notification.

Related

Error in google scripts - DocumentApp.openById

Since a couple of days im having this error:
We're sorry, a server error occurred. Please wait a bit and
try again
When this line its executed:
var temp = DocumentApp.openById(newTemplate.getId());
My code was working already, so i think its something internal of Google?
Any help? Thanks a lot
Alejandro
It seems like there is curently a bug
See here and here.
While you might get this error because of e.g. trying to open a non Google Docs document with DocumentApp, it is also possible that your problem is related to the bug.
give it a star to increase visibility.

Out of memory error for more than a day. Code does not run

I made a Slackbot with Google Apps Script and everything was fine until yesterday I started getting Out of memory error out of nowhere. Now I can't even run any of my working code. Has anyone encountered something similar? Not even console.log() will print, it just gives the same error. I tried running a simple function with console.log() in it and that didn't work either.
This is the code in my project. I wrote an infinite loop before to do spreadsheet actions but now it is removed.
function test() {
console.log("1");
}
The Out of memory error alert occurs because a variable grew too much on size. Without looking at your code I can't point which variable caused this behaviour, but I can help you in the right direction: first of all make sure that you are not saving all the data in a single variable. After that, check that there is no infinite loop in the code.
I hope to have helped you, but if you keep facing the problem don't hesitate to share the code so I can help you better.

So I can't seem to properly update my visual studio, and it keeps giving me this error

https://github.com/thiccswwss/Error/blob/master/.github/workflows/ERROR
Sorry, it won't let me put the entire error message into here, I wold really appreciate it if someone could help me. I am trying to make a music bot for discord, and every time that i try to use npm i node-opus it gives me that message.

rectangle function undefined in octave

for some reason, neither the octave terminal, nor my editor recognizes the rectangle-function.
For example, when I try to get the documentation via the help command, I get this:
octave-3.2.4:41> help rectangle
error: help: `rectangle' not found
I'm sure it's an incredibly stupid error, but I just can't find it.
Everything else is working fine.
I appreciate any help!
Hannah

Am I using the find method of the folder class correctly?

I had a script that used the find method of the folder class and it has worked fine for quite a while. Suddenly today it stopped working. I get the 'We're sorry, a server error occured. Please wait a bit and try again' message. It stopped working this morning.
I was able to recreate this error with just a few lines of code in new small script.
function myFunction() {
folder = DocsList.getFolder('test');
folder.find('testfile');
Logger.log('anything');
}
I made sure I had a folder called test and a file called testfile inside of it.
Any ideas why I am getting this error?
Thank you.
This has been recently reported as an issue -
https://code.google.com/p/google-apps-script-issues/issues/detail?id=2482
Please star it so that you can get notified of updates.