79261368

Date: 2024-12-07 20:40:16
Score: 1
Natty:
Report link

Turns out this question should be moved to Data Science or similar. The problem was the web scrape. Hidden HTML tags were breaking the indices. Since the array is built in so many places, from so many sources it's easiest, (not optimal) to fix it in situ ...

$a = is_string($a) ? trim(strip_tags($a)):$a;
$b = is_string($b) ? trim(strip_tags($b)):$b;
$c = is_string($c) ? trim(strip_tags($c)):$c;

//Associative indices now working as expected

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

79261367

Date: 2024-12-07 20:40:16
Score: 1
Natty:
Report link

I managed to fix this error by creating a ~/.bash_profile file and sourcing the nvs.sh script

~/.bash_profile

source ~/AppData/Local/nvs/nvs.sh
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lordofmax

79261365

Date: 2024-12-07 20:38:16
Score: 1.5
Natty:
Report link

It will return 403 with a empty response according to privacy preferences of target user.

If you try with your own profile after changing all privacy preferences to public, then you will get the expected response.

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

79261354

Date: 2024-12-07 20:33:14
Score: 1
Natty:
Report link

Heyy the problem is that on m1 or silicon based arch it need linux arch, but your docker is pulling the normal image of kafdrop, so one thing you can do pull the image built for m1

obsidiandynamics/kafdrop:4.0.3-SNAPSHOT

try this image instead of normal one and this will resolve

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: frankenstein

79261346

Date: 2024-12-07 20:28:14
Score: 1
Natty:
Report link

This blog post (https://jimgar.github.io/posts/vs-code-macos-r/post.html) presents a solution that resolved the '--nosave', '--no-restore', '--r-binary' error on my machine (mac) by adding an additional r.rterm.option list:

{
  "r.bracketedPaste": true,
  "r.rpath.mac": "/usr/local/bin/R",
  "r.rterm.mac": "/Library/Frameworks/Python.framework/Versions/3.11/bin/radian",
  "r.rterm.option": [
    "--no-save",
    "--no-restore",
    "--r-binary=/usr/local/bin/R"
  ]
}

The path for r.rterm.mac can be found by running which radian in the terminal. Similarly, the path for r.rpath.mac can be found by with which R.

Reasons:
  • Blacklisted phrase (1): This blog
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ben

79261339

Date: 2024-12-07 20:26:13
Score: 0.5
Natty:
Report link

Installing Visual Studio (Community) 2022 will install the missing parts enabling you to run your app on GraalVM.

I had a Spring Boot app that I ran on GraalVM (to benefit for the instant startup), I had to:

  1. Download the Visual Studio Build Tools 2022 or later (C development environment) from visualstudio.microsoft.com.

  2. Start the installation by opening the file you downloaded, and then click Continue: visual_studio_installer

  3. Select the Desktop development with C++ checkbox in the main window. On the right side under Installation Details, make sure that the two requirements, Windows 11 SDK and MSVC (…) C++ x64/x86 build tools, are selected. Continue by clicking Install. desktop_development_with_C

Then, I used Visual Code and not Visual Studio. (the terminal uses the Visual Studio components)

More:

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

79261314

Date: 2024-12-07 20:14:09
Score: 7 🚩
Natty: 5.5
Report link

i have the same problem, i don't know either

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: bruno pospiesh

79261306

Date: 2024-12-07 20:10:08
Score: 1
Natty:
Report link

Since I was working in a virtual env, I was installing jwt extended inside venv just like any other package.

what actually solved my issue was by running the command in a user cmd and directly installing it in the system.

pip install flask flask-jwt-extended
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ritik Raj Chauhan

79261303

Date: 2024-12-07 20:09:07
Score: 3
Natty:
Report link

Use width: 100% and height: 100% in your image tag class and see if this works. I often use Tailwind, and this issue doesn't arise with me.

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

79261302

Date: 2024-12-07 20:09:07
Score: 1
Natty:
Report link

What I believe the OP wants is to select a menu item, and have the check box change while the menu is still displayed. This is the rational for the attribute UIMenuElementAttributesKeepsMenuPresented.

Unfortunately I cannot seem to get this to work either as the OP mentions that the UIAction is a mutable object. So the checkmark cannot be changed.

All the comments above require the menu to be re-displayed, and then the checkmarks are valid.

But what's missing, is the ability for the menu to dynamically change as the items are selected (their action).

Note: Keeping the menu presented lets you select a menu item multiple times - so when done and the menu re-displayed, the state might be checked or unchecked.

I've gone to not using the presented feature.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: KonaCurrents

79261295

Date: 2024-12-07 20:03:06
Score: 0.5
Natty:
Report link

You can't really change the font size separately in the "Search and Replace" window. Also, there's no need to change the whole Visual Studio window size. Instead, you need to adjust the font for the environment and text editor separately. Here are my recommendations:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Владимир Оношко

79261294

Date: 2024-12-07 20:03:06
Score: 1
Natty:
Report link

I searched this functionality in Postman and found your this question. When i try this answer nothing worked. But i changed key pointing and tried remove the "." after indexing my key's (cars[0].car_img_1 -> cars[0]car_img_1).

So my solution this:

Image

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Cho'girmali yigit

79261287

Date: 2024-12-07 19:55:05
Score: 2.5
Natty:
Report link

You Checkout this Github Wordpress Pluginn which i developed. not yet tested on live server.

https://github.com/naeemprasla/GitThemeSync

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

79261285

Date: 2024-12-07 19:55:04
Score: 9.5 🚩
Natty: 4.5
Report link

I am still seeing the same issue, but I cannot downgrade the version because the 1.6.x series have the dependency overt the old httpclient jar. so what should i do now?

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Blacklisted phrase (2): what should i do
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): seeing the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: JackMa

79261283

Date: 2024-12-07 19:54:04
Score: 0.5
Natty:
Report link

