79681268

Date: 2025-06-26 23:35:50
Score: 2
Natty:
Report link

I find this error 2 days ago. In my case, I wait for 2 days because Im trying so many times in these days.
After 2 days, open google payment method (not direct to google cloud) and add payment method (I'm use visa). Do the 2-step verification with your card account (google will send the code in the description in the payment, check your bank app). After the verification success, open google cloud console and add the payment.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Low reputation (1):
Posted by: zaky zaidan

79681267

Date: 2025-06-26 23:35:50
Score: 2
Natty:
Report link

I would say try to avoid including those generated files because as you said it can lead to bloat and if you want to share the built application, consider using github releases instead of including them in the main codebase. However, make sure to document the build process in your project’s README or a separate documentation file. This way, new users will know how to build the application without needing the pre-built binaries.

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

79681264

Date: 2025-06-26 23:29:49
Score: 1.5
Natty:
Report link

The person in the comments answered it correctly to my surprise.

i18next warns about incompatibility with versions of TypeScript below 5.0.0, and as my version in frontend was 4.9.5, it would not let me use this feature with namespaces.

The problem is that LanguageDetector and I18NextHttpBackend only fully work with TypeScript >5.0.0, and their usage with older versions will result in surprising errors in some cases.

TLDR: Upgrade TypeScript to >5.0.0

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

79681263

Date: 2025-06-26 23:29:49
Score: 1.5
Natty:
Report link

In Apple Memory Management Programming Guide, Apple states:

When an application terminates, objects may not be sent a dealloc message. Because the process’s memory is automatically cleared on exit, it is more efficient simply to allow the operating system to clean up resources than to invoke all the memory management methods.

https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmRules.html

This is a legacy document, but I believe the policy has not changed.

Therefore, I believe any memory allocated by app is cleared on exit.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daisuke K.

79681260

Date: 2025-06-26 23:22:47
Score: 0.5
Natty:
Report link

J2CL, a Google backed Java to Javascript transpiler, lets you know also compile Java to WebAssembly.

https://github.com/google/j2cl/blob/master/docs/getting-started-j2wasm.md

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

79681259

Date: 2025-06-26 23:19:46
Score: 0.5
Natty:
Report link

I answered a similar question here:

In short, many believe it's an issue with rolling out the new UI, and some were able to fix it through a combination of

  1. using a different browser/private/incognito)
  2. Deleting and re-creating the project
  3. Use a login link that redirects to the oauth consent screen
  4. If the app is for external audience, set yourself as a test user

None of these actually worked for me though (my app is internal), but worth a try - I recommend subscribing to the below in case a fix is reported:

  1. https://www.googlecloudcommunity.com/gc/Community-Hub/Problem-with-Oauth-consent-screen/m-p/913303
  2. https://www.googlecloudcommunity.com/gc/Google-Cloud-s-Observability/Cannot-access-OAuth-Consent-Screen-setup-keeps-redirecting-to/td-p/908771
  3. https://www.reddit.com/r/googlecloud/comments/1l3zi9q/help_google_cloud_console_redirects_me_from_oauth/
  4. https://www.reddit.com/r/devops/comments/1isamvc/cant_configure_a_consent_screen_clicking_on_oauth/
  5. https://community.home-assistant.io/t/google-drive-oauth-consent-screen/842720
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: nktnet

79681256

Date: 2025-06-26 23:17:46
Score: 0.5
Natty:
Report link

This turned out to be happening because the first trace had no entries for y == "one", and so plotly considered the entire top row to contain gaps. My hacky solution for this was to add NA's for that whole row, and it seems to have fixed the issue:

library(tidyverse)
library(plotly)

# generate some sample data (somewhat clunkily)
# x and y column are all unique combinations of the words "one" through "four"
# v1 and v2 columns contain random data with different ranges
f <- combn(c("one","two","three","four"),2) %>%
  t() %>%
  as.data.frame() %>%
  rename(x=1,y=2) %>%
  mutate(v1 = rnorm(n(),5), v2 = rnorm(n(), 200, sd=55)) %>%
  arrange(x,y) %>%
  mutate(
    x = factor(x,c("one","two","three","four")),
    y = factor(y,c("four","three","two","one"))
  )

lwr_scale <- list(list(0,"black"),list(1,"red"))
upr_scale <- list(list(0,"white"),list(1,"green"))


# get factor level for the top row
last_l <- last(levels(f$y))
top_row <- f %>%
  # get entries for x == last_l
  filter(x == last_l) %>%
  # swap x and y
  mutate(temp=y,y=x,x=temp) %>%
  select(-temp) %>%
  # set numeric columns to NA
  mutate(across(where(is.numeric),~NA))

# add dummy rows back to original dataset
f <- bind_rows(f,top_row)

f %>%
  plot_ly(hoverongaps=FALSE) %>% 
  add_trace(
    type = "heatmap",
    x = ~x,
    y = ~y,
    z = ~v1,
    colorscale = lwr_scale
  ) %>%
  add_trace(
    type="heatmap",
    x = ~y,
    y = ~x,
    colorscale = upr_scale,
    z = ~v2
  )

et voila:

enter image description here

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

79681252

Date: 2025-06-26 23:10:44
Score: 2
Natty:
Report link

This redirect loop issue has been reported in multiple places.

