79097140

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

Had the same problem and resolved it by deleting the typoscript record assigned to the root page.

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

79097125

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

By default, Elasticsearch uses two ports to listen to external TCP traffic;

Port 9200 is used for all API calls over HTTP. This includes search and aggregations, monitoring, and anything else that uses a HTTP request. All client libraries will use this port to talk to Elasticsearch Port 9300 is a custom binary protocol used for communications between nodes in a cluster. For things like cluster updates, master elections, nodes joining/leaving, shard allocation

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

79097123

Date: 2024-10-17 08:13:27
Score: 1
Natty:
Report link

I have found the answer.

The problem lies that the new version of firebase/php-jwt requires three arguments for the JWT::encode() method, while i am just putting two arguments there, therefor the token was not returned properly.

Originial JWT::encode

return JWT::encode($payload, self::$secret_key);

Update JWT::encode

return JWT::encode($payload, self::$secret_key, 'HS256');

Thank you for you time

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Joseph

79097118

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

Found the culprit.

Using PS4='+$BASH_SOURCE:$LINENO:$FUNCNAME: ' bash -x run.sh as suggested by @pjh, I got the output

+++/home/go/.nvm/bash_completion:99:: complete -o default -F __nvm nvm
+run.sh:5:: set -e
+run.sh:7:: echo '1. Current dir'
1. Current dir
+run.sh:8:: pwd
/home/go
+run.sh:9:: echo '2. Listing in path ...'
2. Listing in path ...
+run.sh:10:: ls
bundler  package-lock.json  r-libs  run.sh
+run.sh:11:: echo '3. Entering dir'
3. Entering dir
+run.sh:12:: cd bundler
+/home/go/.gvm/scripts/env/cd:48:cd: __gvm_is_function __gvm_oldcd
+/home/go/.gvm/scripts/function/_shell_compat:17:__gvm_is_function: local func_name=__gvm_oldcd
+/home/go/.gvm/scripts/function/_shell_compat:19:__gvm_is_function: [[ x__gvm_oldcd == \x ]]
+/home/go/.gvm/scripts/function/_shell_compat:22:__gvm_is_function: builtin declare -f __gvm_oldcd
+/home/go/.gvm/scripts/function/_shell_compat:24:__gvm_is_function: return 0
+/home/go/.gvm/scripts/env/cd:49:cd: __gvm_oldcd bundler
+/home/go/.gvm/scripts/env/cd:22:__gvm_oldcd: builtin cd bundler
+/home/go/.gvm/scripts/env/cd:22:__gvm_oldcd: return 0
+/home/go/.gvm/scripts/env/cd:52:cd: local dot_go_version dot_go_pkgset rslt
+/home/go/.gvm/scripts/env/cd:53:cd: local defaults_go_name defaults_go_pkgset
+/home/go/.gvm/scripts/env/cd:54:cd: local defaults_resolved=false
+/home/go/.gvm/scripts/env/cd:55:cd: local defaults_hash
+/home/go/.gvm/scripts/env/cd:55:cd: defaults_hash=()
+/home/go/.gvm/scripts/env/cd:57:cd: [[ /home/go/.gvm == '' ]]
+/home/go/.gvm/scripts/env/cd:63:cd: [[ '' -eq 1 ]]
+/home/go/.gvm/scripts/env/cd:64:cd: defaults_hash=($(__gvm_read_environment_file "${GVM_ROOT}/environments/default"))
++/home/go/.gvm/scripts/env/cd:64:cd: __gvm_read_environment_file /home/go/.gvm/environments/default
++/home/go/.gvm/scripts/function/read_environment_file:27:__gvm_read_environment_file: [[ -n '' ]]
++/home/go/.gvm/scripts/function/read_environment_file:32:__gvm_read_environment_file: local filepath=/home/go/.gvm/environments/default
++/home/go/.gvm/scripts/function/read_environment_file:33:__gvm_read_environment_file: local 'regex=^export ([^[:digit:]]+[[:alnum:]_]+);[[:space:]]*([^[:digit:]]+[[:alnum:]_]+=(.*))$'
++/home/go/.gvm/scripts/function/read_environment_file:34:__gvm_read_environment_file: local hash
++/home/go/.gvm/scripts/function/read_environment_file:34:__gvm_read_environment_file: hash=()
++/home/go/.gvm/scripts/function/read_environment_file:36:__gvm_read_environment_file: [[ -z /home/go/.gvm/environments/default ]]
++/home/go/.gvm/scripts/function/read_environment_file:36:__gvm_read_environment_file: [[ ! -r /home/go/.gvm/environments/default ]]
++/home/go/.gvm/scripts/function/read_environment_file:37:__gvm_read_environment_file: echo ''
++/home/go/.gvm/scripts/function/read_environment_file:38:__gvm_read_environment_file: [[ -n '' ]]
++/home/go/.gvm/scripts/function/read_environment_file:42:__gvm_read_environment_file: return 1

I saw that for some reason gvm was returning the 1. This is because I have no gvm envir file. But I didnt see why these particular lines of code should even be invoked.

Following @pjh suggestion that there could be some wrapper on the cd command, I did a comparision of what cd is running between an old machine where this was not a issue and this box.

Old machine cd:

(honeymaker_venv) [go@ci-prod1 ~]$ type cd
cd is a function
cd ()
{
    __zsh_like_cd cd "$@"
}

New machine cd:

