79281523

Date: 2024-12-14 22:39:33
Score: 4
Natty:
Report link

sheet.getRow(X).getCell(C).getStringCellValue()

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

79281521

Date: 2024-12-14 22:38:32
Score: 5
Natty:
Report link

You can go to https://www.opendatanetwork.com/ and search opendata to find most of the domains.

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: theDataSniffer

79281497

Date: 2024-12-14 22:18:27
Score: 4
Natty:
Report link

Camel 4.4 introduced variables.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Leponzo

79281446

Date: 2024-12-14 21:30:16
Score: 5
Natty:
Report link

Thanks to the suggestion in the comments and in particular the tip of @Homer512 I have come to this solution, please tell me if you think it could be done better.

// shape.cuh
#pragma once

#include <variant>
#include "sphere.cuh"

using Shape = std::variant<Sphere>;
//sphere.cuh
#pragma once

#include "ray.cuh"
#include "vec3.cuh"

class Sphere {
public:
  __host__ __device__ Sphere(const Vec3 &center, float radius);
  __device__ auto hit(const Ray &r) const -> bool;

private:
  Vec3 center;
  float radius;
};

h_shapes initialized as

const std::vector<Shape> &h_shapes = scene->getShapes();
  const size_t num_shapes = h_shapes.size();
  Shape *d_shapes;
  CUDA_ERROR_CHECK(cudaMalloc((void **)&d_shapes, num_shapes * sizeof(Shape)));
  CUDA_ERROR_CHECK(cudaMemcpy(d_shapes, h_shapes.data(),
                              num_shapes * sizeof(Sphere),
                              cudaMemcpyHostToDevice));

and finally the device function to get the color

template <class... Ts> struct overload : Ts... {
  using Ts::operator()...;
};

__device__ auto getColor(const Ray &ray, const Shape *shapes,
                         const size_t num_shapes) -> uchar4 {
  for (size_t i = 0; i < num_shapes; i++) {
    bool hit = std::visit(
        overload{
            [&ray](const Sphere &s) { return s.hit(ray); },
        },
        shapes[i]);

    if (hit) {
      return make_uchar4(1, 0, 0, UCHAR_MAX);
    }
  }
  return make_uchar4(0, 0, 1, UCHAR_MAX);
}

Here I don't really like the fact that for each new shape I have to write the [&ray](const Sphere/Cube/Pyramid &s) { return s.ray(ray) } when I already have defined a type that represents the union of multiple shapes

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please tell me
  • RegEx Blacklisted phrase (1): I have come to this solution, please
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Homer512
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: glowl

79281442

Date: 2024-12-14 21:27:14
Score: 4.5
Natty: 5
Report link

dir=$(cd "${self%[/\\]*}" > /dev/null; cd ../laravel/sail/bin && pwd)
is this correct?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): is this
  • Low reputation (1):
Posted by: Adriano Cruz de Oliveira

79281424

Date: 2024-12-14 21:14:11
Score: 5.5
Natty:
Report link

I have the exact same issue. It would be nice to resolve the issue so we can still have two different packages. One for the library and one for the tweak.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: xelahot

79281190

Date: 2024-12-14 18:53:37
Score: 4.5
Natty:
Report link

It seems i have misunderstood the purpose of the Drawer.Screen items, while they provide a quick way to add items to the menu, what I need can only be achievable through the use of Custom Drawer Items.

Thanks @satya164 for the answer.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @satya164
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rustozce

79281173

Date: 2024-12-14 18:39:34
Score: 5.5
Natty:
Report link

What version of python are you using? Code seems to run without issue in Python3.8 in this online Python IDE https://www.online-python.com/?

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

79281152

Date: 2024-12-14 18:20:29
Score: 4
Natty:
Report link

This github repository helped me understand. I was lacking dependency injection, a concept I put off learning.

https://github.com/MateuszPeczek/UnitTest/blob/master/TestProject/UnitTests/TestClassForCRUDController.cs

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

