79193419

Date: 2024-11-15 17:36:11
Score: 3
Natty:
Report link

Adding annotation @EnableMongoAuditing worked perfectly for me.Thanks all!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lawrence Kinuthia

79193417

Date: 2024-11-15 17:35:11
Score: 2
Natty:
Report link

Is this a bug?

Say with me:

  1. All bugs are just unwanted features.
  2. All bugs are just unwanted features.
  3. All bugs are just unwanted features.

For your case, why is any url other than "https://base.example.domain/context-path/some-other-path/logout" and "https://base.example.domain/context-path/some-other-path/login" allowed to update auth cookies?

In my opinion, its definitely an unwanted behaviour.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this a
  • Low reputation (0.5):
Posted by: Anubhav Sharma

79193410

Date: 2024-11-15 17:34:10
Score: 5.5
Natty: 5.5
Report link

Chingón, en mi caso si era el SELINUX. Lo deshabilite y funcionó.

Gracias

Reasons:
  • Blacklisted phrase (2): Gracias
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28320595

79193390

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

Are you shure that you command in shell gives an output to stdout but not to stderr? Try to add ' 1>file_stdout 2>file_stderr' to your command to see what goes where.

Try to concatenate you $command with ' 2>&1', this will send everything to $output. You should also try to log all the lines but not only $output[0]. Functions like var_dump(), print_r(), implode() etc. will help you.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sergey Soltanov

79193363

Date: 2024-11-15 17:18:05
Score: 4.5
Natty: 5.5
Report link

Thanks a lot .. your responds inspired me to find a solution for my onEdit()

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bernard Jrad

79193348

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

It’s a scope problem. The dashboard is in its own scope so the function is not declared there. To solve your issue you have to move Your Test-it function in the dashboard scriptblock

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Yann

79193338

Date: 2024-11-15 17:10:03
Score: 0.5
Natty:
Report link

Extracting text and tabular data from scanned invoices involves OCR (Optical Character Recognition) and post-processing to structure the data. Here's a breakdown of the process and considerations for your project:

Steps to Extract Text and Tabular Data

  1. OCR for Text Extraction:

    • Use tools like Tesseract, Google Vision API, or AWS Textract to convert scanned invoices into machine-readable text.

    • These tools often provide bounding box coordinates, useful for extracting structured data like tables.

  2. Preprocessing:

    • Image enhancement: Improve OCR accuracy by preprocessing images (e.g., noise removal, resizing, binarization).
    • Invoice segmentation: Separate text into sections like headers, tables, and footers.
  3. Tabular Data Extraction:

    • Use OCR tools that support table recognition, such as AWS Textract or Adobe Document Cloud.
    • Alternatively, apply grid-detection techniques (e.g., Hough Line Transform or contour detection with OpenCV) to locate tables and extract rows/columns.
  4. Data Parsing:

    • Post-process OCR output to match the required structure.
    • Use regular expressions, NLP libraries, or custom logic to extract fields and map data correctly.
  5. Export to Excel:

    • Use libraries like Pandas or OpenPyXL in Python to structure and export data to Excel.

Model Considerations

Whether to use one model or multiple depends on the similarity across invoice types:

  1. Single Model:

    • If invoice types share similar layouts or contain common key-value pairs and table structures, you can train a single model using tools like LayoutLMv3 or fine-tuned transformers designed for document processing.

    • Use labeled datasets to train the model to recognize different sections and adapt to slight variations.

  2. Multiple Models: If invoice formats vary significantly (e.g., different languages, table placements, or no standard layout), it may be practical to create multiple models or rule-based pipelines tailored to specific invoice types.


Recommended Approach

  1. Start with a Single Model:

    • Use a pre-trained document processing model like LayoutLM or Donut (OCR-free).
    • Fine-tune the model with a diverse dataset containing samples of all 25 invoice types.
  2. Add Custom Pipelines:

    • Supplement with custom logic for outliers or invoice types that deviate significantly from the norm.
    • Use key-value pair extraction for text-heavy invoices and table detection algorithms for data-heavy invoices.
  3. Iterate:

    • Evaluate model performance across all invoice types.
    • Adjust or split into smaller pipelines/models only if the single model fails to generalize.

