79361681

Date: 2025-01-16 13:09:43
Score: 2
Natty:
Report link

Instead of directly calling the API, you can capture the request headers, cookies, and any required session tokens from the browser and send a request using Python's requests library or any other HTTP library. These tactics help in mimicking browser behavior.

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

79361679

Date: 2025-01-16 13:08:42
Score: 8.5 🚩
Natty: 4
Report link

How do you manage to get it working? i have a web app, an app insights in the same vnet under different subnets, and i place a VM inside that vnet, but i get the "error retrieving data" message. I configured everything as microsoft doc says but i cant find anything to app insights, is like theres almost no info. Is theres something else that i have to do to make it working that is not in the doc? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): i have to do
  • Blacklisted phrase (1): How do you
  • RegEx Blacklisted phrase (2): working?
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How do you
  • Low reputation (1):
Posted by: Sebaas1.8t

79361664

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

print(f"filename: {(tf.strings.join(tf.strings.split(file_path),separator=" ").numpy()).decode('utf-8')}

file_path --> tensor containing string

This might help

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

79361661

Date: 2025-01-16 13:00:39
Score: 0.5
Natty:
Report link

I find the best solution: window.location.href = decodeURIComponent(url_change.replace("amp;",''));

It's work.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fábio S. Brito

79361659

Date: 2025-01-16 13:00:39
Score: 0.5
Natty:
Report link

This is somewhat how your Table.jsx component should look like.

import React, { useEffect, useState } from "react";

export default function Table() {
  const [data, setData] = useState([]);

  useEffect(() => {
    getFakeApiData();
  }, [data]);

  const getFakeApiData = async () => {
    return await fetch("https://jsonplaceholder.typicode.com/users")
      .then((data) => data.json())
      .then((data) => setData(data));
  };

  return (
    <div>
      {data.map((user) => {
        const { name, email, address, company } = user;
        return (
          <tr key={name}>
            <td>{name}</td>
            <td>{email}</td>
            <td>{address.city}</td>
            <td>{company.name}</td>
          </tr>
        );
      })}
    </div>
  );
}

Calling the component inside the App.js

import React from "react";
import Table from "./Components/Table/Table";
import "./styles.css";

const App = () => {
  return (
    <div className="App">
      <Table />
    </div>
  );
};

export default App;

Output of the code

Leanne Graham   [email protected]   Gwenborough Romaguera-Crona
Ervin Howell    [email protected]   Wisokyburgh Deckow-Crist
Clementine Bauch    [email protected]  McKenziehaven   Romaguera-Jacobson
Patricia Lebsack    [email protected]   South Elvis Robel-Corkery
Chelsey Dietrich    [email protected]    Roscoeview  Keebler LLC
Mrs. Dennis Schulist    [email protected] South Christy   Considine-Lockman
Kurtis Weissnat [email protected]  Howemouth   Johns Group
Nicholas Runolfsdottir V    [email protected]    Aliyaview   Abernathy Group
Glenna Reichert [email protected] Bartholomebury  Yost and Sons
Clementina DuBuque  [email protected]  Lebsackbury Hoeger LLC

IMAGE enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: shantanu.singh

79361649

Date: 2025-01-16 12:57:39
Score: 1.5
Natty:
Report link

The accepted answer is incorrect. It misses characters like ý and Ý, ć and Ć and many others.

I believe this works, but I haven't fully tested it:

text.match(//[A-ZÀ-Ž]/u);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Neonnaut

79361648

Date: 2025-01-16 12:56:38
Score: 2.5
Natty:
Report link

I think I have an idea for you. What if you add: style-src-attr: 'unsafe-inline', but you secure style-src, and script-src. In this way essentially you are saying: "No inline script tags, no inline style tags, I could have dynamic style attributes but it will come only from the scripts I already approved". I know it adds inline styles as well. For those you can generate sha-256 code and add it in your style-src directive. The only thing that is a problem in that approach is that you may have to update it if you change the styling of the banner.

I do not see an issue with that approach, do you think it is fine for you?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: vvn050

79361644

Date: 2025-01-16 12:54:38
Score: 1.5
Natty:
Report link

Change your filename extension when editing with emacs. emacs seems to add a new line to file having a name with extension ".txt".

I created a filre named "file0" and another named "file0.txt" containing the same simple string. A newline is added to "file0.txt", but not to "file0" after CTRL XS.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Saint-Martin

79361640

Date: 2025-01-16 12:54:38
Score: 3
Natty:
Report link

It seems like this was a bug in Flutter. After an update to Flutter 3.27.2 3 days ago, the bug was gone.

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

79361634

Date: 2025-01-16 12:50:37
Score: 1
Natty:
Report link

Heapsort is mostly an umbrella term. There are both min-heaps and max-heaps. And whatever you use then if you call it again then both versions will act as you specify.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Thomas Koelle

79361632

Date: 2025-01-16 12:50:37
Score: 4
Natty:
Report link

I responded regarding a similar question in this link. You have to adjust your settings in global user file.

R workspace doesn't load anything in Visual Studio Code

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

79361625

Date: 2025-01-16 12:47:35
Score: 1.5
Natty:
Report link

I’m not sure how it works in VirtualBox but in VMware COM ports can be redirected, though you can’t control the signal lines. Back in my day, I used https://www.serial-over-ethernet.com/ to fully manage the port functionality.

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

79361616

Date: 2025-01-16 12:43:34
Score: 1
Natty:
Report link

You can also make use of the following function:

->modalWidth(MaxWidth::FiveExtraLarge)

For more details, refer to the Filament documentation on modals.

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

79361604

Date: 2025-01-16 12:41:34
Score: 0.5
Natty:
Report link

Ok so after a little digging, you can add settings to the global user JSON file. From your command pallette (cmd+shift+p) search for the settings file (see image).

enter image description here

 "r.rterm.option": [
        "--r-binary=your_path_to_R", // Replace with your R path 
        "--no-save", // Optional: Prevent saving workspaces
        "--no-restore", // Optional: Prevent restoring workspaces
        "r.rterm.mac": "/Your_Path",  // Replace with the Radian path from above
        "r.bracketedPaste": true  // Enables chunked code execution
        "r.alwaysUseActiveTerminal": true, // Enables cmd+enter execution
        "r.bracketedPaste": true,
        "r.sessionWatcher": true
    ]
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: VineFreeman

79361600

Date: 2025-01-16 12:40:33
Score: 1.5
Natty:
Report link

Yeah you can just add to your vite.config.ts file

export default defineConfig({
  //
  resolve: {
    alias: {
      '@': '/src',
    },
  },
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SergeySukhorukov

79361597

Date: 2025-01-16 12:39:33
Score: 2.5
Natty:
Report link

Basically in your myInputs class you give padding 0, 10px. It's mean you only give 10px padding to left and right side and padding between top and bottom is zero. you need to correct your padding with 5px, 10px.

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

79361596

Date: 2025-01-16 12:39:33
Score: 1
Natty:
Report link

Add this to your settings.json file to fix the issue:

{
  "arb-editor.suppressedWarnings": [
    "metadata_for_missing_key",
    "missing_metadata_for_key",
    "invalid_placeholder",
    "placeholder_without_metadata",
    "missing_placeholder_with_metadata",
    "missing_messages_from_template",
  ]
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Asmir Alić

79361594

Date: 2025-01-16 12:38:32
Score: 6 🚩
Natty: 5.5
Report link

Did you manage to figure this out? I am running into this exact same issue currently. I have tried many things to solve this out, but nothing seems to work; not even any AI seems to have any clue towards this issue. I currently run a postgresql Supabase DB that i have integrated to Vercel through their own integration tool and all the environmental variables are correct; i thought of this to be a DB issue, but am not sure.

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to figure this out
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: N. Van

79361586

Date: 2025-01-16 12:35:31
Score: 0.5
Natty:
Report link

What you're looking for is Tracing. There is an industry standard called OpenTelemetry, which has a rich ecosystem of tools to generate and analyze. For your software to emit traces in OpenTelemetry format, you can set up an Instrumentation for JavaScript

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you
  • High reputation (-1):
Posted by: Ivan Rubinson

79361580

Date: 2025-01-16 12:34:29
Score: 7.5 🚩
Natty: 5.5
Report link

Please let me know if you get the solution. I am also stucked with this problem.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (1.5): I am also stuck
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29226202

79361579

Date: 2025-01-16 12:34:29
Score: 2
Natty:
Report link

How to send Firebase Push notification to Connected Device i have implement it successfully after reading the firebase documentation here i am showing you how your request should be like for sending push notification

I will Guide you how to work with android with complete code in kotlin on your demand

enter image description here

Below is the postman request

enter image description here

in the header add your bearer token and application content type json

enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Starts with a question (0.5): How to
Posted by: Najaf Ali

79361571

Date: 2025-01-16 12:30:28
Score: 2
Natty:
Report link

I want to share my simple solution.

I had similiar problem. Thanks for all suggestions. But I like simple solutions.

What is my problem? I have a list like category systems. Some categories are upper categories and some of them are lower categories. I need list them all on the same time in the correct order.

Something like this.

1. Category 1
2. Category 2
2.1 Sub Category 1
2.2 Sub Category 2
3. Category 3

I have a nullable int field UpperCategoryId and non-nullable int Order field and text field.

When I list categories, I calculate a double number like this

DoubleOrder = Convert.ToDouble(x.UpperCategoryId.HasValue ? x.UpperCategory.Order + (x.Order/10.0) : 0 + x.Order)

This takes UpperCategories orders same. Takes subcategories values as decimal. Then I order by DoubleOrder

.OrderBy(x => x.DoubleOrder)

And my result is exactly what I want.

results

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Hakkı

79361569

Date: 2025-01-16 12:30:28
Score: 0.5
Natty:
Report link

I found this looking for the same answers. The responses do not answer the core question above. The workspaces only became active if I added/activated an R Terminal shell prior to executing any code.

From the image above, this doesn't seem to be an R terminal. It needs to say "R Interactive" where you have your current terminal label (which in your images says "Code >". That plus icon will reveal what terminal you can add. If you can't see R Interactive Terminal in the available list then I assume the R extension isn't configured correctly.

But appreciate this is old but still adding thoughts. I'm trying to get a similar feel in VS Code to RStudio - particularly configuring panels and so on.

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

79361552

Date: 2025-01-16 12:24:27
Score: 2
Natty:
Report link

Since any Material-UI component can hold a ref. The easiest solution is to wrap the original content with a Box.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yuchen2727

79361531

Date: 2025-01-16 12:18:25
Score: 1.5
Natty:
Report link

XPath queries, it doesn't modify. As the name suggests, XPathSelectElements returns the nodes you want. You'll have to process each one of them and modify the correct child elements. The unconventional XML schema makes this harder than needed -Templates,Source, Comments etc should all be elements, not values in a generic attribute. No flexibility is gained by the current format.

LINQ is also a query, not a modification language, it doesn't modify. No matter what language you use you'll have to iterate over the feature elements they produce and for each one, retrieve the name or driver children and modify their value attribute.

Comment from Panagiotis Kanavos

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

79361528

Date: 2025-01-16 12:16:24
Score: 1.5
Natty:
Report link

twikit already handles token validation when interacting with X (Twitter).

You may not need to manually check or decode the token.

Your current approach of doing this is correct.

Trust twikit's library methods for cookie/token management.

Using verify_signature=False is risky.

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

79361524

Date: 2025-01-16 12:14:24
Score: 1.5
Natty:
Report link

This should help to remove the line from the bottom:

GetDlgItem $R0 $HWNDPARENT 1045
ShowWindow $R0 ${SW_HIDE}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jörg Hoffmann

79361523

Date: 2025-01-16 12:13:23
Score: 2
Natty:
Report link

To fix the error, install the SpaCy model with this command:

bash Copy Edit python -m spacy download en_core_web_sm Then, update your code to:

python Copy Edit import spacy nlp = spacy.load("en_core_web_sm") This should resolve the issue!

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

79361521

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

enter image description hereHi I have fixed the issue by my own here are the steps i reproduced from terminal i move to my project directory and use this command
1, /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 2, echo >> /Users/zainishfaq/.zprofile 3, echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/zainishfaq/.zprofile eval "$(/opt/homebrew/bin/brew shellenv)" 4, open .zshrc 5, Add the following in the zshrc file {export PATH=$HOME/development/flutter/bin:$PATH export PATH=$HOME/.gem/bin:$PATH

Add RVM to PATH for scripting. Make sure this is the last PATH variable change.

export PATH="$PATH:$HOME/.rvm/bin" export PATH="/opt/homebrew/bin:$PATH"} 6, rvm get stable 7, rvm install 3.1.2

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

79361517

Date: 2025-01-16 12:12:23
Score: 1
Natty:
Report link
  1. First of all remove those @Getter and @Setter annotations as you already using @Data it consist those things and using those separately might be creating conflicting issues. 2.Make sure you added the compatible version of lombok according to your springboot version.
  2. use this to reinstall all dependencies mvn clean install or if youre using IntelliJ Idea then simply go to your pom.xml and right click and you'll get an option.
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Getter
  • User mentioned (0): @Setter
  • User mentioned (0): @Data
  • Low reputation (1):
Posted by: Vijay

79361510

Date: 2025-01-16 12:11:23
Score: 2
Natty:
Report link

Just a little addition... I was having problems with the email subject appearing to be UTF8 but coming through as =?UTF-8?B?SGVsbG/wn5iD8J+YhPCfmIHwn5iG?=

Adding the policy=default to the message_from_bytes call seems to have solved this.

I changed this line: message = message_from_bytes(envelope.content) to this: message = message_from_bytes(envelope.content, policy=default)

Now UTF8 subjects come through correctly.

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

79361507

Date: 2025-01-16 12:09:23
Score: 1
Natty:
Report link

A setParameter function in a Typehander with a MappedTypes annotation for boolean @MappedTypes({boolean.class, Boolean.class}) that used preparedStatement.setInt has caused the problem.

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

79361480

Date: 2025-01-16 12:02:20
Score: 12 🚩
Natty: 6
Report link

did you solved this question? i have the same question. if you figure out it,i hope you can share it. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): i have the same question
  • RegEx Blacklisted phrase (3): did you solved this
  • RegEx Blacklisted phrase (1.5): solved this question?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same question
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you solve
  • Low reputation (1):
Posted by: Yang

79361479

Date: 2025-01-16 12:01:19
Score: 2.5
Natty:
Report link

I have faced the same issue for some models. I found data uface series device successful, but sometimes timeout. I used python and php for this. I can't make stable solution yet.

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

79361476

Date: 2025-01-16 12:01:19
Score: 2.5
Natty:
Report link

You might be like these 2 free react admin templates which comes with some pre-built things and it can also helpful to kickstart your project:-

  1. Modernize React Template
  2. MatDash React Template
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vaibhav Gupta

79361472

Date: 2025-01-16 12:00:19
Score: 2.5
Natty:
Report link

The correct answer is - "NO, you can't." There is no way to flush from the AWS console. You have to connect with Redis tools, eg cli, to Redis and then flush.

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

79361463

Date: 2025-01-16 11:57:18
Score: 1
Natty:
Report link

So, not sure if this is necessary, but I just wanted to add to better understand the problem and why interpreter languages were introduced: Back in the days (1996/7) we used to program directly for a specific hardware platform, e.g. Alpha processor or Intel processor. Each of these processors had a different instruction set that it understood, and the code you wrote had to be compiled directly for the hardware platform it was intended to run on. So if, for some reason, you compiled for an Intel processor and then ran the program on an Alpha server, it simply would not work. Early implementations of interpreter languages like Java, and later .NET and others, eliminated this problem because you could program, interpret to byte code, and then run your software on any hardware platform where the Java interpreter or the .NET Framework was installed. The compilation to machine code was only done when the program was first started, and any updates to the byte code of the program would then trigger a recompilation. This made it much easier for software vendors to deliver software and software updates to customers using any type of hardware platform, as long as the interpreter software ran on that platform.

Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sergio Vogel

79361461

Date: 2025-01-16 11:57:18
Score: 3
Natty:
Report link

You can build the Streamlit app running in snowflake container services and achieve the same

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

79361447

Date: 2025-01-16 11:52:17
Score: 1.5
Natty:
Report link

The server seed used on Stake.us is a 64 digit hexadecimal number which has 16^64 possible permutations. That’s actually the same as 2^256 which is the level of encryption as a SHA-256 encryption. Here is a fabulous video 3Blue1Brown made explaining what it would take to brute force that many permutations: https://youtu.be/S9JGmA5_unY?si=wvKLiM4Y2Myh4tgc

What I’m about to share is strictly against stake.us terms and conditions and could get you banned from the site or even sued, but if you wanted to try and systematically get your active seed, here’s what you could try.

Auto play any provably fair game for a full day from 12:01 A.M. to 11:59 P.M., then wait for all those games will be saved to your archives. Download the archives. Write a program that will put the client seed, nonce, and result into a list of lists. Loop through the list until you find 5-10 of the rarest results (Plinko prize result 0 or 16, Dice roll 99.99, etc.). Save those specific nonces. Write a function to generate a random server seed and run the fair play calculation for the saved nonces and calculate the absolute difference between the real results and your results. Write a function to change one character of the server seed and run the calculation again until the results are closer to the real results. Continue this process until you get a seed that matches the real results of those 5-10 instances and you will have engineered a seed for that specific game that will get you results at least 99.9% accurate to that game.

Note: that still may not be the exact server seed, but it will certainly be a close second. You can always put that engineered seed into a sha256 encryption website and

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Michael Powers

79361446

Date: 2025-01-16 11:51:17
Score: 1.5
Natty:
Report link

I encountered the same issue where Xcode 15.4 crashes when I click on the Runner. After trying several troubleshooting steps, including restarting Xcode, clearing derived data, and rebooting my system, none of them resolved the issue. In the end, I uninstalled Xcode from the Applications folder and reinstalled a fresh version. This fixed the problem for me.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Arshad

79361434

Date: 2025-01-16 11:47:16
Score: 0.5
Natty:
Report link

I got the solution. The searching works with the item.value, not with item.child. I prepared the "DropdownMenuItem" like below:

DropdownMenuItem<String>(
    value: "$rawmatCode-$serialNocapture-$rawmatName2",
    child: Text("$rawmatCode ($rawmatName2)"),
      );
}).toList();

And the search match function works like below:

searchMatchFn: (item, searchValue) {
   return item.value.toString().toLowerCase().contains(searchValue);
},
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ayan

79361429

Date: 2025-01-16 11:46:16
Score: 3
Natty:
Report link

The issues are fixed after .Net 9 update . The issues were JDK related now the official support is JDK17 in MAUI

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

79361420

Date: 2025-01-16 11:45:15
Score: 2
Natty:
Report link

Just to clarify...

Incoming packets (to INPUT or FORWARD iptables chain) are first seen by on Net_device by tcdump then processed by netfilter/iptables. If packet is forwarded tcpdump can see (just) output of netfilter/iptables.

look here: https://superuser.com/questions/925286/does-tcpdump-bypass-iptables

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

79361419

Date: 2025-01-16 11:45:15
Score: 1
Natty:
Report link

* {
  background: #e1e1e1;
}
<svg class="decor" height="100%" preserveaspectratio="none" version="1.1" viewbox="0 0 100 100" width="100%" xmlns="http://www.w3.org/2000/svg">
  <path d="M0 0 L100 100 L0 100" stroke-width="0"></path>
</svg>

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

79361416

Date: 2025-01-16 11:43:15
Score: 0.5
Natty:
Report link

Do not forget to activate Legacy Previews:
"Editor > Canvas > Use Legacy Previews Execution"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Marwen Doukh

79361415

Date: 2025-01-16 11:42:15
Score: 1
Natty:
Report link

You can code it in Rust then compile into WASM. You can show the original Rust source code to your users, including the hash string (checksum) of the WASM file. Users can verify that the running WASM file is indeed compiled from the source code that you provide them by using the hash string.

There are also some other ways called Zero-Knowledge Proof (ZK). There are many ZK libs already. Some requires trusted setup, and some others don't. Check this repo from Microsoft: https://github.com/microsoft/Spartan which doesn't require trusted setup. There are also some ZK libs written in pure JS but their proofs are much heavier than the piece of information they prove, so not so efficient.

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

79361409

Date: 2025-01-16 11:41:14
Score: 2.5
Natty:
Report link

It is always possible to use optional inputs in TwinCAT when you call a funcion block. When you program your function as a method within a function block you can give you input variables a default value. Those inputs are optional.

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

79361406

Date: 2025-01-16 11:40:14
Score: 3.5
Natty:
Report link

Relationship Diagram

enter image description here Make the relation ship as per the image and also, you can create a CustomerList from Customer table by splitting the names by row

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

79361405

Date: 2025-01-16 11:39:14
Score: 1
Natty:
Report link

Client tool mert does the job.

README.md comes with great detail on its usage

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: iamtankist

79361402

Date: 2025-01-16 11:38:14
Score: 1.5
Natty:
Report link

Unrelated to op's question but if you are on a Mac and running requests to internal network, you need to have the following settings enabled. I upgraded my mac and was encountering the same error until I enabled this.

enter image description here

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

79361383

Date: 2025-01-16 11:30:12
Score: 2
Natty:
Report link

Thanks for reply. Yep, just that I've seen some tutorials where they delete App.vue and instead use index.vue in pages (Instead of App.vue > default.vue).

Not sure what the benefit would be. Will stick to App.vue for now an ole Vuer.

.T

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Thomas Thorstensson

79361382

Date: 2025-01-16 11:30:11
Score: 11.5 🚩
Natty: 6
Report link

I have the same problem. Did you solve it? The answer here isn't really an answer to your question, so I suspect you solved it in some other way.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Volcomer

79361380

Date: 2025-01-16 11:29:10
Score: 2.5
Natty:
Report link

For every step where you specified environment, it will ask for a review.

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

79361377

Date: 2025-01-16 11:27:10
Score: 1
Natty:
Report link

You can fix this by

set_target_properties (${TARGET_NAME} PROPERTIES
    XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "iPhone Developer"
    XCODE_ATTRIBUTE_DEVELOPMENT_TEAM ${DEVELOPMENT_TEAM_ID}
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: oa oa

79361375

Date: 2025-01-16 11:27:09
Score: 1
Natty:
Report link

The problem was with the configuration, setting it like this resolved the problem:

management:
  tracing:
    sampling:
      probability: 1.0

By default, Spring Boot samples only 10% of requests to prevent overwhelming the trace backend. This property switches it to 100% so that every request is sent to the trace backend.

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

79361372

Date: 2025-01-16 11:25:09
Score: 2
Natty:
Report link

You are probably missing android:fitsSystemWindows="true" in the root layout that hosts your toolbar. Check the changes introduced by Android 15 (see 3rd bullet point).

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

79361365

Date: 2025-01-16 11:22:07
Score: 4.5
Natty:
Report link

As @musicamante mentioned solution was to use QTimer class instance and bind .timeout() slot to function, that changes cursor's shapes periodically. No mulithreading necessary.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @musicamante
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DDV

79361360

Date: 2025-01-16 11:21:07
Score: 3
Natty:
Report link

sudo chown -R $(whoami):$(id -gn) "/file path"

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: reza.ansarirad

79361350

Date: 2025-01-16 11:14:06
Score: 2.5
Natty:
Report link

You get a 404 if you do not enter an id because Go will only see /api/text/get/{id} and not /api/text/get/ . It will see these two as two seperate paths. If you want to make a not found, you need to also handle /api/text/get/ .

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

79361341

Date: 2025-01-16 11:13:06
Score: 2
Natty:
Report link

I created for it an interface and abstract class.

For Using it implement IApplicataionDbContext(Your Db Context Interface) from IDbContextBulkExtensions interface and İmplement ApplicationDbContext(Your Db Context) class from AbstractDbContext not DBContext class

You can download files from https://gitlab.com/eminafsin/bulkextensionforcleanarichtecture

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Emin afşin

79361340

Date: 2025-01-16 11:13:06
Score: 0.5
Natty:
Report link

The new solution

As of 2015, browsers support Array.prototype.includes (caiuse, MDN) and with this you don't need to use indexOf.

if (['item1', 'item2'].includes(variable)) {
  // logic
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: weroro

79361333

Date: 2025-01-16 11:10:05
Score: 1
Natty:
Report link

This is how you add a folder to the path environment variable in Windows 11.

Step 1 — Open the "Advanced System Settings" window:

  1. Press Windows+Pause/Break to open the System window.
  2. Click on the Advanced system settings link.

System window

OR

  1. Press Windows+R to open the Run dialog.
  2. Type sysdm.cpl and hit Enter to open System Properties window.
  3. Click on the Advanced tab.

OR

  1. Press Windows+R to open the Run dialog.
  2. Type SystemPropertiesAdvanced and hit Enter to open System Properties window,
    directly in the Advanced tab.

System Properties — Advanced tab

Step 2 — Open the "Environment Variables" window:

System Properteis — Open Environment Variables

Step 3 — Edit the "Path":

Environment Variables

Step 4 — Add the "New Path":

Edit Environment Variable

More info at: 3 Ways to Set & Edit Environment Variables on Windows 11

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zicoo

79361331

Date: 2025-01-16 11:10:04
Score: 4.5
Natty:
Report link

Ok so after playing around I found a solution where I pass the proto marshaller/unmarshaller manually.

For example, when sending a request:

Marshal(ApiCall())
      .to[RequestEntity](PredefinedToEntityMarshallers.ByteArrayMarshaller.compose[ApiCall](r => r.toByteArray))
      .map({ entity =>

      })

And when receiving a response:

Unmarshal(entity)
      .to[ApiResponse](Unmarshaller.byteArrayUnmarshaller.map[ApiResponse](bytes => ApiResponse.parseFrom(bytes)))
      .map { apiResponse =>
          
      }

But what I'm confused about is how in my ServerRoute class, I just use with ProtobufMarshalling[ApiCall, ApiResponse] and scala picks up on the marshallers inside the trait. Here, I have had to explicitly pass the marshalling function inside to[<type>](<marshaller/unmarshaller>).

Could someone explain this please?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could someone explain
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kris Rice

79361329

Date: 2025-01-16 11:09:04
Score: 2
Natty:
Report link

Solved! It was bad peer address:port mapping, changing these environment variables all chaincode peer containers goes up well:

Peer peer.coripet.it has chaincode port (by default 7052) mapped as 7055 outside docker container.

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

79361319

Date: 2025-01-16 11:05:03
Score: 1.5
Natty:
Report link

You can get the secret key like this with load_dotenv

from dotenv import load_dotenv
import os

load_dotenv()

SECRET_KEY = os.environ.get("SECRET_KEY")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: aziz ai

79361318

Date: 2025-01-16 11:05:03
Score: 1
Natty:
Report link

I was having "Workload ID maui is not recognized" issue on Windows. The issue is fixed by re-initiating the installation of .NET SDK and selecting Repair option. After the repair is complete I able to install maui workload.

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

79361313

Date: 2025-01-16 11:04:02
Score: 3
Natty:
Report link

Using PyCharm I want to show plot extra figure windows Here are some answers. However, I can't test them, as I have the community edition and don't seem to have those features. This would explain why I never had graphs appear in the same window as PyCharm

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fff

79361312

Date: 2025-01-16 11:04:02
Score: 2.5
Natty:
Report link

If you’ve tried everything else, the solution might be simpler than expected! Just follow these steps carefully:

  1. Go to Settings > Build, Execution, Deployment > Compiler > Annotation Processors. Select your microservice module (make sure to choose the correct one very carefully).
  2. Check the option "Obtain processors from project classpath"
  3. Apply the changes, rebuild the project, and Lombok should start working as expected.
Reasons:
  • Blacklisted phrase (1): ve tried everything
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lakshay Singla

79361280

Date: 2025-01-16 10:59:01
Score: 2
Natty:
Report link

This is not an answer but more of a question. I have a strange case here:

const useTodos = () => useQuery('todos', fetchFunction)
//this hook basically takes the API data and do some other business with local data
const useApiAndLocalTodos () => useTodos()

Then in my components

HomeComponent:

const { data } = useApiAndLocalTodos()

TodosComponent:

const { data } = useApiAndLocalTodos()

Now I see two different network calls even if it's the same query. Any idea why?

Reasons:
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (0.5): why?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Blessing

79361263

Date: 2025-01-16 10:53:59
Score: 1
Natty:
Report link

Upgrade from v10 to v13 should be straightforward and it shouldn't cause any issues as you described if done correctly, as the database structure is very similar, if not the same.

I'd recommend you follow the Umbraco documentation and these handy videos and do you upgrade again. From your error, I believe it could be due to some missing Media Types, so you should check them (manually creating them might help resolve some of your issues but again, migrations should be done as described in the following videos.)

Handy resources for upgrades:

https://www.youtube.com/watch?v=aAgmq5Azn4s

https://www.youtube.com/watch?v=075H_ekJBKI

https://www.youtube.com/watch?v=_rQs0oO4uLA

enter image description here

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: Nurhak Kaya

79361261

Date: 2025-01-16 10:52:59
Score: 3
Natty:
Report link

you can try using some other tool like Selenium or Playwright witch are better at emulating a real browser by executing JavaScript, handling cookies, and mimicking user behavior.

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

79361252

Date: 2025-01-16 10:50:58
Score: 3.5
Natty:
Report link

Same question. Looks like the above comment only addresses a custom domain for a single repo, where as this question is asking about an entire account's repositories.

Reasons:
  • RegEx Blacklisted phrase (1): Same question
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: jbobrow

79361190

Date: 2025-01-16 10:34:55
Score: 1.5
Natty:
Report link

I’ve found a temporary workaround: add require "logger" before require "rails".

However, I believe that locking the version of concurrent-ruby is a more reliable solution.

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

79361176

Date: 2025-01-16 10:31:53
Score: 8.5 🚩
Natty: 6
Report link

Did you solve the issue? Did you read the all details? Normally in the bottom part says more about the error

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve the
  • RegEx Blacklisted phrase (1.5): solve the issue?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did you solve the is
  • Low reputation (1):
Posted by: B Melo

79361163

Date: 2025-01-16 10:29:53
Score: 0.5
Natty:
Report link

For me, it was an extra devenv.exe process that was running. Killing this process fixed the problem for me.

(I found the process because I started a repair install, and it couldn't complete because devenv.exe was running.)

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

79361162

Date: 2025-01-16 10:29:53
Score: 1
Natty:
Report link

correct parameter is include_credentials as per this doc - https://learn.microsoft.com/en-us/python/api/overview/azure/ai-projects-readme?view=azure-python-preview .

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Manu Chadha

79361161

Date: 2025-01-16 10:28:52
Score: 3.5
Natty:
Report link

Free fire hack Fly fast run hack shot

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rajesh Das

79361151

Date: 2025-01-16 10:26:52
Score: 2.5
Natty:
Report link

I found this library... I have not yet had the time to test it, but it looks good.

github/rix0rrr/beacon

It also includes an optional WPF dialog to select servers, on the client side.

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

79361144

Date: 2025-01-16 10:24:51
Score: 2
Natty:
Report link

I found a solution. The issue is because I have used a DropdownMenu inside a DropdownMenu. I redirect to a new URL when user clicks on the inner DropdownMenu item and close the outer DropdownMenu. In that case, the outer dropdown closes but the inner is still open somewhere in the html. So I am assuming that was the issue.

I have used DropdownMenuSub instead of DropdownMenu and it works.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Saumya Rai

79361142

Date: 2025-01-16 10:23:51
Score: 2
Natty:
Report link

Kindly check the C:\ drive storage space; if it is low, then the emulator won't start.

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

79361138

Date: 2025-01-16 10:22:50
Score: 5.5
Natty: 7
Report link

refering to this guide you put -linux instead of -elf in target https://preshing.com/20141119/how-to-build-a-gcc-cross-compiler/

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Oleh Zadorozhnyi

79361129

Date: 2025-01-16 10:21:49
Score: 1.5
Natty:
Report link

The issue is likely with the directory structure of your layer. For AWS Lambda to recognize your module, the site-packages folder needs to be under the python/ directory in the root of your ZIP file. Here's the correct structure:

python/ lib/ python3.11/ site-packages/ pyodbc/ pyodbc-5.2.0.dist-info/

Make sure you're matching the Python runtime version of your Lambda function (e.g., Python 3.11).

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

79361127

Date: 2025-01-16 10:20:49
Score: 0.5
Natty:
Report link

In my case, I am using db browser for sqlite app. When I closed that app and ran the process, it is working fine, otherwise it is throwing DatabaseLocked Error Continuously, even when no other process was using it.

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

79361124

Date: 2025-01-16 10:20:49
Score: 2
Natty:
Report link

In addiction to the first answer - range 0000-04ff in Window=>TextMeshPro=>FontAssetCreation worked for me. Font generation settings

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Данила Бокарев

79361113

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

For websites using a CMS like WordPress:

  1. Manual Editing: Navigate to Appearance > Menus in your admin panel. Add a custom link. Use the HTML wrapper if your platform supports custom HTML in menu items.
  2. Custom Code: Edit the theme files if the menu is dynamically generated. Open the header.php or equivalent file in the theme editor. Add your custom HTML to the relevant section.
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sajid Mahmood

79361104

Date: 2025-01-16 10:12:47
Score: 1
Natty:
Report link

Found the issue.

It was a problem with my CustomPathGenerator class for the media package, namely on the getPath function:

 public function getPath(Media $media) : string
    {
        if ($media->model_type === 'agent') {
            return 'cms/agentes/' . Agent::find($media->model_id)->slug .'/';

        }elseif ($media->model_type === 'store') {
            return 'cms/lojas/' . $media->model_id  .'/';
        }
        
        return $media->getKey();
        
    }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Zeli Torres

79361099

Date: 2025-01-16 10:10:47
Score: 1
Natty:
Report link

There is .pro file only when u are using qmake.

if u are using cmake

add this config into your CMakeLists.txt file

find_package(Qt6 REQUIRED COMPONENTS PrintSupport)
target_link_libraries(mytarget PRIVATE Qt6::PrintSupport)

more reference https://doc.qt.io/qt-6/qtprintsupport-index.html

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

79361091

Date: 2025-01-16 10:08:46
Score: 0.5
Natty:
Report link

I had this issue with Docker Desktop on an M2. What worked for me was:

sudo rm /Library/PrivilegedHelperTools/com.docker.vmnetd

vmnetd has been installed again and Docker Desktop is running without any issue.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: juliantoledo

79361084

Date: 2025-01-16 10:06:45
Score: 4.5
Natty:
Report link

If you're looking for a solution in 2025: You'll need Shizuku and App Opps from the play store to "restore" these functions that should have been in the settings to begin with.

This video shows it all: https://www.youtube.com/watch?v=BuAvEP7BOUE

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): This video
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: permissions_ruined_the_world

79361081

Date: 2025-01-16 10:05:45
Score: 0.5
Natty:
Report link

Do not pass ref.current but ref itself. If you set a property on an object , any other code may see that property right away as long as it has access to the object. The object is ref, in this case. That way you may access up-to-date DOM element whenever you need it. That is what useRef is for.

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

79361079

Date: 2025-01-16 10:05:45
Score: 2
Natty:
Report link

I ran into same problem. 90% of the time was used to generate the perfect optimized execution plan. If I add ORDERED hint, the plan is not the optimal. But the total execution time (plan + actual execution) is much faster than then perfect plan.

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

79361073

Date: 2025-01-16 10:03:44
Score: 3.5
Natty:
Report link

Try using ng-click instead of ng-change.

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

79361070

Date: 2025-01-16 10:03:44
Score: 2
Natty:
Report link
const getCommentsForPost = async (postId) => {
  // This is assuming that the postId is not null
  let nextToken = null;
  let allComments = [];

  do {
    const result = await API.graphql(
    graphqlOperation(listComments, { filter: { 
       commentPostId: { eq: postId } 
    // No need for limits
      }, 
     nextToken 
     })
   );

const comments = result.data.listComments.items;
allComments.push(...comments);
nextToken = result.data.listComments.nextToken;
} while (nextToken);

return allComments;
};

This should get the comments for a particular post without any error. Also could you clarify if you are getting the comments only when you view a single post details, or you are trying to get multiple posts comments.

Either way, this function can still get the comments that you need

Reasons:
  • RegEx Blacklisted phrase (2.5): could you clarify
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Demehin Ibukunoluwa George

79361066

Date: 2025-01-16 10:01:43
Score: 6 🚩
Natty: 5
Report link

i have already a project of a chatbot integrated in teams and recently i wanted to add to it AI(dify) is it possible to stream messages using node js?

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: coca

79361056

Date: 2025-01-16 09:56:41
Score: 1.5
Natty:
Report link

The package has been modified and there is no editor package in moviepy 2.1.2

so use :

pip uninstall moviepy

pip install moviepy==2.0.0.dev2

This works like a charm.

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

79361052

Date: 2025-01-16 09:55:41
Score: 8
Natty: 7
Report link

I made an app where the custom title bar is made using HTML and CSS. I did not use the default title bar. Is it possible to trigger snap menu on hovering over my custom maximise button? If so, can you suggest how?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • RegEx Blacklisted phrase (2.5): can you suggest how
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mortemkreiger

79361050

Date: 2025-01-16 09:54:40
Score: 5.5
Natty: 4.5
Report link

The Azure Insights does not support PHP. Is there any 3rd party tools that will provide application performance monitoring for PHP web application deployed Azure App Service?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: nelsonym

79361041

Date: 2025-01-16 09:49:37
Score: 5.5
Natty: 5
Report link

.ideav 폴더를 삭제 하라는 댓글이 나를 살렸다 너무 감사합니다.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Ruyha

79361038

Date: 2025-01-16 09:49:37
Score: 1.5
Natty:
Report link

An element is created only if it is not present. For example, if the first list is [7,6,4,7,1,5], the second list is [7,6,4,1,5].

n=[]
for j in int(input()):
    n.append(int(input()))
l=[]
for o in n:
    if not o in l:
        l.append(o)
print(l)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Pin Beach2

79361036

Date: 2025-01-16 09:48:37
Score: 2
Natty:
Report link

Same problem with new version... package Microsoft.AspNetCore.Components.Authorization 9.0.1 is not compatible with net8.0

  1. Update from net8.0 to net9.0 your solution
  2. Update Microsoft.AspNetCore.Components.Authorization from 8.0.0 to 9.0.1
  3. Make sure you use the same version in the solution projects, consolidate

Or use 8.X.X versión with net8.0

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mainmind83