79281075

Date: 2024-12-14 17:23:14
Score: 6.5 🚩
Natty:
Report link

I do have a similar question. How to fetch the other nodes inside child node. I am new to xslt, but as far I know xslt reads only in forward direction.

Reasons:
  • RegEx Blacklisted phrase (1.5): I am new
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have a similar question
  • Low reputation (1):
Posted by: Spark

79281058

Date: 2024-12-14 17:13:11
Score: 9 🚩
Natty: 4.5
Report link

Any luck with this? I have the same issue...

Reasons:
  • Blacklisted phrase (1.5): Any luck
  • Blacklisted phrase (1): I have the same issue
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Guillermo

79281007

Date: 2024-12-14 16:36:04
Score: 4
Natty:
Report link

Above steps are valid

Please find the steps to enable monitoring in Prometheus, the catch is you need to provide a correct permission to the monitoring user

here is the link to the documentation: https://docs.openshift.com/container-platform/4.13/observability/monitoring/enabling-monitoring-for-user-defined-projects.html

Reasons:
  • Blacklisted phrase (1): here is the link
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hari Prassad Kannan

79280990

Date: 2024-12-14 16:28:01
Score: 4.5
Natty:
Report link

@DonMag The main issue I’m facing is that when returning to the root controller, the UI still shows all the views that were previously presented. If I navigate to the corresponding tab, it doesn’t display the correct view for that tab. Instead, the navigation stack from the previous tab remains stuck, causing the expected view to not load properly.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @DonMag
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jael Ruvalcaba

79280961

Date: 2024-12-14 16:11:57
Score: 6.5 🚩
Natty: 4.5
Report link

I am getting below error while connecting the device.

java.lang.UnsatisfiedLinkError: no otmcjni in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at com.digitalpersona.onetouch.jni.MatchingLibrary.<clinit>(MatchingLibrary.java:16)
at com.digitalpersona.onetouch.jni.Matcher.<clinit>(Matcher.java:8)
at com.digitalpersona.onetouch.processing._impl.DPFPEnrollmentFactoryImpl$EnrollmentImpl.<init>(DPFPEnrollmentFactoryImpl.java:40)
at com.digitalpersona.onetouch.processing._impl.DPFPEnrollmentFactoryImpl.createEnrollment(DPFPEnrollmentFactoryImpl.java:20)
at com.digitalpersona.onetouch.ui.swing.CapturePanel.<init>(CapturePanel.java:42)
at com.digitalpersona.onetouch.ui.swing.DPFPEnrollmentControl.<init>(DPFPEnrollmentControl.java:32)

where can I download otmcjni ? Please suggests?

Reasons:
  • Blacklisted phrase (1): can I do
  • RegEx Blacklisted phrase (2.5): Please suggest
  • RegEx Blacklisted phrase (1): I am getting below error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Anandh

79280958

Date: 2024-12-14 16:08:55
Score: 4.5
Natty:
Report link

You can follow these blog to set up basic microfrontend applications

https://medium.com/nerd-for-tech/micro-front-ends-hands-on-project-63bd3327e162

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: SatishWork

79280678

Date: 2024-12-14 13:11:13
Score: 4
Natty: 4.5
Report link

This error is showing with xcode 16.2 and rider 2024. The solution for me was to update Rider to 2024.3 as discussed here https://rider-support.jetbrains.com/hc/en-us/community/posts/22789137492882-error-HE0004-Could-not-load-the-framework-IDEDistribution

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

79280655

Date: 2024-12-14 12:55:07
Score: 6 🚩
Natty:
Report link

Please share solution if you are able to resolve this issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Akshay

79280591

Date: 2024-12-14 12:09:56
Score: 4
Natty:
Report link

Datamodel app.config

