79193334

Date: 2024-11-15 17:09:02
Score: 4.5
Natty: 4.5
Report link

[enter link description here][1]

[1000]: https://www.instagram.com/p/DCZdt88SiOB/?igsh=ZnVhcHp1eWs2aDBo nkt king

Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Biswajit Lohar

79193210

Date: 2024-11-15 16:32:50
Score: 7 🚩
Natty: 5.5
Report link

is this resolved? I got the same issue here. Is it maybe issue with the VS Code Extension API?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): is this
  • Low reputation (1):
Posted by: mikec

79193202

Date: 2024-11-15 16:30:48
Score: 4.5
Natty:
Report link

read this can help you to pin workbranch https://www.reddit.com/r/vscode/comments/6r358w/comment/dl2o3yq/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button

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

79193196

Date: 2024-11-15 16:28:48
Score: 5.5
Natty:
Report link

The solution, as far as I've understood it, is to add a security descriptor, so I worked along the example given here. At first I thought I would just deny access to NT AUTHORITY\NETWORK, but the problem is that once you set up a security descriptor, everything goes from allowed by default to denied by default, so that essentially broke my application. My solution was to allow only the user the process is running under, and deny NT AUTHORITY\NETWORK.

Full disclosure: I am by no means an expert on this, so I am not (yet) marking it as the accepted answer, since I am anything other than sure that this actually seals it up. But from what I've read, it should. Please let me know if I got something wrong, or if everything is right and I can mark this as the accepted answer.

Essentially, I ended up adding this before the code above:

HANDLE processToken;

//get Token of the process this is running in
OpenProcessToken(GetCurrentProcess(), TOKEN_READ, &processToken);
PSID currentUser;

// GetLogonSID method from https://learn.microsoft.com/en-us/previous-versions//aa446670(v=vs.85)
GetLogonSID(processToken, &currentUser);

EXPLICIT_ACCESS ea[2];

//give the user the process is running under read and write access
ea[0].grfAccessPermissions = GENERIC_WRITE | GENERIC_READ;
ea[0].grfAccessMode = SET_ACCESS;
ea[0].grfInheritance = INHERIT_NO_PROPAGATE;
ea[0].Trustee.TrusteeForm = TRUSTEE_IS_SID;
ea[0].Trustee.TrusteeType = TRUSTEE_IS_USER;
ea[0].Trustee.ptstrName = (LPTSTR)currentUser;
PSID network;

//Initialize NT AUTHORITY\SYSTEM and deny all rights
SID_IDENTIFIER_AUTHORITY sidNTAUTHORITY = SECURITY_NT_AUTHORITY;
AllocateAndInitializeSid(
    &sidNTAUTHORITY, 
    1, 
    SECURITY_NETWORK_RID, 
    0, 0, 0, 0, 0, 0, 0, 
    &network
    );
ea[1].grfAccessPermissions = STANDARD_RIGHTS_ALL | SPECIFIC_RIGHTS_ALL;
ea[1].grfAccessMode = DENY_ACCESS;
ea[1].grfInheritance = SUB_CONTAINERS_AND_OBJECTS_INHERIT;
ea[1].Trustee.TrusteeForm = TRUSTEE_IS_SID;
ea[1].Trustee.TrusteeType = TRUSTEE_IS_WELL_KNOWN_GROUP;
ea[1].Trustee.ptstrName = (LPTSTR)network;

//set the entries and create the security descriptor
PACL pACL = NULL;
SetEntriesInAcl(2, ea, NULL, &pACL);
PSECURITY_DESCRIPTOR descriptor = (PSECURITY_DESCRIPTOR)LocalAlloc(LPTR, SECURITY_DESCRIPTOR_MIN_LENGTH);
InitializeSecurityDescriptor(descriptor, SECURITY_DESCRIPTOR_REVISION);
SetSecurityDescriptorDacl(descriptor, TRUE, pACL, FALSE);

Once that is taken care of, the descriptor can then be set as the lpSecurityDescriptor member of SECURITY_ATTRIBUTES:

SECURITY_ATTRIBUTES attr;
attr.nLength = sizeof(SECURITY_ATTRIBUTES);
attr.lpSecurityDescriptor = descriptor;
attr.bInheritHandle = TRUE;

(If anyone is interested in the full working code or if I should post it as part of the answer, please let me know)

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): I should post it as part of the answer, please
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Benjamin Krausse DB

79193185

Date: 2024-11-15 16:25:45
Score: 7 🚩
Natty:
Report link

Hi I have the same issue but it seems this answer is now deprecated can you confirm it?