root@ci-ubuntu-agent-1:~# su - go
go@ci-ubuntu-agent-1:~$ type cd
cd is a function
cd ()
{
    if __gvm_is_function __gvm_oldcd; then
        __gvm_oldcd $*;
    fi;
    local dot_go_version dot_go_pkgset rslt;
    local defaults_go_name defaults_go_pkgset;
    local defaults_resolved=false;
...... too big to add here

Note: which cd works differently for redhat(old) machines vs debian(new). It returned empty for the new ubuntu machine. so had to use the type command

The gvm was replacing cd with its own implementation.

A little debugging into gvm's cd wrapper led me to this - https://github.com/moovweb/gvm/issues/457

So I just had to comment out the line in the gvm default load script to not replace cd.

comment out the below line in $GVM_ROOT/scripts/gvm-default
#. "$GVM_ROOT/scripts/env/cd" && cd .

The default cd command works all fine now.

Thanks for the suggestions and debugging help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): to comment
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @pjh
  • User mentioned (0): @pjh
  • Self-answer (0.5):
Posted by: leoOrion

79097114

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

Add GenericHandler.ashx in your project

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

79097109

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

Eppstein's algorithm is useless since there is little demand for finding k shortest paths to have repeated vertices (loops).

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

79097108

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

You need to upgrade gradle version according to Java version compatibility in latest Android Studio. Follow this link to update gradle version / migration guide :- https://docs.flutter.dev/release/breaking-changes/android-java-gradle-migration-guide

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Rahul Kushwaha

79097107

Date: 2024-10-17 08:09:25
Score: 6.5 🚩
Natty: 6
Report link

thanks a lot for your responese.when i use this code, i get "not unauthorized" error... what "reqURL" i use to solve that error?

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (1.5): solve that error?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Alireza Alipour

79097106

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

It seems like the issue was caused by changing the base and build images when upgrading to Java 21. After changing it to maven:3.9.6-eclipse-temurin-21 solved my problem.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Emanuel Trandafir

79097105

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

Dynamic Callback Execution: You determine whether a callback for the column name k exists inside the map function. If so, you use the row data row[k] to call that method. Otherwise, you just give back the initial value.

General Boolean Handling: By modifying your callbacks object as necessary, you can utilize the same callback for the active status as well as additional Boolean attributes like completed, banned, and has_uploaded.

Returning Transformed Value: Every transformed value is presented in the table cell after being saved in transformedValue.

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

79097100

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

Try to move the webhook route from web.php to api.php to avoid CSRF token validation, which can cause 419 errors when handling stateless requests like webhooks.

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

79097097

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

https://srikanthvalluru.medium.com/openshift-log-forwarder-to-kafka-5eb2af6f1528

Openshift LogForwarder --> Kafka --> Logstash --> Elasticsearch

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

79097093

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

I had the same issue but in my case I just update the auto-py-to-exe to the newer version.

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

79097089

Date: 2024-10-17 08:02:22
Score: 7.5 🚩
Natty:
Report link

Did you find a solution to this? am interested as well in knowing.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (1):
Posted by: The AI Insighter

79097084

Date: 2024-10-17 07:59:21
Score: 1.5
Natty:
Report link

The only way I got around such a problem is to create a useless small component and create a small procedure called "ClearFocus" which does the following:

uselessComponentName.SetFocus;

You've asked nearly 15 years ago but incase people like me run into the same question you had, here's an alternative solution.

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

79097080

Date: 2024-10-17 07:56:21
Score: 1.5
Natty:
Report link

I have found a solution and answer to my own question:

To avoid an infinitive loop, I used the throttle function during registration.

 function makeListener() {

    let prevBlockId;
    return function updateBlockMode() {         
        const currentSelectedBlock = wp.data.select('core/block-editor').getSelectedBlock();
        const currentBlockId = (currentSelectedBlock) ? currentSelectedBlock.clientId : null;

        if (currentBlockId === prevBlockId) {
            wp.data.dispatch('core/block-editor').updateBlockAttributes(currentBlockId, { mode: 'edit' });
        } else {
           wp.data.dispatch('core/block-editor').updateBlockAttributes(prevBlockId, { mode: 'preview' });
        }       
        prevBlockId = currentBlockId;
    };
 };
const unsubscribe = wp.data.subscribe(_.throttle((makeListener()), 200));

This approach works for me but maybe there is a better solution. I would appreciate any ideas and suggestions.

Reasons:
  • Blacklisted phrase (1): any ideas
  • Blacklisted phrase (1.5): would appreciate
  • Whitelisted phrase (-1): works for me
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: uvo

79097072

Date: 2024-10-17 07:54:20
Score: 1
Natty:
Report link

All information specified in the logs you attached to your post. Exit code 1 means that the container failed because the application terminated with an error. So there is no issues from Kubernetes side at the first glance. The issue is in the code

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

79097070

Date: 2024-10-17 07:54:20
Score: 7.5 🚩
Natty: 5
Report link

Hi I am tried to use same library.Android it is working fine but iOS is still not working.Can you suggest any additional changes need to be done.

Reasons:
  • Blacklisted phrase (2): still not working
  • RegEx Blacklisted phrase (2.5): Can you suggest
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Deepak Nagpal

79097069

Date: 2024-10-17 07:54:19
Score: 1
Natty:
Report link

Another way

var streamSize = 1000;
var maxValue = 50;
new Random(System.currentTimeMillis())
    .ints(streamSize).map(e -> Math.abs(e) % maxValue).toArray();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tyagi Akhilesh

79097068

Date: 2024-10-17 07:54:19
Score: 2.5
Natty:
Report link

