79073814

Date: 2024-10-10 10:02:55
Score: 0.5
Natty:
Report link

Unlike curl, Chrome and Firefox both have built-in caches, so the fact that subsequent requests are served from those caches might be confusing your results.The cache-control: public, max-age=3600 header indicates that the image can be cached for an hour. If the image is being fetched again before that hour is set up, there may be a different issue causing it not to cache.

Ensure that the cache settings in your browser allow for the image caching. And if your browser is set to always check for new content (through a developer option) it may bypass the cache.For more troubleshooting refer to this.

Also it depends of the cache mode, if you set the cache mode to FORCE_CACHE_ALL, the default time to live (TTL) for content caching is 3600 seconds (1 hour), unless you explicitly set a different TTL, also I will share with you the TTL overrides document that give you fine-grained control over how long Cloud CDN caches your content before revalidating it.

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

79073791

Date: 2024-10-10 09:57:54
Score: 3.5
Natty:
Report link

Subject closed due to an answer. The deployment setting was wrong.

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

79073780

Date: 2024-10-10 09:54:53
Score: 1.5
Natty:
Report link

The problem you are facing is most probably because of arrayOfWord.pop() method in function remove. You are assigning the value of arrayOfWord.pop() to words.innerHTML , which eventually returns the deleted element not the the whole array.

To fix this issue you can think of another approach like re rendering the whole array as updated result Use pop method but don't render it to your page . Hope this will work for you

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

79073779

Date: 2024-10-10 09:54:53
Score: 8.5
Natty: 7
Report link

same problem, please help us we are not even using arch btw

Reasons:
  • RegEx Blacklisted phrase (3): please help us
  • RegEx Blacklisted phrase (1): help us
  • RegEx Blacklisted phrase (1): same problem
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: nub

79073775

Date: 2024-10-10 09:53:52
Score: 0.5
Natty:
Report link

This is an old question but lkessler was right.

Sort function works "bad".

If you test this simple code:

procedure TForm1.List_Text();
var
     list: TStringList;

begin
     list:=TStringList.Create();

     list.Add('.');
     list.Add('-');
     list.Add('.1');
     list.Add('-1');

     list.Sort();

     Memo1.Text:=list.Text;

     list.Free();
end;

The result is:

-
.
.1
-1

This is not correct. If "-" < "." for the two firsts elements the same should happen for the third and fourth.

the correct order should be:

.
.1
-
-1

or

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

79073774

Date: 2024-10-10 09:53:52
Score: 2
Natty:
Report link

Try using this command - pip install torch -f https://download.pytorch.org/whl/torch/

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

79073740

Date: 2024-10-10 09:45:50
Score: 2.5
Natty:
Report link

There are several methods to resolve this issue: Click the toggle button in the upper right corner of Outlook to switch between the older and newer versions. enter image description here

If you can’t find the toggle button to switch your Outlook version as you did in the old version, follow these steps: Click on the Help option in the top menu. enter image description here Then, from the options, select Go to classic Outlook. enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Gaurav Gupta

79073738

Date: 2024-10-10 09:45:50
Score: 1.5
Natty:
Report link

function createMouseEvent(e,t){const n=t.changedTouches[0],c=new MouseEvent(e,{bubbles:!0,cancelable:!0,view:window,detail:t.detail,screenX:n.screenX,screenY:n.screenY,clientX:n.clientX,clientY:n.clientY,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,button:0,buttons:1});t.target.dispatchEvent(c)}document.addEventListener("touchstart",(e=>{createMouseEvent("mousedown",e)})),document.addEventListener("touchmove",(e=>{createMouseEvent("mousemove",e)})),document.addEventListener("touchend",(e=>{createMouseEvent("mouseup",e)}));

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Kundan Mafia

79073736

Date: 2024-10-10 09:45:50
Score: 3.5
Natty:
Report link

Thanks for the solution it did work with on:push

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Venkata

79073732

Date: 2024-10-10 09:44:50
Score: 3.5
Natty:
Report link

Add

Allow CORS: Access-Control-Allow-Origin

extension to your browser.

Chrome:

https://chromewebstore.google.com/detail/allow-cors-access-control/lhobafahddgcelffkeicbaginigeejlf?utm_source=ext_app_menu

Firefox:

https://addons.mozilla.org/en-US/firefox/addon/access-control-allow-origin/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search

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

79073731

Date: 2024-10-10 09:44:50
Score: 1.5
Natty:
Report link

Is it producing any exceptions or is it running completely?

make sure the file is deleted after delete line using:

Debug.Assert(!File.Exists(filePath), "File was not deleted successfully.");

Also check if the file is in read only mode, you can change that using like this:

var fileInfo = new FileInfo(filePath);
if (fileInfo.Exists && fileInfo.IsReadOnly)
{
    fileInfo.IsReadOnly = false;
}
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Ghaith Mansour

79073729

Date: 2024-10-10 09:43:49
Score: 1.5
Natty:
Report link

Just additional option which uses netcat but does not require option -X

ssh -o ProxyCommand="nc --proxy-type http --proxy  <proxyhost>:<proxyport> %h %p" user@host
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: peter veprek

79073727

Date: 2024-10-10 09:43:49
Score: 1
Natty:
Report link

I'm having this exact problem too and have found this note written in the merchandisingService.wsdl