I mean this kind of code:

provider "aws" {
  alias    = "east-1-provider"
  region   = "us-east-1"
  version  = "~> 3.74"  # Deprecated.. now.
}
Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (2): Hi I have the
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Juan Camilo Caro Jimenez

79193157

Date: 2024-11-15 16:18:40
Score: 8.5 🚩
Natty: 6.5
Report link

I know I'm a little bit late, but did you manage to fix this error?))

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to fix this
  • RegEx Blacklisted phrase (1.5): fix this error?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RafayelKh

79193151

Date: 2024-11-15 16:16:39
Score: 4.5
Natty:
Report link

In Android Studio Ladybug | 2024.2.1 Infer constraints button

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

79193142

Date: 2024-11-15 16:13:38
Score: 5
Natty:
Report link

Would you mind trying the following steps to see if that helps?

If that doesn't help, please report an issue: https://youtrack.jetbrains.com/newIssue

Reasons:
  • Blacklisted phrase (2): Would you mind
  • RegEx Blacklisted phrase (1.5): help, please
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Dmitry Kazantsev

79193111

Date: 2024-11-15 16:03:33
Score: 6.5 🚩
Natty:
Report link

I'm experiencing the same as you do, this subprocess. Could you share how you resolve the problem? (^.^)

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share how you
  • RegEx Blacklisted phrase (1.5): resolve the problem?
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jonas Reblora

79193090

Date: 2024-11-15 15:57:31
Score: 4
Natty:
Report link

If you are working on big sorted lists concider using binary search algorithm.

See ([1]: https://www.geeksforgeeks.org/python-program-for-binary-search/)

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

79193047

Date: 2024-11-15 15:42:26
Score: 4
Natty:
Report link

I have this error in extension WatchViewModel: Sending 'message' risks causing data races

Reasons:
  • RegEx Blacklisted phrase (1): I have this error
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Danilo Catalano

79193033

Date: 2024-11-15 15:38:24
Score: 4.5
Natty:
Report link

You can check with this blog.. found some useful information about covering more lines in ag grid test coverage.

Reasons:
  • Blacklisted phrase (1): this blog
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28318983

79193032

Date: 2024-11-15 15:38:24
Score: 4.5
Natty:
Report link

Hi I have already shared a working solution here. Kindly check if it works

Reasons:
  • RegEx Blacklisted phrase (2): Hi I have a
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: adi

79193010

Date: 2024-11-15 15:32:19
Score: 9.5 🚩
Natty: 5.5
Report link

https://payment.ivacbd.com

otp bypass code please then appoinment few min. please help. youtoube link included . same java script Greasemonkey code please?

https://youtu.be/hrKnSELfe6k?si=L2PTlhVgUWcwls0J&sfnsn=wa

Reasons:
  • Blacklisted phrase (1): youtu.be
  • RegEx Blacklisted phrase (3): please help
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: PRATIK SARKER

79193006

Date: 2024-11-15 15:31:19
Score: 4
Natty:
Report link

In my case I required to enable in-App Messaging API to android and iOS API Keys too.

enter image description here

enter image description here

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

79193001

Date: 2024-11-15 15:30:18
Score: 5
Natty:
Report link

https://github.com/grails-plugins/grails-spring-security-oauth2-google/blob/master/grails-app/services/grails/plugin/springsecurity/oauth2/google/GoogleOAuth2Service.groovy may guide you in the right direction.

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

79192997

Date: 2024-11-15 15:29:17
Score: 4
Natty:
Report link

In my case I required to enable in-App Messaging API

enter image description here

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

79192995

Date: 2024-11-15 15:28:16
Score: 4
Natty: 4
Report link

Try this CSS formatter online!

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Himanshu Tyagi

79192953

Date: 2024-11-15 15:18:13
Score: 6
Natty: 7
Report link

Use Transfer state to make the variable available on client. Refer to this article https://medium.com/@iyieldinov/managing-configuration-in-angular-17-ssr-applications-a-seamless-approach-76dfa600c64f

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bhavikk R

79192951

Date: 2024-11-15 15:17:12
Score: 4.5
Natty:
Report link

run ~/.local/spyder-6/uninstall.sh

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Its Me

79192878

Date: 2024-11-15 15:04:08
Score: 4
Natty: 4.5
Report link

This project has many crc-s/checksums implemented in python, with test vectors included. https://github.com/MartinScharrer/crccheck/blob/dce977d48b89d27649ebf1ee78c54c8e76323847/crccheck/crc.py#L2234

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

79192825

Date: 2024-11-15 14:44:02
Score: 5.5
Natty: 4.5
Report link

add xms1g and xmx1g as in the picture

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ERKAN ONER

79192811

Date: 2024-11-15 14:38:58
Score: 10.5 🚩
Natty: 6.5
Report link

Do you find any solution for that? I don't even have socket.io installed and i get this error

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): i get this error
  • RegEx Blacklisted phrase (2.5): Do you find any
  • RegEx Blacklisted phrase (2): any solution for that?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdaullah Bakry