I was having a similar error on APEX 19, what resolved it for me was actually saving a Default Report of the given grid. Admittedly this default report shows all the records. But once I had set this up the error stopped occuring.

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

79097061

Date: 2024-10-17 07:51:19
Score: 2
Natty:
Report link

I am not familiar with Apache-Beam but I believe the issue might be related to Kafka not committing the offsets in time. After writing data to the database, the offsets may not be committed immediately. Kafka waits until all messages in the batch (by default 500 messages due to the max.poll.records setting) are processed. This could lead to reprocessing if the system fails or restarts before the offsets are committed.

To reduce the number of duplicates processed in case of failure, you can:

  1. Reduce max.poll.records: This will limit the number of messages in each batch, meaning that fewer messages will be at risk of duplication if something goes wrong mid-batch.
  2. Manually commit offsets: After each database write, commit the Kafka offsets manually to ensure messages are not reprocessed after they are rebalanced.

For more information, you can refer to this article which explains it nicely Offset Management

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ignotus

79097058

Date: 2024-10-17 07:51:19
Score: 1.5
Natty:
Report link

With the following command, you can get output based on different architectures, and the size of each one is smaller.

In the terminal of VsCode:

flutter build apk --split-per-abi
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohsen Rahmdeli

79097051

Date: 2024-10-17 07:47:18
Score: 5
Natty: 4.5
Report link

https://github.com/torvalds/linux/blob/master/fs/open.c#L1434 You can find source code in linux source tree~

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

79097044

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

Or other option, but no save but your "share folder with all".

permission = file1.InsertPermission({
        'type': 'anyone',
        'value': 'anyone',
        'role': 'writer'})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vhngroup Tecnologia

79097038

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

I experienced the same problem and resolved it by following the steps.

Here are the screenshots below. enter image description here

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

79097031

Date: 2024-10-17 07:42:16
Score: 7 🚩
Natty: 4.5
Report link

Would like to ask if you can share the solution on this issue? we having similar issue that itxex in IT2006 also got deleted when we run payroll

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having similar issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mari

79097018

Date: 2024-10-17 07:38:15
Score: 3
Natty:
Report link

The best place for your question is Gmsh's forum: https://gitlab.onelab.info/gmsh/gmsh/issues . Also, please, provide your Gmsh software version and OS identification for such kind of requests. Good luck.

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

79097017

Date: 2024-10-17 07:38:15
Score: 5.5
Natty: 5.5
Report link

Is this possible in 2024? and if not do you know which setting to open for enabling OTG connection?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Shubham Bajaj

79097012

Date: 2024-10-17 07:36:14
Score: 3
Natty:
Report link

I also encountered this problem, I tried to change the Content-Type of the response header to audio/wav to play normally

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

79096984

Date: 2024-10-17 07:28:12
Score: 2.5
Natty:
Report link

I found out myself after all, you need to build for abi indeed (build_abi.sh) with the common kernel config. After that look into dist folder for the exported symbols (xml) file, get your symbol and put it in the android/abi_gki_aarch64.xml file. Now the symbol will be exported from common area to other areas (vendor or something else).

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

79096981

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

You have several options available to you:

  1. Remove them manually. Definitely not fast or fun, but gets the job done! :D
  2. Copy/paste the script into a text editor (eg. Visual Studio Code, Azure Data Studio), remove the comments using the text editor's regex features, then copy/paste the cleaned script into Azure SQL DW/Azure Synapse.
  3. Similar to option 2, connect to Azure SQL DW/Azure Synapse in Azure Data Studio and directly modify your scripts in there. You'll benefit from improved text editing and management tools, and extensions available in Azure Data Studio.

My preference is option 3 because it lets you modify, test, and deploy the script all in one well-outfitted tool.
You're stuck with option 1 and 2 if you don't have admin access to install the text editors listed above on your local machine.

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

79096980

Date: 2024-10-17 07:27:11
Score: 8 🚩
Natty: 4.5
Report link

@ user630702 - I am wondering if you have came across solution / workaround for your issue , I am also looking for it since I am also stuck in the same situation and wanted to use multiple machine credentials related using tower API , and looking for some way to specify it along with delegate_to

Reasons:
  • Blacklisted phrase (2): I am also looking
  • RegEx Blacklisted phrase (1.5): I am also stuck
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): user630702
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: hitesh shaha

79096978

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

However, iOS does not render any HTML, while Android only supports bold text. Any ideas on how to fix this issue?"

You can use handler(platform native code) to achieve it.

For more info you can see my solution of this case: Unable to set LineHeight on Label with TextType set to 'HTML' (Maui).

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Whitelisted phrase (-1.5): You can use
  • RegEx Blacklisted phrase (1.5): how to fix this issue?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Jianwei Sun - MSFT

79096955

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

Working solution :

location /api/auth/ {
   rewrite ^/api/auth(.*) $1 break;
   proxy_pass http://localhost:8085/;
}

About this regex :

due to ^, means every caractere chain begining with /api/auth(.*)

represent a group of any character.

Example /api/auth/account/login :

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

79096950

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

No,currently Mangodb doesn't have any real-time updates in web app. To achieve real-time updates you can use other alternate method that is "change streams" which help for listening to the updates in real-time. It helps to evaluate changes to the entire database.

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

79096940

Date: 2024-10-17 07:14:08
Score: 2
Natty:
Report link

Forward compatibility is an Oxymoron. How can you make a software which will ensure that all changes that you are going to do to that software in future, would still work in this older version in that future time. If that is possible, why would you even have to upgrade a software in Future?

