79163772

Date: 2024-11-06 18:15:40
Score: 4
Natty:
Report link

Complementig Andos answer on why to update apache-airflow-providers-fab https://github.com/apache/airflow/issues/43685

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

79163762

Date: 2024-11-06 18:12:39
Score: 1.5
Natty:
Report link

After remove the lines

"-framework",
"\"Reachability\""

of OTHER_LDFLAGS on ios/Runner.xcodeproj/project.pbxproj, now i'm able to run my project without problems.

if it doesnt work maybe you must also remove theReachabilitySwift line on HEADER_SEARCH_PATHS at the same file.

In my case, i use connectivity_plus package and it seems like it removed its dependency over reachability so its doesnt needed it anymore. Make sure you do that for all your schemas

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Diaz

79163758

Date: 2024-11-06 18:10:38
Score: 4
Natty:
Report link

do this {KEYdown[SHIFT]}{KEYdown[FN]}{KEYpress[F12]}

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rahul Bheke

79163755

Date: 2024-11-06 18:08:37
Score: 1.5
Natty:
Report link

I had the same problem, I tried to install from cmd as admin and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): I had the same
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nico Gilardoni

79163747

Date: 2024-11-06 18:05:37
Score: 0.5
Natty:
Report link

FFT processing really won't help. It may erase some of the directional scratches but what good is that gonna do? Right, not much. And it will introduce other artefacts. My recommendation: forget about FFT.

Input:

enter image description here

Spectrum with blanked-out areas (visualization, not the true data):

enter image description here

After inverse FFT:

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Christoph Rackwitz

79163739

Date: 2024-11-06 18:00:35
Score: 4
Natty: 4.5
Report link

You'll have to remove the Atlas Network Peering Connections, see instructions here: https://www.mongodb.com/docs/atlas/security-vpc-peering/#remove-an-service-network-peering-connection

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

79163721

Date: 2024-11-06 17:54:33
Score: 1.5
Natty:
Report link

Answer from Nov 2024: Remove this android:enableOnBackInvokedCallback="true" from your Manifest (application tags) and onBackPressed will work in regular way.

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

79163717

Date: 2024-11-06 17:53:33
Score: 1.5
Natty:
Report link

Here's a list of Android supported ABIs:

https://developer.android.com/ndk/guides/abis#sa

In summary, there are 4 general supported ABIs, but they can have sub-divisions...I guess you have to print the result of: System.getProperty("os.arch"); in order to know what's the response on a real cellphone.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ramiro G.M.

79163708

Date: 2024-11-06 17:50:32
Score: 3
Natty:
Report link

Is this close to what you need?

Something like this?

The code:

# Load packages
library(tidyverse)
library(ggplot2)

# Make some fake NMDS results:
sampsize <- 10
treatments <- c("start", "end", "1%", "4%")
treatment <- rep(treatments, each = sampsize)
nmds1means <- c(-0.3, 0, 0.3, 0.6)
nmds2means <- c(0.2, -0.7, -0.1, -0.4)
nmds1 <- sapply(nmds1means, FUN = function(x){rnorm(n = sampsize, mean = x, sd = 0.12)}) %>% as.vector
nmds2<- sapply(nmds2means, FUN = function(x){rnorm(n = sampsize, mean = x, sd = 0.2)}) %>% as.vector

df <- data.frame(treatment, nmds1, nmds2)

# Plot as "normal" NMDS plot:
ggplot(data = df, mapping = aes(x = nmds1, y = nmds2)) +
  geom_point()

# Prepare data for summarised NMDS plot:
df2 <- df %>%
  dplyr::group_by(treatment) %>%
  dplyr::summarise(nmds1_mean = mean(nmds1),
                   nmds1_se = sd(nmds1),
                   nmds2_mean = mean(nmds2),
                   nmds2_se = sd(nmds2))

# Plot summarised NMDS plot:
ggplot(data = df2, mapping = aes(x = nmds1_mean, y = nmds2_mean, shape = treatment)) +
  geom_point(size = 4) +
  scale_shape_manual(values = c(15, 16, 17, 18)) +
  geom_errorbar(mapping = aes(ymin = nmds2_mean - nmds2_se, ymax = nmds2_mean + nmds2_se)) +
  geom_errorbar(mapping = aes(xmin = nmds1_mean - nmds1_se, xmax = nmds1_mean + nmds1_se)) +
  lims(x = c(-1, 1), y = c(-1, 1)) +
  xlab("NMDS1") +
  ylab("NMDS2")
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Teodor

79163707

Date: 2024-11-06 17:50:32
Score: 1.5
Natty:
Report link

Ah, this works:

(dolist (dir (uiop:subdirectories "audio"))   
  (print (first (last (pathname-directory dir)))))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kflak

79163679

Date: 2024-11-06 17:38:30
Score: 1
Natty:
Report link