79192805

Date: 2024-11-15 14:35:56
Score: 5
Natty:
Report link

This might not be possible considering that files being locked is a Windows thing and not a C# thing.

But I think if you use FileShare.ReadWrite this allows other users to be able to use the files while you are using them, this might be what you are looking for. It was answered in this post already:

How do you read a file which is in use?

Reasons:
  • Blacklisted phrase (1): How do you
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: qa test

79192754

Date: 2024-11-15 14:23:53
Score: 5.5
Natty:
Report link

can this same configuration (creating relying party registration bean and configuring saml2 login) using XML based configuration instead of java based configuration. If yes, can you please provide a sample for above

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please provide
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can this
  • Low reputation (1):
Posted by: Nagarjuna

79192653

Date: 2024-11-15 13:51:41
Score: 7 🚩
Natty:
Report link

I'm facing same error on Amazon linux server.

Reasons:
  • RegEx Blacklisted phrase (1): I'm facing same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohammed Faraz

79192644

Date: 2024-11-15 13:49:38
Score: 6 🚩
Natty: 6
Report link

is there any update? I got the same error after reinstall python 3.12 appreciate if you can share any update on this Thank you~

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): update on this
  • Blacklisted phrase (1): is there any
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): is there any
  • Low reputation (1):
Posted by: Truong Trinh

79192601

Date: 2024-11-15 13:39:34
Score: 4
Natty: 6.5
Report link

I need this file:

https://github.com/giswqs/leafmap/raw/master/examples/data/wind_global.nc.

I have worked with this but lost the file. Plz provide me if available

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Imran

79192513

Date: 2024-11-15 13:16:26
Score: 7.5 🚩
Natty:
Report link

I'm having the same issue. As far i know, that featured thingy is a premium feature in Artifactory. Are you using the 'oss' version or the 'pro' one?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Gómez Collado

79192503

Date: 2024-11-15 13:12:25
Score: 4
Natty:
Report link

I suggest you follow the migration guide from the ESLint documentation. You can start using the configuration migrator on your existing configuration file.

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

79192438

Date: 2024-11-15 12:54:20
Score: 4.5
Natty: 5.5
Report link

how can we update the picklist field with parameter value in the ADO through ADO yaml pipeline

Reasons:
  • Blacklisted phrase (1): how can we
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how can we
  • Low reputation (1):
Posted by: Shafi Shaik

79192416

Date: 2024-11-15 12:45:17
Score: 5
Natty: 4
Report link

please do you know what the conditions would be for a three-digit tape? Sum of 3 numbers? For example 101_10_110.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Radovan Němec

79192406

Date: 2024-11-15 12:42:14
Score: 7.5 🚩
Natty: 5.5
Report link

I am looking for same solution. Have you got any leads?

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Iman Owais

79192399

Date: 2024-11-15 12:40:13
Score: 4
Natty:
Report link

solution can be found from this comment

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

79192337

Date: 2024-11-15 12:20:07
Score: 5
Natty:
Report link

If types of parameters are the same, may be easier to create a vector (to iterate by indexing) or map (to iterate by names) and iterate over it?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: qrspeter

79192276

Date: 2024-11-15 12:02:01
Score: 4.5
Natty:
Report link

guys!

So, my team migrated from Oracle to Redhsift and we need to move the logic. Redhsift doesn't have MODEL clause and I have trouble with implementation of this recursive logic into regular sql with windowing functions (LAG). Would you share some hints on how to approach?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kondjitsu

79192251

Date: 2024-11-15 11:54:59
Score: 4
Natty:
Report link

Change the commiter_date, solve the problem

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

79192229

Date: 2024-11-15 11:48:55
Score: 14 🚩
Natty: 5
Report link

I saw your post and I am in the same situation as you mentioned and I can't find the solution.

Were you able to find the solution to this error?

Regards.

Reasons:
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (2): I am in the same situation
  • RegEx Blacklisted phrase (1.5): can't find the solution
  • RegEx Blacklisted phrase (3): Were you able
  • RegEx Blacklisted phrase (2): can't find the solution
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: jmrufo