IMEX does have effect, but it works in a crazy way : It depends on what proportion of data is returned as text by theTypeGuessRows parameter.

Detailed explanation is available here : https://web.archive.org/web/20211215203520/https://www.etl-tools.com/imex1.html

My solution is to always set IMEX=1 with TypeGuessRows=1 AND ensure my Excel files always include a first "dummy" row with the data type I need the ADO driver to interpret data as. This is also explained in this article.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): solution is
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: AlexLaforge

79261276

Date: 2024-12-07 19:47:02
Score: 0.5
Natty:
Report link

Yes, a "set of elements" is potentially ambiguous, but in my opinion, what you have here is a TOC and thus all of the links are elements of the TOC. So I think it might be a reach to consider each nested list of links as a separate set.

As for as whether you can do this, if you look at the ARIA 1.3 docs, it says that "Authors SHOULD only mark one element in a set of elements as current with aria-current." That "should" is important. It means that it is strongly encouraged and considered a best practice, but it's not "illegal". So technically, it is permitted to have multiple aria-current attributes in a set and thus you "can" do it, but whether you should is another question.

Most accessibility professionals will tell you that the only way you can really determine what works best is to test with your users. My suggestion would be to start out as simple as possible and only make it more complex if you find out through feedback/testing that you need to do more. Thus, I would recommend you start with only one aria-current at a time and put it on the link for the actual section that is currently in view.

Reasons:
  • Blacklisted phrase (1): another question
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Roland McLeod

79261270

Date: 2024-12-07 19:44:01
Score: 1.5
Natty:
Report link

I'd suggest that you make a server action for the api call. That way you just have to update the useEffect to call the server action instead of the direct fetch. Do not pass any auth or session data from the client to the server action directly, instead get fresh session auth/data on each request (server action call). And do not forget to validate the input before running the client input on the server, using a middleware is a very good solution in most cases.

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

79261267

Date: 2024-12-07 19:41:00
Score: 1.5
Natty:
Report link

I found out one more thing, if the line below is removed from the example it also works,

enableEdgeToEdge()

And, it work better for the devices which have on screen navigation buttons (back, recent and home button)

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

79261252

Date: 2024-12-07 19:28:58
Score: 1.5
Natty:
Report link

Welcome in 2022 (version of SQL Server). We can generate a series of numbers within a given interval and step between series values with GENERATE_SERIES function:

SELECT * FROM GENERATE_SERIES(1, 10000);

Source: https://learn.microsoft.com/en-us/sql/t-sql/functions/generate-series-transact-sql?view=sql-server-ver16

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

79261241

Date: 2024-12-07 19:24:57
Score: 1
Natty:
Report link

I see @partial = "workbar_work". When render (partial: workbar_work, ...) is not found, the _workbar_work.html.erb file. Because it is inside the work folder

