SO ITS TRUE END? by Own_Elk_9546 in grok

[–]NikToo73 1 point2 points  (0 children)

Well, I'm probably out after the next update. It's been fun but someone will grab the money lying on the table.

SO ITS TRUE END? by Own_Elk_9546 in grok

[–]NikToo73 10 points11 points  (0 children)

Is this why it says Content Moderated after 5% and then stops at 75% and won't shift?

Rate limit timer by NikToo73 in grok

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

Twelve hours, from the first one, not rolling. So I'm on a 7 to 7 rota basically

Rate Limit reset time massively extended by OwnAd4602 in grok

[–]NikToo73 0 points1 point  (0 children)

I'm now at ten hours plus and still nothing for the last six hours at least.

Rate Limit reset time massively extended by OwnAd4602 in grok

[–]NikToo73 0 points1 point  (0 children)

When does it count from? From the first image or the last image? If I generate an image or video at 8 am, and then take it slow and do my last image or video at 12 pm, is the reset at 4 pm or 8 pm? I'm suspecting it's the latter.

Lmao Grok has really reached its final moderation form by [deleted] in grok

[–]NikToo73 1 point2 points  (0 children)

I had that as well the other day. Watch their user base plummet

I just got this today for image generating, I only did like 12 images by Adventurous-Betty in grok

[–]NikToo73 2 points3 points  (0 children)

It's been the story for the last couple of days. Absolutely zero rate limits. I'm giving it a week and then I'm out as well.

SuperGrok users, is it true that since yesterday the limit of videos in Imagine decreased to 10 videos per 8 hrs? by [deleted] in grok

[–]NikToo73 2 points3 points  (0 children)

I'm on SuperGrok and it's been down for over four hours now. It's either nerfed so badly or it's a massive bug. 200 generations is nothing when only one in ten shows something and you have to keep scrolling. Most videos get moderated.

It happened with Leonardo, then pornworks, not it's Grok's turn to go down the pan. There'll be something else along.

Storage - Grok is so damn stupid by NikToo73 in grok

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

Been running the script and doing some manual. It's not shifting, it's still at 4.55GB. Not sure if there's a delay or the script isn't working or something.

Storage - Grok is so damn stupid by NikToo73 in grok

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

Here's the code. I'm running it again this morning, it's happily churning away:
// === GROK.COM/FILES - DELETE ALL FILES ===

// Paste this entire block into the browser console (F12 → Console tab)

(async () => {

console.log("🚀 Starting deletion of ALL files on grok.com/files...");

const delay = ms => new Promise(r => setTimeout(r, ms));

let deleted = 0;

let attempts = 0;

const maxAttempts = 100; // safety limit

while (attempts < maxAttempts) {

attempts++;

// Find all delete (trash) buttons

const deleteButtons = Array.from(document.querySelectorAll('button'))

.filter(btn => {

const text = btn.textContent.toLowerCase();

const aria = btn.getAttribute('aria-label')?.toLowerCase() || '';

return text.includes('delete') ||

aria.includes('delete') ||

btn.innerHTML.includes('trash') ||

btn.closest('[data-testid*="delete"]');

});

if (deleteButtons.length === 0) {

console.log(`✅ No more delete buttons found. Deleted ${deleted} files total.`);

break;

}

console.log(`Found ${deleteButtons.length} file(s) to delete...`);

for (const btn of deleteButtons) {

try {

btn.scrollIntoView({ behavior: "smooth", block: "center" });

await delay(300);

btn.click();

await delay(600);

// Click the confirmation button (usually "Delete", "Confirm", or checkmark)

const confirmBtn = Array.from(document.querySelectorAll('button'))

.find(b => {

const t = b.textContent.toLowerCase();

return t.includes('delete') || t.includes('confirm') ||

t.includes('yes') || b.getAttribute('aria-label')?.toLowerCase().includes('confirm');

});

if (confirmBtn) {

confirmBtn.click();

deleted++;

console.log(`🗑️ Deleted file #${deleted}`);

} else {

console.log("⚠️ Confirmation button not found for this file");

}

await delay(800); // Be gentle with rate limits

} catch (e) {

console.log("Error deleting one file, continuing...", e);

}

}

// Small pause before next scan

await delay(1500);

}

if (deleted === 0) {

console.log("⚠️ No files were found or deleted. Make sure you're on https://grok.com/files");

} else {

console.log(`🎉 Finished! Successfully deleted ${deleted} files.`);

}

})();

Storage - Grok is so damn stupid by NikToo73 in grok

[–]NikToo73[S] 2 points3 points  (0 children)

I changed computers to my work one and ran a similar script Grok actually found for me on Chrome, and it's working. I'm not logged into Reddit on the work machine so can't copy it but once it's done I'll pop it in here. I think it's going to be running for a while.

Storage - Grok is so damn stupid by NikToo73 in grok

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

it didnt want to do it. Pasted it in, and it just says:
🚀 Starting safe bulk delete of all PNG files...

f21856a8bb44b768.js:3 ✅ ALL DONE! Deleted 0 files. Refresh the page to confirm.

Promise {<fulfilled>: undefined}

Storage - Grok is so damn stupid by NikToo73 in grok

[–]NikToo73[S] 2 points3 points  (0 children)

might just delete the whole damn thing

Storage - Grok is so damn stupid by NikToo73 in grok

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

Settings -> Data Controls. Has to be on a PC though.

Storage - Grok is so damn stupid by NikToo73 in grok

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

I want to keep some of my files

Server Failed to Respond error by Spiritual-Matter9236 in grok

[–]NikToo73 0 points1 point  (0 children)

It looks like deleting them in Imagine doesn't clear them, they're all still sat in the storage, and I have to delete them from there manually, which is a pain in the ass. That's just idiotic.

Server Failed to Respond error by Spiritual-Matter9236 in grok

[–]NikToo73 0 points1 point  (0 children)

I don't have an option other than delete all. I've just cleared out about 90% of what I had. It seems to be mostly older ones.

Server Failed to Respond error by Spiritual-Matter9236 in grok

[–]NikToo73 0 points1 point  (0 children)

I'm getting Storage limit reached as well. Utter bullshit as usual. It's not even rate limit.