79192135

Date: 2024-11-15 11:21:46
Score: 5
Natty: 4.5
Report link

This is a known issue: IJPL-91127 Pasting text from MS Office document into .md file creates an image

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

79192103

Date: 2024-11-15 11:12:43
Score: 4.5
Natty:
Report link

I don't have enough reputations to leave this as a comment.

Check this if this helps. Undoing a git rebase

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tobi Akintunlese

79192095

Date: 2024-11-15 11:10:42
Score: 4
Natty: 4
Report link

I've been through and documented BOTH Windows Procedures here;

Windows SSH ‘No Matching Key’

And for macOS here;

macOS – SSH Error ‘No Matching Exchange Method Found’

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

79192001

Date: 2024-11-15 10:38:35
Score: 4
Natty:
Report link

.max(Comparator.naturalOrder())

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zhenya

79191995

Date: 2024-11-15 10:37:34
Score: 6
Natty: 7
Report link

@Yanis-git can you please update read me with your solution. thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Yanis-git
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Venkat Maganti

79191985

Date: 2024-11-15 10:33:31
Score: 9.5 🚩
Natty: 5
Report link

I have the same issue after I upgraded my KB to the last version GX 18.

When I consume the Web service deployed in GX 17 it works, but after the upgrade I have the same.

Have you solved the issue?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (1.5): solved the issue?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Danilo

79191967

Date: 2024-11-15 10:27:28
Score: 9 🚩
Natty: 6.5
Report link

I have the same problem and I have not found an extension that highlights incorrect keyword arguments. Your answer is too generic to be helpful. We all know that VS Code is an editor but what is the extension that solves the problem?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1.5): solves the problem?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Matteo Del Grosso

79191850

Date: 2024-11-15 09:57:20
Score: 5.5
Natty:
Report link

Where is the event listener for the click added? I can't see anywhere in the code that would detect the click and then shuffle the deck. Maybe you just forgot to add this?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Where is the
  • Low reputation (1):
Posted by: Albie Vanags

79191845

Date: 2024-11-15 09:56:19
Score: 5.5
Natty: 4.5
Report link

I have already used the formula, but I think it does not work to extract each word from the sentence. The question should be same as my expectation in the pic below.

Which formula can I use to get my expectation? Thank you.

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ismoyo Eko Purwanto

79191815

Date: 2024-11-15 09:49:17
Score: 5.5
Natty: 7
Report link

can you find any solution if yes then tell others

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you find any solution
  • Low reputation (1):
Posted by: Hannan

79191727

Date: 2024-11-15 09:24:09
Score: 4.5
Natty:
Report link

dunder is an abbreviation for "double underscore" - this is in reference to the double underscore on either side of the method that Python uses to denote a special method. It is therefore used by people synonymously with special method. Does this answer the question?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Albie Vanags

79191721

Date: 2024-11-15 09:23:09
Score: 5.5
Natty: 5
Report link

попробуйте создать .sh скрипт через редактор в консоли vim/nano

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Денис Александрович

79191707

Date: 2024-11-15 09:19:07
Score: 4
Natty:
Report link

Since I couldn't find any reason why Docker is keeping this cache, I used the following workaround in case other users are facing the same issue with the same type of project.

I stopped using the management command and the dedicated app cron container.

I moved those management commands to REST views that only a specific user with a specific auth token can launch.

I created a new simple container for a cron job that performs curl requests on those URLs.

Everything works now.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Thomas

79191660

Date: 2024-11-15 09:01:03
Score: 5
Natty: 5.5
Report link

sorry, I might ask a stupid question. But to the change in the github solution would be about adding dbc files to the .exe when bundling it no ? What about if I don't want to do that because I build this .exe I would build is planned to be distributed to people using each different .dbc files I do not possess in advance and therefore I cannot add to my .exe at the time I bundle it ? @Danielhrisca

Reasons:
  • Blacklisted phrase (1): stupid question
  • Blacklisted phrase (0.5): I cannot
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Danielhrisca
  • Single line (0.5):
  • Low reputation (1):
Posted by: jservant

79191635

Date: 2024-11-15 08:52:59
Score: 8.5 🚩
Natty: 4.5
Report link

snapshot

error

could you please help me with such a problem.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): could you please help me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Slavik Spasibo

79191585

Date: 2024-11-15 08:39:55
Score: 5.5
Natty: 6
Report link

What if I want to send a congratulatory email to that customer?. Thank

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if I
  • Low reputation (1):
Posted by: Hoang The Tai