To avoid exception messages from crashed BackgroundService instances in the .NET console output (STDOUT), you can handle exceptions more gracefully by using one or more of the following techniques:

1**.Override ExecuteAsync in the BackgroundService:**

Override ExecuteAsync and wrap your background task in a try-catch block. This lets you catch exceptions without them bubbling up to STDOUT.

2.Set IHostLifetime to Null:

If the exception is unhandled and crashes the application, the default behavior of IHostLifetime (like ConsoleLifetime in a console app) can propagate the exception to STDOUT.

3.Suppress Unobserved Task Exceptions:

Sometimes, background services crash due to unobserved task exceptions.

4.Graceful Shutdown with Try-Catch:

Add try-catch around the shutdown code.

5.Logging and Custom Logger Configurations:

Consider logging exceptions using a logger instead of writing to STDOUT. Configure logging providers to direct messages to files or databases rather than the console.

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

79163672

Date: 2024-11-06 17:36:29
Score: 1
Natty:
Report link

After carefull investigation of the API documentation, I've arrived to the conclusion that there is no parameter that we can add to the changes.list endpoint to get the name or path for removed files.

Therefore, As I'm developing an app tha synces changes to a google drive account with the local file system, to be able to process the removal of files, I've ended up maintaining a dictionary with the fileId as the key, and the full path of each file as value. That way, each time a I get notified about a removed operation I know which phisical file it refers to and I'm able to delete it.

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

79163671

Date: 2024-11-06 17:36:29
Score: 3.5
Natty:
Report link

You should put await device.disableSynchronization(); before action that leads to Sync issue

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

79163669

Date: 2024-11-06 17:36:29
Score: 1.5
Natty:
Report link

Check for Incompatible Dependencies in Intellij's Dependency Tree

In Intelllij: Go to view -> Tool Windows -> Maven -> Dependencies and check if multiple versions of JUnit or Spring libraries are present.

If you find conflicting versions, try forcing specific versions in pom.xml

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

79163665

Date: 2024-11-06 17:34:28
Score: 2
Natty:
Report link

There are 3 places where this error could be thrown - the web application server (Kestrel), Azure Web Application Firewall, Azure APIM. As the web application that connects to the API is able to send this request and only the Postman requests are failing, I suspect this is due to Azure Web Application Firewall. Refer this article to modify the limits in WAF.

For controlling content length in APIM please refer this thread

Reasons:
  • Blacklisted phrase (1): this article
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shanmugam Sudalaimuthu

79163662

Date: 2024-11-06 17:32:28
Score: 1
Natty:
Report link

During assignment to ENV_VAR, add the '\' slash characters to escape the new lines '\n' and double quotes.

ENV_VAR="{\"example\": \"multi\\nline\\n\"}"
echo $ENV_VAR > example.json

Output

cat example.json 
{"example": "multi\nline\n"}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: slovelo

79163660

Date: 2024-11-06 17:31:27
Score: 1
Natty:
Report link

try

cd pods
git clone https://github.com/google/boringssl.git
cd ..
pod deintegrate
pod repo update
pod update
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hasan koç

79163659

Date: 2024-11-06 17:31:27
Score: 3.5
Natty:
Report link

I managed to get it working with a combination of afterTickToLabelConversion callback and the major option for ticks by adding a major tick in the callback which represents the latest value displayed on the X axis. For the code, please see my answer: https://stackoverflow.com/a/79163446/28101131

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: vladimirool

79163658

Date: 2024-11-06 17:31:27
Score: 1
Natty:
Report link

I don't know if this will work for you, based on your explanation, I wanted to give you a possible solution.

For better visualization, just color the divs, that will give you a general idea.

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

79163635

Date: 2024-11-06 17:26:25
Score: 1
Natty:
Report link

dialogClass option in jQuery UI Dialog has been deprecated in favor of the classes option.

Here's how to use the classes option to add a custom class to your dialog: JavaScript

