79336293

Date: 2025-01-07 14:18:51
Score: 3.5
Natty:
Report link

same issue on all my looker studio. Interested in getting feedback from others.

Note this issue has happened a couple of months ago. Previously all was working fine !

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Camille THOMAS

79336291

Date: 2025-01-07 14:17:50
Score: 1.5
Natty:
Report link

No worries, Found what was wrong It was just comparison in the while loop

while(!pq.empty() && pq.top().first <= v[i])

Here, value of v[i] can get smaller than first value of priority queue, because of using mod on v[i], to get the correct answer, I needed to compare that with complete value without modding it

Changed it to this

while(!pq.empty() && (cnt > 32 || pq.top().first <= sa*(1ll << cnt)))

And it worked, though priority queue gave a TLE

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Parag Patkulkar

79336290

Date: 2025-01-07 14:16:50
Score: 1
Natty:
Report link

When it comes to changing the player's actual nametag, you have already discovered some of the only methods of doing this: by altering the protocol and using reflection. However, in most use-cases these methods are unsuitable as they change the behaviour of other functionalities, like how you encountered issues with the name not appearing in tab-completions, plugin commands, etc. If you change a players name on the server, it will essentially change everywhere.

To achieve the result of a custom nametag, as you have seen on servers such as Hypixel, you can utilise a nifty workaround. Instead of changing the player name, you can programmatically create an invisible armour stand at the player's position and alter the nametag of the armour stand entity instead, creating an illusion of a custom player nametag, when in reality you're looking at an invisible armour stand's nametag instead.

It can be quite difficult to implement this yourself, however, and I would recommend you use a library which will handle all the armour stand trickery for you. Try utilising Neznamy's TAB resource (Developer API).

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When it
  • Low reputation (1):
Posted by: cam

79336287

Date: 2025-01-07 14:14:49
Score: 1.5
Natty:
Report link

I needed max value for token.approve(contract, amount). My token is 18 decimals and used, BigInt("0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF") this was big enough for my case.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: att

79336282

Date: 2025-01-07 14:12:49
Score: 3.5
Natty:
Report link

Just use fuse create a custom filesystem.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: clysto

79336281

Date: 2025-01-07 14:12:49
Score: 1.5
Natty:
Report link

Okay after more investigation i found this issue SSHD-731 which depicts a very similar situation.

Looking at the changes made in the commit to patch it it's possible to see how to detect the "open for write" action. It must be done in the opening method of the SftpEventListener and it's like this:

@Override
    public void opening(ServerSession serverSession, String remoteHandle, Handle localHandle) throws IOException {
        if (localHandle instanceof FileHandle fileHandle) {
            if (GenericUtils.containsAny(fileHandle.getOpenOptions(), IoUtils.WRITEABLE_OPEN_OPTIONS)
                    && localHandle.toString().startsWith(this.storageReportsDirectoryPathString)
                    && /* Custom condition like "file is inside a given read-only directory" */) {
                throw new AccessDeniedException("Operation not permitted for the authenticated user");
            }
        }
    }

Hope it helps anyone facing the same issue.

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: wileecoyote

79336275

Date: 2025-01-07 14:09:48
Score: 0.5
Natty:
Report link

The issue is that this service is registered as scoped

builder.Services.AddScoped<IUnitOfWork, UnitOfWork>();

It needs to be a singleton for the background worker.

If you need the lifetime to be scoped for UnitOfWork, read up here on how to create a scope within your worker. https://learn.microsoft.com/en-us/dotnet/core/extensions/scoped-service

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Josh

79336274

Date: 2025-01-07 14:09:47
Score: 4.5
Natty:
Report link

enter image description here

Did you try installing Lombok plugin in IntelliJ?

Reasons:
  • Whitelisted phrase (-2): Did you try
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Poorna

79336269

Date: 2025-01-07 14:06:46
Score: 2
Natty:
Report link

For detail instruction on how to setup VSCODE as a merge tool:

https://davidrunger.com/blog/using-vs-code-as-a-rails-app-update-merge-tool

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: rip747

79336267

Date: 2025-01-07 14:05:46
Score: 2
Natty:
Report link

The within argument was ill defined.

power_curve2 <- powerCurve(model, within="g", breaks=c(30,40,50,100), nsim = 100, test = fixed("x", method = "z") )
plot(power_curve2)

gives you something like: enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Linus

79336261

Date: 2025-01-07 14:04:45
Score: 0.5
Natty:
Report link

One workaround could be by using savedStateHandle to add a flag and then check this flag when running the LaunchedEffect , for example:

LaunchedEffect(Unit) {
 if (it.savedStateHandle.get<Boolean>("firstTimeFlag") == null) {
  //Do your work 
 }
 it.savedStateHandle.["firstTimeFlag"] = true
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hugo Landim

79336249

Date: 2025-01-07 13:58:44
Score: 3
Natty:
Report link

I think polymorphism and inheritance these 2 oops concepts are used here. because object class is the parent class of every class.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pranali

79336246

Date: 2025-01-07 13:57:44
Score: 1
Natty:
Report link

If I have understood correctly, you didn't deactivate tag pages (also known as archives) per Yoast SEO, because there you only can prevent these pages from being indexed by search engines.

That being said, I guess you should have a look into the WP-Admin section of your Custom Post Types Plugin and search for dedicated tags for custom post types. As your example is a 404 page, it seems that there is something wrong. For example the tag was there once and was deleted after Ahrefs found the url.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: yamscodes

79336242

Date: 2025-01-07 13:56:44
Score: 1.5
Natty:
Report link

I got the same issue when I launched IDEA Community Edition 2020.3.3. After trying several solutions provided in this post, the issue persists. I finally fixed this issue by: 1.Installing the latest version of JDK, which is version 25. 2.Installing the latest version of IntelliJ IDEA: Community Edition 2024.3.1.1, and keeping the user data and configuration while installing.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: JackeyXu

79336236

Date: 2025-01-07 13:56:44
Score: 2
Natty:
Report link

It’s exactly the same process for unloading data from any other account using COPY INTO.

Please review the below documentation for more information and examples:

https://docs.snowflake.com/en/sql-reference/sql/copy-into-location

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sasank Sharma

79336235

Date: 2025-01-07 13:55:44
Score: 3
Natty:
Report link

For anyone that finds this, it ended up being an extension that I had installed that was causing the issue. Once I removed the extension, the stray semicolon went away.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Harlan

79336234

Date: 2025-01-07 13:55:44
Score: 3
Natty:
Report link

Thanks braX and Ian for this solution!

I have a follow up question to this: what if your backend database is linked to your frontend database, and you wish to add a relationship wherein the FE database has a table strTable you wish to relation to a BE database table strFTable?

Thanks for any help you can offer on this!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): any help
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: David D

79336233

Date: 2025-01-07 13:54:43
Score: 1
Natty:
Report link

I encountered the same question on Windows.

A command!{sys.executable} -m pip install 'git+https://github.com/facebookresearch/sam2.git' can be found on Colab

So, python -m pip install git+https://github.com/facebookresearch/sam2.git seems to work fine.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shower Hu

79336221

Date: 2025-01-07 13:50:42
Score: 0.5
Natty:
Report link

run the following command if you want to install android-studio:

make sure you have everything update:

sudo apt update
sudo apt upgrade

add the latest repository:

sudo add-apt-repository ppa:maarten-fonville/android-studio -y

run the update:

sudo apt update

then install it:

sudo apt install android-studio
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Marcelo Cesar

79336204

Date: 2025-01-07 13:42:40
Score: 1.5
Natty:
Report link

combination of prefetching/ partial prerendering / aggressive caching is a good idea

there has been especially 2 recent demos that go over this thoroughly!

project 1 code demo project 2 code demo

a good overview in a more birds eye view

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: user19259811

79336202

Date: 2025-01-07 13:42:40
Score: 2.5
Natty:
Report link

in MySQL Workbench - Go to your connections in home page . Right click - select option "Copy JDBC Connection String to Clipboard".

example : jdbc:mysql://127.0.0.1:3306/?user=root

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Rishu Kumar

79336189

Date: 2025-01-07 13:38:39
Score: 3.5
Natty:
Report link

This blog post (Example 4: Configure Lambda Log Groups) talks about setting the log retention for all the log groups through aspects.

Reasons:
  • Blacklisted phrase (1): This blog
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Alex Jäger

79336188

Date: 2025-01-07 13:38:39
Score: 2
Natty:
Report link

I know this is a very old question, and I don't know if in 2018 parameterized queries existed in BigQuery, but in case anyone from the future (like me) finds this, here is the docs:

Parameterized queries

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nebulonit

79336185

Date: 2025-01-07 13:36:38
Score: 2.5
Natty:
Report link

Change attribute to:

[Authorize(AuthenticationSchemes = IdentityConstants.ApplicationScheme)]

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: piyush sardhara

79336184

Date: 2025-01-07 13:36:38
Score: 0.5
Natty:
Report link

This probably means either your project is deleted or does not exists in the Expo cloud.

Go to your app.json, look for projectid is there. Then remove it and run new build eas build:configure.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: abdulwahid211

79336179

Date: 2025-01-07 13:35:38
Score: 3
Natty:
Report link

You need to add System.Linq.Dynamic.Core to your debug.cmd file to ensure that the file exists in your debug bin.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leigh Pointer

79336169

