79804518

Date: 2025-10-30 08:22:28
Score: 3.5
Natty:
Report link

Bgdvbfhusgjtmteunzbb

header 1 header 2
cell 1 cell 2
cell 3 cell 40
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Tohid

79804517

Date: 2025-10-30 08:18:27
Score: 1.5
Natty:
Report link

Brifly

cat 1.txt | sed -E "s/(.{1})/\1\n/g" | sort | uniq

Example:

cd /dev/shm/

echo "Hello_world" > /dev/shm/1.txt

cat 1.txt

cat 1.txt | sed -E "s/(.{1})/\1\n/g" | sort | uniq -с

S means substitute

S/str2replace/replacment/g g-means globaly

() is groupe

dot means any character

{1} exactly 1 character

All together

s/(.{1})/\1\n/g means replace any character exactly one with itself and char(10) that represents newline.

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

79804510

Date: 2025-10-30 08:12:25
Score: 0.5
Natty:
Report link

Your code is almost correct and you are going in right way. But you can follow given steps to completely understand mapping from Entity to DTO using MapStruct.

-> Modify below line with your actual line (Just modify given line only in your interface).

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

79804508

Date: 2025-10-30 08:07:24
Score: 0.5
Natty:
Report link

Do you have default values set for completed_at and updated_at?
In your migration, both of these fields are marked as nullable, so you should make them nullable in your Data class as well, like this:

public function __construct(
    public User $creator,
    public TaskCategory $taskCategory,
    public TaskPriorityEnum $priority,
    public string $title,
    public string $slug,
    public string $content,
    public bool $completed,
    public ?\DateTime $completed_at,
    public ?\Date $deadline_at,
    public \DateTime $created_at,
    public ?\DateTime $updated_at,
)

also u can try ?\Carbon\Carbon

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: John Roshan

79804499

Date: 2025-10-30 07:55:22
Score: 1
Natty:
Report link

I figured out, that I have to wait for the responsd, mostly: SEND OK but somtimes due to Serial communication, only a _ prompt appears, which is equivalent for OK and waiting for next chunk of data.

Reasons:
  • Whitelisted phrase (-2): I figured out
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Erkman

79804489

Date: 2025-10-30 07:41:18
Score: 0.5
Natty:
Report link

While @Jarod42 's answer is the right one for the given problem, I found a new way to approach the problem using C++26's expansion statements:

The unnamed structs should be tied in a tuple. We'll use a static_assert to check that all constants in the enum is associated with a type. Then we can use C++26's expansion statements, i.e. template for to loop through the tuple of unnamed structs:

static constexpr auto objects = std::tie(foo, bar, baz);

// Validate that all object types have corresponding parameter structs
consteval bool validate_all_objects_defined()
{
    
    for(uint8_t type_val = 0; type_val < MyType::TYPE_COUNT; ++type_val)
    {
        bool found = false;
        template for(constexpr auto& obj : objects)
        {
            if constexpr(myrequirement<decltype(obj)>)
            {
                if(obj.type() == type_val)
                {
                    found = true;
                }
            }
        }
        if(!found) return false;
    }
    return true;
}

static_assert(validate_all_objects_defined(), 
    "Not all object types have corresponding parameter definitions!");

template<MyType servo_type>
constexpr auto& get_instance()
{

    template for(constexpr auto& obj : objects)
    {
        if constexpr(myrequirement<decltype(obj)> && obj.type() == servo_type)
        {
            return obj;
        }
    }
    
    // This should never be reached due to the static_assert above
    std::unreachable();
}

This way, the users only have to add a constant to the enum, define a structure and add it to the tuple, and adding a constant without defining a new type gives an explicit compile error:

<source>:63:43: error: static assertion failed: Not all object types have corresponding parameter definitions!
   63 | static_assert(validate_all_objects_defined(),

Complete DEMO

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

79804482

Date: 2025-10-30 07:30:15
Score: 2.5
Natty:
Report link

[Ctrl + Shift + S], will open up [Save As] window, with current file name selected.

[Ctrl +C] copy it.

[Esc] to close window.

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

79804478

Date: 2025-10-30 07:22:14
Score: 0.5
Natty:
Report link

Solution is very simple. You just need to follow step by step class attributes with it's required types. As per your request, you are facing an issue regarding JSON Parse Error. You just need to use long value instead String value. Because, in your ProductMaterial class you are using long type and here you are using String value. So, this is the main issue. Just use necessary data type value with id and try again with same request, you will not face same issue again.

Your request :

Your JSON :

{
  "sku": "PRD-001",
  "name": "Test Produkt",
  "materials": [
    {
      "id": -1,
      "material": {
        "id": "52a92362-3c7b-40e6-adfe-85a1007c121f",
        "description": "Material 1",
        "costPerUnit": 1,
        "inStock": 1
      },
      "unitsPerProduct": 1
    },
    {
      "id": -1,
      "material": {
        "id": "8a0d57cc-d3bd-4653-b50f-d4a14d5183b3",
        "description": "Material 4",
        "costPerUnit": 0.25,
        "inStock": 4
      },
      "unitsPerProduct": 1
    }
  ],
  "sellPrice": "1.2"
}

New Sample JSON (Try and Check) :

{
  "sku": "PRD-001",
  "name": "Test Produkt",
  "materials": [
    {
      "id": -1,
      "material": {
        "id": 1,
        "description": "Material 1",
        "costPerUnit": 1,
        "inStock": 1
      },
      "unitsPerProduct": 1
    },
    {
      "id": -1,
      "material": {
        "id": 2,
        "description": "Material 4",
        "costPerUnit": 0.25,
        "inStock": 4
      },
      "unitsPerProduct": 1
    }
  ],
  "sellPrice": "1.2"
}
Reasons:
  • Whitelisted phrase (-1): Solution is
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): face same issue
  • Low reputation (0.5):
Posted by: Satyajit Bhatt

79804463

Date: 2025-10-30 07:00:08
Score: 2
Natty:
Report link

I'm also learning about this stage division issue, especially the .count().