$( "#dialog" ).dialog({
  classes: {
    "ui-dialog": "my-dialog-class"
  }
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chad Rainey

79163631

Date: 2024-11-06 17:25:25
Score: 2.5
Natty:
Report link

I just read from

older version with warning message with textsize

which says that pillow==9.5.0 still supports textsize.
Looks OK for me now.
But they said you will get a warning message for using outdated pillow.

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

79163628

Date: 2024-11-06 17:25:25
Score: 0.5
Natty:
Report link

I've gotten through this finally, yay!

I have been building by modifying the Makefile.PL and using make and make install. I no longer remember exactly how I created the original _wrap.cxx file, it most certainly would have been via swig.

Regardless, I simply did a swig -perl on the existing .i file, and this time it created a .c wrapper. I hacked the Makefile to replace the .cxx extension with .c, and we're now past the Perl error, we're getting into the C code.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mike Lempriere

79163614

Date: 2024-11-06 17:22:24
Score: 1
Natty:
Report link

For a dockerfile like:

FROM alpine:latest
ENV VAR='{"example": "multi\nline\n"}'
RUN apk add jq

something like:

$ echo "${VAR}" | jq -c . > example.json
$ cat example.json 
{"example":"multi\nline\n"}

would work. The -c just disables the pretty print jq does by default.

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

79163613

Date: 2024-11-06 17:22:22
Score: 6 🚩
Natty: 5.5
Report link

How to mouse focus on specific line after scroll ? without clicking on mouse ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: angga

79163595

Date: 2024-11-06 17:16:19
Score: 1.5
Natty:
Report link

Why not do

torch.tensor(np.random.default_rng().choice(max_value, size=(num_samples,), replace=False))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): Why not
  • Low reputation (0.5):
Posted by: Fırat Kıyak

79163594

Date: 2024-11-06 17:16:19
Score: 3.5
Natty:
Report link

Warning ⚠️ by cyber security

Your will give a warning ⚠️ don't spread fake information ℹ️ Otherwise our team will be get hard ways Suspense:- don't call be anywhere without any reason Complaint:- *******726

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Cyber security

79163567

Date: 2024-11-06 17:09:18
Score: 2
Natty:
Report link

It worked for me when Disable SSL verification on Git globally and pull from my branch.

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

79163533

Date: 2024-11-06 17:01:15
Score: 4.5
Natty: 7
Report link

This works for me for a SPA at /my-app, but if my webapp defines a route for /my-app/newpage, that gives a 404. Is there something I need to do to make that work?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: billp

79163532

Date: 2024-11-06 17:01:14
Score: 1
Natty:
Report link

Here is my solution.

def show_time_of_pid(line):
  pattern = r"(\w+ \d [\d:]+)([\S ]+)\[(\d+)\]"
  result = re.search(pattern, line)
  return "{} pid:{}".format(result.group(1), result.group(3))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: A K

79163527

Date: 2024-11-06 17:00:14
Score: 1.5
Natty:
Report link

You will need to add maven-processor-plugin to the pom.xml

To ensure the generated classes are created before compilation. This plugin runs annotation processors like those required for Lombok and Hibernate JPA model generation during the generate-sources phase.

https://mvnrepository.com/artifact/org.bsc.maven/maven-processor-plugin[maven-processor-plugin]

Reasons:
  • Blacklisted phrase (1): This plugin
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Oussama Makhlouk

79163524

Date: 2024-11-06 17:00:14
Score: 1.5
Natty:
Report link

I am a developer and also seeking for how to implement password reset logic but found nothing. So finally by reading so many docs and learning about new technologies I have finally implemented password reset logic. I have create a blog in which I talked in depth about logic behind password reset. Right from flow chart to proper working implementation. I have used latest technologies like NextJS 15, jsonwebtoken, nodemailer, bcryptjs, MongoDB atlas. Check out my article :- link

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

79163516

Date: 2024-11-06 16:57:13
Score: 0.5
Natty:
Report link

To set "equal height of elements inside grid item with CSS grid layout", just set the height of the direct children of the grid to 100%. After that is done, you can set the height of inner elements (inside the children) as you see fit.

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

79163515

Date: 2024-11-06 16:57:13
Score: 1.5
Natty:
Report link

I came across this post from Google, and although it's old, it does cover some key concepts that I have seen users struggle with. Providing people with a fully featured WebRTC Phone, rather than a script library was the inspiration for Starting Siperb. Then, also providing people with the tools they need to connect this Phone to any Asterisk box (even and older one) or a hosted one was a natural next step. If you are not up for the challenge of sip.js or sipml5, just head over to https://www.siperb.com/

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

79163514

Date: 2024-11-06 16:57:13
Score: 1
Natty:
Report link

Adding: proxy_set_header Host $host:1337; worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jupe

79163504

Date: 2024-11-06 16:51:12
Score: 3
Natty:
Report link

As mentioned in following article: https://www.freecodecamp.org/news/how-to-update-npm-dependencies/ , npm update doesn't update to a major breaking-changes version. I don't know if it's your case, but it is something that you could check

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

79163502

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

To access timestamp info you should first send message without any cmsg structure, and then extract it from socket error buffer using recvmsg call with MSG_ERRQUEUE flag specified https://docs.kernel.org/networking/timestamping.html#transmit-timestamps-with-msg-errqueue

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

79163495

Date: 2024-11-06 16:47:11
Score: 3.5
Natty:
Report link
File /r "C:\Program Files\YoureCurrentProgramName\*.*"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ririto Ninigaya

79163489

Date: 2024-11-06 16:46:10
Score: 1.5
Natty:
Report link

So, to remedy this situation, I moved the Error Window to another monitor. Kind of stupid to not allow you to "hide" it but this works

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

79163486

Date: 2024-11-06 16:45:10
Score: 1.5
Natty:
Report link

you could set the count as 0 in the begining of the function

def bubbleSort(arr):
    swap.calls = 0

and the decorator on the swap


@swapCount
def swaparr):
    pass
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ivans