79191517

Date: 2024-11-15 08:13:45
Score: 6.5 🚩
Natty:
Report link

When facing the same error i used pip install psycopg and it got solved

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same error
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: verygood muhirwa

79191509

Date: 2024-11-15 08:09:43
Score: 16
Natty: 8.5
Report link

I have the same problem here. Have you found any solutions? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): Have you found any solutions
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Clauds

79191466

Date: 2024-11-15 07:51:39
Score: 5.5
Natty: 7
Report link

How can it be renamed in the name of the post but without the post being saved? I mean, I create a new post, I don't save it yet, and the image should be renamed to the name of the post?

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can it
  • Low reputation (1):
Posted by: Gomy

79191449

Date: 2024-11-15 07:43:35
Score: 10.5 🚩
Natty: 5.5
Report link

Were you able to arrive at a solution. I am stuck with the same problem.

Reasons:
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am stuck with the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: user26847748

79191388

Date: 2024-11-15 07:19:26
Score: 8 🚩
Natty:
Report link

I have encountered the same issue, have you found a solution yet ?

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found a solution yet
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 펖파오라

79191350

Date: 2024-11-15 06:58:21
Score: 5
Natty:
Report link

I just recognized that I can use the ranking/unranking functions from this answer:

https://stackoverflow.com/a/56782034/6301603

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: TTho Einthausend

79191321

Date: 2024-11-15 06:46:17
Score: 9 🚩
Natty:
Report link

stuck with the same, did u find the answer?

Reasons:
  • RegEx Blacklisted phrase (3): did u find the answer
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: HelpForLuck

79191291

Date: 2024-11-15 06:32:13
Score: 4.5
Natty: 4
Report link

use mozilla to get network inspect tool can be used. replace 77777777 from here

https://public-api.wordpress.com/rest/v1.1/sites/77777777/posts?http_envelope=1&author=&number=20&order=DESC&search=&status=publish,private&type=post&page=1

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Filler text (0.5): 77777777
  • Filler text (0): 77777777
  • Low reputation (1):
Posted by: MR NOBODY

79191163

Date: 2024-11-15 05:15:55
Score: 7.5 🚩
Natty:
Report link

hey I am trying to add speech to text in my MERN project. But I am having some issues. Can you please share your repo where you implemented Google Cloud Speech-to-Text for transcribing spoken words.

Also you can try to send transcripted text to gcp translation service to get translation.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (2.5): Can you please share your
  • RegEx Blacklisted phrase (2): hey I am
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Siddharth Patil

79191138

Date: 2024-11-15 04:55:49
Score: 6 🚩
Natty:
Report link

I am getting the same issue with the complex query.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: hardcommitoneself

79191118

Date: 2024-11-15 04:45:47
Score: 5
Natty:
Report link

you should install netbeans with this link https://www.apache.org/dyn/closer.lua/netbeans/netbeans-installers/23/Apache-NetBeans-23.pkg

using Apple Sillicon M3: https://i.sstatic.net/zOkCvMe5.png

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Azincc

79191103

Date: 2024-11-15 04:37:45
Score: 4
Natty:
Report link

Safari is an absolute trash browser.

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

79191051

Date: 2024-11-15 04:01:36
Score: 9.5 🚩
Natty:
Report link

[enter link description here][1]

[1]: https://www.youtube.com/channel/UCEK25G0t2R1SzW5339X8CaQ I know every community guideline roled by YouTube and I am sure that there is on violation of YouTube community guidelines.

I think this can be done by mistake please make a again review of it and give me back my suspended account.

I am very sad and making content with full of effects as per the YouTube rule and regulation please help me as soon as possible thank you hope u solve my issue

My channel URL https://www.youtube.com/channel/UCEK25G0t2R1SzW5339X8CaQ

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (0.5): enter link description here
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): I think this can be done by mistake please
  • RegEx Blacklisted phrase (1): I am very sad and making content with full of effects as per the YouTube rule and regulation please
  • No code block (0.5):
  • Low reputation (1):
Posted by: Real Boy

79191018

Date: 2024-11-15 03:26:26
Score: 7.5 🚩
Natty:
Report link

ok ....................................................................................................................................................................................................................................................................................

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (3):
  • Filler text (0.5): ....................................................................................................................................................................................................................................................................................
  • Low entropy (1):
  • Low reputation (1):
Posted by: Akshita Sharma

79191010

Date: 2024-11-15 03:18:24
Score: 4.5
Natty:
Report link

im having the same problem can't get to download GitBash for window download on my win10 laptop.