Unlike the accepted answer, I think the three stages are the three operations:
reading data,
repartition(4),
and .count().

Because .repartition(4) will trigger a shuffle.

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

79804461

Date: 2025-10-30 06:57:07
Score: 0.5
Natty:
Report link

# --------------------------------------------

# Program: Count Passed and Failed Students

# --------------------------------------------

# Step 1: Create a list of exam scores for 25 students

scores = [45, 78, 32, 56, 89, 40, 39, 67, 72, 58,

      91, 33, 84, 47, 59, 38, 99, 61, 42, 36,

      55, 63, 75, 28, 80\]

# Step 2: Set the minimum passing score

passing_score = 40

# Step 3: Initialize counters for passed and failed students

passed = 0

failed = 0

# Step 4: Go through each score in the list

for score in scores:

\# Step 5: Check if the student passed or failed

if score \>= passing_score:

    passed += 1       # Add 1 to 'passed' count

else:

    failed += 1       # Add 1 to 'failed' count

# Step 6: Display the results

print("--------------------------------------------")

print("Total number of students:", len(scores))

print("Number of students passed:", passed)

print("Number of students failed:", failed)

print("--------------------------------------------")

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Filler text (0.5): --------------------------------------------
  • Filler text (0): --------------------------------------------
  • Filler text (0): --------------------------------------------
  • Filler text (0): --------------------------------------------
  • Low reputation (1):
Posted by: Joe

79804452

Date: 2025-10-30 06:46:05
Score: 2.5
Natty:
Report link

Humbly: I wrote a thing and the kernel (6.12) will compile on macOS.

brew install archie2x/cross-make-linux
brew install llvm lld
PATH="$(brew prefix llvm)/bin:$PATH"
cd linux
cross-make-linux [normal make arguments]

See https://github.com/archie2x/cross-make-linux
Basically same thing as Yuping Luo above and
https://seiya.me/blog/building-linux-on-macos-natively

There are at least three patches to linux to do this directly:
https://www.phoronix.com/news/Linux-Compile-On-macOS

https://www.phoronix.com/news/Building-Linux-Kernel-macOS-Hos

And Seiya (blog above) patch: https://github.com/starina-os/starina/blob/d095696115307e72eba9fe9682c2d837d3484bb0/linux/building-linux-on-macos.patch