Date: 2025-01-07 13:31:37
Score: 3
Natty:
Report link

The behaviour @Tuilip experienced is because of relative path in form action attribute. Relative path in action will always replace anything after the last slash in url.

example: url is "/items/123" and form action is "delete" result will be "items/delete"

if url is "/items/123/" result will be "items/123/delete"

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @Tuilip
  • Low reputation (1):
Posted by: PeterFrom80s

79336161

Date: 2025-01-07 13:29:37
Score: 3.5
Natty:
Report link

cmd bluetooth_manager enable and disable works fine in non sudo mode. (adb should not be in root mode)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nandish R

79336149

Date: 2025-01-07 13:25:36
Score: 1.5
Natty:
Report link

This has been introduced in Vue version 3.5

https://vuejs.org/api/composition-api-helpers#useid

<script setup>
import { useId } from 'vue'

const id = useId()
</script>

<template>
  <form>
    <label :for="id">Name:</label>
    <input :id="id" type="text" />
  </form>
</template>
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Max

79336148

Date: 2025-01-07 13:24:36
Score: 0.5
Natty:
Report link

I'm pretty sure it's in the Metadata - so try MyView.Metadata.String("Path")

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: iJungleBoy

79336147

Date: 2025-01-07 13:24:36
Score: 0.5
Natty:
Report link

gmtdisas is a tool you can use to disassemble binaries...

https://github.com/volbus/gmtdisas

It has very few dependencies and can be compiled for both windows ans linux easily.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Maximilian

79336145

Date: 2025-01-07 13:24:36
Score: 3
Natty:
Report link

I'm also facing this same issue.

Reasons:
  • Blacklisted phrase (1): also facing this
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Lalit kumar

79336138

Date: 2025-01-07 13:23:35
Score: 2.5
Natty:
Report link

Jest works by replacing or spying on properties of objects (like fs.statSync when fs is imported as a whole). The issue with a named import is that there's no object or property available to mock

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: javierfdezsua

79336133

Date: 2025-01-07 13:20:34
Score: 2
Natty:
Report link

Hopefully this is not too premature, but it looks like the answer was down to Norton 360. Despite switching off protection, adding exclusions, etc. I was unable to prove this early.

But going back into Norton logs, I could see some activity appearing in the Sandbox log.

Basically, I reset Norton settings, added exclusions (ADVANCED SECURITY -> ANTI VIRUS) for the App.exe and the VS .exe :

Program Files\Microsoft Visual Studio\2022\Professional\Common7\IDE*

And after a reboot, I have been able to debug as normal without any unexpected Code Exit.

Unless I add to this due to further issues, assume one of the above was the resolution for this. Thanks for all the suggestions!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dave P

79336121

Date: 2025-01-07 13:15:32
Score: 3.5
Natty:
Report link

If nothing works in Windows OS, navigate to setting in the Chrome devtools window and then to shortcuts and Click Restore default shortcuts button.enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: no_doubt

79336117

Date: 2025-01-07 13:14:32
Score: 3
Natty:
Report link

The issue was caused because somewhere in the project path, there was a space in folder name "Personal Projects". Renaming it to "PersonalProjects" resolved the issue

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Om Thakkar

79336095

Date: 2025-01-07 13:07:31
Score: 0.5
Natty:
Report link

You need an upper and lower bound argument.

# return a random number inclusive of 0 and 2.
result = random.randint(0,2) 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: awongh

79336087

Date: 2025-01-07 13:03:29
Score: 2.5
Natty:
Report link

@Marcus Junius Brutus "...AUTOCOMMIT is the same thing as SET CHAINED OFF..."

Especially in this sense, it does not seem to be congruent and therefore this statement is rather confusing and should be taken with a grain of salt.

The auto_commit option is different from the chained option. https://help.sap.com/docs/SAP_IQ/a898e08b84f21015969fa437e89860c8/fdb9c1e166c841f2b0a20ade151a9051.html?locale=en-US

It is easy to evaluate past events with the wisdom of hindsight.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Marcus
  • Low reputation (1):
Posted by: ole

79336076

Date: 2025-01-07 12:59:28
Score: 2
Natty:
Report link

serverAdapter.setBasePath('/admin/showroom/queues');

app.use('/admin/showroom/queues', [auth.getToken, auth.authAdmin], serverAdapter.getRouter());

both serverAdapter.setBasePath and server path must be same

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ankit Kumar

79336071

Date: 2025-01-07 12:57:27
Score: 0.5
Natty:
Report link

This issue comes due to incompatibility of numpy with some other pre-installed packages in your virtual environment. Your numpy would have been upgraded to latest version by one of your user package installations (this other package, say tf, would have recently been upgraded and when you install it's latest version, it's pushing numpy to latest version as well. with this being done, packages, apart from numpy, remain same and would be compatible with older version of numpy).