You can only ensure, what worked in older version of software works on New as well, which essentially is Backward compatibility.

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

79096933

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

You can go to react-native-webview repo and see some more functions for this.

For simple i am writing down it here.

<WebView
  {...restProps}
  source={{uri}}
  onLoadStart={()=>setloading(true)}
  onLoadEnd={()=>setloading(false)}
  onLoad={()=>setloading(false)}
  style={{ flex: 1 }}
  injectedJavaScript={INJECTEDJAVASCRIPT}
  scrollEnabled
  setSupportMultipleWindows={false} //This will solve your problem
  useWebView2={true}//Function that is invoked when the `WebView` should open a new window.
  javaScriptCanOpenWindowsAutomatically={true}//A Boolean value indicating whether JavaScript can open windows without user interaction.

You can check more about it from repo.

https://github.com/react-native-webview/react-native-webview/blob/master/src/WebViewTypes.ts#L793

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

79096918

Date: 2024-10-17 07:10:06
Score: 1.5
Natty:
Report link

you can have a

tsconfig.build.json

{
    "extends": "./tsconfig.json",
    "ignore": [
      "**/*.test.ts"
    ]
}

and append -p tsconfig.build.json to your tsc command

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

79096905

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

setSupportMultipleWindows flag works for android only if u want to enable muliple screens in ios as well then u need to enable useWebView2 to true that detenmines whether the web view should use the new chromium based edge webview and enable javaScriptCanOpenWindowsAutomatically to true. I hope it will help you to fix this issue

useWebView2={true}

javaScriptCanOpenWindowsAutomatically={true}

Reasons:
  • Whitelisted phrase (-1): hope it will help
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raghunath Tiwari

79096904

Date: 2024-10-17 07:08:06
Score: 2.5
Natty:
Report link

Change

to

change form-control to form-select select

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

79096903

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

It's an old question, but may be someone will search for a solution.

You can call UnhookWindowsHookEx at the very beginning of the function with a breakpoint and then call SetWindowsHookEx at the very end of the function. If there is a return from the function somewhere in the middle, you should also call SetWindowsHookEx prior to return. If there is an exception handler inside the function, you also need to call SetWindowsHookEx in it.

For me this method works fine and there are no any freezing problems during debugging of the function.

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

79096889

Date: 2024-10-17 07:06:05
Score: 4
Natty: 4
Report link

For me, it was the nginx (webserver) cache.

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

79096880

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

I have solved the unresolved reference problem just by a change the build subsystem from windows to console. VS2022, Windows 10. See issue #1727 in gmsh forum.

Reasons:
  • Whitelisted phrase (-2): I have solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Ermakov

79096875

Date: 2024-10-17 07:04:04
Score: 9.5 🚩
Natty: 5.5
Report link

I met the same problem as you were, do you resolve it yet?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve it yet?
  • RegEx Blacklisted phrase (2.5): do you resolve it
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Evan_Wu

79096865

Date: 2024-10-17 07:03:04
Score: 3.5
Natty:
Report link

deleting the .idea folder underneath the project folder was the key.

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

79096859

Date: 2024-10-17 07:02:03
Score: 3.5
Natty:
Report link

Just install jupyterlab to your default python env.

pip install jupyterlab

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ricardo H.A.

79096855

Date: 2024-10-17 07:01:03
Score: 1
Natty:
Report link

Great answer from @potong. I'm commenting here since it doesn't fit into a comment.

I ended up with the following script:

export PRIVKEY=/etc/letsencrypt/live/mydomain.de/privkey.pem
export FULLCHAIN=/etc/letsencrypt/live/mydomain.de/fullchain.pem
export CERT=/etc/letsencrypt/live/mydomain.de/cert.pem
sed -E \
        -e '/CAChain = \[/{:a;N;/\];/!ba
        s/(= \[).*(\];)/\1$(cat $FULLCHAIN \| sed \'s/^.*CERTIFICATE//\'  )\2/
        s/.*/echo "&"/e}' \
        -e '/PrivateSecureKey = \[/{:a;N;/\];/!ba
        s/(= \[).*(\];)/\1$(cat $PRIVKEY  \| sed \'s/^.*CERTIFICATE//\' )\2/
        s/.*/echo "&"/e}' \
        -e '/SecureCertificate = \[/{:a;N;/\];/!ba
        s/(= \[).*(\];)/\1$(cat $CERT  \| sed \'s/^.*CERTIFICATE//\' )\2/
        s/.*/echo "&"/e}' \
file_to_edit

I need to add a preprocessing of the file to embed, sinces it starts with undesired lines.

I'm getting 6: Syntax error: ")" unexpected.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @potong
  • Self-answer (0.5):
Posted by: Krischu

79096837

Date: 2024-10-17 06:59:03
Score: 2.5
Natty:
Report link

mumtalikali https://www.mumtalikati.com/ I know this question is out of date, but if someone is looking for the answer (like I was) I could solve it with: JSON.stringify(myObj)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: shahbaz ahmad khan

79096835

Date: 2024-10-17 06:59:03
Score: 2.5
Natty:
Report link

Great explanation on working with different domains in Simscape! The solution you suggested, creating a custom model of a directional valve in the gas domain, is very helpful. Definitely a good approach to avoid compatibility issues. For anyone interested in professional hydraulic components, feel free to visit https://www.hydraulic-master.com/ where you'll find a wide range of products for hydraulic systems.

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

79096831

Date: 2024-10-17 06:59:03
Score: 2.5
Natty:
Report link

error : "Failed to read the PDF file: This PDF document probably uses a compression technique which is not supported by the free parser shipped with FPDI. (See https://www.setasign.com/fpdi-pdf-parser for more details)"

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

79096811

Date: 2024-10-17 06:57:02
Score: 1
Natty:
Report link
this resolved my issue :
create this json file : .env-cmdrc.json
{
  "development": {
    "NEXT_PUBLIC_TOKEN_TEST_1": "$2a$12$Deoyoudsgsdgsdgdsgdsgsdg546895363068"
  },
  "production": {
    "NEXT_PUBLIC_TOKEN_TEST_1": "$2a$12$Deoyoudsgsdgsdgdsgdsgsdg546895363068"
  }
}



script command :
 "scripts": {
    "dev": "env-cmd -e development next dev",
    "build": "env-cmd -e production next build",
    "start": "env-cmd -e production next start"
  }
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user27846394

79096810

Date: 2024-10-17 06:57:02
Score: 1.5
Natty:
Report link

To remove the Print from Server Icon when you are on the cloud for example:

input[name=printServer]
{
    visibility:hidden;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JLO974

79096800

Date: 2024-10-17 06:54:00
Score: 11.5 🚩
Natty: 6
Report link

have you solved the locked problem? Because I have the same problem, when I try to delete the file it say to me that the file is opened by a java.exe process.

Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1.5): solved the locked problem?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: raiman24

79096797

Date: 2024-10-17 06:52:59
Score: 2.5
Natty:
Report link

My problem was manually doing putInt in overrided PreferenceChangeListener. When I switched to storing String and later parsing that string to integer, no problems anymore.

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

79096788

Date: 2024-10-17 06:50:59
Score: 1
Natty:
Report link

This trouble fixes with enable in admin area of web interface gitlab. In 17+ version it maybe in next path: admin area -> settings -> Runners -> Allow runner registration token Alternative path of this trouble - edit your gitlab.rb configuration file. Just add this strings of code:

Enable CI/CD features for new projects

gitlab_rails['gitlab_default_projects_features_builds'] = true

Enable merge requests for new projects

gitlab_rails['gitlab_default_projects_features_merge_requests'] = true

Enable issues for new projects

gitlab_rails['gitlab_default_projects_features_issues'] = true

Enable wiki for new projects

gitlab_rails['gitlab_default_projects_features_wiki'] = true

Enable snippets for new projects

gitlab_rails['gitlab_default_projects_features_snippets'] = true

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Артем Заранков

79096786

Date: 2024-10-17 06:50:59
Score: 1.5
Natty:
Report link

the right and bottom try different percentages until your image is centered

button position: relative;

button img position: absolute; right:()% bottom()%

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

79096779

Date: 2024-10-17 06:47:58
Score: 2.5
Natty:
Report link

You can try the following steps:

  1. Open the HyphenateChat.xcframework/ios-arm64 directory enter image description here
  2. create a new dSYMs folder, and
  3. download the file from this link.
  4. After extracting the downloaded file, move it to the newly created directory. enter image description here

Then, archive the app again, and the warning will disappear.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): try the following
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Carlson Yuan

79096777

Date: 2024-10-17 06:46:57
Score: 4.5
Natty:
Report link

What does "which appears to be HTML-encoded." mean ? Can you show a screenshot ? What is "a display-only date field" ?

I tried to reproduce (on apex 24.1 - I have no access to older versions)

enter image description here

Tested this and it works as expected:

enter image description here

What did you do different and what are you seeing ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show
  • Probably link only (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What do
  • High reputation (-2):
Posted by: Koen Lostrie

79096774

Date: 2024-10-17 06:46:57
Score: 2.5
Natty:
Report link

I was able to solve this myself. The issue was with proguard-rules.pro. I was using keep rules for Retrofit, Gson and other crucial libraries but not for Hilt due to which it was having issues. When I added keep rules for Hilt, everything is working correctly.

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

79096773

Date: 2024-10-17 06:45:57
Score: 3.5
Natty:
Report link

Don't forget to check if there's a proxy in your way!

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

79096770

Date: 2024-10-17 06:44:57
Score: 0.5
Natty:
Report link

This is the code I have implemented it through using Custom Painter You can even Twig the path.quadraticBezierTo(0, 0, 0, 10); quadraticBezier for difrrenr shapes

It has exact same curved shape and line as in the image

enter image description here

 import 'package:flutter/material.dart';
    
    // Custom painter for straight horizontal line and small curve at the end
    class CurvedLinePainter extends CustomPainter {
      final bool isLeft;
    
      CurvedLinePainter({required this.isLeft});
    
      @override
      void paint(Canvas canvas, Size size) {
        final paint = Paint()
          ..color = Colors.grey
          ..strokeWidth = 2.0
          ..style = PaintingStyle.stroke;
    
        final path = Path();
    
        if (isLeft) {
          // Left side: horizontal straight line and small downward curve at the end
          path.moveTo(size.width, 0); // Start from top-right
          path.lineTo(10, 0); // Draw horizontal line to the left
          path.quadraticBezierTo(0, 0, 0, 10); // Small downward curve at the end
        } else {
          // Right side: horizontal straight line and small downward curve at the end
          path.moveTo(0, 0); // Start from top-left
          path.lineTo(size.width - 10, 0); // Draw horizontal line to the right
          path.quadraticBezierTo(size.width, 0, size.width, 10); // Small downward curve at the end
        }
    
        canvas.drawPath(path, paint);
      }
    
      @override
      bool shouldRepaint(covariant CustomPainter oldDelegate) {
        return false;
      }
    }
    
    class CurvedTextRow extends StatelessWidget {
      @override
      Widget build(BuildContext context) {
        return Row(
          mainAxisAlignment: MainAxisAlignment.center,
          crossAxisAlignment: CrossAxisAlignment.center, // Ensure vertical centering
          children: [
            // Left side
            Container(
              width: 60,
              height: 20,
              child: CustomPaint(
                painter: CurvedLinePainter(isLeft: true),
              ),
            ),
            // Center text
            Padding(
              padding: const EdgeInsets.symmetric(horizontal: 8.0),
              child: Text(
                'Top Categories',
                style: TextStyle(
                  fontWeight: FontWeight.bold,
                  fontSize: 19,
                ),
              ),
            ),
            // Right side
            Container(
              width: 60,
              height: 20,
              child: CustomPaint(
                painter: CurvedLinePainter(isLeft: false),
              ),
            ),
          ],
        );
      }
    }
    
    void main() {
      runApp(MaterialApp(
        home: Scaffold(
          appBar: AppBar(title: Text('Curved Lines Demo')),
          body: Center(
            child: CurvedTextRow(),
          ),
        ),
      ));
    }
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vaibhav Yadav

79096768

Date: 2024-10-17 06:44:56
Score: 11 🚩
Natty:
Report link

getting same error.try the package today.did you get any answers? really appreciate you

Reasons:
  • RegEx Blacklisted phrase (3): did you get any answer
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): getting same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joel

79096766

Date: 2024-10-17 06:43:55
Score: 9 🚩
Natty:
Report link

any solution?..i am stuck to the same problem

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1.5): i am stuck
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Senpai sensei