79163484

Date: 2024-11-06 16:45:10
Score: 2
Natty:
Report link

I'm adding an answer from late 2024 for VSCode. I realise the question was about old Visual Studio, but when googling the same for vscode it is this page that is the most popular result.

In VSCode the approach is different. You have to install one of the plugins for this reason. No native ways to use another compare/merge tool definitely, as I have found in many sources. I tried a couple of plugins and Meld Diff was exactly what I needed. It works extremely well for me!

The setup for Meld Diff is very simple:

  1. Install the plugin
  2. Go to settings, type "meld-diff.diffCommand" in search field and insert path to your comparison tool into the result setting. (The screenshot shows the same setting among the others, so that you clearly see the arguments are automatically configured correctly in the other fields.) Meld Diff settings to launch Araxis Merge

The path for MacOS should be /Applications/Araxis Merge.app/Contents/Utilities/compare. For Windows the path should be to the Araxis' ConsoleCompare.exe file (have seen this in their docs) but didn't check it myself.

And that's it! You can now go and use it right away.

You can right-click a file in the Source Control panel and use the respective command "Open with meld diff..." and so on. Or you can select a couple of files in VSCode's Explorer panel and run similar command (mentioning "meld") to compare them. Same for folders.

NOTE: Merge functionality didn't work for me (when selecting 3 files), but I don't need it too much so didn't dig into that matter. If anyone wants to invest into investigating further - please share the feedback here, too!

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Denis P

79163481

Date: 2024-11-06 16:44:10
Score: 0.5
Natty:
Report link

Your GetFormula function expects a range.

Function GetFormula(Target As Range) As String
    GetFormula = Target.Formula
End Function

But when you call it, you pass an address/a string:

c.Formula = Eval(GetFormula(c.Adress))

So, change this line to:

c.Formula = Eval(GetFormula(c))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Abdallah El-Yaddak

79163476

Date: 2024-11-06 16:43:10
Score: 1
Natty:
Report link

What is the problem in this programm :

"a = print(input("entrez votre note"))

b = print(input("entrez votre note"))

c = print(input("entrez votre note"))

d = print(input("entrez votre note"))

e = print(input("entrez votre note"))

if (a+b+c+d+e)/5<10:

print("Redouble ! ")

if (a+b+c+d+e)/5>=10 and (a+b+c+d+e)/5<12:

print("Passable ")

if (a+b+c+d+e)/5>=12 and (a+b+c+d+e)/5<14:

print("Assez bien ")

if (a+b+c+d+e)/5>=14 and (a+b+c+d+e)/5<16:

print("Bien ")

if (a+b+c+d+e)/5>=16 and (a+b+c+d+e)/5<18:

print("Très bien ")

if (a+b+c+d+e)/5>=18:

print("Excellent ")"
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What is the
  • Low reputation (1):
Posted by: Ray

79163474

Date: 2024-11-06 16:42:09
Score: 3
Natty:
Report link

Solved it by adding a div in the root component of my app, that wraps everything.

<div id="mfe-container">
   ...everything that was in the app.component.html before...
</div>

I also use my own theme now (using a prebuilt theme was meant as temporary solution anyway). Instead of including the theme in the html element, I include it for the wrapper element from above in my styles.scss

@use '@angular/material' as mat;

// my custom theme file
@use './m3-theme';

// The core mixin must be included exactly once for your application, even if you define multiple themes. 
// Including the core mixin multiple times will result in duplicate CSS in your application.
// https://material.angular.io/guide/theming#the-core-mixin
@include mat.core();

#mfe-container {
  @include mat.all-component-themes(m3-theme.$light-theme);
}

I don't know how to solve this for a prebuilt theme (as that defines the variables for the element). If my solution inspires you to solve it without custom theme, please add it as answer or comment as well. In may case I planned to add a custom theme anyway. If this solution inspires you to solve the same

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (2): I don't know how to solve
  • RegEx Blacklisted phrase (2): know how to solve
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: andymel

79163470

Date: 2024-11-06 16:41:09
Score: 2
Natty:
Report link

Make sure you are not in a venv, as by default it does not inherit the system env variables that you probably have set.

So, try installing it system-wide, or try adding the env variables definitions to the venv's Script file.

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

79163449

Date: 2024-11-06 16:34:07
Score: 1
Natty:
Report link

You can set maxWidth to false if you need it for a specific container.

<Container maxWidth={false} sx={{ width: "100%" }}>{children}</Container>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eskil Mjelva Saatvedt