$('#workbar_switch').html("<%= j render(partial: "work/#{@partial}", :locals => {exercise: @exercise@}) %>");

or

You can set @partial = "work/#{permitted_params[:partial].to_s}"

$('#workbar_switch').html("<%= j render(partial: @partial, :locals => {exercise: @exercise@}) %>");

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @exercise
  • User mentioned (0): @partial
  • User mentioned (0): @exercise
  • Low reputation (0.5):
Posted by: LihnNguyen

79261240

Date: 2024-12-07 19:23:55
Score: 4
Natty:
Report link

Any luck resolving this?

I am experiencing the same thing, and just created an Instance Tracker issue for it.

Reasons:
  • Blacklisted phrase (1.5): Any luck
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Timothy Johns

79261239

Date: 2024-12-07 19:23:55
Score: 5
Natty: 4.5
Report link

My implementation that uses OSM https://github.com/joric/location-bot example Telegram bot https://t.me/joricslocationbot

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

79261236

Date: 2024-12-07 19:20:54
Score: 3.5
Natty:
Report link

Download and install Android studio gradle offline this actually decreased the build time to 45 seconds 30k files no wonder it takes so much time thanks for the answer i will get better hardware as soon as i can

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sam

79261234

Date: 2024-12-07 19:19:53
Score: 5
Natty:
Report link

Here are some resources that provide example code for discord.py slash commands:

Reasons:
  • Blacklisted phrase (1): How do i
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: cast

79261204

Date: 2024-12-07 19:06:50
Score: 3
Natty:
Report link

structuredClone was added in Node.js 17. So, update your Node.js to the latest version, and the issue will be fixed.

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

79261202

Date: 2024-12-07 19:05:50
Score: 2
Natty:
Report link

Yeah, Qt had massive growth in 2019. Still growing now, though the pace is different. Would be cool to know if insiders are investing in the company. I usually use prismo.pro for insider trade analytics. The problem is, they don’t have data on Qt as it’s a Finnish company but the platform only supports US-based stocks for now. They’ve promised to add European companies down the line, so I’m bookmarking it just in case.

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

79261197

Date: 2024-12-07 19:03:49
Score: 3
Natty:
Report link

Later, I download a ODBC Driver from github, and make a little change in the connect function: I write a cpp dll, extern the connect function to replace the native one, works good for me now.

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

79261195

Date: 2024-12-07 19:01:49
Score: 1.5
Natty:
Report link

I think you may run your terraform code from your local machine. So try to run you code in Azure environment such as Azure cloud shell then you may surprise that your terraform code will work well.

If you still need to run your terraform code from your local machine to provision azure resources. I think you may need to authenicate with service principal so you can follow this https://learn.microsoft.com/en-us/azure/developer/terraform/authenticate-to-azure-with-service-principle?tabs=bash

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

79261189

Date: 2024-12-07 18:57:48
Score: 0.5
Natty:
Report link

There are a lot of possible "right" and "not-right" ways of programming.

As you said, OOP aims to structure your code in order to do not lose your sanity when you will take back your code to code new features. Actually OOP is great for code design, watch about Design patterns and SOLID architecture for example...

BUT this is not the only reason. Let's suppose you wanna implement new functionalities like "police" or "bike" in a future. Actually you obviously can create a class and invoke that class from main.py. But when you implement a lot of these features you actually will have a gargantuan function which calls different classes in different modules and each time you have to modify one of these modules if class is not well written.

The best principle you can follow is Single-responsability (S of SOLID architecture), this means that one function has ONE responsability, so if car_generator is a function that generates car, actually should not generate bikes. In this way, when you will read your code again you know that car_generator doesn't implement bikes.

Now, you could think "Well, I rename car_generator in generator and I fix the problem". Actually you can, but the point is generator must do only one thing. When you add code in generator to check how many vehicles are in game in a specific time, you broke this principle and in 3 months you will forget that you added this functionality in this function.

Re-read your code now and think "do this function actually does only one thing?", if answer is yes, you can go over, but if in a future you program to implement a vehicle counter, you have to manage fact car_generator actually already does one thing, it creates vehicles.

You can extend this fact to modules too. main.py actually is like a wizard . It must invoke other functions and maintain a "logic" in your game. You can obviously instantiate objects in it, but what if one day you will have twenty classes each one creating twenty vehicles?

The problem is that car_generator is more a function which generates car so it should not stay in main.py. In this way, when you think "ok, I have to create a car" you know you have to visit and modify Car.py and not main.py.

Another thing is that actually you are "thinking" in C. That's really cool to start programming, but actually OOP is great cause of inheritance and polimorphism, two principles of OOP. You will understand why you prof. did this when you will meet these two principles.

I REPEAT: Your solution is not actually "clearly wrong" or "clearly good". Depends on what you will implement next. If the course teaches you that, probably it's because the tutor after years of coding found this is the most clear and beautiful way of creating this kind of things. I suggest you to read books and watch online tutorials of clean code and Design patterns to understand what your teacher is "implicitly saying"

Greetings

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Roci49

79261188

Date: 2024-12-07 18:57:48
Score: 0.5
Natty:
Report link

Solution extended from answer @smichr where I rewrote the list comprehension with 'for' loops so I can immediately solve the imaginary part, and put in the result through subs to get the final_result and update the dict. Then I check if the dicts are unique before returning the result.

result = sp.solve(AllEquestions, AllVariables, dict=True)
want = set(AllVariables)
unk = []
for s in result: #loop through all solutions
    for key, value in s.items(): #loop through individual values
        if value.is_real is None and value.free_symbols&want: #check if value is img and is free_symbol e.g. value = 1.03077640640442*I*(10.0 - z4) + 16.25
            result_img_part = sp.solve(sp.im(value), want) #solve only the img part e.g. result_img_part = [{z4: I*im(z4) + 10.0, re(z4): 10.0000000000000}]
            for result_real_part in result_img_part[0].values(): #search for the real part in the solution
                if result_real_part.is_real:
                    final_result = value.subs(list(value.free_symbols)[0], result_real_part) #solve the function (value) to get the real value
                    s[key] = final_result # update the dictionary
    unk.append(s) 

#return unique solutions
res = []
for _dict in unk:
    if _dict not in res:
        res.append(_dict)

if result == []:
    raise Exception("No solution found!")
else:
    return res

Final thoughts. Code should be further improved, in the case there are multiple free_symbols to solve the imaginary part.

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

79261184

Date: 2024-12-07 18:54:48
Score: 2
Natty:
Report link

For whoever gets the same problem following code was wrong (Thanks to @tyg for finding)

            flow<T?> {
                try {
                    emit("Value")
                } catch (e: Exception) {
                    println("Something went wrong ${e.message}")
                }
            }.firstOrNull()

In this usage CancellationException getting caught and causes the log I posted in question.

The correct usage is at below.

            flow<T?> {
                emit("Value")
            }.catch { e ->
                println("Something went wrong ${e.message}")
            }.firstOrNull()
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @tyg
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mobile Dev

79261174

Date: 2024-12-07 18:47:46
Score: 0.5
Natty:
Report link

Ensure the image dimensions match those used in the original training dataset. If your dataset has different sizes, you might need to resize or crop them. For volumetric data, 3D resampling to match the voxel resolution can be necessary.If the original dataset used intensity normalization (e.g., scaling pixel values between 0 and 1), you’ll need to apply the same preprocessing to your dataset.

Convert your dataset into the format the model expects, or modify the data loader in the codebase to handle your dataset’s format. If your task requires ground truth labels (e.g., segmentation maps or landmarks for registration), ensure your dataset has corresponding labels and they are formatted correctly.

FBCT and CBCT images likely have different intensity distributions compared to the MRI images the model was initially trained on. You may need to retrain the model from scratch or use domain adaptation techniques (e.g., transfer learning). Modality-specific preprocessing might be necessary. For example, MRI images often have non-linear intensity variations that may not exist in FBCT/CBCT, so consider using preprocessing pipelines suited to your modalities. If the model is expecting a specific number of channels (e.g., grayscale or multi-modal input), ensure your data matches these requirements.

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

79261173

Date: 2024-12-07 18:47:46
Score: 1.5
Natty:
Report link

The problem is that design of Gaussian blur is isotropic, meaning it diffuses the intensity of each pixel equally in all directions.

You should try generating a binary mask of the black region, computing its distance transform, and than applying a scaling curve (exponential decay) to map the distance values to intensity values.

If I understood correctly what you are trying to achieve, reading this might help you with the realization.

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

79261158

Date: 2024-12-07 18:39:45
Score: 1
Natty:
Report link

I was trying to implement apple signin in an react-native expo app with firebase. I addeed all the steps and then encountered the error. This is what fixed it for me:

  1. Make sure you are signed in the simulator with your appleid
  2. Do a production build using xcode. Doing that might have added some entitlements that were missing before.
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sebastian Gomes

79261157

Date: 2024-12-07 18:38:45
Score: 3
Natty:
Report link

I found the solution here: https://www.youtube.com/watch?v=PeKq_cGZcnY Check if it helps you.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-2): I found the solution
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alex Gevorkyan

79261155

Date: 2024-12-07 18:37:44
Score: 6.5
Natty: 7.5
Report link

how can i see only the modified/added content ?

Reasons:
  • Blacklisted phrase (0.5): how can i
  • 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 can i
  • Low reputation (1):
Posted by: Asaf Ben Shabat

79261134

Date: 2024-12-07 18:29:42
Score: 0.5
Natty:
Report link

Here is a field that comes close

{ IF { CreateDate \@ "ddd" } = "Mon" "{ CreateDate \@ "dddd d MMMM  yyyy" }" }
"{QUOTE
{SET Delay 1}
{SET Weekday 0}
{SET a{=INT((14-{CREATEDATE \@ M})/12)}}
{SET b{={CREATEDATE \@ yyyy}+4800-a}}
{SET c{={CREATEDATE \@ M}+12*a-3}}
{SET d{CREATEDATE \@ d}}
{SET jd{=d+INT((153*c+2)/5)+365*b+INT(b/4)-INT(b/100)+INT(b/400)-32045+Delay}}
{SET jd{=INT(jd/7)*7+Weekday}}
{SET e{=INT((4*(jd+32044)+3)/146097)}}
{SET f{=jd+32044-INT(146097*e/4)}}
{SET g{=INT((4*f+3)/1461)}}
{SET h{=f-INT(1461*g/4)}}
{SET i{=INT((5*h+2)/153)}}
{SET dd{=h-INT((153*i+2)/5)+1}}
{SET dd{=((dd<8)+(dd>14)*(dd<22))*7+dd}}
{SET mm{=i+3-12*INT(i/10)}}
{SET Limit{=IF((mm=2),28+((MOD(yy,4)=0)+(MOD(yy,400)=0)-(MOD(yy,100)=0)),IF((mm=4)+(mm=6)+(mm=9)+(mm=11)=1,30,31))}}
{SET yy{=100*e+g-4800+INT(i/10)}}
{IF{mm}> 28 "{SET dd{=dd+14-Limit}}{SET mm{=MOD(mm,12)+1}}{SET yy{=yy+(mm=1)}}"}
"{mm}-{dd}-{yy}" \@ "dddd, d MMMM yyyy"}" }
{ IF { CreateDate \@ "ddd" } = "Mon" "{ CreateDate \@ "dddd d MMMM  yyyy" }" }
"{QUOTE
{SET Delay 1}
{SET Weekday 0}
{SET a{=INT((14-{CREATEDATE \@ M})/12)}}
{SET b{={CREATEDATE \@ yyyy}+4800-a}}
{SET c{={CREATEDATE \@ M}+12*a-3}}
{SET d{CREATEDATE \@ d}}
{SET jd{=d+INT((153*c+2)/5)+365*b+INT(b/4)-INT(b/100)+INT(b/400)-32045+Delay}}
{SET jd{=INT(jd/7)*7+Weekday}}
{SET e{=INT((4*(jd+32044)+3)/146097)}}
{SET f{=jd+32044-INT(146097*e/4)}}
{SET g{=INT((4*f+3)/1461)}}
{SET h{=f-INT(1461*g/4)}}
{SET i{=INT((5*h+2)/153)}}
{SET dd{=h-INT((153*i+2)/5)+1}}
{SET dd{=((dd<8)+(dd>14)*(dd<22))*7+dd}}
{SET mm{=i+3-12*INT(i/10)}}
{SET Limit{=IF((mm=2),28+((MOD(yy,4)=0)+(MOD(yy,400)=0)-(MOD(yy,100)=0)),IF((mm=4)+(mm=6)+(mm=9)+(mm=11)=1,30,31))}}
{SET yy{=100*e+g-4800+INT(i/10)}}
{IF{mm}> 28 "{SET dd{=dd+14-Limit}}{SET mm{=MOD(mm,12)+1}}{SET yy{=yy+(mm=1)}}"}
"{mm}-{dd}-{yy}" \@ "dddd, d MMMM yyyy"}" }