Tools to Consider

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

79193335

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

Case sensitivity.

Try:

SET v_sql = 'SELECT LISTAGG(COLNAME , '','') WITHIN GROUP (ORDER BY COLNO) INTO :v_columns ' || 'FROM SYSCAT.COLUMNS ' || 'WHERE UPPER(TABNAME) = UPPER(''' || v_tableName || ''') AND COLNAME <> ''TOWID''';
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: keithwalsh

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

79193278

Date: 2024-11-15 16:51:57
Score: 2
Natty:
Report link

On Windows 11 it is super simple!

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

79193265

Date: 2024-11-15 16:47:55
Score: 2.5
Natty:
Report link

curl -L \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer " \ -H "X-GitHub-Api-Version: 2022-11-28" \ "https://api.github.com/repos/OWNER/REPO/activity?time_period=day"

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

79193234

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

I faced this issue when I upgraded to Labybug. I hate that downgrading is the solution but it seems to be an issue many are facing on this flavor. You can downgrade to Koala using the Android archive HERE and finding the most recent Koala version - Android Studio Koala Feature Drop | 2024.1.2 Patch 1 September 17, 2024

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Chris Poe

79193229

Date: 2024-11-15 16:38:53
Score: 0.5
Natty:
Report link

Yes! there is a method in the Reflection class isUserDefined https://www.php.net/manual/en/reflectionclass.isuserdefined.php

the other methods use the reflection class and then a subtractive check. With this you get just what you need in a single line of code.

$reflect = new \ReflectionClass::isUserDefined();

or

$rc = new \ReflectionClass($class);
exit(var_dump($rc->isUserDefined));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Carl McDade

79193221

Date: 2024-11-15 16:36:53
Score: 1
Natty:
Report link