NOTE: I have not mentioned versions here because this is a recurring problem with new releases, so you downgrade to a version that is older (say year or year and a half).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: akshat garg

79336062

Date: 2025-01-07 12:54:25
Score: 6 🚩
Natty: 5
Report link

I’m having this issue but not with docker.

How did you solve this issue.

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: nemerem

79336029

Date: 2025-01-07 12:44:22
Score: 0.5
Natty:
Report link

Duplicate, see C#: Getting size of a value-type variable at runtime?.

However:

public static class Utils
{
    public static int SizeOf<T>(T obj)
    {
        return SizeOfCache<T>.SizeOf;
    }

    private static class SizeOfCache<T>
    {
        public static readonly int SizeOf;

        static SizeOfCache()
        {
            var dm = new DynamicMethod("func", typeof(int),
                                   Type.EmptyTypes, typeof(Utils));

            ILGenerator il = dm.GetILGenerator();
            il.Emit(OpCodes.Sizeof, typeof(T));
            il.Emit(OpCodes.Ret);

            var func = (Func<int>)dm.CreateDelegate(typeof(Func<int>));
            SizeOf = func();
        }
    }
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dave

79336027

Date: 2025-01-07 12:44:22
Score: 3.5
Natty:
Report link

httponly cookie is safer since javascript wont be able to access it.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kamal soni

79336014

Date: 2025-01-07 12:37:21
Score: 2
Natty:
Report link

I have failed to pass the Popup page to the View Model and so I have changed to using a click event with code behind as shown in the Community Toolkit documentation. Although this means abandoning MVVM for this page, it does work perfectly with no remaining questions or problems. I am surprised that no mention of MVVM is made in the Popup documentation and this suggests to me that there may be an underlying problem when used with .Net9.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user3017691

79336011

Date: 2025-01-07 12:36:21
Score: 1.5
Natty:
Report link

Maybe not an answer, more a help to guide you towards what the problem is.

strptime has a lot of different formats as seen on the following link; https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior

From this you can see that the given date format '%m/%d/%Y' is expecting values exactly like mm/dd/yyyy, yet your input in m/d/yy.

I know you can fix the year with changing the format from Y to y, whereas the date format would be '%m/%d/%y'. This does not fix month and date, but maybe it does not need the full format, cant tell for sure.

Hope this helps.

Reasons:
  • Blacklisted phrase (1): not an answer
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: DAXi

79336010

Date: 2025-01-07 12:36:21
Score: 2.5
Natty:
Report link

You can first press Ctrl + F to find the word across the file. Once the find dialog box appears enter the word you want to find and use Ctrl + W to match the exact word and Ctrl + C to make the search case sensitive.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shrivatsa Shetty

79336001

Date: 2025-01-07 12:32:19
Score: 4.5
Natty:
Report link

Move back to the previous python version (2024.22.0) the 2024.22.1 is broken right know for some config

see this link for more infos : https://github.com/microsoft/vscode-python/issues/24655

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): see this link
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: athenadike

79335999

Date: 2025-01-07 12:31:18
Score: 2.5
Natty:
Report link

in the requirements.psd1 file i commented the line #'Az' = '13.*' then used import-module Az in my script which seemed to solve the problem for now but azure says it is just a temporary solution and preferrably import the module in the requirements in the file but if it gets buggy and the error persists (my case) resort to the method i did

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: confusedJunior

79335997

Date: 2025-01-07 12:31:18
Score: 1.5
Natty:
Report link

we had very similar issue. It seems that by default the "uri" module was not using basic auth, but was using different type of auth. Therefore forcing basic auth has resolved this for us.

force_basic_auth: true

https://docs.ansible.com/ansible/latest/collections/ansible/builtin/uri_module.html#parameter-force_basic_auth

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ildar Galikov

79335992

Date: 2025-01-07 12:29:17
Score: 4
Natty:
Report link

Probably you have high cardinality metrics. Your probably need to shard ingestion or scraping.

Here is more info: https://github.com/thanos-io/thanos/issues/7503#issuecomment-2204020215

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Olgerdas

79335991

Date: 2025-01-07 12:29:17
Score: 5
Natty:
Report link

https://www.facebook.com/profile.php?id=61570550673783&mibextid=ZbWKwL How I can get back my FB account because someone is hacking my fb

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How I can
  • Low reputation (1):
Posted by: Lirpa Enaj Noicitram

79335990

Date: 2025-01-07 12:29:16
Score: 9 🚩
Natty:
Report link

Have you found out a solution for it? I am facing the same issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found out a solution for it
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Noman Mangalzai

79335984