It is based on one from Paul Edstein (macropod)'s tutorial. The date shown will be in the format Monday 9 December 2024 without the ordinal. I do not have the ability to format it that way. It is likely a bit more complex than would be needed.

Here is a CreateDate field formatted to use the ordinal form for the day of the month: { CreateDate \@ "dddd" } { CreateDate \@ "d" \* ordinal } of { CreateDate \@ "MMMM yyyy" }.

You should not try to type this field! Here is a link to a document containing the field and the process I used to construct it. You could copy and paste from it if it will meet your needs.

Otherwise, you could use this Add-In from MVP Graham Mayor to create the field from the text.

Here is my article on the Microsoft Answers site on Dealing with Fields.

See also the vba solution suggested at How to have Word VBA TypeText 45 days after today's date, but have it display the following Monday?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: Charles Kenyon

79261124

Date: 2024-12-07 18:20:39
Score: 1.5
Natty:
Report link

The issue occurs because the Times.exactly(1) conflicts with the current MockServer API. When you specify Times.exactly(1), MockServer enforces strict validation to ensure the request is matched exactly once. If there's a mismatch, it throws an error.

Removing Times.exactly(1) defaults to allowing unlimited calls (Times.unlimited()), bypassing the strict validation and preventing the error.

Solutions: Simplify: Remove Times.exactly(1) if precise matching isn't critical. Update Syntax: Replace Times.exactly(1) with a method more aligned with the updated API as for example Times.once()

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

79261119

Date: 2024-12-07 18:17:38
Score: 5
Natty:
Report link

It can be installed https://www.python.org/ftp/python/3.10.6/ from python.org

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

79261111

Date: 2024-12-07 18:14:37
Score: 2
Natty:
Report link

when you convert old code to actual version of Unity change

using Cinemachine; 

to

using Unity.Cinemachine;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): when you
  • Low reputation (1):