it's easy :

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50%{
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

svg {
  animation: rotation 10s linear infinite;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: حذيفة

79193212

Date: 2024-11-15 16:33:52
Score: 3
Natty:
Report link

Tldr;

As mentioned in the comment you might want to look at the synonyms API which made it way in the stack starting version 8.10

Creating synonyms is as easy as this:

PUT _synonyms/my-synonyms-set
{
  "synonyms_set": [
    {
      "id": "test-1",
      "synonyms": "hello, hi, ciao"
    }
  ]
}

Demo

Based on your specific case I am creating the following synonyms

PUT _synonyms/sport_teams_synonyms
{
  "synonyms_set": [
    {
      "synonyms": "dallas mavericks => mavs, dallasmavs, mavericks"
    },
    {
        "synonyms": "portland trail blazers, trail blazers => ptb"
    }
  ]
}

Then create the following index

PUT sport_teams_match
{
  "settings": {
    "analysis": {
      "filter": {
        "sts_filter": {
          "type": "synonym_graph",
          "synonyms_set": "sport_teams_synonyms",
          "updateable": true
        }
      },
      "analyzer": {
        "sport_teams_analyzer": {
          "type": "custom",
          "tokenizer": "standard",
          "filter": [
            "lowercase",
            "sts_filter"
          ]
        }
      }
    }
  },
  "mappings": {
    "properties": {
      "team_1": {
        "type": "text",
        "search_analyzer": "sport_teams_analyzer"
      },
      "team_2": {
        "type": "text",
        "search_analyzer": "sport_teams_analyzer"
      }
    }
  }
}

Loaded some documents

PUT _bulk
{ "index" : { "_index" : "sport_teams_match"} }
{ "team_1" : "mavs", "team_2": "lakers" }
{ "index" : { "_index" : "sport_teams_match"} }
{ "team_1" : "trail blazers", "team_2": "lakers" }

The following search queries should find you the first document

GET sport_teams_match/_search?q=team_1:"Mavericks"
GET sport_teams_match/_search?q=team_1:"Dallas Mavericks"

Awesome let try with Trail Blazers ?

GET sport_teams_match/_search?q=team_1:"Trail Blazers"

Uhuuuu not working ?? why ?? The _analyze API to the rescue. This api return given a specific analyzer pipeline and some text, the token extracted.

POST sport_teams_match/_analyze
{
  "analyzer": "sport_teams_analyzer",
  "text":     "Trail Blazers"
}

POST sport_teams_match/_analyze
{
  "analyzer": "standard",
  "text":     "trail blazers"
}

You will see that:

How can we fix this ? ptb might not be such a good synonym after all ?

Reasons:
  • Blacklisted phrase (1): How can we
  • RegEx Blacklisted phrase (1.5): fix this ?
  • RegEx Blacklisted phrase (2): working ?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Paulo

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

79193197

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

You can read the following blog about semantics and clearAndSetSemantics. Hope it helps https://dladukedev.com/articles/002_semanics_vs_clearandsetsemantics/

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ahmet Gultekin

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

79193184

Date: 2024-11-15 16:25:44
Score: 0.5
Natty:
Report link

This might be one of the underlying causes but encountered a similar issue , which was identified to be caused by skewed data as analysed from Spark UI.

This was handled by broadcast join.

df1.join(df2.broadcast(), "join_column")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: samhita

79193182

Date: 2024-11-15 16:25:44
Score: 1.5
Natty:
Report link

Yes, you can configure Multer to handle situations where a file might not be included in the request body and fail gracefully. This can be done by using the single() or array() method of Multer (or any other upload handling method) in combination with proper error handling logic.

Here’s how you can handle the scenario where a file might be missing from the request body:

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

79193159

Date: 2024-11-15 16:19:42
Score: 2.5
Natty:
Report link

You can check the available environment variables in the aws code build page, the commit sha would be CODEBUILD_RESOLVED_SOURCE_VERSION in particular

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

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

79193147

Date: 2024-11-15 16:14:38
Score: 1
Natty:
Report link

I faced the same error as @Attila Gyén with the icon field when using the ToggleMask, but there's another way to solve the same thing without going directly to the .p-icon-field class by using the passthrough options offered by primereact:

 <Password
        pt={{
          iconField: {
            root: {
              style: { width: "100%" },
            },
          },
          input: {
            style: { width: "100%" },
          },
          root: {
            style: { width: "100%" },
          },
        }}
      />

Remember this code my seem complex, but it lets you customize the classes already given by primereact in your JSX / TSX side of the code.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Attila
  • Low reputation (1):
Posted by: BearCoding

79193144

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

You are using a version of node that is too recent. See this GitHub issue.

I had the same error and it went away by downgrading node v23 to node v22.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: AlePorro

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

79193132

Date: 2024-11-15 16:09:37
Score: 3.5
Natty:
Report link

I was able to solve the issue by switching to glpk solver. The solution now matches the analytical solution.

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

79193119

Date: 2024-11-15 16:06:36
Score: 2.5
Natty:
Report link

(NOBRIDGE) ERROR Error: Exception in HostFunction: Unable to convert string to floating point value: "large" i am getting this when i compile my app in iphone, but web it compiles as usual without any error.

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

79193116

Date: 2024-11-15 16:05:36
Score: 0.5
Natty:
Report link

You might no longer have this issue, but if there's another application on your machine attempting to connect to a socket.io server on the same port used by Express, it could cause a conflict.

In many cases, this is due to the In-Game Overlay of NVidia GeForce Experience. You can refer to this explanation to identify the source of the issue: Superuser Link.

The most efficient solution is to restart your device, which will allow applications to reset their connections and free up the port.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Low reputation (1):
Posted by: BlackInk7777

79193115

Date: 2024-11-15 16:05:36
Score: 2
Natty:
Report link

No this is CSS. Please read documentation. This often gets me too, but you are better off reading at least some official documentation.

& nesting selector

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

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

79193109

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

In case it helps someone, this is is a recursive CTE solution that I needed recently:

DECLARE @PayCalendarStartDate DATE = '2024-01-01'; DECLARE @PayCalendarEndDate DATE = '2024-12-31';

WITH PayCalendar AS ( SELECT PayPeriodStartDate = @PayCalendarStartDate , PayPeriodEndDate = DATEADD (DAY, 13, @PayCalendarStartDate) UNION ALL SELECT PayPeriodStartDate = DATEADD (DAY, 14, PayCalendar.PayPeriodStartDate) , PayPeriodEndDate = DATEADD (DAY, 14, PayCalendar.PayPeriodEndDate) FROM PayCalendar WHERE PayPeriodEndDate <= @PayCalendarEndDate ) SELECT * FROM PayCalendar;

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @PayCalendarStartDate
  • User mentioned (0): @PayCalendarEndDate
  • User mentioned (0): @PayCalendarStartDate
  • User mentioned (0): @PayCalendarStartDate
  • User mentioned (0): @PayCalendarEndDate
  • Low reputation (1):
Posted by: glennvw

79193105

Date: 2024-11-15 16:02:33
Score: 2.5
Natty:
Report link

Linux Mint 21.3 Cinnamon; Kernel: 5.15.0-125-generic

Resolved: Compiler path somehow changed to /.../clang++. Changed to /.../gcc and all is repaired.

How problem started: I Created a new text file and named it with *.cpp. Should not have been a problem but thats when my very similar problems started immediately afterwards. Maybe it somehow got changed inadvertently while creating it this way? I dont know how...

Followed most of steps above from @Damilare Oyediran which was very helpful:

Fyi, Linux uses GCC as the compiler as I understand- "GCC stands for GNU Compiler Collection. It is a set of compilers for various languages including C, C++, Objective-C, Fortran and more..."; cite link at bottom.

a. same b. same c. Mine stated usr/bin/cLang++. This turned out to be the incorrect path somehow selected as default. Mine worked after changing to /usr/bin/gcc d. My OS is Linux. To check version of GCC compiler from terminal: "gcc --version",,, or "gcc -v", the latter which gives more details, in particular the path: Mine is /usr/bin/gcc. e. VS Code IntelliSense Configurations UI drop down choices indeed displayed /usr/bin/gcc, option so I selected it. IntelliSense automatically updated the Visual Studio programs in progress real time which was open while doing this fix- all good now. It also automatically updated the c_cpp_properties.jason file in real time as well since it too was open while proceeding with the fix.

I bounced the above very helpful steps from @Damilare Oyediran, relative to Linux OS at the following link: https://thelinuxcode.com/check-the-version-my-gcc-compiler/.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @Damilare
  • User mentioned (0): @Damilare
  • Low reputation (1):
Posted by: js891ster

79193104

Date: 2024-11-15 16:01:32
Score: 2
Natty:
Report link

Also, check you're using the correct Include().

The one from the Microsoft.EntityFrameworkCore namespace, not System.Data.Entity.

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

79193103

Date: 2024-11-15 16:01:32
Score: 3
Natty:
Report link

According to the CMake documentation: https://cmake.org/cmake/help/latest/command/enable_language.html

CMake got CSharp support from version 3.8

Update this line:

cmake_minimum_required(VERSION 3.1)

To:

cmake_minimum_required(VERSION 3.8)
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mark Hinchcliffe

79193102

Date: 2024-11-15 16:01:32
Score: 2
Natty:
Report link

you need a loadbalancer or expose pod port such as user -> loadbalancer -> pod1 pod2

user -> machine_ip:port1 user -> machine_ip:port2

when you create a pod without -p, then you only got a pod with ip like 172.x.x.x and cannot access via network. you need to open a port link to your machine or loadbalancer

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

79193094

Date: 2024-11-15 15:59:32
Score: 3
Natty:
Report link

Use ControlD instead of a proxy. In the application, in the configuration field, write "comss" and run it. Works unlimited and stable. Good luck)

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

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

79193089

Date: 2024-11-15 15:56:31
Score: 1
Natty:
Report link

Similar answer. I just put selected records directly in the same line rather than a separate variable.

var vFieldName =  model.getValue(this.data.selectedRecords[0],'COLUMN_NAME'); 
apex.item('P600_DISPLAY_PARENT_TASK').setValue(vFieldName);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: EJA

79193072

Date: 2024-11-15 15:50:29
Score: 3
Natty:
Report link

There is a feature request in here

https://github.com/microsoft/vscode-remote-release/issues/10421

If you want to upvote and comment.

The idea is to improve the RemoteSSH plugin to integrate with the AADSSHLogin extension functionality.

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Philip Lewis

79193068

Date: 2024-11-15 15:50:29
Score: 3
Natty:
Report link

Try making the combinations sublist and results sublists a set, and check if results sublist set is a subset of the other.

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

79193056

Date: 2024-11-15 15:47:28
Score: 3
Natty:
Report link

Looks like they broke (or never fixed) it with Node.js 18.x, but changing to Node.js 20.works also with proxy integration.

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

79193051

Date: 2024-11-15 15:45:27
Score: 1.5
Natty:
Report link

It turned out my old workspace and my fresh one had unrelated problems, and I managed to fix my old workspace.

My old workspace and its project was originally set up to have a Java 1.7 "Compiler compliance level" (resp. Preferences -> General -> Java -> Compiler, and right click on project -> Properties -> Java Compiler), which isn't supported anymore. When I accessed these menus, Eclipse showed me a warning telling they changed it to 1.8, but obviously the change wasn't effective. I had to set it manually to 1.8 even though it appeared to be 1.8.

In my fresh workspace, Eclipse waits for me to edit a file before finishing highlighting it. I don't know why but I won't investigate because I'll keep using my old workspace, which is now OK.

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

79193048

Date: 2024-11-15 15:44:27
Score: 1.5
Natty:
Report link

Use gsub function

.gsub(/\(\d{2}:\d{2}\)/, '')
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anubhav Sharma

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

79193043

Date: 2024-11-15 15:41:25
Score: 3
Natty:
Report link

same as Arnav, this is command pyenv install 3.12.2 --L/usr/local/opt/gettext/lib -lintl is not related to fixing the issue.

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

79193040

Date: 2024-11-15 15:40:25
Score: 0.5
Natty:
Report link

If you're interested in relatively basic information, configuring CloudFront access logs and later analyzing them with Athena should be less complex and significantly less expensive as well.

Docs:

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

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

79193025

Date: 2024-11-15 15:35:23
Score: 1.5
Natty:
Report link

I was thinking what if you try to use PowerShell commands instead of trying to screen scrape from Google Chrome?

Invoke-WebRequest -Uri "https://192.168.1.1" | Select-Object -ExpandProperty StatusCode

This will return a 200 series response if the site is healthy and 300, 400, 500 if the site is not healthy.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vern Anderson

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

79192987

Date: 2024-11-15 15:27:16
Score: 1
Natty:
Report link

External tables are data stored outside of BigQuery’s managed storage, in other words, persistent external data.The Temporary tables are tables that exist only for the duration of your query session. So linking a temporary table to an external data source doesn’t make sense because the temporary table would vanish, leaving the external data reference dangling.

I think the best workaround is to create a regular external table, this way, the table definition persists, so you don’t have to recreate it every time.

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

79192977

Date: 2024-11-15 15:23:15
Score: 1.5
Natty:
Report link
return view('new-design.pages.profile_brand')
->withData($brand)
->withIndustry($industry);
id }}" enctype="multipart/form-data">
return view('new-design.pages.profile_brand')
->withData($brand)
->withIndustry($industry);