79163447

Date: 2024-11-06 16:34:07
Score: 1
Natty:
Report link

If you have that problem with an angular elements based microfrontend with ViewEncapsulation.ShadowDom set you maybe have the same problem as I had:

Why it did not work
My dive into the code showed that

As the shadow DOM is a border between the CSS of the host page and the CSS of the Microfrontend/Webcomponent, everything inside that shadow-root does not have access to css outside of the shadow-root (defining something for the tag in a tag inside the shadow-root does not work).

My Solution
I added a div in the root component of my app, that wraps everything.

<div id="mfe-container">
   ...everything that was in the app.component.html before...
</div>

Instead of including the theme in the html element, I include it in that wrapper element in my styles.scss

@use '@angular/material' as mat;

// my custom theme file
@use './m3-theme';

// The core mixin must be included exactly once for your application, even if you define multiple themes. 
// Including the core mixin multiple times will result in duplicate CSS in your application.
// https://material.angular.io/guide/theming#the-core-mixin
@include mat.core();

#mfe-container {
  @include mat.all-component-themes(m3-theme.$light-theme);
}
Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • High reputation (-1):
Posted by: andymel

79163434

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

I've solved this by adding.htaccess file in htdocs folder of XAMPP. Here is the code:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$ [NC]
RewriteCond %{REQUEST_URI} ^/addonfolder/(.*)$
RewriteRule ^(.*)$ - [L,R=404]

Now domain.com/sub.domain.com has no access to sub.domain.com folder in htdocs, it retunrs 404 error.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nazmul Hasan Pias

79163428

Date: 2024-11-06 16:26:05
Score: 4.5
Natty:
Report link

https://github.com/onurkanbakirci/trendsgit is the ultimate tool for tracking trending repositories over time.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (0.5):
Posted by: Onurkan Bakırcı

79163425

Date: 2024-11-06 16:25:04
Score: 4.5
Natty:
Report link

https://github.com/onurkanbakirci/trendsgit is the ultimate tool for tracking trending repositories over time.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (0.5):
Posted by: Onurkan Bakırcı

79163421

Date: 2024-11-06 16:25:04
Score: 4.5
Natty:
Report link

https://github.com/onurkanbakirci/trendsgit is the ultimate tool for tracking trending repositories over time.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (0.5):
Posted by: Onurkan Bakırcı

79163416

Date: 2024-11-06 16:24:03
Score: 1.5
Natty:
Report link

Here is how we can do this

k = ['name', 'age', 'city']    
v = ('Zubair', 22, 'Pakistan') 

d = dict(zip(k, v))

print(f"Name\t{d['name']}")
print(f"Age\t\t{d['age']}")
print(f"City\t{d['city']}")

enter image description here

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

79163414

Date: 2024-11-06 16:24:03
Score: 3
Natty:
Report link

Use https://github.com/yoori/flare-bypasser - run as docker get target site cookies from it, and use requests with these cookies after. This works stable for me

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: юрий кузнецов

79163413

Date: 2024-11-06 16:24:03
Score: 2
Natty:
Report link

I had this issue when calling a Blazor component and supplying an EventCallback.

The issue arose because I had defined the same method twice.

Removing one of them solved the issue.

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

79163412

Date: 2024-11-06 16:24:03
Score: 2.5
Natty:
Report link

Sorry for the inconvenience. After searching all day the solution came five minutes after I posted the message here.

The problem was the DNS configuration. We had opened the ports in the wrong DNS zone.

As I may not be the only one to have this symptom it may still be useful.

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

79163407

Date: 2024-11-06 16:23:03
Score: 2
Natty:
Report link
request.Order.FirstOrDefault(x => x.Name == "From")?.Name = "FromDate";
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: alex

79163404

Date: 2024-11-06 16:22:02
Score: 1.5
Natty:
Report link

If you set np.seterr(all='ignore') or np.seterr(under='ignore') numpy is smart enough to set the result to zero without raising any error.

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

79163403

Date: 2024-11-06 16:22:02
Score: 3.5
Natty:
Report link

Found the issue!

It was because drawing the texture onto the screen draws on top of the gui. I had to separate the functions out into a "DrawScreenTexture()" function and then just a "SwapWindow()" function. Code now looks like this.

ImGui_ImplOpenGL3_NewFrame();
ImGui_ImplSDL2_NewFrame();
ImGui::NewFrame();

ImGui::Begin("Material Controls");
ImGui::Text("Hello World!");
ImGui::End();

_myFramework.DrawScreenTexture();

ImGui::Render();
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());

_myFramework.SwapWindow();

Also shout out to whoever downvoted my question and to whoever edited my question to take any kind of personality out much appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: James Comer

79163401

Date: 2024-11-06 16:20:02
Score: 1
Natty:
Report link