Important: This API call is no longer actively managed and cannot be relied upon to retrieve current product data, and in some cases, will not retrieve any data. As an alternative to this call, we recommend using the https://developer.ebay.com/api-docs/buy/marketing/resources/merchandised_product/methods/getMerchandisedProducts getMerchandisedProducts call of the Buy Marketing API

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

79073716

Date: 2024-10-10 09:41:49
Score: 1.5
Natty:
Report link

I've encountered this issue as well. By chance, I deleted the previous StepDefinitions.cs file and then rebuilt the entire project, which resolved the issue.

I also tried many times. Sometimes simply rebuilding the project works, while other times I need to delete the previous StepDefinitions.cs file

My suggestion is to back up your previous StepDefinitions.cs files, then delete all of them, rebuild the project, and restore them afterwards. This might temporarily fix the issue.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Zhenning Zhang

79073703

Date: 2024-10-10 09:37:48
Score: 0.5
Natty:
Report link

Differences Between .js and .jsx

File Purpose

Pros and Cons

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

79073698

Date: 2024-10-10 09:36:48
Score: 1
Natty:
Report link

You could deifine __getitem__() as:

def __getitem__(self, idx):
    return {
       'interactions': self._data[idx], 
       'user_features': self._user_features[self._data[idx]['user']] if self._user_features else None
        }

Is a little bit faster. But is not a definitive solution.

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

79073694

Date: 2024-10-10 09:35:47
Score: 1
Natty:
Report link

When you use $request->user()->can('view', $Permission), it will try to find a policy assigned to the Permission model (eg. App\Policies\PermissionPolicy).

To make things simple, you should create a PermissionPolicy class and move the view method to that class.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you use
  • Low reputation (0.5):
Posted by: Luca Puddu

79073692

Date: 2024-10-10 09:35:47
Score: 0.5
Natty:
Report link

I think that trying to treat this as a matrix is not contributing anything, instead treat it as collection of items, each with a list of numbers in.

The the algorithm splits into 3 sequential steps

  1. Combine any items which can be combined according to your "valid combinations"
  2. Sort the items. According to a comparison which sorts on the first item in the list of numbers, if either first numbers is None, move onto the second item in the list of numbers....., if there's no overlap they you don't care
  3. Check that every column has been simultaneously sorted, if any are wrong then return false.

Then after the algorithm you can build a matrix again if you want.

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

79073691

Date: 2024-10-10 09:35:47
Score: 11.5 🚩
Natty: 5
Report link

+1 I'm having the exact same issue. When my react-native app is active and in the foreground it prevents the device from going to sleep. This is undesired behavior and I haven't done anything explicit to cause this programatically. It behaves sort of like Youtube or a video app. @gkeenley Did you ever find a solution to this problem? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this problem
  • No code block (0.5):
  • Me too answer (2.5): I'm having the exact same issue
  • Ends in question mark (2):
  • User mentioned (1): @gkeenley
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ilir Iljazi

79073679

Date: 2024-10-10 09:32:46
Score: 1.5
Natty:
Report link

As per this A Hands-On Guide to Vault in Kubernetes blog written by Anvesh Muppeda :

  • vault.hashicorp.com/agent-inject: “true”: Enables Vault Agent injection for this pod.

  • vault.hashicorp.com/agent-inject-status: “update”: Ensures the status of secret injection is updated.

The vault-agent-status annotation in HashiCorp Vault's Kubernetes tells us how the Vault Agent interacts with your application pods.When you set value to "injected", it says that the Vault Agent has successfully injected the secrets into the pod and yes,the APIs to fetch password and will only be invoked on password change not on the events like token renewal.

This status helps the application to understand that it can now safely access the secrets that have been injected.

Refer to this blog written by Dominik Engelhardt, for more information and also go through this document written by Bibin Wilson,which might be helpful.

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pranay Kumar Kyasala

79073661

Date: 2024-10-10 09:28:44
Score: 1.5
Natty:
Report link

As mentioned by @Huang and linked by @DBS here: https://stackoverflow.com/a/38452396/10594231

This could be fixed by appending the unicode variation selector VS15 to the character which forces it to be rendered as text rather than emoji.

div.entry-content p a::before {
    content: "\2197";
    padding-right: 2px
}

would become