@if($data)
<form id="application_form" method="post" action="/apply/brand/{{ $data->id }}" enctype="multipart/form-data">

@else

Error: Brand data not found.

@endif

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @endif
  • Low reputation (1):
Posted by: Usama Tahir

79192973

Date: 2024-11-15 15:22:14
Score: 1
Natty:
Report link

Do this in your mdi form constructor:

var MDIC = Controls.OfType<MdiClient>().FirstOrDefault();
MDIC.BackColor = Color.Black;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maxter

79192967

Date: 2024-11-15 15:21:14
Score: 0.5
Natty:
Report link

But the approach doesn't seem to work for below

"WriteTo": [
  {
    "Name": "File",
    "Args": {
     
      "customFormatter": "Elastic.CommonSchema.Serilog.EcsTextFormatter,Elastic.CommonSchema.Serilog",
      
    }
  }
]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: alpha0

79192965

Date: 2024-11-15 15:21:14
Score: 1.5
Natty:
Report link

I just learned about the "TypeAsync()" Method.

await Page.GetByLabel("test").TypeAsync("01.02.1979");

This solved the problem.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Christoph Glaß

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

79192947

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

For the ones using Parallels on Mac, as a workaround, disable the Remote Simulator for Windows (Tools > Options > iOS Settings > Simulator). Source: https://github.com/dotnet/maui/issues/23283#issuecomment-2192514444

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