79096761

Date: 2024-10-17 06:41:54
Score: 2.5
Natty:
Report link

was looking for an answer on the same...I think we can only show labels at the handles as of now.Because on dragging it seems that they are using a common component but once the connection is established we are using the Edge component

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

79096755

Date: 2024-10-17 06:38:53
Score: 2
Natty:
Report link

A full explanation can be found here: https://github.com/xamarin/xamarin-macios/issues/21234

But this is due to the "Window" in MvvmCross property being exported now where it wasn't before.

A work around is to remove the "initialViewController" attribute from your storyboard.

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

79096751

Date: 2024-10-17 06:34:52
Score: 1
Natty:
Report link

THIS LINE CAN WORK FOR YOU AND MEET YOUR EXPECTATION:

mysqldump -u root -p my_db --hex-blob < /var/www/my_db2.sql
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gad Iradufasha

79096750

Date: 2024-10-17 06:34:52
Score: 1
Natty:
Report link

another way is to add key for tracking so that angular will mount and unmount internally:

 @for (url of [item.url]; track url) {
              <iframe width="100%" height="100%" [src]="url"></iframe>
            }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abzal

79096749

Date: 2024-10-17 06:34:52
Score: 2
Natty:
Report link

https://springdoc.org/#javadoc-support

/** 
 * Summary of the class
 * <p>Description of the class</p>
 */
public class MyClass {
  /** 
 * Summary of the class
 * <p>Description of the class</p>
 * @param req This is parameter summary
 * @return return a Resp object
   */
  public Resp get(Req req) {
    return new Resp()
  }
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: fy_kenny

79096747

Date: 2024-10-17 06:34:52
Score: 6.5 🚩
Natty: 6.5
Report link

I can't find any other references to this on the Web, and I don't have enough reputation to comment, so I'm writing a comment here about Alex MDRs answer.

Thankyou and I updated the code with your suggested change. A couple of questions:

  1. weightsFeature (and weightsItem) can not be used when clusterAlg = "hc"?
  2. If you use weightsFeature then shouldn't you set pFeature to something like 0.8. In my case I'm reducing the probability of selecting some features, and so they need to be excluded sometime, which only occurs when pFeature is less than 1 correct?
Reasons:
  • Blacklisted phrase (1): Thankyou
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation to comment
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: puristo

79096739

Date: 2024-10-17 06:31:51
Score: 3
Natty:
Report link

I had a similiar issue, as i have checked that i was connected with some client vpn once i discunnected vpn, my issue was resolved

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Amit Mandhare

79096728

Date: 2024-10-17 06:24:49
Score: 3
Natty:
Report link

Can we overwrite a pin even if it is written in the .dtsi file

Because in above example the file is .dts file.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): Can we
  • Low reputation (1):
Posted by: Enes Akyay

79096723

Date: 2024-10-17 06:23:49
Score: 1
Natty:
Report link

1: Go to application folder on your Mac.

2: You will find Xcode app, Right Click on it.

3: Select "Show Package Content", it will redirect to "Contents" folder.

4: You will find "MacOS" folder inside "Contents" folder.

5: Open "MacOS" folder you will find "Xcode" option inside it.

7: Double click Xcode option and it will open it automatically in terminal and will run some command. Let it complete.

8: Now open Xcode it will work.

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

79096714

Date: 2024-10-17 06:21:48
Score: 1.5
Natty:
Report link

just do this

import { useRouter } from 'next/navigation'

remove the next/router with 'next/navigation'

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

79096712

Date: 2024-10-17 06:20:47
Score: 6.5 🚩
Natty: 4
Report link

enter image description here

So, it's basically just removing your apps from this menu, and the warning won't appear anymore, right?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: sLurPPPP

79096697

Date: 2024-10-17 06:15:45
Score: 2
Natty:
Report link