Many years passed, I am (hopefully) wiser now and can give some advice on how to deal with the problem described above.

First of all, 'removing last significant digit' is not going to help at all. It makes problem worse. Say, you got want to round to remove last three digits. If your start with numbers a=1.499 and b=1.501 you end up with a'=1 and b'=2. So, although such rounding can 'smooth out' small discrepancies it will also significantly increase some of them.

The approach, which seems to work instead, is using algorithms, like Kahan summation to reduce numerical error. It works particularly well, if you want to find a sum of elements in, say vector. Straightforward summation will give you a result, which depends on order of elements in the vector. Using Kahan summation will almost always give you the same answer.

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

79163394

Date: 2024-11-06 16:18:59
Score: 8 🚩
Natty: 3.5
Report link

... အကူအညီစင်တာတွင် သတ်မှတ်ထားသည့်

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: user23373022

79163390

Date: 2024-11-06 16:16:58
Score: 5
Natty:
Report link

I found this question here first after having the same issue then digging into the github issues for expo I found this which allowed me to resolve it https://github.com/expo/expo/issues/30225

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Zachery Studer

79163374

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

It's going to sound silly but what works for me was switching terminals, I was running it in Git Bash but I switched to Windows CMD and it worked

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: alentin

79163365

Date: 2024-11-06 16:10:56
Score: 1.5
Natty:
Report link

Check out a more simplified solution.

for i in range(200): # from the question x is less than 200.
    if (i % 5 == 2) and (i % 6 == 3) and (i % 7 == 2):
        print(i)
        break

Where we have used break to avoid further unnecessary computation after the number is found.

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

79163361

Date: 2024-11-06 16:09:56
Score: 5
Natty: 5
Report link

https://www.youtube.com/watch?v=eJ3N-mLxuTw Watch this, I'm sure you'll get it done :)

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Theo

79163323

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

For React Native, I use ViewProps['style']

E.g.:

export type MyComponentProps = {
  style?: ViewProps['style'];
  ...
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Samueljh1

79163319

Date: 2024-11-06 15:55:51
Score: 3
Natty:
Report link

Not enough reputation to comment on Gussoh's answer, so I have to write my solution (which is based on his) here: I had to do it like this:

mosquitto_sub -h 192.168.1.20 -t "#" -v --retained-only | while read line; do echo "$line" | awk '{print $1}'; done > retained.txt

<retained.txt xargs -I % mosquitto_pub -h 192.168.1.20 -t % -n -r -d

You can probably do it without using a file here, but this way I could check if everything was included.

Reasons:
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): enough reputation to comment
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: fredlcore

79163316

Date: 2024-11-06 15:54:51
Score: 4.5
Natty:
Report link

check out first line "// SPDX-License-Identifier: MIT`", is the last character "`" correct?

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

79163314

Date: 2024-11-06 15:54:51
Score: 0.5
Natty:
Report link

You could store the root directory of the project at the top of the script using the function find_rstudio_root_file() in package rprojroot:

library(rprojroot)
root.dir = find_rstudio_root_file()

setwd("other_dir") 
# some code working in other dir
setwd(root.dir) 
# come back to the root of the project
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alf Pascu

79163311

Date: 2024-11-06 15:53:50
Score: 2.5
Natty:
Report link

Solved.

I had named the service "backend" in docker-compose.yml and still had the old name (in my case "testapp") in docker-compose.override.yml. Matching the service names in these two files solved the problem for me.

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

79163306

Date: 2024-11-06 15:51:50
Score: 0.5
Natty:
Report link

Last month I needed a PDF reader (and later also a writer) so I created this PDF libraries comparison table.
So, I decided to share it here, since it seems it is on demand :)

pdf-libraries-for-delphi


If you know other good PDF library send its details (platform, price, read/write, etc) so we can make an informed decision.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: IceCold

79163302

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

For me, gradle version was the issue. version 7.5 already installed on machine, so used the same 7.5 in new project. Other versions will not work.

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

79163283

Date: 2024-11-06 15:44:48
Score: 1
Natty:
Report link

Your initial approach is almost there, it needs a key added in the object to yield the desired result:

SELECT species, array::group({id: id, age: age}) AS members FROM animal GROUP BY species;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TheUnknown

79163265

Date: 2024-11-06 15:36:46
Score: 0.5
Natty:
Report link

there we are

type UserWithPost = GetUser & { posts: GetPost[] };
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: xargr

79163264

Date: 2024-11-06 15:35:46
Score: 1
Natty:
Report link

For PHPunit 11.0 none of the other answers helped me, but there is a flag at the docs that solved the issue for me:

./vendor/bin/phpunit --display-phpunit-deprecations
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chubby Cows

79163258

Date: 2024-11-06 15:34:43
Score: 9 🚩
Natty: 5.5
Report link