79192942

Date: 2024-11-15 15:16:11
Score: 1.5
Natty:
Report link

You should add first yarn to your project. Let's try this,

npm install -g yarn

after that

yarn add vuex@next --save

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: BerCodingLive

79192933

Date: 2024-11-15 15:14:11
Score: 1
Natty:
Report link

To resolve this, I upgraded npm from version 9.3.1 to 9.8.1, which works perfectly with Node.js v18.14.0. (My current use case)

You can check your latest compatible version of npm with your nodeJs and update it. There is no need to reinstall the nodeJs.

You can check here: https://nodejs.org/en/about/previous-releases#:~:text=partner%20HeroDevs.-,Looking%20for%20latest%20release%20of%20a%20version%20branch%3F,-Node.js%20Version

npm install -g npm@<YOUR_NPM_VERSION>

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: chinmay patil

79192915

Date: 2024-11-15 15:12:10
Score: 1.5
Natty:
Report link

I had same problem on Debian v 12 with Rails 3. Tried everything, and nothing worked finaly this worked, changed Gemfile to:

gem 'mysql2', git: 'https://github.com/makandra/mysql2', branch: '0.3.x-lts' # for Rails 3.x

got his from https://makandracards.com/makandra/515130-fix-mysql2-error-incorrect-mysql-client-library-version

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