Posted by: mikhail.kozin2013 Козин

79261108

Date: 2024-12-07 18:10:36
Score: 0.5
Natty:
Report link

Svelte needs instruction that data can be bound and may be reactive in the child-to-parent direction. This can be accomplished by using the $bindable() rune.

type Props = {
  data: PageData;
};

let { data = $bindable() }: Props = $props();

<input bind:value={data.product.name} />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Amanda

79261105

Date: 2024-12-07 18:09:36
Score: 1
Natty:
Report link

My testing is showing that this is working properly with NVDA/Chrome but is producing the behavior you described with NVDA/Firefox. I was able to fix this by using aria-live=assertive instead of role=alert. I'm assuming there is a bug in NVDA when used with Firefox that is causing it to read the link text three times in alert roles.

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

79261101

Date: 2024-12-07 18:06:35
Score: 3.5
Natty:
Report link

You can do dag.active_trail_nodes("A", observed=["L", "D"])) instead

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrés Mireles

79261083

Date: 2024-12-07 17:56:33
Score: 2
Natty:
Report link

Understand the issue: Turbo C++ use c:\TURBOC3\INCLUDE as default path

You can see in this image

You can find this in Options->Directory

You can find this in Options->Directory

Two solutions here

  1. Update the PATH
  2. Mount the application directory (where you extract TURBOC3 folder) (EASY)

In my case: Mr.mohit extract TURBOC3 in home/mohit/_apps directory

enter image description here

so i user mount C: ~/mohit/_apps/

or either you can edit your config file by this cmd gedit .dosbox/dosbox-0.74-3.conf

enter image description here

Thank you 😄,
"Don't Give up MEN 💪"

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohit G

79261076

Date: 2024-12-07 17:51:31
Score: 1
Natty:
Report link

It is not currently possible using the tools currently available in tail sampling in the Otel Collector in Dec 2024.

This is because, you cannot filter out a specific NAME of a SPAN in a Trace.

Why? Because the match happens for ANY span in a Trace, ANY child span not named 'MyEvent' INSIDE the 'MyEvent' root level span/trace, WILL BE MATCHED. And this causes us to capture all traces again.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: James

79261062

Date: 2024-12-07 17:40:28
Score: 1.5
Natty:
Report link

December 2024 and the problem is still there, solution is delete proxy from both local and global gradle.properties

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

79261031

Date: 2024-12-07 17:16:23
Score: 2
Natty:
Report link

I think you can try to add the Headers with User Agents to your request

Like:

headers = { 'Accept': "text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8", 'User-Agent': "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" }

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

79261027

Date: 2024-12-07 17:14:22
Score: 1
Natty:
Report link

Eu resolvi simplesmente criando uma constante com a string svg da imagem entre

Exemplo:

const imgSvg = <svg .... </svg>

E no docDefinition {

 -- Onde usar imagem
 {
   svg: imgSvg,
   wid..: 80,
   hei ..:80,
  },

}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: José de Ávila de Avila

79261020

Date: 2024-12-07 17:10:21
Score: 1
Natty:
Report link

@Dexxe's answer worked for me as did quickSuggestions: false:

var editor = monaco.editor.create(document.getElementById("editorContainer"), {
  value: jsCode,
  language: "typescript", //can use your custom language here
  quickSuggestions: false,
});
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Dexxe's
  • Looks like a comment (1):
Posted by: HyperActive

79260995

Date: 2024-12-07 17:00:19
Score: 2.5
Natty:
Report link

Solved it. Both my server and browser were on the same (local) network. My browser could not access the FQDN, so Google Meet, started in my browser, could also not access the FQDN. When I start Google Meet from a browser not connected to my LAN it all went fine.

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

79260980

Date: 2024-12-07 16:52:18
Score: 3
Natty:
Report link

Sometimes the Issue Template doesn't show up due to incorrect format. You can see if there is anything wrong with the template by going to the file in the GitHub itself.

https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/common-validation-errors-when-creating-issue-forms

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

79260976

Date: 2024-12-07 16:51:18
Score: 0.5
Natty:
Report link

Try this :

<script> 
document.addEventListener('alpine:init', () => {
    Alpine.data('MyForm', () => ({ 
        title: @json($post->title),
    })) 
 }) 
</script> 
Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RedocTsuj

79260974

Date: 2024-12-07 16:49:17
Score: 2
Natty:
Report link

You're not handling the event. The buttons default click event will submit the page.

acc[i].addEventListener("click", function(event) { event.preventDefault();...

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

79260970

Date: 2024-12-07 16:47:15
Score: 7.5 🚩
Natty: 5
Report link

Somebody answer this I am looking for the answers for a long time https://stackoverflow.com/staging-ground/79260969

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nick Pap

79260966

Date: 2024-12-07 16:42:14
Score: 2
Natty:
Report link

After following @sir Rufo suggestion by using "dotnet publish" for single file deployment, I started a comprehensive search and came across the solution below. I tried it and it worked perfectly!!! :)

-In the solution explorer of your project, you need to edit the ".csproj" file by adding the following

true true none win-x64 true

-Once that is added, you need to run "dotnet publish -c Release -o publish" -Rebuild the project, then you will notice a folder called "publish" in your project directory

*Thank you all so very much for trying to help, I'm glad I have folks like you in my life. I hope the solution above can benefit others!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @sir
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sammie

79260964

Date: 2024-12-07 16:39:11
Score: 16 🚩
Natty: 5
Report link

I have the same problem enter image description here

I also try add powerline font to VSCode Setting and it's the same as terminal font but issue still occurs: enter image description here enter image description here

Could u please help me to fix it? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): help me to fix
  • RegEx Blacklisted phrase (3): Could u please help me to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: LV_Embedded

79260951

Date: 2024-12-07 16:30:09
Score: 1.5
Natty:
Report link

Ok it's solved by just using 2 bool markers. They act according to their logical names