The issue (from what I've read) appears to be with the introduction of the new UI for the OAuth Consent Screen.

Some people reported to have gained access to this page by using one (or more) of the following:

  1. Different browser (or private/incognito)
  2. Deleting and re-creating the project
  3. Use a login link that redirects to the oauth consent screen
  4. If the app is for external audience, set yourself as a test user

If none of the above worked for you (it didn't for me), I recommend subscribing to the posts below in case any updates arise:

  1. Clicking OAuth consent screen in Google Cloud console redirects to Overview page
  2. https://www.googlecloudcommunity.com/gc/Community-Hub/Problem-with-Oauth-consent-screen/m-p/913303
  3. https://www.googlecloudcommunity.com/gc/Google-Cloud-s-Observability/Cannot-access-OAuth-Consent-Screen-setup-keeps-redirecting-to/td-p/908771
  4. https://www.reddit.com/r/googlecloud/comments/1l3zi9q/help_google_cloud_console_redirects_me_from_oauth/
  5. https://www.reddit.com/r/devops/comments/1isamvc/cant_configure_a_consent_screen_clicking_on_oauth/
  6. https://community.home-assistant.io/t/google-drive-oauth-consent-screen/842720
Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: nktnet

79681248

Date: 2025-06-26 23:08:43
Score: 1.5
Natty:
Report link

Including single reference to fix this, especially in private network settings.

In summary, this approach allows you to keep the validation as well as enable usage in restricted network configurations.

The fix MindingData suggests doesn't feed files into the share. This is because, if validation fails, it's a network related issue. The skip just allows the deployment to continue.
https://www.dotnet-ltd.com/blog/how-to-deploy-azure-elastic-premium-functions-with-network-restrictions

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dominic Sinclair-Moore

79681239

Date: 2025-06-26 22:57:41
Score: 3
Natty:
Report link

click on the blue plus sign on the left hand tab. you'll see the option to "create a new notebook".

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

79681234

Date: 2025-06-26 22:48:38
Score: 2
Natty:
Report link

You can do this with pipes they are in System.IO.Pipes

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

79681232

Date: 2025-06-26 22:48:38
Score: 1
Natty:
Report link

Only the last error_page 404 will be triggered, so if you want to let Codeigniter handle the error_page handle it to /index.php

error_page 404 /index.php;

Also, this is unnecessary if you want to let Codeigniter handle the error_page 404.

location = /404.php {
    internal;
    ...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Haugli92

79681224

Date: 2025-06-26 22:38:36
Score: 1.5
Natty:
Report link

i know its a little bit more typing but if you want to add the exact attributes you want to remove you can also use this regex

 (?<="tlv":")[^"]+(?=")

playground: regex

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

79681217

Date: 2025-06-26 22:29:34
Score: 2.5
Natty:
Report link

As far as I know, there is no way to visualize it in visreg unless you set a cond= argument. For instance

visreg(mod1,"Year",by="age",cond=list(education=2)

You would then change the value that you have for education and produce multiple plots for a visualization

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

79681210

Date: 2025-06-26 22:27:34
Score: 2
Natty:
Report link

If you're project is also a python virtual environment, you also need to update the paths in scripts in <virtual_env>/bin.

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

79681208

Date: 2025-06-26 22:25:33
Score: 8.5
Natty: 7.5
Report link

have you found a solution to this?

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found a solution to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thiago Jesus Machado

79681201

Date: 2025-06-26 22:17:29
Score: 9.5 🚩
Natty: 5
Report link

Up, did you find a solution on this?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Quentin Malgaud

79681200

Date: 2025-06-26 22:17:29
Score: 0.5
Natty:
Report link

To run in Docker:

host_directory> docker build --no-cache -t image-name .

host_directory> docker run -d image-name sleep infinity
The above line runs the container, and keeps running it, but does not actually
execute the python script.

Find the new running container name in Docker.

host_directory> docker exec -it container-name bash
The above line accesses the container terminal.

Go to the /app/ subdirectory if not already in it.

container-directory/app# python bar_graph.py
Now my_plot.png should be in container-directory/app

Exit the container terminal. This can be done with ctrl+Z

host_directory> docker cp container-name:./app/my_plot.png .
The above line copies my_plot.png to the current host directory.

Now my_plot.png should be accessible in the host directory.

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

79681197

Date: 2025-06-26 22:14:28
Score: 0.5
Natty:
Report link

Try go to app/Config/App.php

Change:

public string $indexPage = 'index.php';

To:

public string $indexPage = '';

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Haugli92

79681190

Date: 2025-06-26 21:58:25
Score: 2
Natty:
Report link

You are not checking if head is NULL before accessing its data.

In the first code snippet there is a check that validates that head is not null before accessing its data.

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

79681189

Date: 2025-06-26 21:57:24
Score: 1
Natty:
Report link

we've solved this by suffixing our prometheus query with something like the following:

 <some metric query> * (hour() > bool 16) * (hour() < bool 20) > 0

this multiplies the query by 0 if it is outside the desired paging window.

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

79681170

Date: 2025-06-26 21:35:19
Score: 1
Natty:
Report link

Mine worked with this:

in pubspec.yaml I update image_picker to 0.8.0

then open "Runner.xcworkspace" on Xcode.

I didnt worked the first time but when I closed xcode completely then went to folder and directly open the Runner.xcworkspace" by double clicking I got in and set the target version, name, build etc and worked successfully

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Haashir-Shakeel

79681149

Date: 2025-06-26 21:08:12
Score: 1.5
Natty:
Report link

If you want to avoid the complexity of managing your own push infrastructure, AlertWise is a powerful cloud-based solution.

With AlertWise, you get:

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

79681146

Date: 2025-06-26 21:04:10
Score: 2
Natty:
Report link

in ./system/libraries/Migration.php

change this

elseif ( ! is_callable(array($class, $method)))
elseif ( ! is_callable(array(new $class, $method)))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Manuel

79681145

Date: 2025-06-26 21:03:10
Score: 1.5
Natty:
Report link

I found something in the signal Python documentation here; seems like you first have to import the signal class, then use it as process.send_signal(signal.SIGINT), with SIGINT being the signal object representing a CTRL+C keyboard interrupt in Python.

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

79681140

Date: 2025-06-26 20:55:09
Score: 1
Natty:
Report link

The default variable name produced by Execute SQL statement is a table variable named, "QueryResult". You can modify this to the variable name of your choice.

enter image description here

If you are trying to view the contents of the table in the "Variables" panel, it may not load if the table dataset is too large. Perhaps output to an Excel workbook or another sort of file for viewing.

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

79681134

Date: 2025-06-26 20:50:07
Score: 2
Natty:
Report link

import Data.Array test = listArray (1,4) [1..4] reverser x = x // zip [1..4] [x ! i | i <- [4,3..1]]

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

79681130

Date: 2025-06-26 20:45:05
Score: 4.5
Natty: 5
Report link

I’m having this exact same problem. If you could dm me @ mohmaibe on Twitter or email [email protected] that would be awesome. Cheers.

Reasons:
  • Blacklisted phrase (1): Cheers
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohammed Maibe

79681129

Date: 2025-06-26 20:45:05
Score: 1
Natty:
Report link

This answer could work for you:

response.replace(
    /\\x[0-9A-F]{2}/gm,
    function (x) {
        console.log(x);
        return String.fromCharCode(parseInt(x.slice(2), 16));
    }
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RoboProgramer2012

79681114

Date: 2025-06-26 20:36:03
Score: 1
Natty:
Report link

Plugins require building QEMU with the --enable-plugins option. So run the following from the <qemu dir>/build folder:

./configure --enable-plugins
make

The resulting plugin binaries will then end up in <qemu dir>/build/contrib/plugins/.

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

79681108

Date: 2025-06-26 20:32:02
Score: 1.5
Natty:
Report link

I got dataweave to stream by setting the collection attribute of foreach to

output application/csv deferred=true
---
payload map (value,index)-> value
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: William

79681105

Date: 2025-06-26 20:28:01
Score: 4
Natty: 5.5
Report link

Bana asmr yapay zeka hazırla..

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

79681102

Date: 2025-06-26 20:25:00
Score: 0.5
Natty:
Report link

I have faced out this issue again,

My solution : source

buildscript {
    repositories {
     ...
     maven { url 'https://groovy.jfrog.io/artifactory/libs-release/' }
    
    }
}
allprojects {
    repositories {
     ...
     maven { url 'https://groovy.jfrog.io/artifactory/libs-release/' }
     
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: hamil.Dev

79681100

Date: 2025-06-26 20:20:59
Score: 1.5
Natty:
Report link

I was using Ubuntu 20.04 with g++ updated to g++15.1 (compiled from source)

I changed to Ubuntu 25.04 and g++15.0 (from ubuntu's ppa)

I checked a c++config.h file where _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED is defined now there are test for more recent version of c++ which seem to modify it depending on latest version of c++.

So basically, everything must be very recent to work.

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

79681094

Date: 2025-06-26 20:14:58
Score: 3
Natty:
Report link

I found -Og to help, but it optimizes stuff out. Very weird behavior from gdb.

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

79681086

Date: 2025-06-26 20:04:55
Score: 1.5
Natty:
Report link

Simpler version for if all the data is in column A:

=SUM(IF(ISNUMBER(SEARCH("3",A:A)),1,0))

(Just change A:A to whatever range you need. This adds 1 for every cell in the range that contains a 3 and returns the result.)

Image of spreadsheet with formula

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

79681083

Date: 2025-06-26 19:57:53
Score: 0.5
Natty:
Report link

The solution for you is:

[C1]=REDUCE(0,A1:A4,
  LAMBDA(a,x,IF(ISNUMBER(x),a+(x=B1),a+SUM(N(VALUE(TEXTSPLIT(x,";"))=B1)))))

enter image description here

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

79681077

Date: 2025-06-26 19:46:51
Score: 1
Natty:
Report link

Yes (I'm putting this placeholder in case your question gets closed and will provide more detail in a momet)

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

79681072

Date: 2025-06-26 19:40:49
Score: 2.5
Natty:
Report link

!apt-get install poppler-utils

write this in your cmd line this will add poppler in your path req by pdf2image

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

79681068

Date: 2025-06-26 19:38:49
Score: 0.5
Natty:
Report link

Try unloading and reloading your project (or restarting Visual Studio).

This is an obvious thing to try, but it was missing from this list. In my case, reloading the database project reenabled the update button when the error list was spewing out nonsense like DECIMAL(6,4) being invalid and such.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kevin Bourassa-Houle

79681058

Date: 2025-06-26 19:26:46
Score: 3
Natty:
Report link

replace the https or http of m4s url with custom string so then they will get intercepted

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

79681057

Date: 2025-06-26 19:26:46
Score: 1.5
Natty:
Report link

Thank you for the awesome solution

I keep getting this error for the second Run script

We were unable to run the script. Please try again.\nRuntime error: Line 3: _a.sent(...).findAsync is not a function\r\nclientRequestId: ab1872f2-e289-4422-a96d-0e261743bcc2
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shalini Maria

79681056

Date: 2025-06-26 19:26:46
Score: 3
Natty:
Report link

This turned out to be a Pandas dataframe issue that was easily fixed -- for some reason it defaulted the display differently for this column, but the setting was easily changed.

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

79681051

Date: 2025-06-26 19:22:45
Score: 2
Natty:
Report link

I've installed json server created my DB fetched and all is working

But when I deploy online, it crashes. I need to connect it to some services like render to avoid such crash

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

79681047

Date: 2025-06-26 19:20:44
Score: 3.5
Natty:
Report link

Download github desktop, sign in and use it to download the repo

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

79681029

Date: 2025-06-26 18:58:40
Score: 1
Natty:
Report link

Not sure what you mean from what I see, it looks like you got the optimal solution.

Did you try to extract your solution values like?

for var in self.prob.variables():
                if var.varValue is not None:
                    f.write(f"{var.name} = {var.varValue}\n")
Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Optimsation_try_hard

79680989

Date: 2025-06-26 18:15:29
Score: 3.5
Natty:
Report link

Hermes is used by expo eas by default:

https://docs.expo.dev/guides/using-hermes/

Try to remove the line and build again

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

79680983

Date: 2025-06-26 18:09:28
Score: 1
Natty:
Report link

After Perl is installed, you’ll need to install some additional Perl modules. From an elevated Command Prompt, run the following commands:

1. cpan App::cpanminus
2. cpanm Win32::FileSecurity
3. cpanm Win32::NetAdmin
4. cpanm Win32::Shortcut
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: aee

79680979

Date: 2025-06-26 18:07:27
Score: 2.5
Natty:
Report link

my mobile devices ip address changes everytime i refresh my mail... no i dont disconnect from the cell tower... i just swipe down while mail is open. my mailserver here loggs the connection... each time i refresh - swiping down - the mailserver shows teh same ip but the last octet changes. this makes it impossible to test mailserver backend scripting on a single ip of an account holder while on a mobile device!

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

79680972

Date: 2025-06-26 18:01:26
Score: 2.5
Natty:
Report link

from gtts import gTTS

texto = """

Atención, atención.

La Fonda El Palenque... ¡LOS INVITA!

Al gran Campeonato de Mini‑Tejo, con parejas fijas.

Inscripción por pareja: ciento diez mil pesos.

¡Incluye el almuerzo!

Y atención mujeres: ¡ustedes pagan solo la mitad!

¿Te eliminaron? No te preocupes...

Repechaje: solo cincuenta mil pesos.

El premio: ¡todo lo recaudado!

Domingo 29 de junio, desde las 12 del mediodía.

Cierre de inscripciones: 2 de la tarde.

Lugar: Vereda Partidas.

Invita: Culebro.

Más información al 312 886 41 90.

Prohibido el ingreso de menores de edad.

¡No te lo pierdas! Una tarde de tejo, música, comida y mucha diversión en Fonda El Palenque.

"""

tts = gTTS(text=texto, lang='es', tld='com.mx', slow=False)

tts.save('anuncio_fonda_el_palenque.mp3')

print("Archivo generado: anuncio_fonda_el_palenque.mp3")

Reasons:
  • Blacklisted phrase (1): ¿
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Daniela Rios

79680970

Date: 2025-06-26 17:58:25
Score: 5
Natty:
Report link

How did you deploy your milvus cluster?

please scale your cluster with https://milvus.io/docs/scaleout.md#Scale-a-Milvus-Cluster

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: James Luan

79680960

Date: 2025-06-26 17:47:22
Score: 1.5
Natty:
Report link

Depending on what you are trying to achieve, you should also look into using the deployment job as it gives you the opportunity to set a preDeploy: which run steps prior to what you set as deployment. You can also use the on: success and on: failure sections to set what will become your post deployment steps.

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

79680956

Date: 2025-06-26 17:45:22
Score: 3
Natty:
Report link

I generated cert.pem and key.pem using below command, but in my browser , I am unable to record any audio because of my invalid certificates. Did any one faced this issues before

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

79680955

Date: 2025-06-26 17:43:21
Score: 0.5
Natty:
Report link

As you mention, your input PCollection contains dictionaries. You need a transformation step right before your WriteToBigQuery to convert each dictionary into the required beam.Row structure. A common error you might encounter here is a schema mismatch. The fields within the record beam.Row must perfectly match the columns of your BigQuery table in both name and type. Any extra fields in record will cause a failure.

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

79680946

Date: 2025-06-26 17:35:19
Score: 2
Natty:
Report link

You need to install powershell 3.0 on the target machine. For example, windows 7 have only 2.0 installed by default.

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

79680943

Date: 2025-06-26 17:32:18
Score: 1
Natty:
Report link

maybe you can use library Swal (sweet alert) and then when the user click button show an alert with terms and conditions, swal includes a event named then()=>{ // your code for get results here }

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

79680940

Date: 2025-06-26 17:31:18
Score: 1.5
Natty:
Report link

It's not working on windows 7 while it is working on windows 8.

windows 7 doesn't have powershell 3.0 installed by default, only 2.0

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

79680938

Date: 2025-06-26 17:28:17
Score: 2
Natty:
Report link

Perhaps make an altered version of the macro that does not have the MsgBox and InputBox, and supply the information required by the InputBox as a parameter in your Run Excel macro action.

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

79680934

Date: 2025-06-26 17:28:17
Score: 3.5
Natty:
Report link

is there a o(n) solution only using single loop ? i was asked same question with constrain of using only one for loop..

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is there a
  • Low reputation (0.5):
Posted by: Abhishek Deshpande

79680930

Date: 2025-06-26 17:25:16
Score: 2.5
Natty:
Report link

I've figured it out, you need to train and compile the model using python 3.9 and tensorflow 2.8 as the latest flutter tensorflow lite lib doesn't support some operations that are later on was added to tensorflow lite

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

79680923

Date: 2025-06-26 17:19:15
Score: 4
Natty:
Report link

nice dear i have also found but still no solution find

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

79680918

Date: 2025-06-26 17:16:13
Score: 0.5
Natty:
Report link

When you create the pivot table initially, ensure that you check the option to add it to the Data Model: Screenshot illustrating option to add to Data Model

This will facilitate the creation of a Dax measure (rather than a calculated field): Screenshot illustrating impact of measure on pivot table

which measure should be defined as follows: Screenshot illustrating definition of measure

=SUMX('Range',[volume]*[price])

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • High reputation (-1):
Posted by: Spectral Instance

79680913

Date: 2025-06-26 17:14:13
Score: 2.5
Natty:
Report link

Here's how to solve each of the 20 C programming problems step-by-step. I’ll give brief logic for each and sample function headers. Let me know which full programs you want:


1. Sum of divisors

int sum_of_divisors(int n) {
    int sum = 0;
    for (int i = 1; i <= n; i++)
        if (n % i == 0) sum += i;
    return sum;
}

2. Merge sort

void mergeSort(int arr[], int left, int right);
void merge(int arr[], int left, int mid, int right);

Use recursive divide-and-conquer + merge logic.


3. Check if string contains digits

int count_digits(char str[]) {
    int count = 0;
    for (int i = 0; str[i] != '\0'; i++)
        if (isdigit(str[i])) count++;
    return count;
}

4. GCD using recursion

int gcd(int a, int b) {
    if (b == 0) return a;
    return gcd(b, a % b);
}

5. Insertion Sort

void insertionSort(int arr[], int n);

Loop from i=1 to n, insert arr[i] in the sorted left part.


6. Reverse words in a sentence (in-place)

Reverse the full string, then reverse each word:

void reverseWords(char* str);

7. Count vowels and consonants

void count_vowels_consonants(char str[], int *vowels, int *consonants);

Check with isalpha() and vowel comparison.


8. Check Armstrong number

int isArmstrong(int n) {
    int sum = 0, temp = n;
    while (temp) {
        int d = temp % 10;
        sum += d * d * d;
        temp /= 10;
    }
    return sum == n;
}

9. Sum of squares in array

int sum_of_squares(int arr[], int n) {
    int sum = 0;
    for (int i = 0; i < n; i++)
        sum += arr[i] * arr[i];
    return sum;
}

10. Merge two sorted arrays (in-place)

If extra space is not allowed, use in-place merge like:

void mergeSortedArrays(int a[], int b[], int m, int n);

11. Perfect square check

int isPerfectSquare(int num) {
    int root = sqrt(num);
    return root * root == num;
}

12. Rotate matrix 90 degrees

void rotateMatrix(int matrix[N][N]);

Transpose + reverse rows or columns.


13. Power of number using recursion

int power(int x, int n) {
    if (n == 0) return 1;
    return x * power(x, n - 1);
}

14. Middle element of a linked list

Use slow and fast pointers:

struct Node* findMiddle(struct Node* head);

15. Remove duplicates from array

Sort array, then shift unique values:

int removeDuplicates(int arr[], int n);

16. Longest Common Subsequence

Use 2D dynamic programming:

int LCS(char* X, char* Y, int m, int n);

17. Pascal's Triangle

void printPascalsTriangle(int n);

Use combinatorics: nCr = n! / (r!(n-r)!).


18. Sum of odd and even elements

void sumOddEven(int arr[], int n, int *oddSum, int *evenSum);

19. Reverse array in groups

void reverseInGroups(int arr[], int n, int k);

20. Valid parentheses expression

Use a stack to match ( and ):

int isValidParentheses(char* str);

Would you like me to provide full C code for all, or start with a few specific ones (e.g. 1–5)?

Reasons:
  • Blacklisted phrase (1): how to solve
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Marium Sheikh

79680905

Date: 2025-06-26 17:09:12
Score: 0.5
Natty:
Report link

I recommend using the Concatenate function to build the connection string in a Set variable action.

=Concatenate("Provider=MSDASQL;Password=",SQLpassoword,";Persist Security Info=True;User ID=",ID,";Data Source=LocalHost;Initial Catalog=LocalHost")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Degan

79680899

Date: 2025-06-26 17:04:11
Score: 0.5
Natty:
Report link

This is an old question but it pops up on Google as a top result so I'll share another answer. It has gotten simpler in newer versions of .NET. With the new hosting templates in .NET 6 you can simply use:

builder.Configuration.AddJsonFile("your/path/to/appsettings.json", false);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Christopher Rhoads

79680889

Date: 2025-06-26 16:57:09
Score: 2
Natty:
Report link

🎯 Looking for Expert Odoo Services?

We provide custom Odoo development, including:
✅ ERP/CRM Integration
✅ eCommerce & Website Solutions
✅ Custom Module Development
✅ And now – Live Sessions for Learning & Support

📌 Whether you're a business or a learner, we’ve got you covered.
🌐 Visit us: www.odoie.com
💬 Let’s automate and grow your business together!

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

79680879

Date: 2025-06-26 16:50:07
Score: 1.5
Natty:
Report link

You can modify the CSS of the status bar item like this:

statusBar()->setStyleSheet("QStatusBar::item { border-right: 0px }");

This has solved the issue for me and I do not have any borders. Not sure how this will work with mutliple labels in the status bar.

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

79680878

Date: 2025-06-26 16:49:06
Score: 4.5
Natty: 7
Report link

I am looking for some resource how to implement Write with Immediate using Network Direct API? The ndspi.h header seems to not expose the needed reference. I am currently developing a prototype to connect Linux OS based using RDMA libibverbs to post rdma write with immediate to windows using Network direct.

Thanks for your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): I am looking for
  • Whitelisted phrase (-0.5): Thanks for your help
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: wil

79680869

Date: 2025-06-26 16:40:04
Score: 1.5
Natty:
Report link

For anyone struggling with this and tried to look it up, I got it-

the answer that was posted wasn’t exactly the right one.

What you actually needed to do was this,

; To show the turtle’s position

showturtle

; This to make the circle for reference

repeat 36

right 10

draw 5

; THIS is the important part. This is to remember the position it’s in after every VERTEX OF THE CIRCLE

REMEMBER

next

; This is the half circles being drawn

repeat 40

draw 5

right 10

GO HALF

; THIS is the second part that’s important. This is so it goes back to the next vertex position each time

GOBACK

next

end

; THIS IS THE HALF CIRCLE METHOD/SUBROUTINE

# HALF

repeat 18

right 10

draw 10

next

return

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

79680853

Date: 2025-06-26 16:29:01
Score: 0.5
Natty:
Report link

% Joint PDF of Area Load (L) and Transfer Limit (TL)

% --------------------------------------------------

% INPUTS -------------------------------------------------

% L – column vector (N×1) of historical area-load values

% TL – column vector (N×1) of the corresponding transfer-limit values

%

% OUTPUTS ------------------------------------------------

% X1, X2 – evaluation grid (load, TL) for plotting / lookup

% fJoint – matrix of joint-pdf estimates at each (X1(i,j), X2(i,j))

%% 1. Load or assign your data ------------------------------------------

% Replace these with your actual vectors

L = load('areaLoad_MW.mat' ,'-mat'); % e.g. struct with field L

TL = load('transferLimit_MW.mat','-mat'); % struct with field TL

L = L.L(:); % ensure column shape

TL = TL.TL(:);

data = [L TL]; % N×2 matrix for ksdensity

%% 2. Build an evaluation grid ------------------------------------------

nGrid = 150; % resolution of the grid

x1 = linspace(min(L), max(L), nGrid); % load-axis points

x2 = linspace(min(TL), max(TL), nGrid); % TL-axis points

[X1,X2] = meshgrid(x1,x2);

gridPts = [X1(:) X2(:)]; % flatten for ksdensity

%% 3. 2-D kernel density estimate of the joint PDF -----------------------

% ‘ksdensity’ uses a product Gaussian kernel; bandwidth is

% automatically selected (Silverman’s rule) unless you override it.

f = ksdensity(data, gridPts, ...

          'Function',  'pdf', ...

          'Support',   'unbounded');    % returns vector length nGrid^2

fJoint = reshape(f, nGrid, nGrid); % back to 2-D matrix

%% 4. (Optional) Plot the surface ----------------------------------------

figure;

surf(X1, X2, fJoint, 'EdgeColor', 'none');

xlabel('Area Load (MW)');

ylabel('Transfer Limit (MW)');

zlabel('Joint PDF f_{L,TL}(l, tl)');

title('Kernel Joint-PDF of Transfer Limit vs. Load');

view([30 40]); % nice 3-D viewing angle

colormap parula

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

79680851

Date: 2025-06-26 16:26:00
Score: 4
Natty: 6
Report link

The answer was very helpfull , thank you !!

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

79680840

Date: 2025-06-26 16:15:57
Score: 1
Natty:
Report link

This error usually happens when Odoo tries to import your module but:

🔧 Need smart Odoo solutions for your business?

We specialize in powerful and customized Odoo services to help you automate, scale, and grow your business.

🌐 Visit us today at 👉 www.odoie.com
💼 Let's build your digital future — faster and smarter with Odoo!

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mubeen Ahmed

79680834

Date: 2025-06-26 16:13:57
Score: 0.5
Natty:
Report link

The fast, concise, pythonic way to do this is with a list comprehension.

>>> l2
['a', 'b', 'c', 'd']
>>> [i for i in l2 if i != 'a']
['b', 'c', 'd']
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: James Bradbury

79680827

Date: 2025-06-26 16:05:54
Score: 1.5
Natty:
Report link

The most simple way is to use the action Set color of cells in Excel worksheet and set the color to "Transparent".

PAD action configuration

Alternately, you can use the Send keys action to select the row and then change the fill.

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

79680821

Date: 2025-06-26 16:02:52
Score: 1
Natty:
Report link

import random class character: def _init_(self, name, health, attack_power, has_prosthetic_leg=true): self.name = name self.health = health self.attack_power = attack_power self.has_prosthetic_leg = has_prosthetic_leg self.dinar = 0 def attack(self, other): damage = random.randint(0, self.attack_power) other.health -= damage print(f"{self.name} attacks {other.name} for {damage} damage!") print(f"{other.name}'s health: {other.health}") def is_alive(self): return self.health > 0 def use_special_sword(self): print(f"{self.name} uses the special katana to rewind time!") self.health += 20 # örnek olarak sağlığı artırma print(f"{self.name}'s health is now: {self.health}") class enemy: def _init_(self, name, health, attack_power): self.name = name self.health = health self.attack_power = attack_power def battle(sabri, enemy): while sabri.is_alive() and enemy.health > 0: sabri.attack(enemy) if enemy.health > 0: enemy_damage = random.randint(0, enemy.attack_power) sabri.health -= enemy_damage print(f"{enemy.name} attacks {sabri.name} for {enemy_damage} damage!") print(f"{sabri.name}'s health: {sabri.health}") if sabri.is_alive(): print(f"{enemy.name} has been defeated!") sabri.dinar += 10 print(f"you earned 10 sabri eş parası! total: {sabri.dinar}") else: print(f"{sabri.name} has been defeated! game over.") def main(): sabri = character("sabri", 100, 20) asya = character("asya", 80, 15) enemies = [ enemy("uzaylı savaşçı", 60, 15), enemy("uzaylı lider", 80, 20), ] print("sabri and asya are on a quest to save the world from aliens!") for enemy in enemies: print(f"a {enemy.name} appears!") battle(sabri, enemy) if not sabri.is_alive(): break if sabri.is_alive(): print("sabri has defeated all enemies and saved the world together with asya!") else: print("the world remains in danger...") # zamana geri alma yeteneği if sabri.health < 100: print(f"{sabri.name} decides to rewind time using the special katana...") sabri.use_special_sword() if _name_ == "_main_": main() bu koddan oyun yap

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Deniz Göl

79680818

Date: 2025-06-26 16:01:52
Score: 2
Natty:
Report link

Manage to make it work by adding this to build/conf/local.conf, it's a bit better as I am not touching openembedded files.

FORTRAN:forcevariable = ",fortran"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: artur

79680812

Date: 2025-06-26 15:56:50
Score: 3.5
Natty:
Report link

Do not overlook setting the Multiline property of the textbox to True

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

79680803

Date: 2025-06-26 15:51:49
Score: 2
Natty:
Report link

I encountered the same warning, and stack trace showed that the warning came from gradle plugin, but it only occured in sync process, not in build. For my project, I using gradle wrapper 8.10.2, and gradle plugin 8.8.0 - which was the maximum compatible version. The warning could be ignored cause I got no errors and just make sure that the compatibility of gradle wrapper and gradle plugin, i guess!

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Le Hoang Minh Quan B2206008

79680800

Date: 2025-06-26 15:49:48
Score: 3
Natty:
Report link

I faced the same issue but in react native because of my images resolution is high, so check resolution of your image once and try compressing image size it might help.

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

79680796

Date: 2025-06-26 15:46:47
Score: 1
Natty:
Report link

Create a composition (comp) function.

def increment(x):
    return x + 1

def double(x):
    return x * 2

def comp(f, g):
    return lambda x: g(f(x))

double_and_increment = comp(double, increment)

print(double_and_increment(5))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Leonardo Lucena

79680795

Date: 2025-06-26 15:46:46
Score: 5
Natty:
Report link

enter image description here

Difference between Write-Back and Write-Through

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md. Farid Hossen Rehad

79680791

Date: 2025-06-26 15:44:46
Score: 2
Natty:
Report link

I just got that message working on a flutter app...it may be OS Sequoia being a hater with new security measures...before I updated to Sequoia I could changed audio file pointers inside the apps package contents and the app would still work with the new sounds....I tried this is Sequoia and boom it permanently stopped my app from playing that one sound....even after I changed the sound back...and exported new builds....even with new installs of new versions of the app Sequoia still remembered that file I switched and made the sound mute...yet it works fine on other computers

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

79680789

Date: 2025-06-26 15:44:46
Score: 1
Natty:
Report link

Set alias for different config

alias avim="nvim -u .config/anvim/init.vim"
alias wvim="nvim -u .config/wnvim/init.vim"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Akilesh

79680780

Date: 2025-06-26 15:40:45
Score: 1
Natty:
Report link
import pandas as pd
from datetime import datetime
import dash
from dash import dcc, html, dash_table
import plotly.graph_objects as go

# Dados
data = {
    'NF': ['17535', '17536'],
    'Qtd Unidades': [308, 1282],
    'Início Sistêmico': [datetime(2024, 6, 24, 10, 15), datetime(2024, 6, 24, 8, 0)],
    'Final Sistêmico': [datetime(2024, 6, 24, 12, 15), datetime(2024, 6, 24, 10, 13)],
    'Início Adequação': [datetime(2024, 6, 24, 13, 15), datetime(2024, 6, 24, 11, 37)],
    'Final Adequação': [datetime(2024, 6, 24, 18, 50), datetime(2024, 6, 24, 17, 2)],
    'Início Amostragem': [datetime(2024, 6, 25, 8, 0), datetime(2024, 6, 24, 17, 3)],
    'Final Amostragem': [datetime(2024, 6, 25, 9, 6), datetime(2024, 6, 24, 17, 56)],
}

df = pd.DataFrame(data)

# Cálculos
df['Tempo Total Processo'] = df['Final Amostragem'] - df['Início Sistêmico']
df['Tempo Adequação'] = df['Final Adequação'] - df['Início Adequação']
df['Tempo Amostragem'] = df['Final Amostragem'] - df['Início Amostragem']
df['Produtividade por Pessoa'] = df['Qtd Unidades'] / 3
df['Tempo Total (h)'] = df['Tempo Total Processo'].dt.total_seconds() / 3600
df['Adequação (h)'] = df['Tempo Adequação'].dt.total_seconds() / 3600
df['Amostragem (h)'] = df['Tempo Amostragem'].dt.total_seconds() / 3600

# App
app = dash.Dash(__name__)
app.title = "Dashboard de NFs"

app.layout = html.Div([
    html.H1("Dashboard de Indicadores de NFs", style={"textAlign": "center"}),

    dcc.Graph(
        figure=go.Figure(data=[
            go.Bar(name='Tempo Total (h)', x=df['NF'], y=df['Tempo Total (h)'], marker_color='blue'),
            go.Bar(name='Adequação (h)', x=df['NF'], y=df['Adequação (h)'], marker_color='orange'),
            go.Bar(name='Amostragem (h)', x=df['NF'], y=df['Amostragem (h)'], marker_color='green')
        ]).update_layout(
            barmode='group',
            title='Comparativo de Tempos por NF',
            xaxis_title='NF',
            yaxis_title='Tempo (horas)',
            legend_title='Fase'
        )
    ),

    html.H2("Tabela de Dados"),
    dash_table.DataTable(
        data=df[['NF', 'Qtd Unidades', 'Tempo Total (h)', 'Adequação (h)', 'Amostragem (h)', 'Produtividade por Pessoa']].round(2).to_dict('records'),
        columns=[{"name": i, "id": i} for i in ['NF', 'Qtd Unidades', 'Tempo Total (h)', 'Adequação (h)', 'Amostragem (h)', 'Produtividade por Pessoa']],
        style_table={'overflowX': 'auto'},
        style_cell={'textAlign': 'center'},
        style_header={'fontWeight': 'bold'},
    )
])

if __name__ == '__main__':
    app.run_server(debug=True)
Reasons:
  • Blacklisted phrase (1): de Dados
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30901313

79680772

Date: 2025-06-26 15:35:43
Score: 2.5
Natty:
Report link

Nevermind, I found the answer : Load dataset from "R" package using data(), assign it directly to a variable?

Simply add this to global.R :

getdata <- function(...)
{
  e <- new.env()
  name <- data(..., envir = e)[1]
  e[[name]]
}

mydata <- getdata("mydata")

Works perfectly !

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

79680766

Date: 2025-06-26 15:32:42
Score: 1
Natty:
Report link

try some tips below and tell me if that works

Restart your computer and relaunch the project

This might seem basic, but a simple restart of your computer and a relaunch of your Flutter project can sometimes resolve temporary issues related to the development environment.Try also to upgrade flutter with : flutter upgrade.

Delete the android folder and rebuild the project (if the project isn't too advanced)

If the first step doesn't work and your project isn't overly complex (meaning you haven't made deep Android-specific modifications), you can try deleting the android folder at the root of your Flutter project.

After deleting it, open your terminal in your project's directory and run the following command:

flutter create .

It will recreate the android folder

Provide more details about the error

If none of the above solutions work, we'll need more information to diagnose the problem. Could you please:

Copy and paste the full error message you're getting in your terminal or IDE.

Indicate the Flutter version you're using (flutter --version).

Specify any recent changes you might have made to your project or environment.

This additional information will help us pinpoint the exact cause of the build failure.

Thanks !

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): help us
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nistroy

79680740

Date: 2025-06-26 15:10:36
Score: 2.5
Natty:
Report link

That means that if you define in the child an execution with different ID from the parent one, it wont inherite the Goals and configuration of the execution in the parent pom. You will instead have 2 executions in the child.

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

79680739

Date: 2025-06-26 15:10:36
Score: 3
Natty:
Report link

I’ve created a library that does what you’re looking for: https://github.com/lexa-diky/ktor-openapi-validator. It’s still in the early stages, but it runs smoothly on my company’s projects. Feel free to suggest any improvements!

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

79680738

Date: 2025-06-26 15:08:36
Score: 2
Natty:
Report link

My screenshot (Figma edited) was not validated for any sizes showed on the documentation for iPhone. But I missed one thing : You also have to remove transparency !

Do it directly on your Mac or use an online tool like https://onlinepngtools.com/remove-alpha-channel-from-png

The size working for me for iPhone was 1320 x 2688 with a PNG file.

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

79680737

Date: 2025-06-26 15:08:36
Score: 2.5
Natty:
Report link

Your code is correct. You need to assign an RBAC role to your authenticated user against an AI Foundry project. It has to be Cognitive Services Contributor or Cognitive Services OpenAI Contributor.

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

79680736

Date: 2025-06-26 15:07:36
Score: 1.5
Natty:
Report link

Good improvement on the tax logic!

One thing to note for anyone working on salary calculators: real-world tax systems (like in Italy or Germany) include multiple layers like progressive brackets, social contributions, and sometimes regional taxes. So while this kind of flat logic is great for learning, a production version needs a bit more complexity.

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

79680727

Date: 2025-06-26 15:01:34
Score: 2.5
Natty:
Report link

Having this issue and none of the steps so far worked. The web host was able to test and confirm the site is working elsewhere. Error is 403 Forbidden


nginx

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

79680725

Date: 2025-06-26 15:00:34
Score: 3
Natty:
Report link

When performing a local deployment with Deployment Units, make sure to set the “Include GAM Backoffice” option.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: ealmeida

79680708

Date: 2025-06-26 14:50:30
Score: 0.5
Natty:
Report link

The accepted answer doesn't account for AM/PM time strings. For this, ensure the HH in the format string are capitalized which denotes an hour range between 0 and 23.

const d = dayjs(dd).add(1, "day").format("YYYY-MM-DDTHH:mm")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Keegan Teetaert

79680707

Date: 2025-06-26 14:49:30
Score: 0.5
Natty:
Report link

To resolve the issue with the Follow Up Boss pixel not working on your WordPress site via WPCode, follow these key steps:

1. Verify WPCode Placement

Ensure the script is added to the Site-Wide Header section in WPCode with priority set to 10. If it doesn’t work, try reducing the priority to 1 or 5 to load it earlier in the <head> tag.

2. Check Page Source

Open your site in a browser and view the page source (Ctrl+U). Look for this line:

<script src="https://widgetbe.com/agent.js" async></script>

If it's missing, the script isn't being injected—confirm that the WPCode snippet is active and set to load site-wide.

3. Use Browser Developer Tools

Open Developer Tools → Network tab → refresh the page. Filter by “Script” and check if agent.js is being loaded. Also, check the Console tab for JavaScript errors.

4. Try Manual Placement

If WPCode fails, place the script directly in your theme’s header.php just before the </head> tag. Use a child theme to prevent it from being overwritten during updates.

5. Disable Conflicting Plugins

Temporarily disable any caching, firewall, or optimization plugins, as they might block external scripts. After changes, clear all caches.

6. Confirm Tracking ID

Double-check the ID in the script:

window.widgetTracker("create", "WT-MEUEPSGZ");

Ensure it matches what Follow Up Boss provided.

7. Test in Private Mode

Use incognito or another browser to ensure it's not a caching or browser extension issue.

8. Optional: Use Google Tag Manager

If script injection still fails, consider adding the code via Google Tag Manager, which offers more control and reliability.

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

79680704

Date: 2025-06-26 14:48:29
Score: 0.5
Natty:
Report link

I was able to solve the problem. I knew that the iOS app is built remotely using the iOS Simulator on the Mac. So, I thought about a version mismatch and checked what iOS Simulator was installed on the Mac. It was the latest one.

I installed every single iOS Simulator that was offered by XCode for download and then it worked :)

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: BeRo

79680702

Date: 2025-06-26 14:45:28
Score: 4
Natty: 4
Report link

this answer save my live, good solution

https://kashanahmad.me/blog/ionic-fix-streched-splash-screen-on-android/

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

79680699

Date: 2025-06-26 14:44:28
Score: 1.5
Natty:
Report link

You can try COMMAND_EXPAND_LISTS in the add_custom_command command, it was introduced in CMake 3.8 and will expand the lists in the COMMAND argument.

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

79680690

Date: 2025-06-26 14:40:26
Score: 1.5
Natty:
Report link

npm error code ENOENT

npm error syscall open

npm error path C:\Users\user\Downloads\Event_organizer\package.json

npm error errno -4058

npm error enoent Could not read package.json: Error: ENOENT: no such file or directory, open 'C:\Users\user\Downloads\Event_organizer\package.json'

npm error enoent This is related to npm not being able to find a file.

npm error enoent

npm error A complete log of this run can be found in: C:\Users\user\AppData\Local\npm-cache

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

79680687

Date: 2025-06-26 14:38:26
Score: 1
Natty:
Report link

Write-through and Write-back are two cache writing policies.

Write-back uses a dirty bit to track changes, while write-through does not. Write-through is ideal for systems where simplicity and consistency matter; write-back is better when performance is the priority.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md. Farid Hossen Rehad