79192912

Date: 2024-11-15 15:11:10
Score: 2
Natty:
Report link

style={{ borderRadius: 8, borderLeftColor: "#FA790F"}} sx={{ width: "100%", borderRadius: "8px", borderColor: "#FA790F", }}

This solved my issue. Adding the borderLeftColor to the style.

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

79192908

Date: 2024-11-15 15:10:10
Score: 2
Natty:
Report link

ok, after a few hours of research I found the answer:

One need to add the StoreKit Configuration File in the Scheme (in Product/Scheme/Edit Scheme), like in the screenshot. Mine was absent. After fixing this everything works are intended with the faster renewals.

enter image description here

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ori C.

79192905

Date: 2024-11-15 15:10:10
Score: 1.5
Natty:
Report link

Thank you to everyone who replied. The issue with the code sample I provided was that it didn't call CoInitialize(), which I forgot to include. The issue with my program itself was that there was an object that held a ID2D1Bitmap* that was created with the IWICImagingFactory and stored in static memory. The problem was that the bitmap was being released after the IWICImagingFactory, which caused a seg fault.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: SetupWizard

79192896

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

There was an error being thrown in the effect earlier in the chain. Our catchError handler was in the wrong spot and wasn't actually catching the error, which meant the application was just swallowing the error and not reporting out.

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

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

79192871

Date: 2024-11-15 15:01:07
Score: 2
Natty:
Report link

i make a tool for display volume when i change volume with ahk command "SoundSet, -1" and "SoundSet, +1"

wish this can help.

https://github.com/uqiu/showVolume/tree/main/WpfApp1/bin/Debug/net6.0-windows

download all file in this folder, run WpfApp1.exe

it looks like this when you change volume

image

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

79192857

Date: 2024-11-15 14:57:06
Score: 1
Natty:
Report link

Please review the logs to understand what happened, then run a pull to verify that everything is up to date and proceed again with git push origin/qas

It is recalled that from the terminal the procedure to be followed is git add . git commit -m "commit" and then you can push.

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

79192851

Date: 2024-11-15 14:55:05
Score: 1
Natty:
Report link

I found the main part of the answer here: force selenium manager to download browser in python

This means if you force the selenium manager to download the same version of the browser that is already installed - it will download CfT by default. The magic can be done by setting environment variables:

import os
os.environ["SE_FORCE_BROWSER_DOWNLOAD"] = "true"
os.environ["SE_CACHE_PATH"] = "~/.cache"
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: aik.fiend

79192847

Date: 2024-11-15 14:54:05
Score: 1
Natty:
Report link