I think that will just do it without cross-make-linux (haven't tested) though the tool will ensure you have gmake / gsed / gnu find, etc. etc.

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: archie2x

79804451

Date: 2025-10-30 06:42:04
Score: 3.5
Natty:
Report link

Are there any Microsoft or industry best practices that discourage storing serial or license information in the Uninstall key?

You should not store anything in a location not owned by you, unless specifically instructed by the owning app to do so.

Create your own key, i.e. [HKEY_LOCAL_MACHINE] or [HKEY_CURRENT_USER]/[Your-Company]/[Your-App] and store any and all information about the app there. In your WiX configuration, be sure to clean it up on uninstallation.

Be careful to use [HKEY_LOCAL_MACHINE] or [HKEY_CURRENT_USER] correctly, depending on whether the installation is per-machine or per-user.

Use of the registry is however not as widespread as it once was, since cross-platform requirements often make it unsuitable as a mechanism. We're mostly back to storing such things in the file system, or at times in the app database. I recommend storing it in a file in %LOCALAPPDATA%\[Your-Company]\[Your-App] on Windows and the corresponding places on other platforms, if any.

Since this key is accessible to users (especially those with local admin privileges), could this expose license or customer-sensitive data

It certainly exposes the license number, but it only exposes what you write there. If it's customer sensitive depends on what's in the number, but it is not likely unless you use the customer's social security number or credit card number as a license number ;-) .

If this is not advisable, what would be a more secure method of storing such data? (For example, encrypting serial key)

It depends on how you view the license key, but typically you should not view it as a secret in the sense that it requires encryption. You can't really encrypt it securely without things getting complicated, and in the end, if the user has access to the decryption key, so does anyone else running as the user.

Normally you would view a serial number or license key to be something of value, under the custody of the user, and have the license agreement state how the license key may be used.

A common practice for offline license verification is to create a license key by including something tying it to the user or the users system perhaps an email-address, a name or a hardware identifier, and then digitally sign it before delivering it. The app then verifies it has a valid license with an embedded public key (which is not a secret). The license key can still be stolen or misused, but if it's discovered the source can be determined.

A signed license key is my personal preference. If online access is ok, a revocation server may be contacted to ensure that the license key has not been disabled, but personally I think it is overkill unless the license is perpetual and misuse causes you direct costs, not just lost revenue. One of the the beautiful things about software is that the marginal cost of producing a copy is essentially zero, so typically a stolen license key only causes you potentially lost revenue and in most cases not even that as the user using a stolen license key is unlikely to purchase it anyway under any circumstances unless you really created a must-have killer app with no alternatives.

If you are interested, I have made a nuget package for .NET, that handles signing and verification of a software license.

Alternatively, perform online verification if suitable, where the user signs in to the app in a cloud service, and receives some form of indication or token back if the user is licensed to use the app.

There's more that can be said and many nuances, but this should be a start.

Reasons:
  • RegEx Blacklisted phrase (3): does anyone else
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Xecrets

79804445

Date: 2025-10-30 06:35:02
Score: 1.5
Natty:
Report link

In addition to Zzz0_o, you should also add

$ echo "flush ruleset" > backup.nft

in the first line to delete the old rule set, otherwise you will end up with duplicate rules.

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

79804435

Date: 2025-10-30 06:11:57
Score: 3
Natty:
Report link

You could use df[:, [index]] if you know the column position.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: nasrin begum pathan

79804426

Date: 2025-10-30 05:54:54
Score: 0.5
Natty:
Report link

-locale is still supported, but it’s currently ignored in newer JDKs (known bug JDK-8222793).
To force English output, use JVM options instead:

javadoc -J-Duser.language=en -J-Duser.country=US ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lavi Kumar

79804402

Date: 2025-10-30 04:56:41
Score: 1.5
Natty:
Report link

I have create one of the project by using concept talk with other processes via a mechanism like COM for example : https://github.com/GraphBIM/RevitMCPGraphQL But the limit here is you need install an plugin in revit to listen event and send code execute from outside Revit

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

79804400

Date: 2025-10-30 04:51:40
Score: 2.5
Natty:
Report link

I made a lot of different changes until I was finally able to

build for android again. I will list them below, following these I hope you can solve your problem as well.

0- Make sure to create a backup of your entire project, we'll be deleting a ton of stuff.

1- Inside your Project folder, delete the Library and Temp folders. Temp folder is only visible when the editor is running.

2- There seems to be something wrong with package resolution. the default one tries to run a bat file that does not exist. One way is to create or download it yourself but I did that with no luck. The progress was still stuck on 0% but this time with no errors. instead, Install unity jar resolver (Github: https://github.com/googlesamples/unity-jar-resolver) I installed it using GIT from package manager (https://github.com/googlesamples/unity-jar-resolver?tab=readme-ov-file#install-via-git-url)

3- I got hundreds of errors in my console after the previous step. what you want to do now is to delete the folder called "MobileDependencyResolver" from your Assets folder. You'll be shown a messagebox about re-importing it, click yes and let it process everything.

4- Now you'll have a new option in the Assets menu (top bar in unity editor) called External Dependency Manager. Assets > External Dependency Manager > Android Resolver > Force Resolve

Click force resolve once, then try to build for android again.

Notes:
in the process I also deleted .gradle and .android folders from my user folder (C:\Users\<username>) but I don't think it affected the outcome.

Other useful links:
https://discussions.unity.com/t/win32exception-at-resolving-android-dependencies-cannot-find-file-gradlew-bat/904380

Reasons:
  • Blacklisted phrase (1): no luck
  • RegEx Blacklisted phrase (1.5): resolver?
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: DarkDuck

79804398

Date: 2025-10-30 04:47:39
Score: 2
Natty:
Report link

check out https://pub.dev/documentation/flutter_native_splash/latest/flutter_native_splash/FlutterNativeSplash/preserve.html and the corresponding .remove

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

79804395

Date: 2025-10-30 04:38:36
Score: 1
Natty:
Report link

Thank you Charlieface, for the query, you gave me what I wanted. I altered a bit to get the results I wanted. I have to test this further, and this is just the part of the problem. I will have to check this with entire query and test it. This is just 1 code, in reality there are 5 types of code in table t1 with individual include and exclude conditions in ranges for each of the codes. I believe this is what I wanted:

SELECT *
FROM table1 t1
Left Join table2 t2_x on t1.Code between t2_x.FromCode and t2_x.ToCode and t2_x.IsExcluded = 1
WHERE t2_x.ID is NULL 
    AND NOT EXISTS (SELECT 1
    FROM table2 t2
    WHERE t2.IsExcluded = 0)

UNION ALL

SELECT *
FROM table1 t1
WHERE EXISTS (SELECT 1
  FROM table2 t2
  WHERE t1.Code BETWEEN t2.FromCode AND t2.ToCode
  AND t2.IsExcluded = 0)
AND NOT EXISTS (SELECT 1
    FROM table2 t2_x
    WHERE t1.Code BETWEEN t2_x.FromCode AND t2_x.ToCode
    AND t2_x.IsExcluded = 1);
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Amit Nerurkar

79804389

Date: 2025-10-30 04:19:32
Score: 1.5
Natty:
Report link

If you want to find functions that are used only in tests or not used at all, IntelliJ alone can’t fully do it.
The IDE doesn’t semantically distinguish between production code and tests when building its usage graph.

ts-prune is a CLI tool that scans your TypeScript project and lists all exported symbols that are never imported or used and it has ability to ignore test files.

npm install -D ts-prune
npx ts-prune "src" --ignore "src/**/*.test.ts"

Please use it once.

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

79804378

Date: 2025-10-30 03:54:27
Score: 2
Natty:
Report link

You can do this with:

-webkit-text-security: disc
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Samuel Luis De La Cruz

79804375

Date: 2025-10-30 03:42:24
Score: 1.5
Natty:
Report link

Sorry for replying just now not knowing the question was posted 14 years ago when hardware technology was not as advanced as now (2025).

But for helping others improve their fast sorts (quicksort, shellsort, mergesort and others), I would post the results that I achieved yesterday ( 29Oct2025 ). Sort done using Shellsort compiled using Microsoft Visual Studio's C++ that was executed on an Intel i7-1355U CPU ( mobile computer CPU that draws only 15w of electricity ) with 16GB of memory. Base CPU speed is 1.7 Ghz.

  1. 20.733 secs for 200 million records

  2. 9.007 secs for 100 million records

  3. 0.87 secs for 10 million recods

  4. 0.078 secs for 1 million records

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

79804368

Date: 2025-10-30 03:33:22
Score: 1.5
Natty:
Report link

A WordPress theme installation error usually occurs due to one of the following reasons: Incorrect File Format that uploading a .zip theme file, not an extracted folder. WordPress only accepts zipped theme files. File Size Limit Some hosting providers limit the maximum upload size. If the theme is large, increase the upload size limit or install via FTP. Missing style.css File Every WordPress theme must contain a style.css file in the root folder. If it’s missing, the theme will fail to install. Theme Conflicts or Duplicates .If the same theme or version already exists, WordPress may block installation. Try deleting the old version first. Server Configuration Issues Sometimes PHP version, memory limits, or permissions cause the error. Updating your PHP or adjusting permissions can help. Uploading to the Wrong Section – Make sure you upload themes under Appearance → Themes → Add New, not under Plugins.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: chithra 2004

79804360

Date: 2025-10-30 03:09:17
Score: 1.5
Natty:
Report link

Don't know about Java ( because I have not coded in Java since 1998 ).

However using an Intel i7-1355U (mobile i7 CPU, 1.7Ghz base speed) with 16GB of memory, I was able to sort 200 million DWORDs ( 4 bytes unsigned integer ) in 20.563 secs using Shellsort ( normally slower than Quicksort ). The codes were compiled using Visual Studio's C++.

So your implementation is definitely flawed ( unoptimised somewhere ).

Microsoft would not allow me to sort 300 million records so cannot tell you anything beyond this limitation. Sometimes I could sort 250 million records.

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

79804358

Date: 2025-10-30 03:05:16
Score: 3
Natty:
Report link

Yeah, just ran into this:

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

79804349

Date: 2025-10-30 02:44:11
Score: 2.5
Natty:
Report link

I encountered the same problem even I used the Xcode26 Xcode26.0.1 Xcode26.1(https://developer.apple.com/forums/thread/805547)

after two days try I fixed this problem by followed the methods in this article(https://medium.com/@sergey-pekar/how-to-fix-annoying-xcode-26-not-building-swiftui-previews-error-cannot-execute-tool-metal-due-49564e20357c)

I think there is still has a bug for install Metal Toolchain at least for those migrated from Xcode26 Beta

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Whitelisted phrase (-2): I fixed
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: xdyang

79804345

Date: 2025-10-30 02:38:10
Score: 3
Natty:
Report link

This is some concept you can work around without attach and debug around :

  1. Using RevitAddinmanager : https://github.com/chuongmep/RevitAddInManager

Revit AddinManager update .NET assemblies without restart Revit for developer.

  1. Using Proof of concept that it is possible to run and debug unit tests in Visual Studio with remote execution inside Revit.
  1. Using hot reload concept : https://learn.microsoft.com/en-us/visualstudio/debugger/hot-reload?view=vs-2022

4 . Attach to a process is good just in case you are opening Revit and the process is test for sometime need, but it's not high recommend for this case

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: chuongmep

79804341

Date: 2025-10-30 02:21:06
Score: 2.5
Natty:
Report link

Cuando se usa un nombre de conexión con caracteres no ASCII, el archivo XML puede quedar, en este caso, indicas que utilizaste un nombre chino en la conexion de base de datos, Renombra las conexiones con nombres simples, Evita usar caracteres no ASCII, nombres sin acentuación, si usas Windows, puedes editar el Edita el archivo Spoon.bat,Antes de ejecutar Java "set JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8", guarda y reinicia Spoon esto es para forzar que todos los archivos de tipo XML se lean/escriban con configuración UTF8, espero aue te funione, exitos...

Reasons:
  • Blacklisted phrase (2): espero
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Oscar Vasquez Estrada

79804335

Date: 2025-10-30 02:00:01
Score: 3.5
Natty:
Report link

do you using "Activity" Component in your code? if i Rendered 2 Acivitity Component than that error is came out in console.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jay Beemo

79804331

Date: 2025-10-30 01:32:55
Score: 4.5
Natty: 4.5
Report link

SAY BLESS ME ON TELEGRAM JUST Click

https://t.me/GRUTWQCcf455

https://t.me/GRUTWQCcf455

https://t.me/GRUTWQCcf455

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

79804330

Date: 2025-10-30 01:30:55
Score: 2.5
Natty:
Report link

It just records the cell or sheet context where the named item was originally created, and it does not affect what the name actually refers to. You can safely ignore it when editing the name or value.

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

79804327

Date: 2025-10-30 01:18:52
Score: 4
Natty:
Report link

if anyone is having the same problem in VS2022, go to the Docker Desktop app → Settings → Resources → WSL Integration. I noticed that I didn’t have any distro installed, so I installed Ubuntu using `wsl --install Ubuntu` and it worked!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Heitor Lima

79804325

Date: 2025-10-30 01:15:51
Score: 1.5
Natty:
Report link

As ShaolinShane said, I set different subnet of ACA under the same Vnet of the private link of the ACR.
It worked now.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeff_Azure_is_Your_Dad

79804321

Date: 2025-10-30 00:58:48
Score: 1
Natty:
Report link

i did it like that. I Think is better and simple too, here the proposed solution doesn't worked in godot 4.3

            foreach (var child in GetChildren())
            {
                if (child is IState) _states.Add(child as IState);
            }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: leonardo meneghin

79804308

Date: 2025-10-30 00:07:37
Score: 1
Natty:
Report link

a better solution :

add_action('woocommerce_single_product_summary', function() {
    global $product;

     if ( ! $product->is_in_stock() ) { 
         echo '<a href="' . home_url( 'contact' ) . '">Contact us</a>'; 
     }
    
}, 31);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hicham EL ALAOUI

79804306

Date: 2025-10-30 00:02:36
Score: 1
Natty:
Report link

The greyed-out JAR files issue in STS/Eclipse Data Source Explorer is a common problem.

Use Database Tools in Eclipse Marketplace

Try installing the proper database tools:

  1. Go to Help → Eclipse Marketplace

  2. Search for "DTP" (Data Tools Platform) or "Database Development"

  3. Install the Eclipse Data Tools Platform plugins

  4. Restart STS

  5. Try adding drivers again via Data Source Explorer

The newer versions of STS might have issues with the legacy Database Development perspective. so try above steps and let us know whether it is working or not.

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

79804304

Date: 2025-10-29 23:50:33
Score: 1
Natty:
Report link

Use Procces.Start using as parameter the name of the UWP app ending in a colon

Process.Start("appname:");

Process.Start("ms-calculator:");

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

79804301

Date: 2025-10-29 23:47:32
Score: 1
Natty:
Report link

`ST_Contains`/`contains` is slow when used row-by-row without a spatial index. Use a geopandas or postgis, and make sure both layers share the same CRS/SRID

import geopandas as gpd
points   = points.to_crs(polygons.crs)
result = gpd.sjoin(points, polygons, how="left", predicate="within")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mayen

79804294

Date: 2025-10-29 23:33:29
Score: 0.5
Natty:
Report link

The problem is that you are using the google.generativeai library which is the SDK for Google AI Studio and it is designed to us a simple API key. If you're using ADC then you need to use the Vertex AI SDK, googe-genai. This library is designed to automatically and securely use your environment's built-in service account.

I was able to get the following code to work:

pip install google-genai dotenv
import  os
from    dotenv       import load_dotenv
from    google.genai import Client

load_dotenv()
project_id = os.environ.get("PROJECT_ID")
location   = os.environ.get("LOCATION")
print(f"[info] project id = {project_id}, location = {location}")


client = Client(
    vertexai=True, project=project_id, location=location
)

model_name = "gemini-2.5-flash"
response   = client.models.generate_content(
    model=model_name,
    contents="Hello there.",
)
print(response.text)

client.close()
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31781250

79804290

Date: 2025-10-29 23:26:27
Score: 2.5
Natty:
Report link

Close all Visual Studio instances and delete the %LocalAppData%\.IdentityService\SessionTokens.json file works for me

https://developercommunity.visualstudio.com/t/Nuget-Package-Manager-for-Project---Con/10962291

Reasons:
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mahesh Gunatilaka

79804287

Date: 2025-10-29 23:11:25
Score: 1.5
Natty:
Report link

what it did work for me is,

 $env:REACT_NATIVE_PACKAGER_HOSTNAME='192.168.1.132'

then

npm start

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): what it
  • Low reputation (0.5):
Posted by: Souhaieb

79804284

Date: 2025-10-29 23:03:23
Score: 0.5
Natty:
Report link

@and answered this best in 2017, and I think we've all given this person enough to to post what I think is the best answer as an answer. So now I'm doing it, after posting upvote #42 (such a fitting #) to the comment that saved my bacon. But we digress. Combining the well-celebrated answer with @and's golden comment...

You can set the environment variable REQUESTS_CA_BUNDLE so you don't have to modify your code:

export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt

The improvement, if it's not clear is this: /etc/ssl/certs/ca-certificates.crt will contain not merely any self-cert you added to your trust store, but also all of the other standard certs. That's a big deal, because, for example, I ran into a situation where when REQUESTS_CA_BUNDLE was set to just my self-cert, the AWS CLI could no longer authenticate. (Don't ask me why AWS cares about REQUESTS_CA_BUNDLE. I don't know. I do know, however, that using ca-certificates.crt solved the problem.

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @and
  • User mentioned (0): @and's
Posted by: Wellspring

79804277

Date: 2025-10-29 22:41:18
Score: 5
Natty:
Report link

The error, however vague, was due to me not importing Text from react-native. The Modal call was the culprit. Thanks @sparkJ @Estus Flask. Also great username

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @sparkJ
  • User mentioned (0): @Estus
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: akshaka9

79804268

Date: 2025-10-29 22:23:14
Score: 3.5
Natty:
Report link

Thank you everyone for your comments and answers. I found out that it was VS Code all along, refreshing the same log file to which I was adding data. I think with the latest update VS Code started to do that as I have not see it auto refresh while open.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user2037777

79804266

Date: 2025-10-29 22:20:13
Score: 1.5
Natty:
Report link

I added
$wgMainCacheType = CACHE_ACCEL;
$wgSessionCacheType = CACHE_DB;

which did not help then I realised I already had

## Shared memory settings
$wgMainCacheType = CACHE_NONE;
$wgMemCachedServers = array();

CACHE_NONE is recommended above. I tried both ACCEL and NONE.
I deleted cookies. I don't know how to access the database. I still can't log in on one browser (my main browser) but I can see the wiki content.

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

79804256

Date: 2025-10-29 22:02:09
Score: 0.5
Natty:
Report link

I used a regular expression to solve this issue. In Polars you signal regular expressions with the start and end symbols ^ and $ and the * needs to be escaped so the full solution looks like

python
import polars as pl
df = pl.DataFrame({"A": [1, 2], "B": [3, None], "*": [4, 5]})
print(df.select(pl.col(r"^\*$")))  # --> prints only the "*" column
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sam

79804252

Date: 2025-10-29 21:59:08
Score: 1.5
Natty:
Report link

There are two locations for this information. In some cases, you might need to look in both places (try primary first. If missed, try alternate).

Primary location:
host.hardware.systemInfo.serialNumber

Alternate location:
host.summary.hardware.otherIdentifyingInfo

In some of my systems, I cannot find the tags in the primary and traversing the alternate location helps find it. But between those two locations, I have always been able to get the tags. It might be a bit tricky to fish the info out. The following code should help.

if host.summary.hardware and host.summary.hardware.otherIdentifyingInfo:
    for info in host.summary.hardware.otherIdentifyingInfo:
         if info.identifierType and info.identifierType.key:
               key = info.identifierType.key.lower()
               if "serial" in key or "service" in key or "asset" in key:
                     if info.identifierValue and info.identifierValue.strip():
                        serial_number = info.identifierValue
Reasons:
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: zagpoint

79804251

Date: 2025-10-29 21:58:08
Score: 3.5
Natty:
Report link

I love you, i have expend a day debbuging the framework.. for this simple thing.. T.T

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

79804249

Date: 2025-10-29 21:55:07
Score: 3.5
Natty:
Report link

have you solved this problem, I encountered the same question.

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

79804248

Date: 2025-10-29 21:53:06
Score: 1
Natty:
Report link

If your looking for a C implementation (usable with C++) that handles UTF-8 quite well and is also very small, you could also have a look here:

How to uppercase/lowercase UTF-8 characters in C++?

These C-functions can be easily wrapped for use with std::string.

I'm not saying this is the most robust way, after all, all the problems with std::string will remain, but it could be helpful in some use cases.

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

79804244

Date: 2025-10-29 21:47:04
Score: 3.5
Natty:
Report link

Stop scrolling! Ini yang lagi hype! jo 777 banyak menangnya!

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

79804223

Date: 2025-10-29 21:08:55
Score: 1
Natty:
Report link

Is there any API can I use with C++ to do this?

No, there is no API to perform this task.

Microsoft's policy is that such tasks must be performed by the user using the provided Windows GUI.

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • High reputation (-2):
Posted by: David Heffernan

79804219

Date: 2025-10-29 21:04:54
Score: 1
Natty:
Report link

Explaining the use case: If you are doing Data Augmentation, then usually following sequence wiil work,

from tensorflow import keras
from tensorflow.keras import layers

data_augmentation = tf.keras.Sequential([
    layers.RandomFlip("horizontal"), 
    layers.RandomRotation(0.1)
    ]
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kay_g

79804215

Date: 2025-10-29 21:02:53
Score: 0.5
Natty:
Report link

If it's the imperative approach you're after, the original loop should do just fine.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: shmosel

79804212

Date: 2025-10-29 21:00:52
Score: 0.5
Natty:
Report link

Probably just my style preference -- I prefer having the logic in the accumulator -- seem more like the imperative solution.

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

79804201

Date: 2025-10-29 20:47:48
Score: 1
Natty:
Report link

What would git(1) do? Or, What does git(1) do?

! tells it to run your alias in a shell. What shell? It can’t use a specific one like Ksh or Zsh. It just says “shell”. So let’s try /bin/sh:

#!/bin/sh

mvIntoDIR() {
cd ${GIT_PREFIX:-.};
allArgsButLast="${@:1:$#-1}";
lastArg="${@: -1}";
git mv -v $allArgsButLast $lastArg/;
git commit -uno $allArgsButLast $lastArg -m "Moved $allArgsButLast into $lastArg/"; \
};

mvIntoDIR

We get the same error but a useful line number:

5: Bad substitution

Namely:

allArgsButLast="${@:1:$#-1}";

Okay. But this is a Bash construct. So let’s change it to that:

#!/usr/bin/env

mvIntoDIR() {
cd ${GIT_PREFIX:-.};
allArgsButLast="${@:1:$#-1}";
lastArg="${@: -1}";
git mv -v $allArgsButLast $lastArg/;
git commit -uno $allArgsButLast $lastArg -m "Moved $allArgsButLast into $lastArg/"; \
};

mvIntoDIR

We get a different error:

line 5: $#-1: substring expression < 0

Okay. So git(1) must be running a shell which does not even know what ${@:1:$#-1} means. But Bash at least recognizes that you are trying to use a construct that it knows, even if it is being misused in some way.

Now the script is still faulty. But at least it can be fixed since it is running in the shell intended for it.

I would either ditch the alias in favor of a Bash script or make a Bash script and make a wrapper alias to run it.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • Contains question mark (0.5):
  • Starts with a question (0.5): What would
  • High reputation (-1):
Posted by: Guildenstern

79804199

Date: 2025-10-29 20:41:47
Score: 2.5
Natty:
Report link

If you don't want to map(), you could replace the accumulator with

(map, foo) -> {
    map.put(foo.id(), foo);
    map.put(foo.symbol(), foo);
}

But at this point it's hard to see how streaming is an improvement over a simple loop. What do you have against map() anyway?

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: shmosel

79804193

Date: 2025-10-29 20:27:44
Score: 0.5
Natty:
Report link

Your order of parentheses are wrong:

train_ds      = train_ds.map(lambda x, y: (tf.image.resize(x, size)), y)

Should be:

train_ds      = train_ds.map(lambda x, y: (tf.image.resize(x, size), y))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kevin Flynn

79804191

Date: 2025-10-29 20:27:44
Score: 2.5
Natty:
Report link

This should be possible, depending on what your data looks like. You may need to use transformations to split the data into multiple series. Do you have an example of your data?

I threw this State Timeline together with the following CSV data, not sure how close it is to what you have:

Start, End, SetID, ModID, ModType
2025-01-01 01:00:00, 2025-01-01 01:15:00, 100, 101, Set
2025-01-01 01:00:00, 2025-01-01 01:01:00, 100, 102, Alpha
2025-01-01 01:02:00, 2025-01-01 01:04:00, 100, 103, Beta
2025-01-01 01:05:00, 2025-01-01 01:25:00, 110, 111, Set
2025-01-01 01:05:00, 2025-01-01 01:08:30, 110, 113, Alpha
2025-01-01 01:07:00, 2025-01-01 01:12:00, 110, 115, Gamma

Transformations:

enter image description here

That should get you chart you want, but you'll want to add some settings so the names don't look weird and to color the bars how you like:

enter image description here

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have an
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kevin Meyer

79804185

Date: 2025-10-29 20:21:42
Score: 0.5
Natty:
Report link

You can use trim() modifier to cut Shape to half

Circle()
    .trim(from: 0, to: 0.5)
    .frame(width: 200, height: 200)

Half Circle Image

Learn more from this link.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: M_Khater

79804182

Date: 2025-10-29 20:20:42
Score: 2
Natty:
Report link

https://github.com/phoenix-tui/phoenix - High-performance TUI framework for Go with DDD architecture, perfect Unicode, and Elm-inspired design. Modern alternative to Bubbletea/Lipgloss. All function key support from the box!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Andrey K.

79804181

Date: 2025-10-29 20:18:41
Score: 2
Natty:
Report link

Maybe your Layers config are not set up in the way you think. If you search for it, you can get a surprise (Project settings -> Physics (or Physics 2D).

Nice ref

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

79804168

Date: 2025-10-29 19:59:37
Score: 0.5
Natty:
Report link

For c++ it's this:


-node->get_global_transform().basis.get_column(2); // forward
node->get_global_transform().basis.get_column(0); // right
node->get_global_transform().basis.get_column(1); // up
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: brando f

79804161

Date: 2025-10-29 19:47:34
Score: 2
Natty:
Report link

https://pub.dev/packages/web_cache_clear

I made this package now because i needed it too. It assumes you have a backend where you can update your version number but every time the page loads it will check the session version too the backend version. If its not the same it will clear the cache storage and reload the page.

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Benjamin Kararic

79804152

Date: 2025-10-29 19:34:31
Score: 2.5
Natty:
Report link

at integrated terminal or mac os terminal does not matter, just write: su and enter and input pass. After become root install "npm install -g nodemon" It is worked with me with this way.

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

79804146

Date: 2025-10-29 19:26:29
Score: 0.5
Natty:
Report link

What is @{n='BusType';e={$disk.bustype}}? AI gave me similar examples, I just barely understand it. Seems n & e as shortcuts for Name & Expression in so called Calculated Property Syntax.

@{Name='PropertyName'; Expression={Script Block}} or @{n='PropertyName'; e={Script Block}}.

AI suggested an example:

Get-ChildItem -File | Select-Object Name, @{n='SizeMB'; e={$_.Length / 1MB}}

demonstrating exactly what I desired to archive, then why does @{n;e} act strangely in Select-Object?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Starts with a question (0.5): What is
  • High reputation (-2):
Posted by: gavenkoa

79804141

Date: 2025-10-29 19:11:25
Score: 0.5
Natty:
Report link

This is due to the fact of a (not so?) recent change in collapsing margins. In a block layout, the margin-bottom and margin-top of the heading elements collapses (only one margin is applicable), but in a flex layout, the margins are not collapsed. So, what you see in the flex layout is all the margins accounted for.

Try removing margin-top or margin-bottom for your needs. You can read more about margins here: https://www.joshwcomeau.com/css/rules-of-margin-collapse/ or at mdn: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: phun-ky

79804137

Date: 2025-10-29 19:07:24
Score: 0.5
Natty:
Report link

You could use process tracking instead

vrrp_instance Vtest_2 {
        [...]
        track_process {
                check_haproxy
        }
}

The tracking block would look like this

vrrp_track_process check_haproxy {
    process haproxy
    weight 10
}

This way you dont need a separate script running.

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

79804126

Date: 2025-10-29 18:45:16
Score: 6 🚩
Natty:
Report link

For those that are facing the same problem, please check this configuration under:

File > Project Structure > Project Settings > Module
Screenshot:

image

Reasons:
  • Blacklisted phrase (1): please check this
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (1):
Posted by: Leonardo Piel

79804123

Date: 2025-10-29 18:43:15
Score: 3.5
Natty:
Report link

This is still happening 6.6 years later Microsoft SUCKS

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

79804117

Date: 2025-10-29 18:35:13
Score: 1
Natty:
Report link

You can use a Navigator widget or a named route to achieve this https://docs.flutter.dev/ui/navigation#using-the-navigator

If you intend displaying as a pop-up modal, then refer to the example on showDialog https://api.flutter.dev/flutter/material/showDialog.html#material.showDialog.1

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Akumbom

79804114

Date: 2025-10-29 18:33:11
Score: 4.5
Natty:
Report link

As per your suspect yes i agree that aggregation query is quiet inefficient. I am not sure if you have supportive index to these?

Base collection from where you running aggregate query should have below index: { "seller_company_id": 1,'meetings.is_meeting_deleted':1, "is_deleted": 1,"is_hidden": 1 }

It is ok if you dont have 'meetings.is_meeting_deleted':1 in index as it is multikey.

And for the joining collection Company _id default index is sufficient.

Seems the CPU utilisation is pretty high 100% and as per the real time tab screenshot there seem lot of getMore running. I believe it is either Atlas search or the change stream. Can you help with what are the most common getMore command running?

with above info we can find some clue.

thanks, Darshan

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): Can you help
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Darshan J

79804112

Date: 2025-10-29 18:30:11
Score: 2.5
Natty:
Report link

use https://www.svgviewer.dev/ and insert the code of the xml and download it and import it (worked for me)

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: newguy.

79804105

Date: 2025-10-29 18:19:08
Score: 1.5
Natty:
Report link

Please note that, In MongoDB, when you drop a collection or index, it may not be deleted immediately. Instead, it enters a "drop-pending" state, especially in replica sets, until it is safe to remove—after replication and commit across nodes. The "ObjectIsBusy" error means MongoDB cannot proceed because the object, such as an index, is still active or not fully deleted.

This status is internal and usually clears automatically once MongoDB finishes its background cleanup.

As you said it is fresh mongo that curious me if there was already older version of mongod ran and abandoned? If it is fresh you can clear the dbpath and try start them

Thanks, Darshan

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Darshan J

79804100

Date: 2025-10-29 18:11:06
Score: 3
Natty:
Report link

!4 value filled in property worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: julia

79804093

Date: 2025-10-29 17:58:03
Score: 2
Natty:
Report link

Figured out that you can get data out of the embedded report through the Javascript client for powerbi we were able to use this to get the users filter selections. Also we were able to add the users email address to the Row Level Security and implement it in the Reports to only show them content they were able to see.

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

79804092

Date: 2025-10-29 17:57:02
Score: 1.5
Natty:
Report link

The ErrorLevel is equal to -1 when the volume is crypted

Your can do the following command for exemple to uncrypte the volume :

manage-bde -status c: -p || manage-bde -unlock c: -RecoveryPassword "Key-Key..."
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: JLG

79804081

Date: 2025-10-29 17:39:58
Score: 1.5
Natty:
Report link

One useful resource is the AWS latency matrix from Cloud Ping.

AWS Region Latency Matrix

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

79804067

Date: 2025-10-29 17:20:54
Score: 2.5
Natty:
Report link

You can use this website to answer these questions : https://www.dcode.fr/javascript-keycodes

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Roman Diez

79804064

Date: 2025-10-29 17:14:53
Score: 1.5
Natty:
Report link

Functions for component wise operations has a prefix cwise in Eigen. cwiseQuotient performs the component wise division.

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

79804063

Date: 2025-10-29 17:13:52
Score: 3
Natty:
Report link

Agree. It's not the same when you are exporting to CSV. Some columns need to be adjusted. In mi case, so many columns containing numerical Ids that most of the time start with ceros. Excel delete those ceros and make the column numeric and worse put the number in scientific notation.

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

79804050

Date: 2025-10-29 17:01:49
Score: 1.5
Natty:
Report link

@ tibortru answer works. I had a requirement where the requirement was to run scheduled spring batch job a lot more often in the test environments. I achieved this like so in the application-test.yml

batch
  scheduler:
    cron: 0 ${random.int[1,10]} 7-23 * * *

And referenced it like so:

@Scheduled(cron = "${batch.scheduler.cron}")
public void runJob()
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @answer
  • Low reputation (1):
Posted by: TheLittleChimp

79804042

Date: 2025-10-29 16:52:47
Score: 2.5
Natty:
Report link

Azure SQL supports synonyms for cross-database access but only on the same server.

https://learn.microsoft.com/en-us/sql/relational-databases/synonyms/synonyms-database-engine?view=sql-server-ver17

"Four-part names for function base objects are not supported."

"You cannot reference a synonym that is located on a linked server."

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

79804041

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

I encountered this while trying to download a file using Lambda from S3.

For my scenario, I did the following steps:

  1. Go to IAM -> Roles -> Search for Lambda's role (you can find it in Lambda -> Permissions -> Execution role -> Role name)

  2. Click Add permissions -> Create inline policy

  3. Choose a service -> S3

  4. In the Filter Actions search bar look for GetObject -> Select the checkbox

  5. In Resources click on Add ARNs in the "object" row

  6. Add bucket name and the resource object name if needed - if not, select Any bucket name and/or Any object name. Click Add ARNs

  7. Click Next -> Add a Policy name

  8. Click Create policy

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

79804038

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

[

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

: [email protected]

[email protected]

[29/10, 9:01 pm] Karam Ali Larik🙂‍↔️😔🥺💫: [email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Karam Ali lark

79804024

Date: 2025-10-29 16:32:42
Score: 1.5
Natty:
Report link

add

<uses-permission android:name="android.permission.WRITE_SETTINGS" />

in your androidmanifest.xml

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

79804007

Date: 2025-10-29 16:14:38
Score: 0.5
Natty:
Report link

The solution I've often employed in this type of scenario makes use of cfthread and some form of async polling.

Without a concrete example, I'll try and outline the basic mechanics...

I've used XHR polling, and event-stream based solutions here - but the principle holds whichever technique you employ.

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

79804006

Date: 2025-10-29 16:13:37
Score: 1.5
Natty:
Report link

Encountered the same problem today and was pretty lost.
It seems it was due to mismatches in the package versions between the apps and the library.

In the end I ran `pnpm dlx syncpack fix-mismatches` (or run `pnpm dlx syncpack list-mismatches` first to see what changes will be applied) and the problem was solved.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Job van Gerwen

79803998

Date: 2025-10-29 16:05:35
Score: 1
Natty:
Report link
linkStyle={{
backgroundColor: x + 1 !== page ? "#ffffffff" : "",
color: x + 1 !== page ? "#000000ff" : "",
borderColor: x + 1 !== page ? "#000000ff" : "",
}}

add this inline css or make custom css in index.css, it will resole the issue
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Junaid

79803987

Date: 2025-10-29 15:55:32
Score: 7.5 🚩
Natty:
Report link

Did you find a solution, brother? We all are in the same boat here.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Mr.Alamdari

79803982

Date: 2025-10-29 15:50:31
Score: 1.5
Natty:
Report link

I installed a php package that allows you within your composer.json file to configure a path that copies vendor assets to a public directory.

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

79803958

Date: 2025-10-29 15:32:26
Score: 4
Natty:
Report link

If you'd like to explore Deep Web, the link below is one of the best doorways to start your journey!

NOTE: ONLY FOR EDUCATIONAL PURPOSE!

Reasons:
  • Blacklisted phrase (1): the link below
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alex

79803948

Date: 2025-10-29 15:23:23
Score: 4.5
Natty:
Report link

I had my apt sources messed up my bad

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

79803940

Date: 2025-10-29 15:12:20
Score: 4
Natty:
Report link

Sorting the filenames before generating their arrays / hashes fixed it.

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

79803938

Date: 2025-10-29 15:10:20
Score: 0.5
Natty:
Report link

I know I'm late, but I just stumbled upon the same issue. I'm using OpenPDF-1.3.33, and by default cell's element is aligned to the left.

You need to make

p.setAlignment(Element.ALIGN_CENTER); // not Element.ALIGN_MIDDLE
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: SoldierKB

79803937

Date: 2025-10-29 15:10:20
Score: 1.5
Natty:
Report link

Problem solved. I had a subsequent:

parameters.to_sql("Parameter", con=connection, if_exists='replace', index=False)

That replaces the TABLE during data import - not existing ROWS.....

Anyway, thanks for your feedback!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nilsie

79803936

Date: 2025-10-29 15:10:20
Score: 1
Natty:
Report link

I encountered this exact issue and resolved it. The 10-second delay is caused by IPv6 connectivity being blocked in your Security Groups.

My Setup

The Fix

**Add IPv6 inbound rules to your Security Groups

This is root cause as per Claude AI:**

When using ECS Service Connect with Fargate in a dual-stack VPC:

  1. Service Connect attempts IPv6 connection first (standard .NET/Java behavior per RFC 6724)

  2. Security Group silently drops IPv6 packets (if IPv6 rules aren't configured)

  3. TCP connection times out after exactly 10 seconds (default SYN timeout)

  4. System falls back to IPv4, which succeeds immediately

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

79803928

Date: 2025-10-29 15:00:17
Score: 1.5
Natty:
Report link

For anyone looking at this more recently:

In scipy version 1.16, and presumably earlier, splines can be pickled and the code in the question works without error.

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

79803923

Date: 2025-10-29 14:56:16
Score: 3
Natty:
Report link

Probably you need to remove the current connection and add it again.

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

79803920

Date: 2025-10-29 14:54:16
Score: 2.5
Natty:
Report link

@jared_mamrot

Question: I want to calculate elasticities, so I am using elastic().

ep2 <- elastic(est,type="price",sd=FALSE)

ed <- elastic(est,type="demographics",sd=FALSE)

ei <- elastic(est,type="income",sd=FALSE)

ep2 and ed are working, but when type="income", running ei shows an error:

Error in dimnames(x) <- dn : 
  length of 'dimnames' [2] not equal to array extent
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • User mentioned (1): @jared_mamrot
  • Low reputation (1):
Posted by: Yan Jin