send_name_button_event_was_triggered = False
send_name_button_event_was_finished = False

code https://pastebin.com/hJx1Y80c

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

79260944

Date: 2024-12-07 16:22:07
Score: 1
Natty:
Report link

There's a good chance the data is outdated (in my experience those reports aren't updated very frequently, especially if the URLs aren't regularly crawled). I can't see any noindex directive via my browser (server-side HTML, rendered HTML, or HTTP headers) so this is probably the case assuming your website isn't serving differently depending on user-agent/IP.

As Tony suggested, try inspecting an example URL in GSC and see if it reports the noindex in a live test. If not, validating the issue in GSC should "fix" it although it might take some time for all of them to be re-crawled and indexed.

Failing that, you'll probably have better luck with asking the GSC Help Community.

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

79260935

Date: 2024-12-07 16:15:05
Score: 3.5
Natty:
Report link

The dependencies you introduced may be in conflict with each other

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

79260934

Date: 2024-12-07 16:14:05
Score: 1.5
Natty:
Report link

this is the problem: for example https://docs.google.com/forms/d/{formId}/edit is your edit link when you change "edit" to "viewform": https://docs.google.com/forms/d/{formId}/viewform google will imediately change your {formId} to a random Id this is for your security so that no one can get access to your edit form

but you can try another option make a copy of your form each time u need a new id and save all the respond in one sheet i'm building it now so i don't have the right code for u but trust me it's work

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Khang Doan phuc

79260920

Date: 2024-12-07 16:05:02
Score: 5.5
Natty:
Report link

i am also trying to implement that now , can i contact with u for some doubt clearing.

Reasons:
  • Blacklisted phrase (2): can i contact
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rohit Ranaware

79260917

Date: 2024-12-07 16:04:02
Score: 1
Natty:
Report link

It depends what authentication method you are using to "deploy". More detail is needed to actually answer here.

Are you talking about infrastructure deployment or application deployment. In either case the most likely issue is that whatever authentication solution you are using to "deploy" such as a service principle, most likely only has the correct role/permissions in the scope of you development environment. Which again I can only assume and guess based on the lack of information would be in a separate subscription to your production one.

Make sure that whatever authentication method you are using has the correct roles to perform the desired actions within the correct scope.

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

79260916

Date: 2024-12-07 16:04:02
Score: 1.5
Natty:
Report link

I found out the answer;

It's because my Supports Live Activities key was in the widget's Info.plist instead of my main target!

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

79260914

Date: 2024-12-07 16:02:00
Score: 11.5 🚩
Natty:
Report link

I'm also facing the same. Were you able to figure out the issue?

Reasons:
  • RegEx Blacklisted phrase (3): Were you able to figure out
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manan Raja

79260909

Date: 2024-12-07 15:58:59
Score: 3.5
Natty:
Report link

This is probably necessary for 0 specificity.

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

79260904

Date: 2024-12-07 15:53:58
Score: 1.5
Natty:
Report link

pytest.ini can be used for this purpose. Its handy option instead of always using pytest -s

update the pytest.ini with addopts = -s

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

79260893

Date: 2024-12-07 15:48:57
Score: 1
Natty:
Report link

Just worked on what @kikon did. I hope this helps. I calculated the disctance between yAxes ticks

`https://jsfiddle.net/um2hpac6`
Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @kikon
  • Low reputation (0.5):
Posted by: Reydan Gatchalian

79260881

Date: 2024-12-07 15:41:55
Score: 2
Natty:
Report link

This problem is caused by the Python version you are using. Since 3.13 is very new, many libraries may not be suitable for the new version

I also noticed something else "Need python for x86, but found x86_64" maybe it's because of this

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

79260878

Date: 2024-12-07 15:34:54
Score: 2.5
Natty:
Report link

It is so easy numpy required your python version less than 3.9 but your python is 3.14 Try to install python 3.8 and retry

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 佩奇君

79260876

Date: 2024-12-07 15:33:52
Score: 7 🚩
Natty: 6
Report link

how to do this in TS(Typescript)?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: Neyps

79260873

Date: 2024-12-07 15:31:51
Score: 2
Natty:
Report link

The key to solution was to add

<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/python.min.js"></script>

in base.html

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

79260872

Date: 2024-12-07 15:30:51
Score: 2.5
Natty:
Report link

Your project folder name (ROV final project) may cause issues due to the spaces. Rename it to something like ROV_final_project or ROVfinalproject, as spaces in folder names can cause problems in PHP paths and CLI tools.

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

79260862

Date: 2024-12-07 15:25:50
Score: 2
Natty:
Report link

It seems it's a know bug in pynput due to naming conflicts. A fix was posted by a user. Here is the link: https:

//github.com/moses-palmer/pynput/tree/fixup/listener-thread-handle

List of committed changes:

[Rename _handle for xorg listener, 
Rename _handle for uinput listener, 
Rename _handle for win32 listener,
Rename _handle for darwin listener]
Reasons:
  • Blacklisted phrase (1): Here is the link
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: E-Gamma-102

79260860

Date: 2024-12-07 15:25:50
Score: 3
Natty:
Report link

You can download the emoji's from browser cause the windows that not activated wont give you the access to the complete the actions and those are not free

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

79260859

Date: 2024-12-07 15:24:49
Score: 2.5
Natty:
Report link

I managed to fix the issue by adding:

z-index: 1;

to the .container, and adding

z-index: -1;

to .column::after, but I still don't fully understand why this works. :)

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

79260856

Date: 2024-12-07 15:23:48
Score: 5
Natty: 4.5
Report link

Syntax Error Ocurring During the running Project after creating

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

79260844

Date: 2024-12-07 15:16:47
Score: 2.5
Natty:
Report link

Create a view based on the query and then use lineage: https://docs.snowflake.com/en/user-guide/ui-snowsight-lineage

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

79260840

Date: 2024-12-07 15:15:46
Score: 1.5
Natty:
Report link