This site can’t be reached objects.githubusercontent.com took too long to respond. Try:

Checking the connection Checking the proxy and the firewall Running Windows Network Diagnostics ERR_TIMED_OUT

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Low reputation (1):
Posted by: Chukz Michael Nworji

79190858

Date: 2024-11-15 01:31:00
Score: 4.5
Natty:
Report link

When you're using the Include, Cloudformation tries to access the file. So it's mostly a permission with that role. Are you sure that the specified cloudformation role has access to that bucket? And there's no additional bucket ACL or policy issue?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Fedi Bounouh

79190836

Date: 2024-11-15 01:05:54
Score: 4
Natty: 5
Report link

Very thanks your comment solved my error

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CARLOS ANDRES DIAZ MARTINEZ

79190832

Date: 2024-11-15 01:02:51
Score: 6.5 🚩
Natty:
Report link

I have been facing the same issue on Eclipse v 2023-12, and the resolution consisted of using the last version of Lombok at least on this link https://projectlombok.org/download I have taken the version Lombok v1.18.36enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Jack Mbuyi

79190830

Date: 2024-11-15 00:59:48
Score: 6 🚩
Natty: 6.5
Report link

This article may be helpful, Making Mocking Functions Strongly Typed in Python

Reasons:
  • Blacklisted phrase (1): This article
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shiqi Cao

79190788

Date: 2024-11-15 00:28:40
Score: 4.5
Natty:
Report link

I currently have the same issue (and am also doing the MIT deeplearning course). The reason for the issue is (I think) because there's been a change to the Keras API. I am not sure what the alternative keyword arg would be, and I haven't found anything yet.

https://www.tensorflow.org/api_docs/python/tf/keras/layers/Embedding

The embedding layer doesn't have anything at all relating to batch_input_shape. Unfortunately, I have very little knowledge on the Keras API and deep learning in general. I will keep posted if I find a solution.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Horse

79190761

Date: 2024-11-15 00:01:32
Score: 5.5
Natty:
Report link

from what ive read the context menu class in VScode is usually a child of .monaco-menu.

Also check this link: https://stackoverflow.com/a/57729835/27796957

I think it will answer your question

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

79190720

Date: 2024-11-14 23:36:25
Score: 4
Natty: 8
Report link

I’m very new to all of this but have a question I suspect has an obvious (to the more learned folks) answer. In some of the above responses the datasets begin at 0,0,0,0,0 and finish with 0,1,1,1,1 … OR begin with 0,0,0,0,1 and finish with 1,1,1,1,1. I guess you see my question is why are there not 32 combinations, which would include bot all 0s and all 1s ??? Thank you for any response/s. Steve

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): ???
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Steve Aitken

79190712

Date: 2024-11-14 23:32:24
Score: 4
Natty:
Report link

I'm trying to do the same thing, but the values ​​don't seem to match. I don't understand what the equivalent column is in the API.

Reasons:
  • Blacklisted phrase (1): trying to do the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Diego Vigo Briones

79190667

Date: 2024-11-14 23:10:18
Score: 5
Natty:
Report link

im also new here. I dont see your page load function, you dont need the saved theme to load anymore?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mpoulin

79190645

Date: 2024-11-14 22:57:15
Score: 12
Natty: 7.5
Report link

@sina_Islam were you able to resolve this?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @sina_Islam
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user2072757

79190581

Date: 2024-11-14 22:16:06
Score: 4
Natty:
Report link

If the user is having a browser with PDF reading capabilities (or a plugin) and the corresponding settings to open PDF files in-browser, the PDF will open like that.

See: How to force a Download File prompt instead of displaying it in-browser with HTML?

Are you specifically dealing with PDFs? Or does this happen for all files?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Michael Reynolds

79190558

Date: 2024-11-14 22:07:04
Score: 4
Natty:
Report link

This seems to have cleared up, so I believe Stoplight.io fixed an issue.

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

79190476

Date: 2024-11-14 21:36:53
Score: 6 🚩
Natty:
Report link

Thanks @BigBen - solution was forgetting to include 'ignore_index=True'. Now to figure out why my other projects worked without it...

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @BigBen
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: crime-brulee

79190398

Date: 2024-11-14 21:03:43
Score: 6.5 🚩
Natty: 6.5
Report link

Not so clear about how this works.

Q1: let's say I have an Excel file named MyFile in directly C:MyDir. How do I get the C++ code to find and access this file?