add name="dentnedEntities" connectionString="metadata=res://*/Entity.Model_dentned.csdl|res://*/Entity.Model_dentned.ssdl|res://*/Entity.Model_dentned.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=DESKTOP-G8O66SS;initial catalog=dentned;integrated security=True;MultipleActiveResultSets=True;&quot;" providerName="System.Data.EntityClient"

application app.config

add name="dentnedEntities" connectionString="metadata=res:///DG.DentneD.Model.Entity.Model_dentned.csdl|res:///DG.DentneD.Model.Entity.Model_dentned.ssdl|res://*/DG.DentneD.Model.Entity.Model_dentned.msl;provider=System.Data.SqlClient;provider connection string="data source=DESKTOP-G8O66SS;initial catalog=dentned;integrated security=True;MultipleActiveResultSets=True;"" providerName="System.Data.EntityClient"

PAth is different. Please help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user3843604

79280582

Date: 2024-12-14 12:03:53
Score: 5.5
Natty: 5.5
Report link

Anyway we can avoid huge WAL generation during this time?

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

79280528

Date: 2024-12-14 11:26:43
Score: 5
Natty:
Report link

This worked:

public T GetScript<T>() where T : Script

Thanks @shingo. Link to solution

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @shingo
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Waarnov

79280522

Date: 2024-12-14 11:19:42
Score: 5
Natty:
Report link

finally i got the solution's form Flutter GitHub issue part: https://github.com/flutter/flutter/issues/156304

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohan Balaji

79280521

Date: 2024-12-14 11:19:41
Score: 4
Natty:
Report link

Thank you both, this worked completly fine and was an easy approach both of them worked ps: I cant cast vote but i will make sure to caste an upvote after i am eligible. Thanks again

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): upvote
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Khan

79280513

Date: 2024-12-14 11:12:39
Score: 5.5
Natty:
Report link

Check with this link to upload your githup code and integrate with Azure AI .

USEFULL link: https://youtube.com/playlist?list=PLJoEt7pdSz_2g8-S0okMJkh0apGRcRu29&si=8vMFnmIxOYYd6Ro1

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

79280488

Date: 2024-12-14 10:51:33
Score: 6.5 🚩
Natty:
Report link

Can you please provide the Spring Boot Version of your application. Additionally Please refer this documents. https://springdoc.org/

Reasons:
  • Blacklisted phrase (1): this document
  • RegEx Blacklisted phrase (2.5): Can you please provide
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: Girish G

79280471

Date: 2024-12-14 10:40:28
Score: 6 🚩
Natty:
Report link