I have the same issue, I added the number to an outbound queue but am still unable to make calls, would you have any advice?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28165066

79163255

Date: 2024-11-06 15:33:43
Score: 3.5
Natty:
Report link

Não precisa do "videoUploadOnPasses: true,", se estiver usando a versão 13.0.0 do Cypress, pois não existe mais.

  video: true,
  videoCompression: 32,
Reasons:
  • Blacklisted phrase (1): Não
  • Blacklisted phrase (1): não
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Esmeralda Almeiida

79163244

Date: 2024-11-06 15:29:42
Score: 2
Natty:
Report link

For me it works this shortcuts by default in Intellij:

WIN: Alt+F12

MACOS: option+fn+F12.

Probably in MACOS you don't pay attention to fn to switch with F12 key

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

79163238

Date: 2024-11-06 15:29:42
Score: 0.5
Natty:
Report link

Solution: Don't use blue dropdown button(autofill), manually type 'LaunchScreen.storyboard'

Reasons:
  • Whitelisted phrase (-2): Solution:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Denis Rybkin

79163235

Date: 2024-11-06 15:28:41
Score: 2
Natty:
Report link

Haz un trazado y echo de los parametros tambien prueba si tienes permisos ya que cuando cambias de cuenta como administrador reinicia las variables %0%+^ hay varias y el set comando que te muestra el medio ambiente y si realmente esta ubicado en el directorio envia los errores a > y >> para que los puedas ver.

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

79163224

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

So it turns out, indeed you can. You can just do firebase init and create a new project with python which will not interfere(at least on my end it did not). It is important that a venv folder be created and you activate venv.

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

79163210

Date: 2024-11-06 15:21:37
Score: 7 🚩
Natty: 5.5
Report link

I am trying to create an interceptor with its own annotation but I want to know if it is possible to limit it only to methods and use:

@Target(ElementType.METHOD) instead of @Target({ElementType.METHOD, ElementType.TYPE}).

any ideas for this ?

Reasons:
  • Blacklisted phrase (1): I want to know
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): any ideas
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Asiu

79163196

Date: 2024-11-06 15:17:35
Score: 1
Natty:
Report link
Use a value/name on the button.

View

    <form action="/url" method="post">
    <input name="some_field" value="1">

    <button type="submit" name="form1">Submit 2</button>
    </form>

<form action="/url" method="post">
    <input name="some_field" value="1">

    <button type="submit" name="form2">Submit 2</button>
</form>