Q2: let's say I have two columns of data to read in the c++ code I am creating. First column cells A1 to A10 and corresponding cells B1 to B10. How do I read this data in my c++ code? I do want to create for example if conditions such as if (A1=5) then (B1=0).

Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (3): Thanks in advance
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user23475860

79190361

Date: 2024-11-14 20:45:36
Score: 6.5 🚩
Natty: 5
Report link

Did you find the root cause of this issue ? It seems to be present since version 15 of Keycloak.

We got the same error, but nothing about the issue in forums or from Keycloak.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Did you find the
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find the
  • Low reputation (1):
Posted by: Quentin RODIC

79190312

Date: 2024-11-14 20:26:30
Score: 4
Natty:
Report link

Thank you,"minSdk = flutter.minSdkVersion" to "minSdk = 23" work for me too. :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lau

79190250

Date: 2024-11-14 20:02:24
Score: 4
Natty:
Report link

Its Really Hard To Say about problem

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

79190122

Date: 2024-11-14 19:10:06
Score: 12.5 🚩
Natty:
Report link

I have the same issue, Did you find a solution ?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdullah

79190086

Date: 2024-11-14 18:53:01
Score: 4
Natty:
Report link

I was finally able to deploy DRF (Django Rest Framework) in azure with SQL server database. Following this tutorial by MS .

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jani Pekkala

79189909

Date: 2024-11-14 17:53:44
Score: 11
Natty: 7.5
Report link

how did you solve this problem ?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem ?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how did you solve this
  • Low reputation (1):
Posted by: Rajesh kothari

79189891

Date: 2024-11-14 17:48:40
Score: 11.5 🚩
Natty: 6
Report link

I'm trying to update to VS2022 but I did all the steps up and this error continue:

Severity Code Description Project File Line Suppression State Details Error LNK2019 unresolved external symbol _MainTask referenced in function __Thread@4 UI_SIM C:\EVO_WIN32\jura_evohome_main_app\GUISim.lib(SIM_GUI_App.OBJ)

Do you know how to solve this?

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (1.5): how to solve this?
  • RegEx Blacklisted phrase (2.5): Do you know how
  • RegEx Blacklisted phrase (2): know how to solve
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: David Hernandez

79189887

Date: 2024-11-14 17:47:39
Score: 11
Natty: 8.5
Report link

didnt you find any solution ???

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (2): any solution ?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: Swayam

79189777

Date: 2024-11-14 17:10:27
Score: 4.5
Natty: 5
Report link

Thanks, helped for me as well...

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ToreS

79189733

Date: 2024-11-14 16:59:20
Score: 6.5 🚩
Natty: 4.5
Report link

I write a solution in C++.

here is the link: https://khobaib529.medium.com/solving-electrical-circuits-a-graph-based-algorithm-for-resistance-calculations-921575c59946

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Blacklisted phrase (1): here is the link
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Khobaib

79189702

Date: 2024-11-14 16:47:17
Score: 4
Natty:
Report link

I created a conversation using conversation memory then asked the llm to summarize the conversation. If you use a vector database to initialize the conversation then assess the memory message chat history

conversation = [
    {"user": "Hey Louise, can you help me with something?"},
    {"ai": "Of course! What do you need help with today?"},
    {"user": "I’m trying to organize a surprise birthday party for my friend. Any ideas?"},
    {"ai": "That sounds fun! What does your friend enjoy? We can brainstorm a theme based on their interests."},
    {"user": "They love the outdoors and hiking. I was thinking of doing something in a park."},
    {"ai": "Great idea! How about a picnic party? You could set up a cozy area with blankets, snacks, and decorations that reflect nature. Maybe even some outdoor games!"},
    {"user": "I love that! What kind of snacks should I include?"},
    {"ai": "Consider packing finger foods that are easy to eat outdoors. Sandwiches, fruit skewers, veggie platters, and some homemade cookies would be perfect. Don’t forget refreshing drinks!"},
    {"user": "Good call! How about decorations? I want it to feel special."},
    {"ai": "You could use biodegradable decorations like paper lanterns, wildflower bouquets, and string lights. A nature-themed cake would also be a nice centerpiece!"},
    {"user": "These are awesome suggestions! How many people should I invite?"},
    {"ai": "It depends on the size of the park area you’ll be using. A smaller group of close friends might make it feel more intimate, while a larger group could bring more energy. What do you think?"},
    {"user": "Maybe around 10-15 people. That feels manageable."},
    {"ai": "Perfect! Just remember to send out the invites soon so everyone can mark their calendars. Do you need help with the invitation wording?"},
    {"user": "Yes, please! I want it to be fun and casual."},
    {"ai": "How about this: “Join us for a surprise outdoor adventure to celebrate [Friend’s Name]’s birthday! Bring your favorite snacks and your love for nature. Let’s make some unforgettable memories!”"},
    {"user": "I love it! Thanks, Louise. You’ve been a huge help."},
    {"ai": "Anytime! Have a blast planning the party, and let me know if you need anything else."}
]