the LoginViewModel needs to implement the KoinComponent interface

class LoginViewModel:
BaseViewModel<LoginViewModelContract.State, LoginViewModelContract.Event>(),KoinComponent
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohamed Mabrouki

79192836

Date: 2024-11-15 14:49:04
Score: 3
Natty:
Report link

The solution is not matching for the date 14/05/2025 and 14/06/2025, the Nepali date is exact one day less as what getting from function

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

79192830

Date: 2024-11-15 14:47:03
Score: 2
Natty:
Report link

Finally, this did the trick elegantly. environment: ${{ github.ref == 'refs/heads/master' && 'prod' || github.ref == 'refs/heads/release' && 'release' || 'dev' }}

It means master will use prod environment, release release and everything else (like dev, or PRs) will use 'dev' environment.

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

79192826

Date: 2024-11-15 14:45:02
Score: 0.5
Natty:
Report link

When you close and reopen the form, the references to the ChooseFromList and its associated DataTable (oDataTable) become invalid. This happens because the form's UI elements are recreated, and their internal IDs (Unique IDs) may change upon reopening. Therefore, the oDataTable you are trying to access is not the same one that is currently active in the form.

The UniqueID of the DataTable may change between form instances. Instead of checking oDataTable.UniqueID, you should check the ChooseFromList UID provided by the event.

Replace:

if (oDataTable.UniqueID == "CFL_Item")

With:

if (oCFLEvento.ChooseFromListUID == "CFL_Item")

Before accessing oDataTable, check if it is not null to prevent null reference exceptions.

if (oDataTable != null && !oDataTable.IsEmpty)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: TGDEV

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

79192813

Date: 2024-11-15 14:40:00
Score: 1.5
Natty:
Report link

it came from the CN of the certificate and the way i used my commande,

add

allow_anonymous true

to the config file,

Make sure the CN are different for the server and the client, use the server CN in the -h parameter and add the client certificate and the client key

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

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

79192802

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

Downlad the jarfile jjwt-api-0.12.6.jar and add it to the dependencies,and it should be resolved.

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

79192793

Date: 2024-11-15 14:32:56
Score: 1.5
Natty:
Report link

Don't run ESLint on transpiled output JavaScript files (https://typescript-eslint.io/troubleshooting/faqs/javascript#should-i-run-eslint-on-transpiled-output-javascript-files). Source TypeScript files have all the content of output JavaScript files, plus type annotations. There's no benefit to also linting output JavaScript files.

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

79192790

Date: 2024-11-15 14:30:55
Score: 0.5
Natty:
Report link

We ended up with this same problem.... 42 GB of machine key files. So I wrote this powershell: RemoveMachineKeys.ps1. Took a while before it actually started deleting them, but once it did the script blazed through them pretty fast. I added protection from removing IIS machine keys.

I could not use the above answers that depended upon which user created the keys, as these keys were being created in a web site and had the same created by user. I also did not want to care about the application pool name if I did not have to.

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

79192787

Date: 2024-11-15 14:30:55
Score: 2
Natty:
Report link

You cannot convert from HTML language to "app language". Programming languages are not like speaking languages, and cannot simply be translated. HTML is a completely different type of language than languages that would be used to develop apps. I would suggest using an editor such as NetBeans if you wanted to make an app from scratch, using your current HTML project as a base.

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

79192786

Date: 2024-11-15 14:30:55
Score: 0.5
Natty:
Report link

I think the issue related to Multi Language setup , I put the default language Arabic language in Login page process , I changed it to take language from the selected language like this

begin
apex_util.set_session_lang(:P9999_LANGUAGE);
--apex_util.set_session_lang(p_lang => 'ar-ae');
end;

After that I did seed and publish then the new pages running without errors

Thank you all

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Abdullah

79192785

Date: 2024-11-15 14:29:55
Score: 1
Natty:
Report link

The screen didn't update properly when I ran VBA code when (A) I had frozen panes in Excel while I also (B) used Application.ScreenUpdating = False in VBA.

Setting Application.ScreenUpdating = True did not work to update the screen in the above. The following two options seemed to always work thus far: (1) Have VBA select a different tab before going back to the desired tab such as