This is a general solution for this type of errors that have appeared with recent android studio and flutter updates.

Modify android>settings.gradle file with this;

id "com.android.application" version "8.3.2" apply false

Modify android>gradle>gradle-wrapper.properties file with this;

distributionUrl=https://services.gradle.org/distributions/gradle-8.4-all.zip

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

79260836

Date: 2024-12-07 15:13:46
Score: 3.5
Natty:
Report link

Download Appium Inspector https://github.com/appium/appium-inspector

You will see which selectors to use

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

79260829

Date: 2024-12-07 15:10:45
Score: 0.5
Natty:
Report link

At first, let me tell you one thing for the beginners of how can you find out your eslint config file.Here in this blog you will find out detailed explanation of how you can do it.Now come to the ans, most of the answers which has been posted here is very old.The config file format of eslint is ".eslintrc.json" this untill eslintv8.21.0 came in Aug 19,2022.Now eslint is using "eslint.config.mjs" this file configuration format.So, for this new file format we can't write code like what has been using for a long time in ".eslintrc.js" this file format. To solve this problem you just need to add one line of code and that is this one.

{ languageOptions: { sourceType: "module" } },

Here is the default "eslint.config.mjs" file code-

import globals from "globals";
import pluginJs from "@eslint/js";
import pluginReact from "eslint-plugin-react";

/** @type {import('eslint').Linter.Config[]} */
export default [
  { files: ["**/*.{js,mjs,cjs,jsx}"] },
  { files: ["**/*.js"], languageOptions: { sourceType: "commonjs" } },
  { languageOptions: { globals: globals.browser } },
  pluginJs.configs.recommended,
  pluginReact.configs.flat.recommended,
];

After adding languageoptions as module, the updated code looks like this-

import globals from "globals";
import pluginJs from "@eslint/js";
import pluginReact from "eslint-plugin-react";

/** @type {import('eslint').Linter.Config[]} */
export default [
  { files: ["**/*.{js,mjs,cjs,jsx}"] },
  { files: ["**/*.js"], languageOptions: { sourceType: "commonjs" } },
  { languageOptions: { sourceType: "module" } },
  { languageOptions: { globals: globals.browser } },
  pluginJs.configs.recommended,
  pluginReact.configs.flat.recommended,
];
Reasons:
  • Blacklisted phrase (1): this blog
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Emon Khan

79260819

Date: 2024-12-07 15:02:43
Score: 1.5
Natty:
Report link

Everything about your request is completely correct.

If you receive a product list from http://shop.tld/api/product you have used the request type GET instead of POST.

I have double checked it in a local installation.

POST will create your product: enter image description here

GET will get you a list of all products: enter image description here

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

79260815

Date: 2024-12-07 14:59:43
Score: 2
Natty:
Report link

SELECT COALESCE(ID, 'TOTAL') AS ID, Product, SUM(Quantity) AS TotalQuantity FROM Sales GROUP BY ROLLUP(ID, Product);

Here, Replaces NULL in the ID column with "TOTAL" in rolled-up rows. Helps create more meaningful outputs by avoiding NULLs in summary rows.

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

79260803

Date: 2024-12-07 14:52:42
Score: 0.5
Natty:
Report link

I encountered a similar issue and successfully resolved it by utilizing Xdebug, a powerful extension for PHP that enhances the development experience.

Xdebug offers several features that can help diagnose and solve performance problems:

To implement Xdebug in your project, visit the official website at https://xdebug.org for installation instructions and documentation. By leveraging these tools, you can gain deeper insights into your application's behavior and potentially identify the root cause of your performance issues

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

79260792

Date: 2024-12-07 14:44:40
Score: 3
Natty:
Report link

"extra": { "eas": { "projectId": "Your project id" } }

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

79260782

Date: 2024-12-07 14:39:39
Score: 1.5
Natty:
Report link

For my application, the output of yolo model differs from the camera input tensor, because output contains confidence scores and bounding boxes. It is just "description" for your image and you can't visualise them on image without your image, as it is not the case with yolo segmentation model whose output can be interpreted to see every pixel (but in android app reduced to 160x160px).

Further analysis of your output is similar to another I just answered, so it can be seen here: How to interpret output tensor from YOLOv8 web model.

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

79260770

Date: 2024-12-07 14:29:37
Score: 2
Natty:
Report link

0xed24fc36d5ee211ea25a80239fb8c4cfd80f12ee is the correct one.

If you go to Binance faucet and send yourself some, you can check in your wallet what the contract address of the token.

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

79260769

Date: 2024-12-07 14:28:37
Score: 2.5
Natty:
Report link

You might try out dynalinks - it allows you to create up to 5k links for free.

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

79260759

Date: 2024-12-07 14:22:36
Score: 2
Natty:
Report link

Just for the record, this still does not work in 2024 with IntelliJ. Yet it worked (and still does) in Netbeans...

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

79260757

Date: 2024-12-07 14:22:36
Score: 2.5
Natty:
Report link

At the moment the only way to have an effective body sensor or fit device in a Android device is with excessories and a app you will have to subscribe to for a fee per month after the free try period finishes.

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

79260753

Date: 2024-12-07 14:17:35
Score: 3.5
Natty:
Report link

Height customization is mentioned here: https://github.com/junegunn/fzf?tab=readme-ov-file#preview-window and they also mentioned to not export those variables (what exactly I didn't bother understanding) but I don’t know how you can implement it

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

79260749

Date: 2024-12-07 14:14:35
Score: 1
Natty:
Report link
    public interface ISortedGroupWithMover<T> : ISortedGroup<T>
        where T : IMoveableHoldee<T>

I think the correct interface for this is like this, I dont think the previous version has the same meaning altough im not sure of the difference.

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

79260725

Date: 2024-12-07 13:52:31
Score: 2
Natty:
Report link

XML sitemaps should include all valuable, indexable URLs and not (just) top-level subdirectory URLs: https://developers.google.com/search/docs/crawling-indexing/sitemaps/build-sitemap