Controller

    if ($request->has('form1') {
    return 'form1 was submitted';
}

if ($request->has('form2') {
    return 'form2 was submitted';
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Investigator

79163193

Date: 2024-11-06 15:16:35
Score: 0.5
Natty:
Report link

I think you have to do something like this in your conftest.py (or somewhere) so first you create a new loop and then set it with asyncio.

@pytest.fixture(scope='session')
def event_loop():
    loop = asyncio.new_event_loop()
    asyncio.set_event_loop(loop)
    yield loop
    loop.close()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Olsi Hoxha

79163190

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

If yo're working with IDEs, just make sure you pip install scipy

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Salad.Guyo

79163188

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

Outputs/values expected to be set after operation are not shown in the templates documentation, as this one: https://learn.microsoft.com/en-us/azure/templates/microsoft.managedidentity/userassignedidentities?pivots=deployment-language-bicep.

Image of template headers

They are shown in the response section of the REST API documentation though: Screenshot from API

I don't know if it's fully accurate, but I took some samples and it seems correct to get a grasp of what you can expect to be set after the operation. There's no direct link between the template and API docs, so you have to look up the API docs for each operation you're interested in.

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

79163187

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

I have found the error. It was in the script ‘node_modules/swiper/swiper-bundle.min.js’ I have now completely removed swiper from my project. Now everything works again.

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

79163184

Date: 2024-11-06 15:13:34
Score: 1
Natty:
Report link

Thanks to Jimi for his comment to use the CopyTo() method instead! New function:

Public Function Decompress(ByVal bSource As Byte()) As MemoryStream ' Byte()
    Dim inStream As New MemoryStream(bSource)
    Dim gzip As New GZipStream(inStream, CompressionMode.Decompress)
    Dim outStream As New MemoryStream()
    gzip.CopyTo(outStream)
    Return outStream
End Function
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Dan H.

79163175

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

It looks like you're missing a ESlint configuration file. You need to create one in the project root.

There are instructions in the eslint docs on how to do that: https://eslint.org/docs/latest/use/configure/configuration-files

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

79163167

Date: 2024-11-06 15:07:32
Score: 1
Natty:
Report link

To run your application, into the physical iOS device using VS Code follow the steps below.

  1. Create a new Identifier for your application.
  2. Create a new App with the newly created Bundle ID.
  3. Add your created Bundle ID in your project csproj file ApplicationId.
  4. Now create a new Certificate and install it in your MAC.
  5. Create a new Provisioning Profile and choose the Certificate that you previously created.
  6. Download the created Provisioning Profile and install it in the MAC.
  7. Now run your project using VS Code.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ravikumar Venkatesan

79163161

Date: 2024-11-06 15:06:32
Score: 4
Natty:
Report link

I search using native box in GitLab, like this:

enter image description here

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

79163160

Date: 2024-11-06 15:05:31
Score: 0.5
Natty:
Report link

The type inference comes from const Stack = createStackNavigator();.

I suspect you need to pass your RootStackParamList type in like so: const Stack = createStackNavigator<RootStackParamList>();

Please see the docs, they are quite helpful: https://reactnavigation.org/docs/typescript/

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

79163159

Date: 2024-11-06 15:05:31
Score: 1.5
Natty:
Report link

I had the same issue with a Laravel 11 / Livewire 3 project and Tenancy for Laravel. To solve the problem, a colleague suggested that I comment out Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper::class in the tenancy.php file, under the 'bootstrappers' key. I hope this idea helps you!

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

79163153

Date: 2024-11-06 15:04:31
Score: 1.5
Natty:
Report link

I forgot to use git init and this error occured.

$ git init Initialized empty Git repository in C:/Users/33/PythonIdeas/.git/

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

79163150

Date: 2024-11-06 15:03:30
Score: 1
Natty:
Report link

I downloaded newer version of Eclipse and this error was showing up when using Maven, although I put JDK 17 where I could. For me worked something similar to above answer.

I had independent Maven which was using JAVA_HOME (on 17) outside of Eclipse, correctly. I added it to the list of Mavens and choose it, and it used Java 17 when used from Eclipse. After one use, even embedded Maven started to use Java 17. Embedded Maven was probably taking Java 15 from the previous Eclipse or something.

Mavens are in Eclipse on: Window - Preferences - Maven - Installations, like for the whole, not for one project.

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

79163143

Date: 2024-11-06 15:01:30
Score: 3
Natty:
Report link

Try incorporating orderby into main SQL string eightspdSQL.

cassettes_8spd.speed = ? ORDER BY cassettes_8spd.brand ASC

try doing this after from casesettes_8spd distributor table

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

79163138

Date: 2024-11-06 14:59:29
Score: 3.5
Natty:
Report link

Seems like I needed to take the latest 'glm' branch from the https://github.com/g-truc/glm repository, which had a pull request before addressing this exact problem with the constexpr values of the matrices.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Giorgos Tsolakidis

79163135

Date: 2024-11-06 14:58:27
Score: 6 🚩
Natty: 5
Report link

Ok, my situation is this, I have a Windows installer and I want to automate the first part of the installation (the first few screens where you need to edit the disk size, etc.) because I need to re-install 40 more laptops and go one by one is a bit time loss...

I have the script to erase the disk but I still need to click (or use the keyboard) on each screen of the process. I want to use a script to send keystrokes and I just came to this thread, so my situation:

Because my first starting point of the process is a CMD, I need to move out from the console or the commands will affect at the CMD screen instead the installation screens, so I tried this combination. script.vbs set shell = CreateObject("WScript.Shell"):shell.SendKeys "%{TAB}" & script.vbs

I've read the MS UI help/key declaration guide where it says the ALT key is %, but the combination "%{TAB}" dind not jump made the Alt+Tab combination. Im not really sure what im doing wrong but also im far from be a good scrpit person (It is something that usually never do, o just simple task) It is anyone who can point me in the right direction about what could be the error, or what could be the right command?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): what could be
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: gOto

79163130

Date: 2024-11-06 14:58:27
Score: 2.5
Natty:
Report link

You failed to pass the event object to your handleSelect function. Example: onChange={(event)=>{handleSelect(event)} then at your function: handleSelect (event){ setUserName(event.target.value) }

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

79163125

Date: 2024-11-06 14:57:26
Score: 2
Natty:
Report link

NDK is needed for your library to compile C++ and C code and use it. After you publish your library NDK is no longer needed as the code is already compiled into bundle. All you need to worry is supporting minSDK and compileSDK because that affect your library users

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

79163122

Date: 2024-11-06 14:56:26
Score: 3.5
Natty:
Report link

Just simply build with --split-per-abi flag.

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

79163117

Date: 2024-11-06 14:54:25
Score: 1
Natty:
Report link

I think we should stop pretending that we can build JSON REST APIs and just build a JSON API, without the REST. Or If it's a REST API, then do not send JSON bodies.

URL query params are not JS objects, AFAIK.

Then, the Browser is an HTML client, but you can embedded an http JS client that makes AJAX calls.

It's a mess.

So, POST /resources/search with a JSON body if that's makes sense to you and keep working on your project.

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