Date: 2025-01-07 12:26:15
Score: 2
Natty:
Report link

Computer comfiguration will apply settings on computer itself, even so session isn't connected with a domain session .

You can create computer configuration settings in your GPO on the OU containing domain computer. Otherwise you should us loopback configuration

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Derepas Benjamin

79335982

Date: 2025-01-07 12:25:15
Score: 2.5
Natty:
Report link

you have 2 solution may work with you:

1- File -> Repair IDE

2- File -> invalidate caches -> enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: Mounir bkr

79335964

Date: 2025-01-07 12:21:14
Score: 0.5
Natty:
Report link

One solution with Pandas:

# Stack to get the wanted format
df = df.stack().reset_index()
# Rename the columns
df.columns = ['Location', 'Species', 'number']
# Update the columns order 
df = df[df.columns.tolist()[::-1]]
# Order data by Species
df = df.sort_values('Species')
# Remove the index
df = df.reset_index(drop=True)

display(df)

df

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: rehaqds

79335960

Date: 2025-01-07 12:21:14
Score: 2.5
Natty:
Report link

if you want to model study as a random effect the code you have currently isnt doing that you have study on the right hand side of the verticle pipe. Thats the cluster variable (either individuals, schools, etc) add study to the fixed effects and also add it to the random effects so (1+study|cluster term).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tomas Mathews

79335945

Date: 2025-01-07 12:15:12
Score: 0.5
Natty:
Report link

I’m not entirely sure if enforcing this type-check is possible. It might be, but I don’t know how to achieve it.

Since you’ll probably use a workaround anyway, here’s a much simpler approach you can try:

const construct = <R>(f1: () => R, f2: (x: R) => void) => ({
  f1,
  f2,
});

const result = construct(
  () => 'string',
  (x) => {}
  // ^ x: string
);

Playground

If you prefer to declare as an object you can do so as well:

const construct = <R>(obj: { f1: () => R; f2: (x: R) => void }) => obj;

construct({
  f1: () => true as const,
  f2: (x) => {},
  // ^ x: true
});

Playground

Reasons:
  • Blacklisted phrase (1): how to achieve
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Janek Eilts

79335942

Date: 2025-01-07 12:14:12
Score: 1
Natty:
Report link

I fixed it by upgrading gradle version from 8.7-all to 8.9-all

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mohammad

79335940

Date: 2025-01-07 12:13:12
Score: 0.5
Natty:
Report link

Check SLF4J Bindings:

Review Logging Levels and Configuration Files:

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: hope

79335931

Date: 2025-01-07 12:10:11
Score: 1
Natty:
Report link

I had encountered a similar problem and after banging my head for 2 hours I found the solution to be quite simple. This error is being occurred because you shouldn't use hooks like state inside loops. Instead try to go for local variables. Also if you are handling promises or getting async data which cannot be handled through variables then create a separate component for that and then you can successfully use your hooks inside map function or loops without getting any error.

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Contains signature (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sid

79335922

Date: 2025-01-07 12:05:10
Score: 2.5
Natty:
Report link

ui->myWidget->grab().save("image.png");

works fine. But the QActionList from my QToolButton ist not "printed". The QToolButton is printed fine. But without the List

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Erik Böhme

79335921

Date: 2025-01-07 12:05:07
Score: 11 🚩
Natty:
Report link

I have the same issue! And i didn't finde the @payloads annotation! Where did you find it

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): did you find it
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • User mentioned (1): @payloads
  • Single line (0.5):
  • Low reputation (1):
Posted by: ABDELJALIL LAFKIR

79335913

Date: 2025-01-07 12:02:06
Score: 1
Natty:
Report link

I experienced the same error. The problem is the formatting of the JSON response from the server. DataTables looks for the keyword 'data' in your response and you currently have none.

Change your server side code from:

 function getUsers(){
   $this->db->select('id,username');
   $query = $this->db->get('user');
   $data = $query->result();
   echo json_encode($data); 
 }

To:

 function getUsers(){
   $this->db->select('id,username');
   $query = $this->db->get('user');
   $data = $query->result();
   echo json_encode(array('data'=>$data)); 
 }

For more information on this and other common DataTable errors, you can visit this link -> jQuery DataTables: Common JavaScript console errors

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Simile Mhlanga

79335903

Date: 2025-01-07 11:58:05
Score: 1.5
Natty:
Report link