However, search engines don't have to index your content; if they consider it low-quality then there's a good chance they won't index it.

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

79260724

Date: 2024-12-07 13:52:31
Score: 0.5
Natty:
Report link

I've seen this issue Visual studio code runs NPM outside integrated terminal before and the only solution was to run VSCode as administrator. However, this solution restricts me from using AutoHotkeys and update VSCode automatically.

Here is the solution I randomly found today: check if node.exe isn't running as administrator, because this is most likely what's causing these node popups. Disable run as administrator in the properties of this file.

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

79260700

Date: 2024-12-07 13:39:28
Score: 0.5
Natty:
Report link

I have a class with the property display: flex. When I go to Chrome dev tools, it shows display: block, because of user-agent style sheet:

I had a very similar problem. Chrome dev tools showed me that my flex-direction: row; was inactive with the info:

The display: block property prevents flex-direction from having an effect.
Try setting the display: block property to display: flex.

I searched every single <div in my html and added class="TODO" to each div, then I set the CSS .TODO class to display: flex but nothing worked. This was a useful debugging exercise. The problem was that my:

#forecast {
    flex-direction: row;
    height: 100%;
}

was missing the display: flex; so flex-direction was inactive. Once I added display: flex everything started working (dumb mistake). The debugging process was useful and the TODO classes were easy to find and back out of the code once it was fixed. This process might help others looking to find this source of this type of bug. Working solution shown below.

#forecast {
    display: flex;
    flex-direction: row;
    height: 100%;
} 
Reasons:
  • Blacklisted phrase (1): but nothing work
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Clifford Cummings

79260698

Date: 2024-12-07 13:39:28
Score: 4
Natty:
Report link

not solved for screen recordings though. :(

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

79260688

Date: 2024-12-07 13:31:25
Score: 0.5
Natty:
Report link

I haven't seen answer for this question anywhere, even on Ultralytics pages, so I decided to, based on last month working with the same tools, write my conclusions about that:

In the beginning, my research wouldn't be possible without "comments" section at this page: Ultralytics tfjs integration. After doing some research using those tips, I chose to download prediction data in .txt format and analyze it in python.

This image shows all values in those predictions: output of yolo11n model in tfjs format Seeing those values at the beginning (between 0 and 640) and after index ~40000 (around 0) we can conclude that first few rows are about dimensions, and other about confidence. From this image: first four rows we can see that those dimensions are x_min, y_min, x_max, y_max.

To keep this answer clearer, I will post images only of first and last 100 boxes to see how they look like: first 100 bounding boxes, last 100 bounding boxes. It can be seen that detection started at upper left corner and is going to almost whole image. Because of me being in the middle of image, and taking the most space of it, confidence scores for class 0 ("person") from COCO dataset are around 0 for first ~8200 boxes, and higher than 0.8 for those at the end: confidence scores of class 0, confidence scores of other classes are negligible as you can see here: confidence scores of class "bus".

Taking only max values for every class (reshaping the data to 84 x 8400 and computing the max along axis 1) will give us clear view of what was taken on image: maximum confidence per class.

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

79260681

Date: 2024-12-07 13:27:23
Score: 13 🚩
Natty: 5
Report link

@IntermediaryDeveloper I need help with integrating Adyen Web Drop In using sessions method. I would like to understand from you how you did the same for a test transaction step by step ! Can you please help me out ?

I have setup my test sandbox account, generated API credentials but stuck, you can refer my question at :

https://stackoverflow.com/staging-ground/79260476

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (3): Can you please help me
  • RegEx Blacklisted phrase (2): help me out
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @IntermediaryDeveloper
  • Low reputation (1):
Posted by: Dialen d'souza

79260675

Date: 2024-12-07 13:24:22
Score: 1.5
Natty:
Report link

Amazon RDS Proxy is compatible with Amazon RDS for PostgreSQL single-instance deployments. However, it doesn't support automatic routing to read replicas for non-Aurora PostgreSQL databases. This means that while RDS Proxy can manage connections to your primary RDS PostgreSQL instance, it won't automatically distribute read queries to any associated read replicas.

Source: https://repost.aws/questions/QURgpYNcQWQ32HmZ8lDLmS8w/rds-postgres-rds-proxy-read-replicas

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

79260661

Date: 2024-12-07 13:13:19
Score: 1
Natty:
Report link

I've seen a few fixes floating around that say just disable all the warnings in node. But this kinda grinds my gears as it just hides all warnings, and you do want to see some of them. Investigate and then do something about it... or not.

The answer on this thread https://stackoverflow.com/a/78757478/3593217 is great, but there were so many different dependencies in my project using punycode i really didn't want to go down this route.

It would be better (at least for my situation) to disable the warning just for this package and at the repo level.

I also don't want to prepend every npm script in my packages.json, i want this work across the current project and all the scripts. So...

You can create a .npmrc file with the following contents:

node-options="--require ./node-warning-bypass.cjs"

Then create a file at the root of your project (you'll need to use the file ending .cjs due to the require in the node options).

const IGNORED_WARNINGS = [
  'punycode',
  // Add more packages here as needed
];

process.emitWarning = (warning, ...args) => {
  if (IGNORED_WARNINGS.some(pkg => warning?.includes(pkg))) return;
  return process.emitWarning.call(this, warning, ...args);
};

This way it only ignores punycode so you will see other issues if they arise. And you also have a tidy list of the things you're ignoring (things that will need to be updated at some point).

I had just been ignoring this error as mildly frustrating, but after some test refactors it was failing our CI and it moved from mildly aggravating to in the crosshairs.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: xam

79260656

Date: 2024-12-07 13:08:18
Score: 1.5
Natty:
Report link

For ahk v2.

^7::
{
    Send("success")
}

b::
{
    Send("{LControl Down}7{LControl Up}")
}

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: Dieisson Silva dos Santos