I have the same problem. I believe it does not come from the character ^ or Β¨ itself, but the fact that, on the French keyboard, they appear in an intermediate state so that you can type a letter that can be accentuated (i.e. typing "Β¨ + e" gives out the "Γ«" letter. This intermediate state may not be supported by the app, which makes the program crash. Try copy-pasting the character and see if that works. Otherwise, maybe try another python editor.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NaN2024

79280453

Date: 2024-12-14 10:26:25
Score: 6.5
Natty: 7.5
Report link

How can I apply that to a sphere (geosphere, or regular)?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: Leith

79280403

Date: 2024-12-14 09:51:17
Score: 5.5
Natty:
Report link

please try to use fine-tune N-shot

https://www.youtube.com/watch?v=4wtrl4hnPT8&t=1731s&ab_channel=codebasics https://github.com/codebasics/langchain/blob/main/4_sqldb_tshirts/few_shots.py

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

79280353

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

I`m so sorry, but what about .net 8.0? I have the same problem with creating my controller for ASP Core (MVC) and all my packages are 8.0 version (only Web.CodeGenerator.Design with 8.0.7)...

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
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vader

79280341

Date: 2024-12-14 08:56:03
Score: 9 🚩
Natty: 5
Report link

did you manage to find the solution to this. I am having the same issue. When I create a new table in dataverse I am unable to see this table in dataflow for some reason.

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to find the solution to this
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: user1395968

79280261

Date: 2024-12-14 07:44:47
Score: 6 🚩
Natty: 5
Report link

May I ask if the user executing this program is a SYS or similar system user? Would it be possible for a regular DBA user to avoid this error?

Reasons:
  • Blacklisted phrase (1): May I ask
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: δ»°ζœ›ζ˜Ÿη©Ί

79280251

Date: 2024-12-14 07:38:44
Score: 6 🚩
Natty:
Report link

Ios build failed issue with latest xcode version, same error like above people got.

Reasons:
  • RegEx Blacklisted phrase (1): same error
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: swamy digitalraiz

79280090

Date: 2024-12-14 05:11:14
Score: 9.5 🚩
Natty: 5.5
Report link

hey can anyone tell how to fix these error?

Reasons:
  • RegEx Blacklisted phrase (2.5): can anyone tell how
  • RegEx Blacklisted phrase (1.5): how to fix these error?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ABHISHEK RAJ

79280076

Date: 2024-12-14 04:51:10
Score: 6
Natty: 7
Report link

can we remove currency icon from this amount?

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): can we
  • Low reputation (1):
Posted by: Rajendra Dhakal

79280068

Date: 2024-12-14 04:42:08
Score: 6.5 🚩
Natty:
Report link

Have you seen https://github.com/CATIA-Systems/FMPy?tab=readme-ov-file#advanced-usage ?

In particular, https://github.com/CATIA-Systems/FMPy/blob/main/fmpy/examples/custom_input.py

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Claudio

79280004

Date: 2024-12-14 03:22:54
Score: 5.5
Natty:
Report link

Do you have the following in your build.gradle?

android {
    buildFeatures {
        androidResources = true
    }
}
Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have the
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: vlazzle

79279967

Date: 2024-12-14 02:41:45
Score: 6.5 🚩
Natty:
Report link

How can you know it? I'm Vietnamese but I haven't heard it. I don't say it wasn't true but I just want know why no news about it in few days ago. Is it just happen today? If you have any news about it, please give me a link. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please give me
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How can you
  • Low reputation (1):
Posted by: Zaria

79279964

Date: 2024-12-14 02:40:43
Score: 6.5 🚩
Natty:
Report link

I have the same error I have to install Xvfb to use: xvfb :99 & export DISPLAY=':99'

In order to TIBCO executes normally

Reasons:
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28775640

79279940

Date: 2024-12-14 02:08:37
Score: 4
Natty: 5
Report link

You just saved me a ton of time. Deactivating the security plugins was the key. Thanks!

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

79279937

Date: 2024-12-14 02:06:36
Score: 4
Natty: 5
Report link

I used the link given and so far so good, thank you

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

79279876

Date: 2024-12-14 00:50:22
Score: 4
Natty: 4
Report link

try a link opener maybe not too sure tbh

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

79279860

Date: 2024-12-14 00:30:17
Score: 5.5
Natty: 4.5
Report link

I tried deleting my credentials.json, and it worked once. Now, couple days later I'm facing the same issue again "Access token refresh failed: invalid_grant: Token has been expired or revoked."

Any new solution for this?

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user28774891

79279781

Date: 2024-12-13 23:21:02
Score: 11.5
Natty: 7
Report link

I have the same issue. Did you solve it ?

I don't know how to send thruth data to override document pared with the custom parser.

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you solve it
  • RegEx Blacklisted phrase (1.5): solve it ?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: MΓ©lanie GAULT

79279750

Date: 2024-12-13 22:51:57
Score: 4
Natty: 4.5
Report link

Can You use the 'If on edge bounce' block? Please try to clarify your question and maybe add a link to the project you are trying to make.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can You use the
  • Low reputation (1):
Posted by: Twineee

79279734

Date: 2024-12-13 22:43:55
Score: 4.5
Natty:
Report link

Try use back quotes around line breaks: This how it looks in visual studio

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

79279683

Date: 2024-12-13 22:10:47
Score: 8 🚩
Natty: 5
Report link

were you able to successfully run this flutter project? Did face comparison (to verify if both images are of the same person) work fine?

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Regina Phalange

79279632

Date: 2024-12-13 21:41:40
Score: 5.5
Natty:
Report link

could you please provide further information on:

  1. What is your Thingsboard version (like version number, Community/Professional Edition)?
  2. What does your dashboard look like (how many entries/entities, does the table have/how many widgets are in the dashboard)? Do you use any cell/content-style functions?
  3. Maybe you can share a screenshot of the missing & working scroll bar (and since you can see the popup, can you scroll in that popup with the mouse even though you don't see a scroll bar?). (black out private information before sharing)

I want to hide those at first and then let the user select the figures to display by using "Columns To Display"

This is a simple setting you can turn on by going into your table widget, in the Data-Tab below your Device-Source you should see the Columns. Click on the Gear-Icon of a columns and change those Settings:

Default column visibility: Hidden
Column selection in 'Columns to Display': Enabled


I was not able to reproduce your problem, but in my test, the scroll bar style was different between Firefox and Edge (styles can often be different between browsers).

Image of the Difference (on demo system v.3.8.1.9) Difference Between Firefox and MS-Edge

Reasons:
  • Blacklisted phrase (1): What is your
  • RegEx Blacklisted phrase (2.5): could you please provide
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Electronout

79279605

Date: 2024-12-13 21:23:35
Score: 5
Natty:
Report link

For anybody having the same problem but csrf is disabled:

  1. Check that you permitted the controller url in your SecurityFilterChain if you are using Spring Security, although this should create an access denied exception.
  2. Make sure to select the correct mapping for the controller method. @GetMapping for a get request and @PostMapping for a post request.

If you send a post request to a method declared with @GetMapping spring boot will throw the 405 error.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • User mentioned (1): @GetMapping
  • User mentioned (0): @PostMapping
  • User mentioned (0): @GetMapping
  • Low reputation (1):
Posted by: FullMetalJack

79279580

Date: 2024-12-13 21:12:31
Score: 6 🚩
Natty:
Report link

Thanks for the guidance.

Lots of grumpy downvoters. Just wanted a hand.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Cyoung75

79279545

Date: 2024-12-13 20:54:26
Score: 5.5
Natty:
Report link

You need to configure your server to receive preflight requests and respond appropriately. Check this link for more information: https://developer.mozilla.org/en-US/docs/Glossary/Preflight_request

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): Check this link
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Chibuokem Onyekwelu

79279528

Date: 2024-12-13 20:44:23
Score: 4
Natty:
Report link

It's a bug in the SDK. This will fix this issue: https://github.com/microsoftgraph/msgraph-sdk-objc-models/pull/36

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

79279495

Date: 2024-12-13 20:32:18
Score: 6 🚩
Natty:
Report link

Please share what solution finally worked for the OP.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share what solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Saranya

79279487

Date: 2024-12-13 20:30:16
Score: 12 🚩
Natty: 6.5
Report link

Sorry I had to create a answer because I can't create a comment because I don't have 50 reputation points... regular SoF BS...

I have same issue, can you please give me more details how you solve it?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please give me
  • RegEx Blacklisted phrase (1.5): I don't have 50 reputation points
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: com sat

79279473

Date: 2024-12-13 20:22:13
Score: 5
Natty: 6
Report link

I tried what was listed above. When I run this command in a task I am getting kicked out of the playbook not just the current task:

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Dkirk

79279438

Date: 2024-12-13 19:57:08
Score: 4
Natty:
Report link

Time Traveller here. πŸ‘‹ πŸ‘‹

The solution @dustin-kreidler gave worked for me. I couldn't vote it or comment under it because of some reputation points.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1.5): reputation points
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @dustin-kreidler
  • Low reputation (1):
Posted by: PADIO

79279421

Date: 2024-12-13 19:46:04
Score: 4.5
Natty:
Report link

Quoting @PepijnKramer in the comments

It is a gcc limitation (it doesn't optimize the branch)

This discussed more in detail in this video C++ Weekly - Ep 456 - RVO + Trivial Types = Faster Code

Reasons:
  • Blacklisted phrase (1): this video
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @PepijnKramer
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: timmy george

79279402

Date: 2024-12-13 19:34:01
Score: 5.5
Natty:
Report link

am having the issue with java21 , u find the solution ?

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

79279396

Date: 2024-12-13 19:30:00
Score: 13.5
Natty: 7.5
Report link

I have the same problem, did you manage to solve it?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): did you manage to solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Felipe Scola

79279383

Date: 2024-12-13 19:24:57
Score: 6 🚩
Natty:
Report link

It seems that now they're using context.mounted again. I get the same error message when I use if(mounted).

Screenshot of a code I just wrote.

Reasons:
  • RegEx Blacklisted phrase (1): I get the same error
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I get the same error
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ali Alhajji

79279375

Date: 2024-12-13 19:19:54
Score: 4
Natty:
Report link

There appears to be a v17 download available: https://download.osgeo.org/postgis/windows/pg17/ (direct link: https://download.osgeo.org/postgis/windows/pg17/postgis-bundle-pg17x64-setup-3.5.0-2.exe)

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

79279353

Date: 2024-12-13 19:13:51
Score: 4.5
Natty: 5
Report link

Yeah i've spending too much time on this without any solution, but i ended up using nest-cli monorepo with swc builder after too many porblems but it work's just fine

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

79279201

Date: 2024-12-13 18:04:33
Score: 4
Natty: 4
Report link

Install the Jest Runner extension in VS Code.

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

79279182

Date: 2024-12-13 17:55:30
Score: 9 🚩
Natty: 6.5
Report link

Did you ever resolve this? Hitting a similar issue now

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever resolve this
  • RegEx Blacklisted phrase (1.5): resolve 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
  • Low reputation (1):
Posted by: robertsami

79279151

Date: 2024-12-13 17:42:25
Score: 6 🚩
Natty:
Report link

How about adding enableRotation to false ?

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

79279099

Date: 2024-12-13 17:21:19
Score: 6.5 🚩
Natty: 6.5
Report link

We have a subscription with monthly and yearly options. But I want to make a discount 50% on the first 3 monthly of Monthly subscriptions. How can I do it? Will I still have an opportunity to choose between monthly and yearly on checkout?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): can I do
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Alina Diabina

79279066

Date: 2024-12-13 17:05:14
Score: 4
Natty:
Report link

The solution was to do a repair with the .NET 8 SDK installer.

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

79279032

Date: 2024-12-13 16:56:11
Score: 4
Natty: 4
Report link

You should verify all of 5, enter image description here

Detailed quick Video here

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

79279009

Date: 2024-12-13 16:49:09
Score: 4
Natty:
Report link

turns out I just needed to create more space in data

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

79278907

Date: 2024-12-13 16:03:56
Score: 5.5
Natty: 3.5
Report link

Gracias Michael por tu respuesta, me ayudo mucho.

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

79278882

Date: 2024-12-13 15:55:53
Score: 5
Natty:
Report link

you helped someone today. Much appreciated

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

79278870

Date: 2024-12-13 15:52:51
Score: 6.5 🚩
Natty: 5
Report link

Are there any updates on the issue?

Reasons:
  • Blacklisted phrase (1): any updates on
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vitaliy Demchuk

79278856

Date: 2024-12-13 15:48:49
Score: 4
Natty:
Report link

@Ram Very useful. I almost spent around 2 days to figure out how to join 2 Entities using JPQL and then found this. Specifying the appropriate relationships (@OneToMany, @ManyToMany, @OneToOne) and @joinColumn between entities is important.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Ram
  • User mentioned (0): @ManyToMany
  • User mentioned (0): @OneToOne
  • User mentioned (0): @joinColumn
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Sumit Chauhan

79278811

Date: 2024-12-13 15:34:44
Score: 4.5
Natty:
Report link

I am using yaml-merger for my helm and swagger config files https://github.com/dhyanio/yaml-merger

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

79278787

Date: 2024-12-13 15:27:41
Score: 5
Natty:
Report link

How did you get the first part of the error message

Blockquote update-alternatives: Error: not linking xxx/tmp/work/cc-dey-linux/dey-image/1.0-r0/rootfs/usr/sbin/rtcwake to /bin/busybox.nosuid since xxx/tmp/work/cc-dey-linux/dey-image/1.0-r0/rootfs/usr/sbin/rtcwake exists and is not a link Blockquote

I have a very similiar issue but cannot see the first part of the error message but i get the second part

Reasons:
  • RegEx Blacklisted phrase (3): did you get the
  • No code block (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Tech Hecht

79278738

Date: 2024-12-13 15:06:35
Score: 4
Natty:
Report link

you have to use axis=1 to apply for each row, you can refer to the following video for the solution https://youtu.be/0Trf_AUApYk?si=bTxgcR49XoM0_vdL

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anand Kumar

79278702

Date: 2024-12-13 14:52:31
Score: 4
Natty:
Report link

Just got it! I have to use "{{ table.context.foo_base }}".

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

79278679

Date: 2024-12-13 14:44:29
Score: 5
Natty:
Report link

I think, you can check this resource: https://support.wix.com/en/article/wix-stores-adding-and-setting-up-the-wix-checkout-requirements-app

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

79278612

Date: 2024-12-13 14:20:22
Score: 4
Natty: 4.5
Report link

Have you already find the answer? I have also the same question for now.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Qiliang Yu

79278442

Date: 2024-12-13 13:18:06
Score: 4
Natty:
Report link

this printed the swap.is this right or wrong? hey, genius people reply meπŸ˜’πŸ˜’

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Md. Sojib Khan

79278355

Date: 2024-12-13 12:43:56
Score: 7.5 🚩
Natty: 6.5
Report link

I am facing a similar problem than the one described here as I need to divide the US East coastline in segments of a certain length. I am trying to follow your approach Matthew, but I am getting issues when executing coastline = cl_gdf.iloc[0].geometry. For some reason, when reprojecting from 4326 to 9311 all values are apparently inf. I am trying to use the digitalized dataset that you mention. Would you know why this may be happening? Am I missing any information? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I am trying to
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing a similar problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Angela

79278301

Date: 2024-12-13 12:24:51
Score: 4.5
Natty: 4.5
Report link

I want my code to not duplicate if sheet already exists but rather update the sheet

How do I do that

Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tinotenda Ndaipa

79278231

Date: 2024-12-13 12:03:44
Score: 13
Natty: 9
Report link

Same problem. Did you find any solution ?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (1): Same problem
  • RegEx Blacklisted phrase (2): any solution ?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Barış Can YILMAZ

79278148

Date: 2024-12-13 11:34:36
Score: 10.5
Natty: 7.5
Report link

hey did you get any solution>?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you get any solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yname

79278108

Date: 2024-12-13 11:21:31
Score: 10.5 🚩
Natty: 5.5
Report link

Could you find the solution of this problem. I am also facing the same issue. Appreciate anyone can help to resolve.

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: chema

79278074

Date: 2024-12-13 11:07:26
Score: 7.5 🚩
Natty: 6.5
Report link

can anyone help me with the process how to get notifications (email/teams/slack) to a particular team using lambda function and SNS when a new AMI release happens

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can anyone help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can anyone help me with the
  • Low reputation (1):
Posted by: Amani

79278066

Date: 2024-12-13 11:04:24
Score: 5
Natty:
Report link

You can fix it in here. It is easy way to identify and fix this error https://www.youtube.com/watch?v=Md4BzN0SsFk&t=352s

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

79278044

Date: 2024-12-13 10:59:22
Score: 5.5
Natty: 5.5
Report link

Can I also ask you for a formula or regular expression to extract ANCOR text, i.e. what is between the <a href=β€˜...’ />ANCHOR text</a>. Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can I also as
  • Low reputation (1):
Posted by: Archy

79278020

Date: 2024-12-13 10:51:19
Score: 4.5
Natty:
Report link

I still am not knowing sorry Yumnosh

Dr Email, Doctorate in Russian Literateure

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Dr Email

79278017

Date: 2024-12-13 10:51:18
Score: 6.5 🚩
Natty: 4
Report link

I think I run into the same problem (As soon as I implement ExpansionTileControler it is not working), but I do not understand the explanation given here. Could somebody give a bit more information and maybe an example. Thanx.

Reasons:
  • Blacklisted phrase (1): Thanx
  • RegEx Blacklisted phrase (2.5): Could somebody give
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Roebbeling

79278004

Date: 2024-12-13 10:46:16
Score: 4
Natty: 4.5
Report link

Try downloading Microsoft's version of OpenJDK from https://learn.microsoft.com/en-us/java/openjdk/download

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

79277958

Date: 2024-12-13 10:32:12
Score: 4
Natty:
Report link

An application called clang format can help.

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

79277957

Date: 2024-12-13 10:31:10
Score: 15.5 🚩
Natty: 6
Report link

@rahma mo were you able to solve this issue? I have similar issue of authorization.

Reasons:
  • Blacklisted phrase (1): I have similar
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @rahma
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: hassan

79277952

Date: 2024-12-13 10:30:09
Score: 4.5
Natty:
Report link

Try to use chatgpt it always help me to solve such problems!

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Antonio Fedorov

79277908

Date: 2024-12-13 10:13:05
Score: 8.5 🚩
Natty: 3.5
Report link

I don't know..............................................................

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (2.5):
  • Filler text (0.5): ..............................................................
  • Low entropy (1):
  • Low reputation (1):
Posted by: Dr Email

79277885

Date: 2024-12-13 10:05:02
Score: 4
Natty: 4
Report link

https://expectationmax.github.io/2018/Neovim-pipenv-based-development-environment/ checkout this. i set up successful but long time ago, not so many document can use now. try to find it out

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Khoa Vá Văn

79277877

Date: 2024-12-13 10:03:01
Score: 4
Natty: 5.5
Report link

i need the same. every app using juspay sdk in unity poker game. but no tutorial on it

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sandeep dahiya

79277844

Date: 2024-12-13 09:49:57
Score: 4
Natty:
Report link

A duplicate question that details solutions that work for json beyond ascii charset

How to use json.tool from the shell to validate and pretty-print language files without removing the unicode?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Anton Tropashko

79277817

Date: 2024-12-13 09:40:52
Score: 9.5 🚩
Natty:
Report link

This is not working for me. pls can you help out

Reasons:
  • RegEx Blacklisted phrase (3): can you help
  • RegEx Blacklisted phrase (3): not working for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Akolade Quam

79277806

Date: 2024-12-13 09:36:51
Score: 4
Natty:
Report link

https://stackoverflow.com/a/65606436/5698198

This solution above almost correct. You only need to change the model definition in config/permission.php

enter image description here

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: M Moersalin

79277798

Date: 2024-12-13 09:33:49
Score: 4.5
Natty:
Report link

Select Cherry-pick as a single commit check box and check your target branch.

enter image description here

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

79277760

Date: 2024-12-13 09:26:46
Score: 4
Natty:
Report link

We are also experiencing a similar issue from yesterday and is there any other way to reach out to LinkedIn support? The URL https://linkedin.zendesk.com/hc/en-us/ I got from support is also not working where we are struck post signIn

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Uday Kumar