def example_tool(input_text):
    system_prompt = "You are a Louise AI agent. Louise, you will be fair and reasonable in your responses to subjective statements. Logic puzzle the facts or theorize future events or optimize facts providing resulting inferences. Think"
    return f"{system_prompt} Processed input: {input_text}"

# Initialize the LLM
llm = LangChainChatOpenAI(model="gpt-4o-mini", temperature=0, openai_api_key=key)

# Define tools
tools = [
    Tool(
        name="ExampleTool",
        func=example_tool,
        description="A simple tool that processes input text."
    )
]

# Initialize memory
memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)

# Loop through the conversation and add messages to memory
for message in conversation:
    if "user" in message:
        memory.chat_memory.add_user_message(message["user"])
    elif "ai" in message:
        memory.chat_memory.add_ai_message(message["ai"])

# Initialize the agent with memory
agent = initialize_agent(
    tools,
    llm,
    agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
    verbose=True,
    handle_parsing_errors=True,
    memory=memory
)

# Query to recall previous discussion
query = "Tell me in detail about our previous discussion about the party. Louise enumerate the foods that will be served at the party."
response = agent.run(query)

# Print the response
print(response)


print(memory.chat_memory.messages)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): Any ideas
  • RegEx Blacklisted phrase (3): can you help me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: ListenSoftware Louise Ai Agent

79189626

Date: 2024-11-14 16:26:10
Score: 4.5
Natty: 5.5
Report link

download links 32bit and 64 bit -

https://cdn.mysql.com/archives/mysql-8.0/mysql-server_8.0.33-1ubuntu18.04_amd64.deb-bundle.tar

https://cdn.mysql.com/archives/mysql-8.0/mysql-server_8.0.33-1ubuntu18.04_i386.deb-bundle.tar

https://downloads.mysql.com/archives/community/?version=8.0.33

thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ratheesh

79189591

Date: 2024-11-14 16:18:07
Score: 5
Natty:
Report link

Ionic provides ion-footer component. https://ionicframework.com/docs/api/footer

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

79189589

Date: 2024-11-14 16:17:07
Score: 4.5
Natty:
Report link

with the help of one of my friends here who guided me, I modified the js code like this:

window.onscroll = function () {
    Scroll_Indicator_blog_function()
};

function Scroll_Indicator_blog_function() {
    var winScroll = document.body.scrollTop || document.body.scrollTop;
    var height = document.body.scrollHeight - document.body.clientHeight;
    var scrolled = (winScroll / height) * 100;
    document.getElementById("Scroll_Indicator_blog").style.width = scrolled + "%";
}
.progress-container {
    position: fixed;
    top: 0;

    display: block;
    width: 100%;
    height: 8px;
    background: var(--vesal-background-color7);
    z-index: 9999;
}
.progress-bar {
    height: 100%;
    background: var(--vesal-background-color2);
    box-shadow: 0 5px 10px 0 var(--vesal-boxshadow-color-1);
    width: 0%;
    transition: ease-in-out 0.5s;
}
<div class="progress-container">
    <div class="progress-bar" id="Scroll_Indicator_blog"></div>
</div>

But now I came to a new problem! In the height calculated by this script, the height continues from the highest point of the Mojo account to the bottom of the page, that is, from the top of the header to the bottom of the footer, which is naturally not interesting to show how much of the content has been read by the reader! How can I make it so that the height is only limited to the section in question, that is, for example, it counts the height of the page from the beginning of a section to its end, and does not count the comments section, header and footer? Thanks again for the advice

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (3): Thanks again for the advice
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: محمد مهدی زارعی

79189468

Date: 2024-11-14 15:43:55
Score: 7 🚩
Natty:
Report link

This also happened to me today as well. How to fix this?

Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix this?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fang Ying Sham

79189421

Date: 2024-11-14 15:28:49
Score: 6 🚩
Natty: 4.5
Report link

were you able to modify fields via script? I had the same question and your code helped me. I'm trying to modify via mutation, but it doesn't seem to work.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Guilherme Lima

79189418

Date: 2024-11-14 15:27:46
Score: 8.5 🚩
Natty: 5
Report link

did you get a working solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): did you get a
  • 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: frost2709