you can try to replace const sendValue = ethers.parseEther("10"); to const sendValue = ethers.parseEther("10"); that work for me `

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29089794

79335900

Date: 2025-01-07 11:58:05
Score: 1
Natty:
Report link

A few days back I was also struggling with the same issue to convert MSG to TXT, and then one of my friends suggested me to use the professional MSG Converter. I quickly reached out to their official website and downloaded the trial version of it which is completely free of cost and has the same layout as well as features like the paid one.

Trust me when I say that the moment I used it, I decided to get its premium version as it has various file-saving options, dual MSG file selection modes, advanced filters for better output, a file-naming option, and so on. This MSG to TXT Converter makes the entire conversion process easy, fast, and reliable which is not altogether offered by any other similar tool in the market.

The easy steps to use this tool to convert MSG file to TXT are:

  1. Install the MSG to TXT Converter and run it.
  2. Now, click on Select Folders or Select Files to pick the MSG files.
  3. Next, choose the file-saving option as TXT.
  4. After this apply the filter for better results.
  5. Then, select the file-naming option and file-saving destination.
  6. Finally, click on Convert and your task to save MSG to TXT will be done in a woosh.

Isn't it magical? I really really like this tool and recommend everyone who wants to flawlessly convert MSG to TXT or any other file format.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Preeti Digitalberge

79335884

Date: 2025-01-07 11:54:03
Score: 2
Natty:
Report link

Try putting code below in the menu frame:

margin-top: -1rem;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Garpusha

79335883

Date: 2025-01-07 11:53:03
Score: 2
Natty:
Report link

for this problem i have first uninstall the next js and then again install the next globally

npm uninstall next

then

npm i -g next

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: siddhant verma

79335880

Date: 2025-01-07 11:53:03
Score: 3
Natty:
Report link

I had a temp table called #t that I used to generate the add job steps queries. When I removed that my problem disappeared.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mestofiles

79335876

Date: 2025-01-07 11:52:02
Score: 1
Natty:
Report link

If you have overflow-x: hidden in one of your parent elements, you should remove it first.

I had it in body element and i was working in y-axis for vertical scrolling and i thought it wouldn't have effect on it.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: agpmmdreza

79335867

Date: 2025-01-07 11:50:02
Score: 2
Natty:
Report link

What solved it for me is just writing as Href, that successfully solved the typescript complaint:

if (originScreen) router.navigate(`/${originScreen}` as Href);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): What solve
  • Low reputation (1):
Posted by: Matko Milić

79335861

Date: 2025-01-07 11:46:01
Score: 1.5
Natty:
Report link

It turned out that I was not accessing the bucket that I thought due to a missing environment variable causing a default bucket name to be used. Unfortunately, the default bucket name turned out to be a real bucket registered by a different AWS account in a different region. The AWS error message is therefore correct, but the problem would have been more obvious had the error message included the name of the bucket for which access is denied.

The environment variable was defined locally, and so did not affect my local development machine - only the deployed instance was affected. Be sure to print the bucket name before calling the SDK to be sure that 'the resource' to which access is denied is as expected.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Paul Wells

79335857

Date: 2025-01-07 11:45:01
Score: 1.5
Natty:
Report link

Simply running

flutter clean

on the terminal, and then running again, fixed it for me.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: n_r

79335855

Date: 2025-01-07 11:44:00
Score: 2
Natty:
Report link

Maybe you wanna close some applications that are not being used they are being looked at by the file watchers and reduce some load to it.

In my case closing the other projects gave me some breathing room and the issue was fixed.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: haninstsolo

79335846

Date: 2025-01-07 11:42:00
Score: 1.5
Natty:
Report link

You'd want to start with a Base64InputStream. See https://commons.apache.org/proper/commons-codec/apidocs/org/apache/commons/codec/binary/Base64InputStream.html

After the bytes are back in json, you'd use a streaming api like https://www.baeldung.com/jackson-streaming-api

ref: How to parse an input stream of JSON into a new stream with Jackson

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: user2023577

79335840

Date: 2025-01-07 11:38:59
Score: 1.5
Natty:
Report link

scope keyword is not a part of standard Knockout.js. It is a Magento 2-specific feature that extends Knockout.js functionality.

It defines the context or "scope" in which the bindings will be applied. Essentially, it specifies a ViewModel (in this case, block-totals) that will be used as the context for all child bindings within the element.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shakil Ahmed

79335831

Date: 2025-01-07 11:34:59
Score: 2
Natty:
Report link

have you read this github issue perhaps? Overriding the google_maps_flutter_ios dependancy to version 2.13.1 worked for me, now the Info Window pops up again on iOS in my app. Of course, let's hope they fix the issue in a future release of the package.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lupus

79335829

Date: 2025-01-07 11:32:58
Score: 1.5
Natty:
Report link

Try what mentioned in below link. It worked for me after doing so.

exclude org.junit.jupiter from healenium's dependency

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sreekanth

79335823

Date: 2025-01-07 11:31:58
Score: 3
Natty:
Report link

A developed the same functionality some time ago, you can find it here

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kashif Masood

79335818

Date: 2025-01-07 11:30:57
Score: 1
Natty:
Report link

First re export the client component from a file with use client directive at top. (yeah the component being exported is alreayd client but still you should re export it with use client directive)

Case 1: If it is route other then root (index) page then

Then render your re exported component in server component and pass your data directly.

Case 2: If it is index page app/page.jsx then you have 2 options

Option A. Either make page/jsx a server component and render the re exported client component here. As your page is server component now you can do server activity or fetch data and pass it down to client component directly.

Option B. Or use parallel routing which will allow you to have dedicated layout for (Root page) index page app/page.jsx

If you are confused about how to use option B - parallel routing for this problem then read this detailed answer with demo https://stackoverflow.com/a/79335643/9308731

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: CrackerKSR

79335816

Date: 2025-01-07 11:29:57
Score: 1.5
Natty:
Report link

I've tested this and it works:

# Create custom http client without ssl ceritificate validation
authorised_http = AuthorizedHttp(
    creds, httplib2.Http(disable_ssl_certificate_validation=True)
)
# Call the Gmail API
service = build("gmail", "v1", http=authorised_http)

Sources:

  1. The Gmail API docs for the build function: https://googleapis.github.io/google-api-python-client/docs/epy/googleapiclient.discovery-module.html#build
  2. The Gmail API python client source: https://github.com/googleapis/google-api-python-client/blob/main/googleapiclient/_auth.py#L100
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: rookwood101

79335815

Date: 2025-01-07 11:29:57
Score: 3.5
Natty:
Report link

Got it working. tried out whats mentioned in below link.

Exclude junit.jupiter in healenium's dependency

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sreekanth

79335812

Date: 2025-01-07 11:27:56
Score: 0.5
Natty:
Report link

i have found the solution follow the below steps step:1 download opencv and extract it set the paths in environment variable (system variable path(bin,include,lib))

step:2 Install Python 2.7 or Python 3.x. Add Python to the system PATH during installation.(add the path to the system variable)

step:3 Download and install Visual Studio Community Edition. During installation, select the Desktop Development with C++ workload. add the path to the system variable inside the environment variable check it properly install or not(in Developer command prompt run the command "cl") step:4 then in your node project terminal run this "npm install opencv-build " after this run "npm install opencv4nodejs" it will be installed succesfully step:5 check its installed properly in app.js use this

const cv = require('opencv4nodejs'); console.log('OpenCV version:', cv.version);

the output will be OpenCV version: { major: 3, minor: 4, revision: 6 }

if any problem arises conatact me on [email protected]

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Soumya ranjan Mansingh

79335802

Date: 2025-01-07 11:24:56
Score: 3
Natty:
Report link

the VEZA is fix's tnx for the anser. Sep Roland.

but sil cant reslof the, problem wy the , word, long (dw). give me, a build problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: van Thielen

79335796

Date: 2025-01-07 11:21:55
Score: 2
Natty:
Report link

https://www.img4you.com/remove-background

I recommend using the above online background removal tool. After uploading the image, you can remove the background with one click. It is completely free and the effect is very good.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: sousong

79335786

Date: 2025-01-07 11:14:54
Score: 2.5
Natty:
Report link

select right(rtrim('94342KMR'),3) This will fetch the last 3 right string.

select substring(rtrim('94342KMR'),1,len('94342KMR')-3) This will fetch the remaining Characters.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Om Darade

79335780

Date: 2025-01-07 11:12:53
Score: 1.5
Natty:
Report link

It seems like newer versions of WiX also use an updated thmutil schema. You can look at the newer documentation here. In your case I think you need to add the "Id" attribute to the Image element, which the documentation says is required.

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29089111

79335779

Date: 2025-01-07 11:12:53
Score: 1.5
Natty:
Report link

Example Fix Here's an example of valid bot commands:

const { Telegraf } = require('telegraf');
const bot = new Telegraf('YOUR_BOT_TOKEN');

bot.command('start', (ctx) => {
    ctx.reply('Welcome to the bot!');
});

bot.command('help', (ctx) => {
    ctx.reply('How can I assist you?');
});

bot.launch();

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dorbin wifi

79335773

Date: 2025-01-07 11:11:53
Score: 2.5
Natty:
Report link

enter image description here

This problem appears when you install the Android Studio environment with the Flutter framework

You can deal with it through the following:

Go to: hange distributionUrl parameter gradle-wrapper.properties file to a newer gradle version in file: "/android/gradle/wrapper/gradle-wrapper.properties"

And: distributionUrl=https:

For example: distributionUrl=https://services.gradle.org/distributions/gradle-4.10.1-all.zip

Note: These steps differ from one Android version to another

Reasons:
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Low reputation (1):
Posted by: Musab Muhammed

79335770

Date: 2025-01-07 11:09:53
Score: 1.5
Natty:
Report link

You can add dayDuration.join() to wait for the first coroutine to complete. To stop collect it is enough to call cancel().

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: dmortal

79335768

Date: 2025-01-07 11:09:53
Score: 0.5
Natty:
Report link

this is the solution I found out.

TextField("", text: $email, prompt: Text("Email").foregroundColor(Color.white))
                            .frame(height: 50)
                            .keyboardType(.emailAddress)
                            .foregroundColor(UIColor.flax)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shadab Hashmi

79335766

Date: 2025-01-07 11:09:53
Score: 3
Natty:
Report link

Unfortunately, Memgraph's GSS doesn't have that option, but there is an option to display edge text only if there is a small number of edges in the view. After you select the edge, its type will be shown in the pop-up. Here's an example of how you can set the number of edges after which the text will not be shown:

@EdgeStyle Less(EdgeCount(graph), 30) {
  label: Type(edge)
}

Does this help?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: MPesi

79335764

Date: 2025-01-07 11:09:53
Score: 2.5
Natty:
Report link

A hart is a physical execution structure (unit) in the processor (with its own instructions paths, register state, and program counter (PC)) that is capable to execute software contexts independently.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: rfamm

79335763

Date: 2025-01-07 11:08:52
Score: 0.5
Natty:
Report link

VS 2017 Bug?

In our scenario we had this error in VS2017 when trying to connect to Team Explorer, but it works fine in VS2022. So after exploring a lot, I finally found the problem in our case: we have two different projects, ProjectA, and ProjectB in the collection, and each project has an ACL group with the same name "My Group" (with different IDs). One of them lacks "View Project-level Information".

Because I need to access ProjectA, and the error "TF50309: The following account does not have sufficient permissions to complete the operation (...) The following permission is needed to perform this operation: View Project-level Information" is happening in ProjectA, I reviewed all permissions related to ProjectA.

Then I realized the ProjectB also has the same issue. So I added "View Project-level Information" to Project's B "My Group", and suddenly it started to work in both ProjectA and ProjectB. The access error has gone in VS2017. ✅

Double Check: I removed from ProjectB again, and also ProjectA stop working too. 💥

So IMHO I think the VS2017 is doing a bad permissions join. This was seen in VS2017 versions 15.9.61 and 15.9.68 (latest one).

But as I mention, it doesn't impact Visual Studio 2022.

I think it is not related to the Azure DevOps Server 2019 Server (on Premise)

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: WilliamK

79335759

Date: 2025-01-07 11:08:52
Score: 3.5
Natty:
Report link

This is an old post but it's still being pinged so:

https://sqldelight.github.io/sqldelight/2.0.2/multiplatform_sqlite/coroutines/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Pedro Sousa

79335741

Date: 2025-01-07 11:03:50
Score: 4.5
Natty:
Report link

체스의달인. Good to see you here.

Your question is not clear, and we don't see any of the class declarations. Please show us type of RoomMessage.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please show us
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: helloworld

79335735

Date: 2025-01-07 11:02:49
Score: 0.5
Natty:
Report link

This is a working way how to enable typing of propTypes using JSDoc

import React, { PureComponent } from "react";
import PropTypes from "prop-types";

/**
 * @extends {PureComponent<PropTypes.InferProps<SomeComponent.propTypes>>}
 */
class SomeComponent extends PureComponent {
  // ...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: constgen

79335720

Date: 2025-01-07 10:58:48
Score: 1
Natty:
Report link

try adding it to functions.php

add_action('after_setup_theme', function() {
    add_theme_support('woocommerce');
    add_theme_support('wc-product-gallery-zoom');
    add_theme_support('wc-product-gallery-lightbox');
    add_theme_support('wc-product-gallery-slider');
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dev Globeweb

79335718

Date: 2025-01-07 10:57:48
Score: 1.5
Natty:
Report link

Make sure you have app/assets/builds/.keep file pushed into repo. I had similar problem when was running rspec. When app starts - Propshaft scans this directory. If it doesn't exist - it's not going to add it to load path.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Krzysztof Adamski

79335714

Date: 2025-01-07 10:55:47
Score: 1.5
Natty:
Report link

Compute Capability (CC) is a scam to push people to buy new GPUs all the time when the old ones are perfectly good. This is what Apple did with the iPhone; just keeping launching new ones with absolutely no new features but forcing people to upgrade.

CC should be stackable in my opinion so if I have 2 GPUs of CC 5 then I should have a total CC of 10.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: user29088947

79335707

Date: 2025-01-07 10:53:46
Score: 2.5
Natty:
Report link

In case anyone else is getting this error, the problem for me was the global_priv table. I only had to repair that table and it's all working again.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: knutson