div.entry-content p a::before {
    content: "\2197\FE0E";
    padding-right: 2px
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CanadianBacon

79073659

Date: 2024-10-10 09:28:44
Score: 2.5
Natty:
Report link

确保assets/css/main.scss文件的开头包含YAML前置元数据:

请保留下面两条白线,这个是转化处理的识别前提!

---
---

@import "style";
@import "course-document";

这些空的YAML前置元数据行是必要的,它们告诉Jekyll处理这个文件。

如果进行了这些修改后问题仍然存在,请运行bundle exec jekyll build --trace并查看详细的错误输出,这可能会提供更多关于问题原因的信息。

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Onefly.eth

79073652

Date: 2024-10-10 09:26:44
Score: 1.5
Natty:
Report link

Regarding the path of clang-format.exe in VS, the default path is: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\Llvm\bin. Please make sure that you have installed the Desktop development with C++ workload.

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

79073651

Date: 2024-10-10 09:26:44
Score: 0.5
Natty:
Report link

Another solution inspired by https://github.com/Rdatatable/data.table/issues/5020#issuecomment-917486693

DT[, c(sing, reg), env = list(sing = as.list(setNames(nm = names(DT[,.(a)]))), 
                              reg = as.list(setNames(nm = names(DT[, x:y]))))]
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: iago

79073639

Date: 2024-10-10 09:24:43
Score: 1
Natty:
Report link

I read documentation to Flet and there isn't option to compile python code to one exe file by using Flet, but pyinstller and command pyinstaller.exe --onefile work pretty fine with Flet framework.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Łukasz Świątek

79073619

Date: 2024-10-10 09:21:43
Score: 10.5
Natty: 7.5
Report link

Same question, anyone can help us? Plz!

Reasons:
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (1): help us
  • RegEx Blacklisted phrase (0.5): anyone can help
  • RegEx Blacklisted phrase (1): Same question
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: victranit

79073603

Date: 2024-10-10 09:15:41
Score: 1
Natty:
Report link

I tried below code and its working Lets say we need total length of string after adding space in between is 12.

    String str1 = "Rohit", str2 = "BHA";
    String finalString = str1;
    for(int i = 1 ; i <= 12 - str1.length() - str2.length() ; i++)
    {
        finalString += " ";
    }
    finalString += str2;
    System.out.println("iban curr : "+finalString);

Now finalString have value : "Rohit BHA" (4 space in between)

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

79073598

Date: 2024-10-10 09:14:40
Score: 2.5
Natty:
Report link

It is because of the hook what ever the hook you are using that must has to called in the mainfile.tsx then only it can be worked unless untill it should not be worked.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: BAMMIDI KRISHNA VAMSI

79073593

Date: 2024-10-10 09:13:40
Score: 3.5
Natty:
Report link

I managed to solve this problem after long time after running command -feature -Vulkan. I got the error ERROR | Unable to connect to adb daemon on port: 5037 This advice help me: Android Studio error: cannot connect to daemon I run in command line: net stop winnat net start winnat.

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

79073590

Date: 2024-10-10 09:13:40
Score: 2
Natty:
Report link

DEFINE SCOPE user SESSION 1d SIGNUP ( CREATE user SET user = $user, pass = crypto::argon2::generate($pass) ) SIGNIN ( SELECT * FROM user WHERE user = $user AND crypto::argon2::compare(pass, $pass));

Maybe, you should change the column user to email

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

79073583

Date: 2024-10-10 09:12:40
Score: 0.5
Natty:
Report link

When creating annotations their actual position is based on their index in the dataframe not on your variable xval.

import pandas as pd
from matplotlib import pyplot as plt

data = [
    [0.0, 4.9, 19.9, 8.1, 0.0],
    [0.12, 4.5, 27.0, 10.1, 0.0],
    [0.24, 2.8, 9.3, 4.6, 0.0],
    [0.36, 2.2, 9.1, 2.7, 0.0],
    [0.48, 2.2, 7.3, 3.1, 0.0],
    [1.0, 4.9, 26.4, 11.2, 0.0],
    [1.12, 5.9, 25.3, 8.7, 0.0],
    [1.24, 3.7, 13.3, 7.1, 0.0],
    [1.36, 3.0, 9.5, 3.4, 0.0],
    [1.48, 3.2, 8.9, 4.7, 0.0],
    [2.0, 8.4, 24.8, 20.2, 0.0],
    [2.12, 9.5, 19.3, 22.5, 0.0],
    [2.24, 5.7, 11.8, 6.6, 0.0],
    [2.36, 4.1, 11.1, 5.1, 0.0],
    [2.48, 5.4, 8.0, 4.6, 0.0],
]

df = pd.DataFrame(columns=["xval", "y1", "y2", "y3", "y4"], data=data)
df1 = df.copy()
df1['total'] = df[['y1', 'y2', 'y3', 'y4']].sum(axis=1)


fig, ax = plt.subplots()
df.plot(x="xval", kind="bar", ax=ax, stacked=True, width=0.11)

padding = 0.03 #percentage, needed for putting some space between the annotations and bars

for i, x in enumerate(df1['xval']):
    total = df1['total'][i]
    ax.annotate(f'{x:.2f}-{df1["total"][i]:.2f}',
                (i, total + padding * total),  # Add padding to the y-coordinate
                rotation='vertical', 
                fontsize=10, 
                ha='center', 
                va='bottom') #set position

#set xticks and labels
ax.set_xticks(range(len(df1['xval'])))
ax.set_xticklabels([f'{x:.2f}' for x in df1['xval']])

ax.set_ylim(0, 80) #makes space for the annotations

ax.grid(False) #looks better without grid in my opinion
plt.tight_layout()
plt.show()

Result: enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Márton Horváth

79073573

Date: 2024-10-10 09:10:39
Score: 1
Natty:
Report link

for webpack.config.js file

new CspHtmlWebpackPlugin({
        'font-src': ["'self'", "data:"]
    }),
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali

79073572

Date: 2024-10-10 09:10:39
Score: 1
Natty:
Report link

Based on the sources of the Java specification of Elasticsearch NGramTokenFilter does not have a tokenChars field, however, such field is present in NGramTokenizer. I can assume that you need the tokenizer. Tokenizers split input for tokens and filters filter generated tokens. You can write custom tokenizer to combine your tokenizer with your filter conditions.

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

79073565

Date: 2024-10-10 09:08:38
Score: 1.5
Natty:
Report link

I'm dealing with this currently. An option is to turn off the FedCM as there is an optional arg to force it off, but this is just pushing out the problem till it becomes mandatory.

My primary concern is the impact on cookie; we want people to be able to reject our cookies with a single click. Will edit this answer once I've explored a little further.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Karim Abu-Seer

79073561

Date: 2024-10-10 09:07:38
Score: 4.5
Natty:
Report link

i have doubt regarding how to import DTD file microsoft threat modeling tool if any have any idea please reply in this

Reasons:
  • Blacklisted phrase (1.5): please reply
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: chinnari Abhishek

79073560

Date: 2024-10-10 09:07:38
Score: 2
Natty:
Report link

I managed to figure it out. It was because the image was built locally on my M1 Mac, so was built for ARM but Cloud Run uses AMD64. Once I changed that it worked.

Strange that the error had nothing to do with the actual issue, but here we are.

Thanks everyone for your responses.

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

79073540

Date: 2024-10-10 09:04:37
Score: 0.5
Natty:
Report link

I had the same problem. Moved ads initialization (AudienceNetworkInitializeHelper.initialize(this)) from Application onCreate() function to Activity onCreate() function and the problem dissapeared.

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

79073531

Date: 2024-10-10 09:03:37
Score: 3.5
Natty:
Report link

Try rsbuild for create vue3 project without vite

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

79073527

Date: 2024-10-10 09:02:36
Score: 7 🚩
Natty: 4
Report link

I am also facing same issue with onMouseEnter and onMouseLeave ,I want to create a ripple type animation on my button so can't use css because I need the cursor cordinates to perform the animation, on fast cursor movements the onMouseenter triggers but onmouseleave never triggers. This causes an inconsistency.

even after 9 year of this issue raised if their is any solution please do share.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Me too answer (2.5): I am also facing same issue
  • Low reputation (1):
Posted by: hertz

79073521

Date: 2024-10-10 09:00:35
Score: 1.5
Natty:
Report link

It gives you 58 as it is the number of untagged commits between your current commit and last commit on the same branch (or down to commits history) that has any tagged point. So, it is expected behaviour. However, I do not know how to change it to desirable outcome.

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

79073509

Date: 2024-10-10 08:58:34
Score: 2
Natty:
Report link

I would first try adding the below to your code if you haven't already.

Console.OutputEncoding = Encoding.UTF8;

Alternatively if you are on a Windows client connecting to the server try following these steps. https://superuser.com/questions/269818/change-default-code-page-of-windows-console-to-utf-8

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

79073484

Date: 2024-10-10 08:50:32
Score: 1.5
Natty:
Report link

I also faced this issue on my Macbook Air M2 Chip. tried almost all the solution available around this. including rosetta 2, ibrew etc etc. but nothing worked.

utlimately I got to know which I did not find anywhere instead of using therubyracer gem use mini_racer which is compatible with silicon chips.

In my project I analysed that we are not using therubyracer gem at all, it was available sicne beginnning of the project and we were just installing it.

So two option, either remove therubyracer or replace it with mini_racer gem.

I hope this may help some of you who wants to install on macbook air m2 or m1 chip.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Praveen Agarwal

79073476

Date: 2024-10-10 08:48:31
Score: 2
Natty:
Report link

This works for me:

cy.get('div').contains(/myString/i)

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mark Half

79073474

Date: 2024-10-10 08:47:31
Score: 1
Natty:
Report link

I actually came from here to this question: https://community.anaconda.cloud/t/issue-updating-anaconda-cant-open/70182

Unfortunatedly they used the wrong quotation marks, so you get an PackagesNotFoundError for "“anaconda-cloud-auth"

You have to type (use "..." insted of “...”):

python -m pip uninstall anaconda-cloud-auth
conda update conda
conda install "anaconda-cloud-auth>0.5.0"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tom Br.

79073471

Date: 2024-10-10 08:46:30
Score: 0.5
Natty:
Report link
- registry.addEndpoint("/chat").withSockJS();

+ registry.addEndpoint("/chat");

It works for me.

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

79073462

Date: 2024-10-10 08:45:30
Score: 8
Natty: 7
Report link

Same here. No idea thats the issue. Did you find a solution?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Marco

79073458

Date: 2024-10-10 08:44:29
Score: 1.5
Natty:
Report link
  1. Go to Start, and enter Internet Options, press enter
  2. Select the 'Security' tab
  3. Select the zone under which your site resides (For example, if you have 'yoursite.custhelp.com' added to Trusted Sites, select the 'Trusted Sites' zone. The default zone would be 'Internet')
  4. Adjust your settings using one of the the following methods:
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eswar

79073454

Date: 2024-10-10 08:43:29
Score: 0.5
Natty:
Report link

About:

@Environment(\.requestReview) private var requestReview

You can refer to this case: @Environment vs @EnvironmentObject.

How do I access EnvironmentValues (RequestReviewAction) in MAUI iOS (formerly Xamarin iOS)?

The more important point is: The iOS18 API for Xcode16 is not currently supported. And you can follow up this issue: [META] Xcode 16.0 Support for .NET 8/9 and MAUI #20802

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Jianwei Sun - MSFT

79073448

Date: 2024-10-10 08:41:29
Score: 1.5
Natty:
Report link

I spent many days trying to figure out what is the matter, but without any success. So I moved facebook ads initialization from Application onCreate function to activity onCreate function. The problem dissapeared.

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

79073442

Date: 2024-10-10 08:39:28
Score: 1
Natty:
Report link

Steps to Create a Scrollable Graph in Grafana Open Dashboard:

Log in to Grafana and open an existing dashboard or create a new one. Add a New Panel:

Click on Add Panel and select Time Series or Graph. Select InfluxDB Data Source:

Choose your InfluxDB data source from the dropdown menu. Write Your Query:

Use a query to fetch data, like:

SELECT mean("value") FROM "your_measurement" WHERE $timeFilter GROUP BY time($__interval) fill(null) Set Time Range:

Use the time picker (top right) to select a broader range (e.g., last week). Disable Auto-Refresh:

In panel settings, set Refresh to Off or a longer interval (e.g., every 5 minutes). Adjust X-Axis:

Ensure the X-axis is set to Time to enable scrolling. Save Your Dashboard:

Click Apply to save the panel, then save the dashboard.

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

79073438

Date: 2024-10-10 08:38:28
Score: 1.5
Natty:
Report link
view.wantsLayer = true

let myColor = NSColor(calibratedRed: 50.0/255.0, green: 50.0/255.0, blue: 50.0/255.0, alpha: 1.0) view.layer?.backgroundColor = myColor.cgColor

online RGB Value convert and use u code rgba and hex (https://hex2colorpicker.com)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kamogelo Moswathupa

79073437

Date: 2024-10-10 08:38:28
Score: 1
Natty:
Report link

This floating keyboard is new feature on Gboard call "Write in text fields".

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

79073421

Date: 2024-10-10 08:32:26
Score: 1.5
Natty:
Report link

this

a, b, c = (5, 6, 7) if cond1 == 2 and cond2 == 3

or this

a, b, c = (5, 6, 7) if cond1 == 2 and cond2 == 3 else (None, None, None)

I think it will do the job.

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

79073420

Date: 2024-10-10 08:32:26
Score: 3.5
Natty:
Report link

this is an old post, but I has the same problem. I found this article very useful: https://forum.excel-pratique.com/excel/macro-transformee-de-fourier-123780 It shows how to "activate" the ATPVBAEN.XLAM in your excel, manually, or how to import it by scripting

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: scaramo

79073413

Date: 2024-10-10 08:31:26
Score: 2.5
Natty:
Report link

How to make the amount in the amount column of the activity in the receipt number of the Excel main sheet, the amount in the receipt number for that activity in the other sheet.

main sheet Like this R.No Activity amount 2024/01 Rent 500.00 2024/02 servey 150.00

another sheet R No: Rent servey
2024/01 500
2024/02 150

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: lilly

79073411

Date: 2024-10-10 08:31:26
Score: 4
Natty: 5.5
Report link

An answer from 10 years ago helped me now. thanks so much.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user27729527

79073408

Date: 2024-10-10 08:30:25
Score: 4
Natty: 5
Report link

I am unable to add voice perfectly when I am using eleven labs API . it work but not perfectly when I synthesized the voice of some particular part of the video and after that I merge that particular portion after modify that part's text then it is not working properly the voice of original audio is good and the voice of cloning text is not audible why ?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: gyan

79073402

Date: 2024-10-10 08:28:24
Score: 3
Natty:
Report link

You should try https://www.draft1.ai/ You can just describe your diagram and it will draw it for you accurately

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

79073401

Date: 2024-10-10 08:27:24
Score: 1.5
Natty:
Report link

@Fc0001 , I've been working in robotics for three years now, and this particular issue is one of the most straightforward tasks I've encountered. Handling mesh parts and URDF files can be challenging, especially when exporting to ROS. Automatically generated URDF files from CAD software (like SolidWorks or others) often don't function correctly. I believe the issue lies in parameter values and coordinate references—CAD software references don't precisely align with the ROS ecosystem.

To address this, I've explored real-time debugging tools. While options like the VS Code URDF extension have had issues (they've raised this on their GitHub and seem to have fixed it in a pre-release version vscode-ros) I recommend using the Python URDF package for quick debugging and visualization of URDF files. Before starting, ensure your NumPy version is compatible, as URDFpy relies on the NetworkX Python library, which can encounter issues with certain versions of NumPy.

For more details, check out these resources:

urdfpy

urdf-visualizer

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @Fc0001
  • Low reputation (1):
Posted by: wissem chiha

79073397

Date: 2024-10-10 08:26:24
Score: 3
Natty:
Report link

Did you edit other fields in the extension settings? I got this error when I filled in the optional fields (branch name etc.) in the extension settings however it worked when I reset the settings and only entered the api token (left the others blank). I'm also assuming you replace my_project_id with your actual FF project ID?

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Belen Morum

79073393

Date: 2024-10-10 08:25:23
Score: 2.5
Natty:
Report link

This is because distuitls is deprecated in python 3.12. So downgrade Python to 3.11 and install the package successfully.

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

79073390

Date: 2024-10-10 08:24:23
Score: 1
Natty:
Report link

Just added - CHOKIDAR_USEPOLLING=true to the environment variable in docker-compose.yml, and now the hot reload is enabled:

    environment:
      - NODE_ENV=development
      - CHOKIDAR_USEPOLLING=true
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammed Jaafer

79073383

Date: 2024-10-10 08:23:23
Score: 0.5
Natty:
Report link

Found the solution. To dynamically call a function we can use the below:

void execute(){
  stepsApi = load("scripts/steps.groovy")

  Map steps = [upload:[number: "1", type: "module"]]

  steps.each { step, params ->
        stepsApi."$step"(params)
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Petros

79073378

Date: 2024-10-10 08:22:23
Score: 4.5
Natty:
Report link

You are right, this functionality has never been implemented for the current UI and we should have removed the property. Can you explain why you need to change the alignment of the label?

You can report bugs on our GitHub page: https://github.com/eclipse-scout/scout.rt/issues

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you explain
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Claudio Guglielmo

79073375

Date: 2024-10-10 08:20:22
Score: 3.5
Natty:
Report link

They have now added the functionality to run another job from a workflow! 👏

Run job function in Workflows

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Théo camb.

79073368

Date: 2024-10-10 08:19:22
Score: 0.5
Natty:
Report link

I figure out temporary solution, is a little bit goofy, but work

def on_close_event(e):
    if e.data == "close":
        print("Saving unfinished tasks...")
        un_tasks = dict()
        i = 0
        for tt in tab_download.tasks.controls:
            if type(tt.value) == str:
                un_tasks[i] = {"ttask": tt.ttask, "value": {"name": "", "path": ""}}
            else:
                un_tasks[i] = {"ttask": tt.ttask, "value": {"name": tt.value.name, "path": tt.value.path}}
            i += 1

        write_unfinished_tasks(un_tasks)
        page.window.prevent_close = False
        page.window.on_event = None
        page.update()
        page.window.close()
        
page.window.prevent_close = True
page.window.on_event = lambda e: on_close_event(e)
page.update()

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Łukasz Świątek

79073359

Date: 2024-10-10 08:17:21
Score: 4.5
Natty: 5
Report link

First answer worked Thanks a lot

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Vrp

79073352

Date: 2024-10-10 08:14:20
Score: 2.5
Natty:
Report link

For me, clearing the app data for GBoard did the trick

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

79073339

Date: 2024-10-10 08:12:19
Score: 4
Natty: 4.5
Report link

I also encountered this problem today. It's suppose not to inherit base packages.

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

79073334

Date: 2024-10-10 08:11:19
Score: 2
Natty:
Report link

This was ultimately a bug in Visual Studio. Visual Studio 17.11.5 onwards has a command to allow you to reset your extensions. From the bug report at visualstudio.com:

We have introduced a command in this release that should resolve the issue you’re experiencing. If you continue to face the same problem after updating or with a fresh installation, please follow the steps below:

  • Close all running instances of Visual Studio.
  • Open the Developer Command Prompt as an Administrator.
  • Run the following command: devenv /updateconfiguration /resetExtensions
  • Wait for the command to finish executing.
  • Restart Visual Studio.
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): face the same problem
  • Low reputation (0.5):
Posted by: Paul Guz

79073332

Date: 2024-10-10 08:10:19
Score: 1.5
Natty:
Report link

My 2 cents: I had a similar problem and it came from the usage of Powershell ISE which runs on Powershell 5. SQLServer version 22 and SQLPS were installed and visible. Needed to run a PWSH version 7 where the SQLServer version 22 was installed and the code ran directly. Check where they are running the code from.

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

79073330

Date: 2024-10-10 08:09:19
Score: 1
Natty:
Report link

jus cheack mongoose schema firs

const taskSchema = new mongoose.Schema({
title:String,required:true,
completed:Boolean

}) jus i remove required:true,

and replace it title:String,required:true, completed:Boolean enter code here

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

79073329

Date: 2024-10-10 08:09:19
Score: 1
Natty:
Report link

Seems like Black updated what they consider to be "preview". I got it to run using the options --preview --enable-unstable-feature string_processing:

black -l 80 -t py38 --preview --enable-unstable-feature string_processing -c 'long = "This is a long line that is longer than 88 characters. I expect Black to shorten this line length."'

long = (
    "This is a long line that is longer than 88 characters. I expect Black to"
    " shorten this line length."
)

NOTE: The last comment/answer to https://github.com/psf/black/issues/1802 (referenced in @eka's answer) doesn't seem work with Black version 24.8.0.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @eka's
  • Low reputation (1):
Posted by: billibub

79073328

Date: 2024-10-10 08:08:18
Score: 3
Natty:
Report link

Sigh...

Clean and rebuild did the trick

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: rory

79073319

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

This takes O(EV) time, scan through the adjacency lists takes O(E) time and keep a hash table for reachable vertex so for each edge u->v we check for v's adjacency list, taking O(V) time, adding new terms.

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

79073318

Date: 2024-10-10 08:06:18
Score: 3.5
Natty:
Report link

Test S S S S D F

hu Uymuyo Aşısı Amc Gienaox D D S

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

79073313

Date: 2024-10-10 08:05:18
Score: 1
Natty:
Report link

Despite the fact that @MaKruQ gave a good answer and @Johnny Cheesecutter gave a good link, I still received an error for various tables related to the incompatibility of Excel and dates with the time zone. So I decided to rewrite the function as follows and it helped me.

def save_to_file(
    filepath: str,
    date_columns: str | List[str] = None  # add new optional parameter to specify column with object dtype and datetime\Timestamp type into it
) -> Callable[
    [Callable[F_Spec, F_Return]],
    Callable[F_Spec, F_Return]
]:
            def convert_timezones(df: DataFrame) -> DataFrame:
                def convert(value):  # add function to check and replace tzinfo
                    if isinstance(value, Timestamp) and value.tz is not None:
                        return value.tz_convert(None)
                    elif isinstance(value, datetime):
                        return value.replace(tzinfo=None)
                    return value

                for column in df.select_dtypes(include=[
                    'datetime64[ns, UTC]',
                ]) + df[date_columns]:
                    df[column] = df[column].apply(convert)
                return df

It should be noted that my data had columns that contained None, and a date in a row, and a timestamp, and a datetime, and even a date like 0001-01-01 00:00:00+00:00. Changing the function solved the problem. But I still don't like to pass the date myself... although it's better than just looping through all the columns in the dataframe

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @MaKruQ
  • User mentioned (0): @Johnny
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sergey Bakaev Rettley

79073309

Date: 2024-10-10 08:03:17
Score: 0.5
Natty:
Report link

The whole issue luckily wasnt because of the error invalid refresh token. It was part of the issue, but it wasnt the direct cause of the issue.

The issue had to do with the following piece of code:

  const [loaded] = useFonts({
   SpaceMono: require('../../assets/fonts/SpaceMono-Regular.ttf'),
  });

  useEffect(() => {
   if (loaded) {
   SplashScreen.hideAsync();
   }
  }, [loaded]);

  if (!loaded) {
   return null;
  }

If the font didnt load the page never loads and it just shows a white screen. What fixed my problem was to look up the official way to do this. So i found the following in the docs of expo. https://docs.expo.dev/versions/latest/sdk/splash-screen/

I followed this and used the recommended way of loading the fonts, and hiding the splashscreen. And it Fixed the whole problem for me.

For any questions or needed information just comment and ill explain happily.

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

79073305

Date: 2024-10-10 08:03:17
Score: 4.5
Natty:
Report link

Do you have answer for this? I want to remove some routes on top until specific route (in your case is /raceadmin_page). I tried using pushNamedAndRemoveUntil('/to_route', ModalRoute.withName('/history_specific_route')) and it clear out all of history. I'm looking for solution for this problem. My purpose is that still keep history of navigation, only clear out 4 routes on top of navigator stack and refresh my page which is pushed to.

Reasons:
  • Whitelisted phrase (-1): in your case
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (2.5): Do you have an
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: dnguyen

79073304

Date: 2024-10-10 08:03:17
Score: 3
Natty:
Report link

Better with iam identity center. Yes its possible create a permission set with only lambda read only assign it to a group and add this "user" in that group. :)

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

79073303

Date: 2024-10-10 08:02:16
Score: 2.5
Natty:
Report link

You can create a custom visual graph config and use Edge basics -> RDFS or SKOS label and specify which label you want to be used. enter image description here

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

79073300

Date: 2024-10-10 08:02:16
Score: 0.5
Natty:
Report link

To solve this problem I made the following dto:

export class EmptyDto {}

Then I add this dto to annotations of all endpoints that don't have a body. Here is one example:

@AsyncApiSub({
    channel: ActivityActions.GENERATE_DEMO_ACTIVITY,
    message: {
        payload: EmptyDto,
    },
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: André

79073297

Date: 2024-10-10 08:01:16
Score: 2
Natty:
Report link

On my end, I had to set both the javascript origin uri (there's a footnote underneath that section that says you need to set if you're coming from web browser) and the redirect uri.

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

79073286

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

This should do:

protected void shrinkSize() {
    Map lhm = Collections.synchronizedMap(yourLinkedHashMap);
    Iterator iter = lhm.entrySet().iterator();
    while (iter.hasNext()) {
        if (size() > maxSize)
            iter.remove();
        else
            break;
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mircea Sirghi

79073284

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

Solved the issue by actually receiving the body as json format in my php and sending it back in the same format

$jsonData = file_get_contents('php://input');
    $data = json_decode($jsonData, true);
    if ($data !== null) {
    $name = $data['username'];
        echo json_encode($name);
    } 
    else {
        echo json_encode('e no work');
    }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Being47

79073283

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

Protocol violation errors may indicate a database connection object is shared between multiple threads. When I ran into those exception, often the reason was I started a new asynchronous thread (fire and forget) which should log additional information to the database after a general entity insert. Due to the database connection not being threadsafe, I got the protocol violation, with no obvious error, but a stacktrace showing a prepared statement being executed with a valid sql statement.

Also the number in the protocol violation message may differ every time the same error occurs, for e.g. Protocol violation: [ 39, ], Protocol violation: [ 1, ], Protocol violation: [ 124, ]

The mentioned project uses OpenJdk 16.0.2 and ojdbc10-19.15.0.0.1 database driver.

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

79073278

Date: 2024-10-10 07:57:15
Score: 2.5
Natty:
Report link

In our case, the directory where PM2 logs were stored got exhausted. Once we cleared up space, the error disappeared.

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

79073267

Date: 2024-10-10 07:55:14
Score: 0.5
Natty:
Report link

For those looking how to do this in 2024, with java 17+ modules, etc. A very easy way is Keytool explorer

With that, you don't need any weird setup as it supports BKS (and BCKFS).

Simply open the keystore which you want to convert, open the keys by entering the appropriate passwords, and then File->New keystore, select BKS, and drag the keys/certs to the new keystore. Save it, enter the new password, and done.

Reasons:
  • No code block (0.5):
Posted by: Koos Gadellaa

79073263

Date: 2024-10-10 07:53:13
Score: 1.5
Natty:
Report link

I think you should check out content-security-policy or add toString() method after asWebviewUri() so let styleUri => styleUrl

const styleUrl = panel.webview.asWebviewUri(cssPathOnDisk).toString();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: lizy0329

79073256

Date: 2024-10-10 07:52:13
Score: 3.5
Natty:
Report link

same error solution note: please ensure that VS 2013, VS 2015, VS 2017 or VS 2019 was installed with the Visual C++ option

jupyter installed succesfully

Reasons:
  • RegEx Blacklisted phrase (1): same error
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Arundhati Dashrath Jaiswar

79073250

Date: 2024-10-10 07:50:13
Score: 2
Natty:
Report link

Kafka Streams provides the solution to my problem via GlobalKTable.

"The GlobalKTable is fully bootstrapped upon (re)start of a KafkaStreams instance, which means the table is fully populated with all the data in the underlying topic that is available at the time of the startup. The actual data processing begins only once the bootstrapping has completed."

source: confluent streams developer-guide

This worked perfectly for the last past months.

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

79073240

Date: 2024-10-10 07:48:12
Score: 8.5 🚩
Natty:
Report link

Did you find a solution to this problem. I am having the exact same issue. All firewall ports have been opened and we have a similar setup in other environments but this one just does not seem to work. Firewall logs is not showing any dropped packets etc so running out of ideas.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the exact same issue
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (1):
Posted by: Tabrez

79073239

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

01

Menu File -> Project Structure...

02

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

79073237

Date: 2024-10-10 07:46:11
Score: 2
Natty:
Report link

The only thing that worked for me is to use a simple Dialog instead of an AlertDialog...

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

79073235

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

This is an old question, but for anyone facing a similar issue, here's what the Spring JDBC documentation clarifies:

The query method actually comes in two versions:

public void query(String sql, RowCallbackHandler rch): The rch parameter is a callback that processes each row one at a time. You don't need to call rs.next() manually to move to the next row—Spring handles that for you.

public T query(String sql, ResultSetExtractor rse): The rse parameter is a callback that extracts all rows of results at once. In this case, you'd process the entire ResultSet.

If you're using a lambda expression for the second argument, the JDK may select one of these methods automatically, depending on whether you assign the query result to a variable or not.

Reasons:
  • Whitelisted phrase (-2): for anyone facing
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar issue
  • Low reputation (1):
Posted by: Mengstab Ketemaw

79073228

Date: 2024-10-10 07:43:10
Score: 1
Natty:
Report link

I was going through the similar problem where I needed to create a fixed div but it should take the required space and shouldn't overlap the content. I figured a way to make it possible easily although you may need to write more code. Here is how you can do it:

Hope this helps.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Faizan

79073223

Date: 2024-10-10 07:42:10
Score: 0.5
Natty:
Report link

For the parsing period, using java.time is a better approach.

    private fun parseIso8601ToDays(period: String): Int {
    return try {
        val parsedPeriod = Period.parse(period)
        parsedPeriod.days
    } catch (e: DateTimeParseException) {
        DEFAULT_DAYS_VALUE
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hashem Mousavi

79073211

Date: 2024-10-10 07:39:09
Score: 5
Natty:
Report link

I finally figured it out: Here is the link to strapi documentations, scroll down to registration

https://docs.strapi.io/dev-docs/plugins/users-permissions#aws-cognito-strapi-config

Reasons:
  • Blacklisted phrase (1): Here is the link
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: King William

79073209

Date: 2024-10-10 07:39:09
Score: 2
Natty:
Report link

For me it was some :title and :subtitle attributes (thanks @Kinco) and an issue with the v-text attribute as well. To summarize:

INVALID:

<v-toolbar-title
  v-text="header" />

WORKING:

<v-toolbar-title>
  {{ header }}
</v-toolbar-title>

Using Node 22.9.0 (runtime) and Bun 1.1.20 (builder).

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Kinco
  • Low reputation (0.5):
Posted by: barfoos

79073208

Date: 2024-10-10 07:38:09
Score: 1
Natty:
Report link

There are numerous ways to increase the speed of code, using numpy arrays over standard lists for calculations is usually always faster (as you have already attempted).

-Secondary since your calculations are independent from each other (calculating distance a does not affect the calculation for distance b) you could try to parallelize your code by e.g. hyperthreading. \

-Tertiary, from my background in industrial engineering I know alot about the need to calculate distances. The trick here is not to (as you stated) implement conditions to NOT recompute things. Rather it is often way faster to look at exactly which points you do need to recompute!

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