In Angular 18 I had to remove import 'zone.js/testing'; from polyfills.ts file

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

79096691

Date: 2024-10-17 06:13:45
Score: 2
Natty:
Report link

In Angular 18, I had to remove import 'zone.js/testing'; from polyfills.ts file

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

79096690

Date: 2024-10-17 06:13:45
Score: 3
Natty:
Report link

I just did a self join on the dimension table which is_current_rec and this is working perfectly.

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

79096673

Date: 2024-10-17 06:07:43
Score: 0.5
Natty:
Report link

A better Approach would be to Change the trigger to 'Schedule' once per day - say at 08:00 AM everyday to receive documents uploaded yesterday.

Then you can retrieve the list using 'Get files (properties only) method and use an oData filter to fetch only yesterday's files to avoid overlapping with older ones.

Here's a composite expression to only fetch yesterday's files. this will work as a sliding window every time the flow runs.

Created ge @{addDays(startOfDay(utcNow()),-1)} and Created lt @{startOfDay(utcNow())}

enter image description here

here's what the trigger should look like:

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Laviza Falak Naz

79096660

Date: 2024-10-17 06:02:42
Score: 1.5
Natty:
Report link

I've solved this with the following command

docker run --gpus all -p 8080:8080 -v "$(pwd)/test_input.json:/test_input.json" ${IMAGE_REPO}

This command will start the endpoint, run the test, and then terminate automatically. Make sure to place the test_input.json file in your local directory.

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

79096659

Date: 2024-10-17 06:01:41
Score: 6 🚩
Natty: 4.5
Report link

I have the same problem, I use the GDI+ DrawImage function to scale an image when I compile the application with the Win32 platform, then Debug and trace the time that function remained, just about 10-20ms, but then I compile with the x64 platform, and debug, the time remained about 200ms.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (0.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: Fangchao Ning

79096654

Date: 2024-10-17 06:00:40
Score: 7
Natty: 7.5
Report link

How can we access content of container using webapp URL ?

Reasons:
  • Blacklisted phrase (1): How can we
  • 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 we
  • Low reputation (1):
Posted by: Shiv Modi

79096651

Date: 2024-10-17 05:59:39
Score: 7 🚩
Natty:
Report link

You can check specific values that changed via Delta approach - the Updates method of the DevOps REST API

An example of that approach in this thread by @Expiscornovus: Power Automate - How to create Azure DevOps work items only once when the trigger is a work item update?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Expiscornovus
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Laviza Falak Naz

79096638

Date: 2024-10-17 05:54:38
Score: 0.5
Natty:
Report link

The return value may not be suitable for an array method. forEach is an array method, if there is no suitable structure for it, it will not be displayed in the interface as it will return an error. details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach

For example, when I request https://jsonplaceholder.typicode.com/todos/1 point, I cannot use the array method for this response. But when I get the https://jsonplaceholder.typicode.com/todos/ items, I can now use the array methods.

enter image description here

First, check the return values ​​from the 'dat.json' request from the http requests. Then you can convert the values ​​from the request into a suitable structure for the array.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mefisto

79096636

Date: 2024-10-17 05:53:38
Score: 1
Natty:
Report link

Was able to solve this!

I updated my loop to include id: \.id, like this:

ForEach($ingredients, id: \.id) { $ingredient in
    TextField("Edit ingredient", text: $ingredient.displayText)
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Adam Bowker

79096635

Date: 2024-10-17 05:53:38
Score: 1
Natty:
Report link

The error you're encountering, blockBlob download failed, during Snowflake Git integration usually indicates an issue with downloading files from your Azure DevOps repository, possibly linked to either permissions, configuration, or network problems.

Ensure Snowflake has read access to the Azure DevOps repository.

Double-check repository URL, branch, and path in Snowflake’s Git settings.

Ensure there are no firewall or network issues blocking access between Snowflake and Azure DevOps.

Disconnect and reconnect the Git integration in Snowflake, then fetch the latest branch.

Ensure Snowflake has correct permissions to Azure Blob Storage if files are stored there.

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

79096634

Date: 2024-10-17 05:53:38
Score: 3
Natty:
Report link

The official documentation contains information related to this issue.

here

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 손동진

79096628

Date: 2024-10-17 05:52:38
Score: 1
Natty:
Report link

Your problem is related to how date input and formatting are handled in your component.

  1. Install react-native-mask-text

    npm install react-native-mask-text

  2. Use MaskedTextInput for date formatting

    import React, { useState } from 'react'; import { View, TextInput, StyleSheet, Text } from 'react-native'; import { MaskedTextInput } from 'react-native-mask-text'; import { Button, Provider as PaperProvider } from 'react-native-paper'; import { DatePickerModal } from 'react-native-paper-dates';

    const PickDateAndTime = () => { const [date, setDate] = useState(''); const [isDatePickerVisible, setDatePickerVisible] = useState(false);

    const handleDatePicked = (selectedDate: Date) => { const formattedDate = dayjs(selectedDate).format('MM/DD/YYYY'); setDate(formattedDate); setDatePickerVisible(false); };

    return ( <DatePickerModal locale="en" mode="single" visible={isDatePickerVisible} onDismiss={() => setDatePickerVisible(false)} date={new Date()} onConfirm={handleDatePicked} saveLabel="Confirm" /> <MaskedTextInput mask="99/99/9999" value={date} onChangeText={(text) => setDate(text)} keyboardType="numeric" placeholder="MM/DD/YYYY" style={styles.input} /> <Button onPress={() => setDatePickerVisible(true)}> Pick Date {date ? ( Selected Date: {date} ) : null} ); };

    const styles = StyleSheet.create({ container: { padding: 20, }, input: { borderBottomWidth: 1, marginBottom: 20, fontSize: 18, padding: 10, }, });

    export default PickDateAndTime;

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

79096625

Date: 2024-10-17 05:51:38
Score: 3.5
Natty:
Report link
Photo by CULTURALS INTERIOR DESIGNERS - Search dining room pictures
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nitin Gandhi

79096623

Date: 2024-10-17 05:50:37
Score: 6 🚩
Natty:
Report link

where exactly are you getting this from . which file ?

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

79096619

Date: 2024-10-17 05:49:36
Score: 1
Natty:
Report link

I was having an issue trying to install an older windows program using bottles program (flatpak distribution under linux mint). I was able to bypass this setup extraction issue by manually extracting the "packed" installer files and running the setup executable manually.

According to @jntesteves and @moracino on the bottles discord server, you need to take care to use a file extractor that can read .CAB files properly. (File Roller 44.3 from flathub works)

Once you've extracted the installer files, you should be able to run the Setup.exe included in the directory. If you are using bottles or wine, as I was, you should extract it to the steamuser home folder of the bottle. Then, click "Run Executable" to browse and run the executable. In my case it was under /home/$USER/.var/app/com.usebottles.bottles/data/bottles/bottles/Essential-Forms/drive_c/users/steamuser/. I needed to install dependencies of msxml6, msxml4, msxml3 beforehand. Then, after the program installation succeeded, reinstall msxml4 to set the default msxml location to msxml4.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @jntesteves
  • User mentioned (0): @moracino
  • Low reputation (1):
Posted by: Brad

79096617

Date: 2024-10-17 05:49:36
Score: 8 🚩
Natty: 5.5
Report link

I have exactly the same issue. Did you come to a solution for this?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Toni Turek

79096616

Date: 2024-10-17 05:48:35
Score: 1
Natty:
Report link

*   {
    box-sizing: border-box;
}
body {
    background-color: black;
    margin: 5px;
}
header h1{

    position: absolute;
    border: 1px solid black;
    background-color: black;
    padding: 2px;
    left: 50%;
    transform: translate(-50%);
}
header {
    position: fixed;
    font-family: Arial;
    color: white;
    height: 35%;
    width: 98%;
    margin: 10px;
    border: 1px solid white;
    background-color: black;
}
#head   {
    font-size: 5.5em;
    font-weight: bold;
    letter-spacing: 11px;
    text-align: center;
}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    border: 1px solid white;
}
<body>
    <header>
        <h1 id="head">EMINƎM</h1>
            <div class="video">
                <video autoplay>
                    <source src="https://www.youtube.com/watch?v=agUn18o-VRA" type="video/mp4">
                </video>
            </div>
    </header>