Sheets("Sheet2").Select

Sheets("Sheet1").Select

(2) Turning Excel frozen panes off and then back on also worked

ActiveWindow.FreezePanes = False

ActiveWindow.ScrollRow = 1

ActiveWindow.ScrollColumn = 1

Range("A10").Select

ActiveWindow.FreezePanes = True

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Paul Fraser

79192781

Date: 2024-11-15 14:29:55
Score: 2.5
Natty:
Report link

Right click on the ellipsis (the three dots) on the GITLENS bar and choose to detach the parts you want to have permanent in the view. Screenprint of context menu of ellipsis on GITLENS bar

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

79192780

Date: 2024-11-15 14:28:54
Score: 2.5
Natty:
Report link

A member of the firebase-tools team has successfully reproduced the bug.

To track the resolution of the bug: https://github.com/firebase/firebase-tools/issues/7946

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

79192775

Date: 2024-11-15 14:27:54
Score: 2.5
Natty:
Report link

SELECT * FROM FirstTable AS A JOIN SecondTable AS C ON A.fruit LIKE CONCAT('%', C.fruit, '%');

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

79192770

Date: 2024-11-15 14:27:54
Score: 2.5
Natty:
Report link

Basically, for testing, I used the ngrok server to make requests to my Python Flask server and added the HTTPS delivery type subscription to the AWS SNS topic. In this case, for subscription confirmation, it triggered the endpoint, and that endpoint holds the SubscribeURL value. You need to put that value in the confirm subscription. for more details use this link

https://docs.aws.amazon.com/sns/latest/dg/sns-create-subscribe-endpoint-to-topic.html

Reasons:
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hemant Mishra

79192766

Date: 2024-11-15 14:26:54
Score: 2
Natty:
Report link

In Git, if you want to get the location of a file within the repository

  1. git ls-tree git ls-tree -r HEAD --name-only -r recursively lists all files. HEAD is the current branch/commit. --name-only shows only the file paths. --name-only shows only the file paths.

  2. git show --name-only HEAD

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

79192760

Date: 2024-11-15 14:24:53
Score: 1.5
Natty:
Report link

I had a similar issue with my Vite-React app. The solutions listed below I believe directly relate to your issue.

ReactVite Express NodeJs Azure app service. 404 The resource you are looking for has been removed, had its name changed, or is temporarily unavailable

Run Express server with my NodeJS app via Azure App Service deployed to Azure Container

The physical path C:\Website\EDIConverterDemo\wwwroot\api\account\getcurrentuser You are only serving static files right now.

It does not look like a CORS issue either.

Overall, I think it is a config issue, The Physical path should be the routing file.

The app is deployed on IIS but where? On a VM or as an Azure Web App, this will be important as the target link and port config might change depending on the IIS environment.

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

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

79192753

Date: 2024-11-15 14:22:52
Score: 3
Natty:
Report link

You don't want #13 here. The standard newline indicator for the systems based on POSIX (*NIX, Linux and a lot more) is just #10. Please see the article on newline: https://en.wikipedia.org/wiki/Newline.

If you have Windows habits, you may want to get rid of some of them.

If you still think you have any reason to have #10#13, please clarify, but I don't think you will need it. Even the libraries for Windows tend to migrate to accepting just #10.

Reasons:
  • RegEx Blacklisted phrase (2.5): please clarify
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergey A Kryukov

79192748

Date: 2024-11-15 14:21:52
Score: 1
Natty:
Report link

The Spring Core Module provides the fundamental features needed to build any Spring application. It includes two lightweight containers, also known as Spring containers or Inversion of Control (IoC) containers:

  1. BeanFactory Container (Basic container)
  2. ApplicationContext Container (Advanced container, an extension of BeanFactory) Ref:

Spring contexts are also called Spring IoC containers, They are responsible for instantiating, configuring, and assembling beans by reading configuration metadata from XML, Java annotations, and/or Java code in the configuration files. Ref

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

79192745

Date: 2024-11-15 14:20:52
Score: 3.5
Natty:
Report link

it is related to primeng V18 upgrade, add [keepInvalid]="true" it will fix the issue

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