79504362

Date: 2025-03-12 17:11:01
Score: 6.5
Natty: 7
Report link

What if I haven't admin rights :'( ?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What if I have
  • Low reputation (1):
Posted by: Matteo Canzonieri

79504343

Date: 2025-03-12 17:00:59
Score: 4.5
Natty:
Report link

I have same issue. Working fine in test environment. Deployed to prod and modules won't load. Using DevOps with Terraform, so I know the deployment is identical -- but one works and the other doesn't.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jim

79504327

Date: 2025-03-12 16:56:58
Score: 1
Natty:
Report link

To download some files, set the proxies inside a RUN section that downloads them. Also launch podman build with the --net=host to connect from within the container. This should not change the later container's access in any way. It only applies during the RUN sections.

Another method is to download them before the build into the build context (host directory). Then COPY them into the container.

Which is simpler depends on your needs. The former if others need to run the Containerfile without a shared context/directory, the latter if you want to lock down the version of what's downloaded.

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

79504312

Date: 2025-03-12 16:52:57
Score: 2
Natty:
Report link

From your screenshots it appears that you do not have a virtual environment in your Windows DOS shell. Use a Linux command line emulator such as git bash or WSL. Setup `.bash_profile` with the following … source /.venv/bin/activate. To create a venv `python3 -m venv .venv `. In addition, you need to tell Code which interpreter to use. This is found here Selecting python interpreter in VSCode

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

79504303

Date: 2025-03-12 16:50:56
Score: 7
Natty: 7.5
Report link

where do you add this please? thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): where do you add this please
  • Low reputation (1):
Posted by: Alex Girgis

79504291

Date: 2025-03-12 16:45:55
Score: 4
Natty:
Report link

enter image description here

This is the error message and also Firebase doesn't work for it.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ewelina aleksandrowicz

79504287

Date: 2025-03-12 16:43:54
Score: 0.5
Natty:
Report link

Yes you want the team to be visible immediately in the table, you would have a function called for example handleAdd that will send a fetch request to add the team and then return the inserted row id, then you would insert that id along with other data in the state, the id is required if user want to edit or delete the item by id, then the table will be updated when you set the state, there is no need to call fetchTeams after add, only call it once as the initial data, so put it and call it inside useEffect, the array of dependencies should be empty

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aasem Shoshari

79504283

Date: 2025-03-12 16:43:54
Score: 0.5
Natty:
Report link

OQL is seperated into two parts within a basic query in HUNT or DASHBOARDS. They are separated by the pipe or | symbol. Left of the pipe is OQL based on Lucerne query syntax. This is where you would put message:"dstport=3389". But in this case I would not suggest using the message block because the data is parsed from that into other fields value pairs. Instead use destination.port:3389.

Right side of | is where you would perform data aggregation or transformation. This is where for example I want to see data aggregated by destination ip and destination port. You would use groupby destination.ip destination.port. You could even expand it further by performing groupby source.ip source.port destination.ip destination.port.

So effectively a proper query with DA&T would look something like this:

Destination.port:3389 | groupby source.ip source.port destination.ip destination.port

You can add additional separate DA&T by adding another separator | and looking at other fields of interests. For example maybe you would want to see what the data sources are you could do:

Destination.port:3389 | groupby source.ip source.port destination.ip destination.port | groupby event.module event.dataset event.code

For more information see the SecOnion read the docs page on Dashboards and scroll down to OQL.

https://docs.securityonion.net/en/2.4/dashboards.html

Hope that helps.

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mark Wasfy VikingVR

79504282

Date: 2025-03-12 16:42:54
Score: 1
Natty:
Report link

I had to install websockets to a python3 virtual environment when first running bitbake. On the next day I forgot to activate this venv.

Activating the virtual environment fixed the hanging issue for me.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: João Cordeiro

79504277

Date: 2025-03-12 16:41:54
Score: 0.5
Natty:
Report link

So I found out that every guide I looked at, assumed that Gradle setup was done with Groovy (in settings.gradle), while I was using Kotlin (hence editing settings.gradle.kts), and did not realize this. To update the auth setup accordingly with the correct syntax for Kotlin:

dependencyResolutionManagement {
    repositories {
        maven(url = uri("URL HERE")) {
            credentials {
                username = "username"
                password = "" // private token here.
            }
            authentication.create<BasicAuthentication>("basic")
        }
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: heisveis

79504265

Date: 2025-03-12 16:37:53
Score: 3.5
Natty:
Report link

How can I perform touch operations (such as taps, swipes, and gestures) on a webpage running on a touch-enabled monitor in a web browser?" Using selenium python

Kindly share your thoughts

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: Srinivas R

79504262

Date: 2025-03-12 16:36:52
Score: 0.5
Natty:
Report link

The cause of my issue was incredibly simple. This is the correct syntax for Typescript Composition API:

<!-- good: -->
<script setup lang="ts">
  ...
</script

I had the attributes out of order:

<!-- bad: -->
<script lang="ts" setup>
  ...
</script
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Joe Sadoski

79504261

Date: 2025-03-12 16:35:52
Score: 3
Natty:
Report link

Njyiltauususzfus SR CSS xruauay ex xruauay up suuts the best RU the best of rays and a half RU and the best of the day of suosiyay of the best of luck to you and I will have to do it for the best RU and the other

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

79504260

Date: 2025-03-12 16:35:52
Score: 1
Natty:
Report link

I had the same issue. I would suggest you following this instruction

1 Go to your Firebase console

2 Click App Distribution section under the Release & Monitor tab

3 Select your project

4 Verify if the “Get Started” button has been pressed

Simple thing but useful

I want to give credit to -> https://github.com/fastlane/fastlane/discussions/20048#discussioncomment-2687235

Reasons:
  • Whitelisted phrase (-1): I had the same
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
Posted by: Thomaz Capra

79504258

Date: 2025-03-12 16:34:52
Score: 1.5
Natty:
Report link

For some reason I can switch FontSmoothingType on Label but fillText() on Canvas will still use grayscale antialiasing if I use

setFontSmoothingType(FontSmoothingType.LCD);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kaehvaman

79504256

Date: 2025-03-12 16:33:51
Score: 2
Natty:
Report link

try with

docker buildx history rm $(docker buildx history ls)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Stefano Cosenza

79504254

Date: 2025-03-12 16:32:51
Score: 3
Natty:
Report link

Activating Chrome V8 worked. It was a suggestion did not pop-up in Gemini or ChatGPT. Good find.

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

79504245

Date: 2025-03-12 16:30:51
Score: 3
Natty:
Report link

The comment by mykaf was the solution. I missed a step in the process by not serializing the body.

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

79504238

Date: 2025-03-12 16:28:50
Score: 0.5
Natty:
Report link

In the Github issue, there is a suggestion to use the ASCII encoding: https://github.com/vitejs/vite/issues/13676

If a file has only Latin characters and numbers, there are more chances it will work with different encodings.

So, you can try something like this:

export default defineConfig({
  plugins: [vue()],
  esbuild:{
    charset: 'ascii'
  }
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: gearcoded

79504237

Date: 2025-03-12 16:28:50
Score: 4.5
Natty:
Report link

It sounds like you have a third-party plug-in triggering a PHP exception during the checkout process before the orders status can be updated.

Navigate to the Woocommerce – Status – Logs page and see if there is a recent “fatal-errors” log file. Please share the contents of that log file.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anshu Garg

79504235

Date: 2025-03-12 16:28:49
Score: 9 🚩
Natty: 5.5
Report link

enter image description here

Hello, can you help me? I want to create something like this countdown christmas On device Enigma 2 openatv

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): can you help me
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Salah Eddine Harchich

79504230

Date: 2025-03-12 16:26:49
Score: 2.5
Natty:
Report link

Ended up being a credential issue. Even the curl download that appeared to pass was actually failing due to the credential (I discovered this when I dumped the supposedly downloaded file; the error msg was the file's content)

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

79504222

Date: 2025-03-12 16:24:48
Score: 1
Natty:
Report link

A little late, but better late than never.

You'll have to connect to your database on every request, but you can mitigate the performance overhead by using a connection pooling. For example, Supabase exposes a connection pooler to improve performance. Check to see if your database provider exposes such a connection url or take a look at pgbouncer if you're hosting the database yourself.

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

79504214

Date: 2025-03-12 16:22:47
Score: 4
Natty: 4.5
Report link

I'm hoping this isn't an issue anymore, as this function is now generally available within Snowflake in Streamlit! Official docs: https://docs.snowflake.com/en/release-notes/streamlit-in-snowflake#march-12-2025-support-for-st-file-uploader-general-availability

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

79504212

Date: 2025-03-12 16:22:47
Score: 3.5
Natty:
Report link

I'd recommend to look into ALGLIB's scattered data interpolation by means of BlockLLS method.

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

79504209

Date: 2025-03-12 16:21:47
Score: 3
Natty:
Report link

It's 2025, business.manage is still the only permission, and yes it still includes delete permission :(

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Josh Heslin

79504208

Date: 2025-03-12 16:21:47
Score: 0.5
Natty:
Report link

In my case, this issue started when I configured Reactotron in my rn expo project. I just commented on the import of the ReactotronConfig file when I need to test on web.

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

79504207

Date: 2025-03-12 16:20:46
Score: 3
Natty:
Report link

Never ending complaints about a fake function which doesnt delete cookies or side completely. Mozarilla ignores the user as cookies.

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

79504206

Date: 2025-03-12 16:19:46
Score: 1
Natty:
Report link

Just use recursion and cache. Python has the decoration @lru_cache, which autoimplements caching to a recursive function. Runs in 2.304 seconds

The function should look something like:

from functools import lru_cache

@lru_cache(maxsize=None)
def collatz(x):
    if x == 1:
        return 1
    
    if x % 2 == 0:
        return 1 + collatz(x // 2)
    
    return 1 + collatz(3*x + 1)

if you want to do it without the decoration:

cache = {}
def collatz(x):
    global cache
    
    if x in cache:
        return cache[x]
    
    if x == 1:
        return 1
    
    if x % 2 == 0:
        result = 1 + collatz(x // 2)
    else:
        result = 1 + collatz(3*x + 1)
    
    cache[x] = result
    return result

here's the main code:

maxChain = 0
maxNumber = 0
for i in range(1, 1000001):
    chainSize = collatz(i)
    
    if chainSize > maxChain:
        maxChain = chainSize
        maxNumber = i
    
print(maxNumber)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @lru_cache
  • Low reputation (1):
Posted by: yuri

79504198

Date: 2025-03-12 16:17:46
Score: 1.5
Natty:
Report link

Same thing happened to me, figured out a bad merge ate up the method decorator.

@POST
@Path....

So make sure you specify the method on top of the path definition.

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

79504193

Date: 2025-03-12 16:14:45
Score: 4.5
Natty: 5
Report link

I found a blog post to add virtualEnv in Python and windows https://buddywrite.com/b/how-to-create-virtualenv-in-python-and-windows-g9flya

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

79504188

Date: 2025-03-12 16:13:44
Score: 2.5
Natty:
Report link

I'm not personally aware of anyone showing an example of using Google Cloud as an externally usable Iceberg REST Catalog, but that doesn't mean it isn't happening with someone. When I look at the Google doc page you supplied, I don't see any mention of them supporting a REST Catalog for engines like Trino & Spark. Even the diagram shows them going directly to the metadata files (bypassing the BigQuery Metastore?) with the comments of "OS engines can query (read-only) using metadata snapshots". Usually, the REST Catalog gives the query engine the name of the current snapshot's metadata file and then off to the races from there.

Even the "view iceberg table metadata snapshot" section talks about manually figuring out the metadata snapshot file instead of getting it from a REST Catalog. Additionally, it looks like the "read iceberg tables with spark" section isn't using a REST Catalog either -- it seems to be pointing to the HadoopCatalog provider which I'm thinking just allows you to hand-jam the metadata file stuff too.

Again, not suggesting this all can't work, but I surely haven't seen anyone do it yet. I'd look for that BQ doc page to show an example of how they imagine Trino would connect to one of their Iceberg tables.

In addition to chasing Google on this, there are slack servers for Trino and for Iceberg where you might get somone else who has attempted this. Sorry I don't have any real suggestions to offer -- just my $0.02's worth. ;)

Reasons:
  • RegEx Blacklisted phrase (2): any real suggestions
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Lester Martin

79504180

Date: 2025-03-12 16:11:44
Score: 2.5
Natty:
Report link

The error is NGI=2000 is not expected. Check your spelling.enter image description here

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

79504173

Date: 2025-03-12 16:07:43
Score: 3.5
Natty:
Report link

ctrl+m+c  to comment
ctrl+m+u  to uncomment

Reasons:
  • Blacklisted phrase (1): to comment
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ruben Santana

79504160

Date: 2025-03-12 16:03:42
Score: 2.5
Natty:
Report link

To enable the old API, follow the link in the "Important" note at the top of https://developers.google.com/maps/documentation/javascript/place-autocomplete-new

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

79504149

Date: 2025-03-12 16:00:41
Score: 1
Natty:
Report link

g++ version 15 supports modules. Use the syntax

g++-15 -std=c++23 -fmodules -fsearch-include-path bits/std.cc helloWorld.cpp -o hello

and then after the first compilation (which caches the module)

g++-15 -std=c++23 -fmodules helloWorld.cpp -o hello

( answer from https://stackoverflow.com/a/79327325/10641561 )

If you're using an older g++ version, stick to #include directives.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Brian Wright

79504143

Date: 2025-03-12 15:59:41
Score: 0.5
Natty:
Report link

The response object contains a .request property, which you can use to examine the request that was actually sent.

https://requests.readthedocs.io/en/latest/api/#requests.Response.request

Comparing these between versions should help you discover where the issue is coming from.

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

79504141

Date: 2025-03-12 15:58:40
Score: 6.5 🚩
Natty:
Report link

I have similar problems. Any new info on this? In my case a popup dialog was confirmed via javascript event, causing some action to be performed.

Reasons:
  • Blacklisted phrase (1): I have similar
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user6813261

79504133

Date: 2025-03-12 15:55:39
Score: 3.5
Natty:
Report link

cltr + shift+ D hasn't work for me, but ctrl+B has

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

79504122

Date: 2025-03-12 15:52:37
Score: 2
Natty:
Report link

Finally I found out the issue, I needed to set AWS_LAMBDA_EXEC_WRAPPER=/opt/otel-instrument and also need to enable AWS Xray and then metrics will be sent

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Saad

79504116

Date: 2025-03-12 15:50:37
Score: 1
Natty:
Report link
  1. QEMU for Xtensa

    • There's QEMU support for Xtensa architecture (which ESP32 uses), but ESP32-S2 support seems limited or experimental.

    • Repos like espressif/qemu might help but aren't fully featured for ESP32-S2 peripherals.

  2. Renode by Antmicro

    • Renode offers simulation of some microcontrollers, including partial support for ESP32.

    • However, ESP32-S2 support might be incomplete, and peripheral simulation could be limited.

  3. Wokwi Simulator

    • Wokwi (https://wokwi.com/) is a web-based simulator that supports ESP32 projects.

    • It's great for Arduino/PlatformIO sketches and simple ESP-IDF code but may not handle low-level testing of your own compiled binaries.


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

79504114

Date: 2025-03-12 15:49:37
Score: 0.5
Natty:
Report link

Is this from array defined before in groovy script or array from the system or properties file?

Here is example script that I use where I am using map structure to read parameters from file.

Named parameters work better.

import org.apache.jmeter.threads.JMeterContextService
import org.apache.jmeter.threads.JMeterVariables
import java.nio.file.*
import org.apache.jmeter.util.JMeterUtils
import java.text.SimpleDateFormat
import java.nio.file.Paths

// Function to clean SQL query by replacing newlines with spaces and removing extra spaces
String cleanQuery(String query) {
    return query.replaceAll("[\r\n]+", " ").replaceAll("\s+", " ").trim()
}



// Function to substitute placeholders in the query with provided values
String substitutePlaceholders(String query, Map<String, String> properties) {
    properties.each { key, value ->
        if (key != "query") { // Skip the query key itself
            query = query.replace("\$" + key, value) // Simple string replacement instead of regex
        }
    }
    return query
}


// Function to generate jtl results filename
String generateResultsFilename(String sqlFilePath) {
    
    // Get current timestamp in the format hhmmss_MMDDYYYY
    String timestamp = new SimpleDateFormat("HHmmss_MMddyyyy").format(new Date())

    if (sqlFilePath == null || sqlFilePath.trim().isEmpty()) {
        throw new IllegalArgumentException("SQL file path is empty or not provided.")
    }

    // Extract only the filename (without path)
    String fileName = Paths.get(sqlFilePath).getFileName().toString()    
    String pathName = Paths.get(sqlFilePath).getParent().toString();

    // replace file extension
    String baseName = fileName.replaceAll(/\.[^.]*$/, ".jtl")
    
    // Construct the new filename
    return pathName + "\\results\\" + timestamp + "_" + baseName
}


// Retrieve the file name parameter from JMeter properties
String fileName = JMeterUtils.getPropDefault("SQL_FILE", "C:\\Tools\\JMT\\sqlqueries\\one.txt")


if (fileName == null || fileName.trim().isEmpty()) {
    throw new IllegalArgumentException("SQL file name is not provided in JMeter properties under 'SQL_FILE'")
}

try {
    // Read file contents
    String fileContent = new String(Files.readAllBytes(Paths.get(fileName)), "UTF-8").trim()
    
    // Split by semicolon
    List<String> parts = fileContent.split(";")
    
    if (parts.size() < 2) {
        throw new IllegalArgumentException("File format incorrect. Ensure it contains a query followed by parameter assignments.")
    }

    // Extract query with placeholders
    String query = parts[0].trim()

    // Extract parameters into a map
    Map<String, String> paramMap = parts[1..-1].collectEntries { entry ->
        def pair = entry.split("=", 2)
        pair.length == 2 ? [(pair[0].trim()): pair[1].trim()] : [:]
    }

    // Replace placeholders with corresponding values
    paramMap.each { key, value ->
        query = query.replace("\$" + key, value)
    }

    // Clean the query
    query = cleanQuery(query)
    log.info("cleaned query=" + query)

    // Store final query in JMeter variable
    vars.put("SQL_QUERY", query)

    log.info("Processed SQL Query: " + query)

    log.info("SQL query successfully loaded and cleaned from file: " + fileName)

    // create name for results file 
    String resultsFile = generateResultsFilename(fileName)

    // Store it in a JMeter variable
    vars.put("TARGET_JTL", resultsFile)
    log.info("JTL Results will be stored file: " + resultsFile)

    JMeterUtils.setProperty("TARGET_JTL", resultsFile)

} catch (Exception e) {
    log.error("Error processing SQL file: " + fileName, e)
    throw new RuntimeException("Failed to process SQL file", e)
}



    
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Gajendra Shete

79504112

Date: 2025-03-12 15:49:37
Score: 1.5
Natty:
Report link

\r\n should be just fine.

BQ doc refers to RFC 4180, which says:

  1. Each record is located on a separate line, delimited by a line break (CRLF).

The document in turn refers to RFC 2234, which defines:

CRLF = CR LF ; Internet standard newline

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Thomas W.

79504090

Date: 2025-03-12 15:40:34
Score: 4
Natty: 4
Report link

Just delete the local branch and checkout it again from remote.

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

79504086

Date: 2025-03-12 15:39:34
Score: 4.5
Natty:
Report link

Can't write a comment because reputation < 50

You use morningstarCsvService variable, how do you declare it? I think need to mock it like

@MockitoBean

private MorningstarCsvService morningstarCsvService;

Reasons:
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (1.5): reputation
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can't
  • Low reputation (1):
Posted by: Maksym Ivanov

79504084

Date: 2025-03-12 15:38:33
Score: 5.5
Natty: 5.5
Report link

by any chance have you completed this project?

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

79504082

Date: 2025-03-12 15:37:33
Score: 2
Natty:
Report link

MacBook:

  1. install 'Docker Desktop'

  2. /Library/Nessus/run/sbin/nessuscli fix --set global.path_to_docker="/usr/local/bin/docker"

& restart nessus or macbook.

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

79504078

Date: 2025-03-12 15:36:32
Score: 2
Natty:
Report link

https://repost.aws/questions/QUrIX7s9xCSO-f-WWw787MgA/is-sns-able-to-send-messages-to-subscribed-sqs-in-batches#ANXsNnCF2LRSC8pwUbxLGTQg

The standard SNS topics do not support batching on delivery, even when PublishBatch API is used, due to an internal delivery mechanism that differs from SNS FIFO. If you need batched delivery to SQS, you should use SNS FIFO topics to deliver to both standard and FIFO SQS queues.

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

79504074

Date: 2025-03-12 15:36:32
Score: 2
Natty:
Report link

I'm still having this same issue, however I AM defining the plugin in build.plugins.plugin, not pluginManagement.

It creates a .flattened-pom.xml, but the actual pom.xml remains unchanged, and what is deployed is not interpolated at all.

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

79504069

Date: 2025-03-12 15:35:32
Score: 3
Natty:
Report link

I found a new way, from electron doc, there is a variable ELECTRON_NO_ATTACH_CONSOLE

you can add set ELECTRON_NO_ATTACH_CONSOLE=1 before start code.exe

https://www.electronjs.org/docs/latest/api/environment-variables#electron_no_attach_console-windows

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

79504064

Date: 2025-03-12 15:33:31
Score: 0.5
Natty:
Report link

I experienced the same behaviour. In my case I had temporarily continued to work on a Yocto environment after a few years of pausing. No suggestion out there helped, and the answer above is to specific.

I got rid of the problem after installing python-3.9.0 using pyenv. Meanwhile, after having created a new, fresh Yocto environment, it works well with ubuntu 22.4 standard python-3.10. using the new environment while python was still at 3.9.0 resulted in this problem: Git issue Bitbake gets stuck at do_fetch?

It shows that the python version can very well affect the process, without getting appropriate debug information via bitbake -D.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rob

79504060

Date: 2025-03-12 15:32:31
Score: 2.5
Natty:
Report link

So if one had admin access (and as I said I don't and would like an answer as such) the best path is probably

* Configure the environment in code workbook

* Add nltk_data as a package which will have visibility. (This is the portion that has to be done by admin, making the package available)

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

79504059

Date: 2025-03-12 15:32:30
Score: 11 🚩
Natty: 5.5
Report link

I am having a similar issue. Did you find a solution?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having a similar issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chris VHS

79504058

Date: 2025-03-12 15:32:30
Score: 2.5
Natty:
Report link

Probably the main reason is that PrintComponent does not exist in the component tree, and it is not a child of AppComponent either, because you are trying to declare it as a dependency and changeDedection does not see it. Don't use components as dependencies, better create a service with getqr().

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

79504055

Date: 2025-03-12 15:31:30
Score: 0.5
Natty:
Report link

For me what works for send a list of objects in a formData was:

formData.append("contacts", JSON.stringify(selectedContacts));

And then in the DRF Serializer recieve it in:

contacts = serializers.JSONField(write_only=True)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: joegsuero

79504054

Date: 2025-03-12 15:30:30
Score: 0.5
Natty:
Report link

"Start-process -wait" waits for all child processes, even detached ones.

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

79504045

Date: 2025-03-12 15:27:29
Score: 1
Natty:
Report link

I had this error in Eclipse caused by it interpreting a path with backslashes in a code comment as "bad unicode" (as well as generating 100 or so other undefined reference errors)

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

79504042

Date: 2025-03-12 15:26:28
Score: 7.5 🚩
Natty: 4
Report link

I am trying to stop inputtimeout in pycharm but i don't know how can you help?

my code is:

import random
from inputimeout import inputimeout, TimeoutOccurred



# todo inputs
b = input("press enter to start")

lowest_numb = input("lowest number")

highish_numb = input("highish_numb")

time_for_qus = int(input("time for question"))

num_qus = int(input("How many questions?"))

print(type(time_for_qus))


def ask_question(num_qus=num_qus):
    ran_1 = random.randint(int(lowest_numb), int(highish_numb))
    ran_2 = random.randint(int(lowest_numb), int(highish_numb))
    print(f"{ran_1}x{ran_2}", end="")
    try:
        answer = inputimeout("", time_for_qus)
        num_qus -= 1
    except TimeoutOccurred:
        print("Times up!!!")
        ask_question(num_qus)
        if num_qus == 0:
            quit()


ask_question(num_qus)

Please help

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (3): can you help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user29961513

79504039

Date: 2025-03-12 15:25:27
Score: 3.5
Natty:
Report link

If any screen reader should has to be read the field name along with the beside field name in the same row. Is it possible to make the changes as the screen reader is reading only the selected field name in a grid.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nagaveni Tanniru

79504030

Date: 2025-03-12 15:23:27
Score: 1
Natty:
Report link

i have created a table xyz the problem is that when i change that logical name with account below i recieve 500 internal server error and when i comment the line out of the code the rest of the payload uploads.

note["[email protected]"]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anmol Sharma

79504027

Date: 2025-03-12 15:22:27
Score: 3
Natty:
Report link

However fairly late for the question poster, but nevertheless: I just also had this problem. I experienced that the hanging problem was gone immediatlly after I updated python from 3.9.0 to 3.10.0.

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

79504026

Date: 2025-03-12 15:21:26
Score: 1.5
Natty:
Report link

Based on this answer, I was able to solve this problem. The relevant code part that helped:

await map.InteropObject.SetMapTypeId(MapTypeId.Satellite);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Olivér Raisz

79504021

Date: 2025-03-12 15:19:26
Score: 3
Natty:
Report link

The last answer of installing postgresql-contrib to get hstore setup is actually wrong, it won't work like that

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

79504016

Date: 2025-03-12 15:16:25
Score: 4
Natty:
Report link

It works fine when I switch back to BASH.

Turns out fish shell doesn't parse backticks properly

Thanks @3CxEZiVlQ

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @3CxEZiVlQ
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Rahn

79504015

Date: 2025-03-12 15:16:25
Score: 2.5
Natty:
Report link

You can set

include-system-site-packages = true

in venv/pyvenv.cfg file, and system package will be available from virtual environment.

But this is not installation to venv..

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

79504014

Date: 2025-03-12 15:16:25
Score: 4.5
Natty: 5
Report link

Nice! THX for the response, very helpfull

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

79504007

Date: 2025-03-12 15:14:24
Score: 3
Natty:
Report link

What if you try a workaround like this?

<Grid BackgroundColor="Yellow">
   <Label Margin="0,-5,0,0" VerticalOptions="Start" BackgroundColor="Green" Text="^^^ I want to get rid of that yellow space ^^^"/>
</Grid>

Hope that helps

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What if you
  • Low reputation (0.5):
Posted by: Isidoros Moulas

79504001

Date: 2025-03-12 15:13:24
Score: 0.5
Natty:
Report link

You can use the @DirtiesContext on ClassMode

@RunWith(SpringJUnit4ClassRunner.class)  
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
public class StudentSystemTest {
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @DirtiesContext
  • Low reputation (1):
Posted by: PsychedeliX98

79503999

Date: 2025-03-12 15:12:24
Score: 1.5
Natty:
Report link

import matplotlib.pyplot as plt

# Data

x = [3, 4, 5, 6, 7, 8, 9, 10, 12]

y = [0.18, 0.4, 1.1, 1.08, 1.6, 0.54, 0.8, 1.2]

# Create a histogram

plt.bar(x, y, width=0.8, color='skyblue', edgecolor='black')

# Title and labels

plt.title('Histogram of Given Data')

plt.xlabel('X Values')

plt.ylabel('Y Values')

# Display the plot

plt.show()

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

79503990

Date: 2025-03-12 15:10:23
Score: 1
Natty:
Report link

You can delete the Nan values before plotting with drop.na in pandas. For example :

clean_data = merge_nal_cont(subset = ["Date","GPP_DT_uStar","GPP_uStar_f"]

and then continue with the plot. You to perfom a data inspection so you can know which columns and rows have NaN values.

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

79503985

Date: 2025-03-12 15:08:23
Score: 1
Natty:
Report link

You can use af:clientAttribute to pass dynamic parameters. See https://www.jobinesh.com/2011/03/passing-dynamic-parameters-to-java.html for a sample

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):
  • High reputation (-1):
Posted by: Timo Hahn

79503978

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

You should get RESOURCE_EXHAUSTED status code if the RPC fails due to exceeding the max message size, for both unary and streaming, and the status message should indicate that the failure was because of exceeding the max message size. If you're seeing CANCELLED instead, it may be that the failure is not actually caused by exceeding the max message size but rather by something cancelling the RPC.

It's hard to say for sure what's happening here without seeing the exact code you're using to reproduce the problem.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mark D. Roth

79503960

Date: 2025-03-12 14:58:20
Score: 1.5
Natty:
Report link

for pojo's or entity simply shuffle the lines and try to scan again, it wont see as a duplicate lines.
I too faced same issue with entity class of DB, I simply shuffled the lines. it resolved the issue

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

79503956

Date: 2025-03-12 14:57:20
Score: 1.5
Natty:
Report link

The drogon project depends on hiredis, and hiredis, in turn, relies on the Windows sockets library (ws2_32).

As part of the build, there is an example executable, drogon_ctrl, that demonstrates the usage of drogon.

In drogon_ctrl's camkeList.txt,add ws2_32 is unusuable.

target_link_libraries(drogon_ctrl PRIVATE ws2_32)

I tried to modify HiredisFind.camke,after then ill resolved.

if(MINGW)
        target_link_libraries(Hiredis_lib INTERFACE ws2_32)
    endif()

I'm not very proficient in CMake.I want to understand this behavior

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: HanWang

79503946

Date: 2025-03-12 14:50:19
Score: 2
Natty:
Report link

The app Smart Collection Pro https://apps.shopify.com/smart-collection-pro will let you creating a managed collection with filters that are more flexible than shopify's smart collections.

When you configure your collection's condition you can choose to configure a tag that is "not equal" to something:

enter image description here

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

79503944

Date: 2025-03-12 14:49:18
Score: 1.5
Natty:
Report link

for pojo's or entity simply shuffle the lines and try to scan again, it wont see as a duplicate lines.
I too faced same issue with entity class of DB, I simply shuffled the lines. it resolved the issue

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

79503942

Date: 2025-03-12 14:49:18
Score: 0.5
Natty:
Report link

Thank you very much for your help @Vinay B, it worked! Based on your suggestion, instead of using a blob storage to store the JSON file, for saving costs purpose, I placed the content directly into the template using template_content with jsonencode. Here's the working solution for me:

resource "azurerm_resource_group_template_deployment" "webpubsub" {
  name                = "WebPubSubDeployment-${var.environment}"
  resource_group_name = azurerm_resource_group.wps-rg.name
  deployment_mode     = "Incremental"

  template_content = jsonencode({
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
      "webPubSubName": {
        "type": "string",
        "defaultValue": "cca-${var.EnvironmentShort}"
      },
      "location": {
        "type": "string",
        "defaultValue": "westeurope"
      }
    },
    "resources": [
      {
        "type": "Microsoft.SignalRService/WebPubSub",
        "apiVersion": "2024-10-01-preview",
        "name": "[parameters('webPubSubName')]",
        "location": "[parameters('location')]",
        "sku": {
          "name": "Free_F1",
          "tier": "Free",
          "size": "F1",
          "capacity": 1
        },
        "kind": "SocketIO",
        "properties": {
          "tls": {
            "clientCertEnabled": false
          },
          "publicNetworkAccess": "Enabled",
          "disableLocalAuth": false,
          "disableAadAuth": false,
          "regionEndpointEnabled": "Enabled",
          "resourceStopped": "false"
        }
      }
    ]
  })

  parameters_content = jsonencode({
    "webPubSubName": {
      "value": "cca-${var.EnvironmentShort}"
    },
    "location": {
      "value": "westeurope"
    }
  })
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): it worked
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Vinay
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rahula Palu

79503923

Date: 2025-03-12 14:42:17
Score: 1.5
Natty:
Report link

if you pass 0x as signature, the signer value falls back to msg.sender, it looks like you might be trying to send the transaction through the safe transaction builder or from a wallet that's not authorized to spend the allowance

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

79503920

Date: 2025-03-12 14:40:16
Score: 2
Natty:
Report link

It worked fine when I used the charging cable from my original phone.

Don't use those unbranded data cables. When you connect your device with that kind of cable, it can only charge the device and the selection pop-up window won't appear.

enter image description here

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

79503916

Date: 2025-03-12 14:38:16
Score: 2
Natty:
Report link

I was surprised by the same thing. My console.log output wasn't appearing. In my case, I'd had "No verbose" checked (see console output options).

Once I clicked on the messages, user messages, or info I could see my console log output.

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

79503914

Date: 2025-03-12 14:37:15
Score: 5
Natty:
Report link

You can also try this script to generate sql scripts for all objects from a database: https://github.com/binbash23/mssql_generate_schema_scripts

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: binbash

79503911

Date: 2025-03-12 14:36:15
Score: 1.5
Natty:
Report link

Figured it out, this was just a silly developer mistake. I had a web link set up in my AndroidManifest similar to the url I was trying to open from inside the app, so basically every time I try to launch the URL nothing would happen. Opening the URL from outside the app would just launch the app but since the app is already open nothing happens if you're not handling web links/deep links.

Reason why it didn't work on app downloaded from play store is because I had verified the weblink domain and allowed share credentials. The app therefore came already set up to open such links by default. When installing a debug/release apk you need to set the app as the default to open such links instead of a browser.

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

79503910

Date: 2025-03-12 14:35:14
Score: 2.5
Natty:
Report link

For a work around, I found that if I select the "show the issue navigator" icon (a triangle) and then select the "show the project navigator" icon (a file folder), the project folders expand.

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

79503908

Date: 2025-03-12 14:35:14
Score: 2.5
Natty:
Report link

For me only the whole /var/lib/docker removal helped on an Ubuntu system. (Of course, before removal: service docker stop, after removal: service docker start.)

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

79503907

Date: 2025-03-12 14:35:14
Score: 3.5
Natty:
Report link

Ctrl+Shift+P → search for "Reload with extinction disabled" and click on it

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

79503903

Date: 2025-03-12 14:32:14
Score: 0.5
Natty:
Report link

There are rules that we follow in TDD, when TDD is done right. It is simple, but it requires discipline. Typically, most programmers feel they are smart enough to skip a few steps ahead. I know. I was one of them. Until it came back to bite me. Then I started holding myself to these simple rules:

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

79503901

Date: 2025-03-12 14:31:13
Score: 4.5
Natty:
Report link

Does the Lighthouse audit say that something is missing?

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

79503900

Date: 2025-03-12 14:31:13
Score: 2
Natty:
Report link

select a.company, a.num, c.name, d.name

from route a join route b on (a.company, a.num) = (b.company, b.num)

join stops c on (a.stop = c.id)

join stops d on (b.stop = d.id)

where c.name = 'Craiglockhart' and d.name = 'London Road'

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

79503898

Date: 2025-03-12 14:31:13
Score: 3.5
Natty:
Report link

I’m experiencing the same issue.

The NEXT_PUBLIC_ prefix doesn’t seem to be the cause. After making a small update to the frontend code in my Next.js project and redeploying, the environment variables stopped being added to Cloud Run.

Cloud Build logs show that the environment variables are being set successfully, but they are not recognized in Cloud Run.

If anyone has a solution, I’d really appreciate your help!

Reasons:
  • Blacklisted phrase (2): appreciate your help
  • No code block (0.5):
  • Low reputation (1):
Posted by: 1shiharaT

79503890

Date: 2025-03-12 14:28:12
Score: 2
Natty:
Report link

It was confusing when i heard of gpg for 25 years ago.
It is more confusing now by the IT provider and their usergroups.
The amount at information is only destructive. No chance to get
informed clear, simple, effective.
I've never lost so much time in my life with useless wastebacket-communication since the post office has died.

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

79503883

Date: 2025-03-12 14:24:11
Score: 1
Natty:
Report link

It's most likely that your instance has been replaced, and therefore the password has been reset. You can check that by going to the tab Instance health -> select an instance -> maximize a graph -> increase the duration to e.g. one week and check for any gaps in the data.

Settings like the password are stored on this instance, but I've also noticed it for internal users and index patterns for dashboards. When the instance is replaced, all this is gone.

You can prevent this in a couple of ways:

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

79503873

Date: 2025-03-12 14:20:10
Score: 3
Natty:
Report link

I would just call it the last segment in the path.

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

79503872

Date: 2025-03-12 14:20:10
Score: 3
Natty:
Report link

you should go to windows setting -> update & security -> windows security -> and turn off firewall in your server ( or computer that configured as server)

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

79503852

Date: 2025-03-12 14:13:08
Score: 0.5
Natty:
Report link

Just use .GroupByUntil operator

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Oleg Dok

79503840

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

Why?

Because only web browsers care about CORS. Curl/wget/Invoke-WebRequest/postman/python Requests/etc are blissfully unaware, they neither know nor care about CORS.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why
  • High reputation (-2):
Posted by: hanshenrik

79503838

Date: 2025-03-12 14:09:07
Score: 1.5
Natty:
Report link

since C# 7, the next is possible:

object greeting = "Hello, World!";

if (greeting is string message)
{
    Console.WriteLine(message.ToLower());  // Output: hello, world!
}

see more examples here: https://medium.com/@nirajranasinghe/pattern-matching-in-c-fcee69929776#:~:text=Understanding%20Pattern%20Matching%20in%20C%23,var%2C%20List%20and%20discard%20patterns.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Nikita

79503836

Date: 2025-03-12 14:07:06
Score: 1.5
Natty:
Report link

Try to explicitly launch the browser in external mode:

await launchUrl(url, mode: LaunchMode.externalApplication);

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

79503817

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

the easy way to do it is using notifee:

https://notifee.app/react-native/docs/ios/badges

Referencia

I hope it helps.

Reasons:
  • Whitelisted phrase (-1): hope it helps
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Adán Escobar

79503812

Date: 2025-03-12 14:00:05
Score: 1
Natty:
Report link

Certainly ugly, but...

type MyTuple1 = {
    readonly 0: number;
    readonly 1: number;
    readonly length: 2;
    [Symbol.iterator](): IterableIterator<number>;
};
const myTuple1 = [0, 0] as MyTuple1;
const [d, e, f] = <[number, number]><MyTuple1>myTuple1; // Error
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Moacyr Catani

79503811

Date: 2025-03-12 13:59:05
Score: 0.5
Natty:
Report link

Also late to the party (just people lying around with hangovers now!), but as above, ContextKeeper looks like it is a good does everything utility, but I've not tried it as would need to buy/license/etc and with work that's another set of red tape and hoops to jump through. So as @Benjol said, hacky work-around of maintaining hidden .suo files works for my needs...

So, real low effort fix is if you want to save your session/windows, just copy the hidden .suo file as say saved.suo, and then make a batch file called restore-saved-stuff which is just one line of

echo F|xcopy /H /Y saved.suo .suo

If you want clean session, delete the hidden ".suo" file.

Could probably put things onto right-click contexts, params on batch files, and so on, but this is a quick and dirty way to save your session.

For me, the .suo files are in the \.vs\project\v16 folder (v16 = VS2019)

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