</body>

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ton yes

79096607

Date: 2024-10-17 05:43:34
Score: 8 🚩
Natty: 5.5
Report link

i liked your code but i can not make it work, can you send me the sample project please ?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you send me
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Erman Ispir

79096604

Date: 2024-10-17 05:42:33
Score: 2.5
Natty:
Report link

2024-10-16T14:01:00.524159Z 7 [Warning] [MY-010584] [Repl] Slave SQL for channel '': Worker 1 failed executing transaction '3d057915-1935-11ef-ab44-42010ae4f116:53437273' at master log mysql-bin.000614, end_log_pos 13079064; Could not execute Write_rows event on table customer.household_stage_log; Deadlock found when trying to get lock; try restarting transaction, Error_code: 1213; handler error HA_ERR_LOCK_DEADLOCK; the event's master log mysql-bin.000614, end_log_pos 13079064, Error_code: MY-001213 i found this error any one help me to resolve.

Reasons:
  • Blacklisted phrase (1): help me
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vikas Pawane

79096603

Date: 2024-10-17 05:42:33
Score: 1.5
Natty:
Report link

I encountered this issue today after my emulator crashed during shutdown. The issue was resolved by reinstalling the Android Emulator tool in Android Studio (Tools -> SDK Manager -> SDK Tools).

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

79096602

Date: 2024-10-17 05:42:33
Score: 1.5
Natty:
Report link

This works as expected:

aws s3api list-objects-v2 --bucket spinhead --query "Contents[?StorageClass == 'STANDARD'] | sort_by(@, &Size)[-3:]"

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

79096600

Date: 2024-10-17 05:42:33
Score: 2
Natty:
Report link

Since the router is sending and receiving JSON payloads to your co-processor via a POST, you will always have to deserialize and serialize the JSON to and from your POJO.

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

79096592

Date: 2024-10-17 05:37:32
Score: 0.5
Natty:
Report link

Also you can use git config command:

git config remote.origin.url <new_url>
Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dark Angel

79096589

Date: 2024-10-17 05:37:32
Score: 1
Natty:
Report link
import dayjs from 'dayjs';
import duration from 'dayjs/plugin/duration';

dayjs.extends(duration);

dayjs.duration(dayjs(yourDate).diff(dayjs(yourDate).startOf('month'))).weeks()

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

79096588

Date: 2024-10-17 05:36:32
Score: 1.5
Natty:
Report link

You need to follow instruction in https://superset.apache.org/docs/configuration/configuring-superset/#custom-oauth2-configuration

I need more customize in CustomSsoSecurityManager function You must check user from self.find_user and after that use login_user for login

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