79526635

Date: 2025-03-21 22:02:18
Score: 0.5
Natty:
Report link

I strongly recommend using react-native-mmkv instead of @react-native-async-storage/async-storage. It’s significantly faster and fully compatible with the new React Native architecture.

Also, when starting a new project, try installing each dependency one by one rather than copying the entire package.json. This helps avoid version mismatches and makes it easier to troubleshoot issues as they come up.

Finally, I suggest researching which libraries are better adapted to the new React Native architecture. For example, use react-native-bootsplash instead of react-native-splash-screen for better support and performance.

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

79526620

Date: 2025-03-21 21:46:16
Score: 1
Natty:
Report link

A direct 'Next Runt time' property will no be available but you can use the ADF trigger Rest API and analyze trigger definitions and look for recurrence property(shown below in yellow) to get the schedule and based on current date calculate the next run.

ADF Schedule trigger definition

For more details abut schedule trigger definition, please check this link Schedule Trigger Definition

Also you can use the different methods explained in this link to get the details of trigger run. below is a sample azpowershell command to get the trigger run details. once you get the pattern based on that you can create some logic to calculate the next run

Get-AzDataFactoryV2TriggerRun -ResourceGroupName $ResourceGroupName -DataFactoryName $DataFactoryName -TriggerName "MyTrigger" -TriggerRunStartedAfter "2017-12-08T00:00:00" -TriggerRunStartedBefore "2017-12-08T01:00:00"

Also you can use azure monitor logs to check history run and understand the run pattern and calculate the approx next run.

Reasons:
  • Blacklisted phrase (1): please check this
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (1): check this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: SQL006

79526596

Date: 2025-03-21 21:23:11
Score: 1
Natty:
Report link

In my case, I was copying the .exe to another directory and running it there. The Could not resolve CoreCLR path error was resolved by also copying MyProject.runtimeconfig.json to the target directory.

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

79526594

Date: 2025-03-21 21:22:11
Score: 1.5
Natty:
Report link

Answered by @thomas in a comment.

Essentially, container apps have a container resource allocation section that will be used per container. A node is the underlying VM. If there are more replicas than what can be created in the node, an error will be thrown.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @thomas
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: SamIAm

79526588

Date: 2025-03-21 21:18:10
Score: 2.5
Natty:
Report link

try with:

console.log(json[0].address);

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Mario ECs

79526585

Date: 2025-03-21 21:13:09
Score: 3
Natty:
Report link

You have been able to this through the browser since 2021, though adoption in browsers is limited.
https://developer.mozilla.org/en-US/docs/Web/API/Web_Serial_API#browser_compatibility

You might also use the WebUSB API: https://developer.mozilla.org/en-US/docs/Web/API/WebUSB_API

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

79526580

Date: 2025-03-21 21:12:09
Score: 0.5
Natty:
Report link
    public function getAge(string $birthday): int
    {
        return (new \DateTime('now'))->diff(new \DateTime($birthday))->y;
    }

    echo getAge('1982-08-22');

Enjoy

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

79526565

Date: 2025-03-21 21:01:07
Score: 0.5
Natty:
Report link

I think, there's something wrong with your request. Check your header "content-type" is set to "application/x-www-form-urlencoded" , but since you're sending a JSON object, try to switch it to application/json. As you can see , the error Cannot bind query parameter. Field 'name' could not be found in request message.", attribute is missing , it means there something wrong in sending request in your server.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jason V. Castellano

79526556

Date: 2025-03-21 20:50:05
Score: 1.5
Natty:
Report link

I hate to say this, but I gave the problem to Claude Sonnet, and got an acceptable result.

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

79526549

Date: 2025-03-21 20:45:04
Score: 0.5
Natty:
Report link

Thanks to Adon and Timus I found two solutions that work even faster within my class.

    def read_file(self, start):
        self.readstart = start

        with open(self.filename, "r") as f:
            f.seek(self.readstart)
            line = f.readline()
            content = ""
            while line:
                content += line.strip()
                line = f.readline()
                if line.strip().startswith('>'): 
                    self.content = content
                    return

and

    def alt_read_file(self, start, end):
        with open(self.filename, "r") as f:
            f.seek(start)
            self.content = re.sub(r"\s+", "", f.read(end-start))

The answer to my initial question is that probably by string concatenation of a class variable each time memory allocation is renewed by the Python interpreter.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user1491229

79526519

Date: 2025-03-21 20:25:00
Score: 0.5
Natty:
Report link

I see what you mean, but I don't fully understand why you see this as a problem ? if there aren't enough space you've at least 2 solutions

  1. Cropping and showing the text isn't full, and adding a label on mouse hover to see the full text

  2. Increasing the text container height, and breaking the text going on a new line

Going on a new line and increse select height

I think the crop is prettier so here how you would do it in your code

select {
  width: 100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
problem:
<select>  <option>IJREFOEIJFEFIJEIJIJIIJIJREFOEIJFEFIJEIJIJIIJIJREFOEIJFEFOIFEIJEIJIJIIJIJREF_OEIJFEFIJE</option>
  <option>IJREFOEIJFEFIJEIJIJIIJIJREFOEIJFEFIJEIJIJIIJIJREFOEIJFEFIJEFEFFIJIJIIJIJRE_FOEIJFEFIJE</option>
  <option>IJREFOEIJFEFIJEIJIJIIJIJREFOEIJFEFIJEIJIJFEIJIIJIJREFOEI__JFEFIJEIJIJIIJIJREFOEIJFEFIJE</option>
</select>

no problem:
<select>
  <option>ddd</option>
  <option>ddd</option>
  <option>ddd</option>
</select>

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

79526512

Date: 2025-03-21 20:20:59
Score: 3.5
Natty:
Report link

contexts won't do it.... but maybe you could run liquibase validate before? Or use update-testing-rollback in context b, then apply a ?

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

79526508

Date: 2025-03-21 20:17:59
Score: 0.5
Natty:
Report link

I had to fix it directly on the prefixIcon widget, and Transform.scale() did the job for me.

CustomTextFormField(
  prefixIcon: Transform.scale(
    scale: 0.5,
    child: SvgPicture.asset(
      SvgPaths.calendar,
      height: 20.0,
      width: 20.0,
    ),
  ),
  isDense: false,
  hint: "Select Date",
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Muhammad Adil Mehmood

79526504

Date: 2025-03-21 20:12:58
Score: 5
Natty:
Report link

I know it's a super old question... anyway:

The text inside the progress bar has been removed from GTK 3.14. If you would like to see it inside (GTK 3.14+ and GTK 4.0+), you have to use negative margins and min-heights.

The double text color has been removed from GTK 3.8. If you would like to have it, you need to patch GTK (gtk3.patch [incomplete, but it works], gtk4.patch - [not working, please help!]).

Example with human theme with GTK 3.24-classic :

enter image description here

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: luigifab

79526502

Date: 2025-03-21 20:11:57
Score: 1
Natty:
Report link

You're trying to add touch event listeners to a list of elements (querySelectorAll), not individual elements.

Use a forEach loop to add the listeners to each element found by querySelectorAll.

For testing on IOS, if you have a computer running MacOS, you can enable the develop menu in safari's preferences.

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

79526488

Date: 2025-03-21 20:01:55
Score: 8 🚩
Natty: 5
Report link

I hope you're doing well.

Were you able to make progress with this?

Reasons:
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Fabricio

79526478

Date: 2025-03-21 19:56:54
Score: 1.5
Natty:
Report link

The precondition in takeAll requires that every car is in every location. More precisely, the condition says that, for all cars, and for all locations, the car is in that location. This is too strict, as you seem to assume that a car can be in at most one location at a time.

An obvious fix is to require that every car is in some location. So the condition would have the structure (forall (?c - car) (exists (?p - place) (and (at ?c ?p) (not (taken ?))))).

Or, would it be OK that this action is possible even if no car can be taken? If so, get rid of the precondition, and have the effect part be something like (forall (?c - car ?p - place) (when (and (at ?c ?p) (not (taken ?c))) (and (not (at ?c ?p)) (taken ?c)))). So all those cars will be taken that can be taken.

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

79526473

Date: 2025-03-21 19:51:53
Score: 1
Natty:
Report link

synchronized (obj) {

while (<condition does not hold> and <timeout not exceeded>) {

long timeoutMillis = ... ; // recompute timeout values

int nanos = ... ;

obj.wait(timeoutMillis, nanos);

}

  ... // Perform action appropriate to condition
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: William Fuller

79526457

Date: 2025-03-21 19:41:51
Score: 1
Natty:
Report link

You can hide it by changing the button color and hover button color attributes to the same colour as the default background.

frame.configure(scrollbar_button_color="gray14",scrollbar_button_hover_color="gray14")

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

79526455

Date: 2025-03-21 19:41:50
Score: 6.5 🚩
Natty: 6
Report link

could be trading and data permissions?

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

79526449

Date: 2025-03-21 19:39:50
Score: 1
Natty:
Report link
{
        test: /\.html$/,
        loader: "html-loader",
        options: {
          esModule: false,
        },
      },
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Fethi Wap

79526447

Date: 2025-03-21 19:37:49
Score: 8.5
Natty: 7
Report link

did you figure this out by any chance? I need to do the same for my project as well.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): did you figure this out
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: user30017077

79526434

Date: 2025-03-21 19:31:48
Score: 0.5
Natty:
Report link

If none of the mentioned shortcuts worked, try the Shift + Down arrow.

It worked for me.

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

79526431

Date: 2025-03-21 19:28:47
Score: 1
Natty:
Report link

I was very close originally. Thanks to this blog post by Tim Jacomb I was able to login to azcopy with an OIDC federated identity:
https://blog.timja.dev/using-azcopy-in-github-actions-with-federated-credentials/

Summary:
Making use of azcopy's auto-login, afaik, is the only way to use OIDC credentials when using azcopy with a Service Principal.
- The azcopy cli allows for various methods of authenticating via Service Principal, but OIDC is not one of them.
- The az cli as well as the Azure Login action, however, DO work with OIDC, and thus you need to first login with one of those and then auto-login to azcopy using environment variables and your target azcopy command.

Summary of modifications:
- I had other issues offscreen that were causing the AZCLI option for AZCOPY_AUTO_LOGIN_TYPE to not work. This is indeed the correct flag.
- allow-no-subscriptions: true when logging into az does not work with azcopy, as far as I can tell. I've removed that and replaced it with the subscription id for the resources with which I'm going to use the Service Principal.
- Only set the environment variables on the step you're going to use them.
- Use an azcopy login status as a sanity check. It will work same as the other commands with autologin, though azcopy login wont as it'll try to login again.

- name: Azure login with OIDC
  uses: azure/login@v2
  with:
    client-id: ${{ secrets.AZURE_CLIENT_ID }}
    tenant-id: ${{ secrets.AZURE_TENANT_ID }}
    subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

- name: Copy file to Azure Blob Storage
   env:
      AZURE_STORAGE_ACCOUNT: your-storage-account-name
      AZURE_CONTAINER_NAME: example
      AZCOPY_AUTO_LOGIN_TYPE: AZCLI # This is the auto login type you want
      AZCOPY_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} # Don't forget this
   run: |
      azcopy login status
      echo ""
      azcopy sync "." "https://$AZURE_STORAGE_ACCOUNT.file.core.windows.net/$AZURE_CONTAINER_NAME/"
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): this blog
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jkix

79526422

Date: 2025-03-21 19:22:46
Score: 2.5
Natty:
Report link

I'm attempting to use the "@artalat/react-native-tuya" library with Tuya SDK v6.0.0 (latest version), but the following error occurs. Can anyone assist me?

BUILD FAILED in 4s error Failed to install the app. Command failed with exit code 1: ./gradlew app:installRelease -PreactNativeDevServerPort=8081 FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:mergeDexRelease'.

Could not resolve all dependencies for configuration ':app:releaseRuntimeClasspath'. > Could not find com.thingclips.smart:thingsmart:6.0.0. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/com/thingclips/smart/thingsmart/6.0.0/thingsmart-6.0.0.pom - https://repo.maven.apache.org/maven2/com/thingclips/smart/thingsmart/6.0.0/thingsmart-6.0.0.pom - https://dl.google.com/dl/android/maven2/com/thingclips/smart/thingsmart/6.0.0/thingsmart-6.0.0.pom - https://www.jitpack.io/com/thingclips/smart/thingsmart/6.0.0/thingsmart-6.0.0.pom Required by: project :app > Could not find com.thingclips.smart:thingsmart:6.0.0. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/com/thingclips/smart/thingsmart/6.0.0/thingsmart-6.0.0.pom - https://repo.maven.apache.org/maven2/com/thingclips/smart/thingsmart/6.0.0/thingsmart-6.0.0.pom - https://dl.google.com/dl/android/maven2/com/thingclips/smart/thingsmart/6.0.0/thingsmart-6.0.0.pom - https://www.jitpack.io/com/thingclips/smart/thingsmart/6.0.0/thingsmart-6.0.0.pom Required by: project

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Nimsara Thisal

79526415

Date: 2025-03-21 19:18:45
Score: 0.5
Natty:
Report link

Option 1: Pay for Copilot Enterprise

This is the Knowledge Base feature for Copilot Enterprise, where you will set up a group of repositories and for every prompting it will go there bases RAG, read more here https://docs.github.com/en/enterprise-cloud@latest/copilot/customizing-copilot/managing-copilot-knowledge-bases

enter image description here

Option 2: MCP Server

Create your own MCP Server reference to any source, even GitLab, GitHub, Slack, Database and so on. This technique is quite new but you can try to setup any sources you want, for more details here https://github.com/modelcontextprotocol/servers

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Alfred Luu

79526414

Date: 2025-03-21 19:18:45
Score: 2
Natty:
Report link

In my instance, there were special quotes around a single word in the my.ini file that were causing the problem.
In my Group Replication Related information, the word Unique was wrapped in the special quotes. As soon as I replaced those with regular quotes and saved the my.ini file, things started working.
Details can be found in bugs.mysql.com/bug.php with ?id=103332

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

79526412

Date: 2025-03-21 19:17:45
Score: 4.5
Natty:
Report link

As far as I know there is not a layout for it, but you can add to your html tag the attribute: data-interception="off"

enter image description here

More information here:

https://github.com/microsoft-search/pnp-modern-search/issues/844

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jorge Ruiz Caro

79526403

Date: 2025-03-21 19:12:43
Score: 0.5
Natty:
Report link

java.lang.NoSuchMethodError: No virtual method setAppPermission Control Open (I)V in class Lmiui/security/Security Manager; or its super classes (declaration of 'miui.security.Security Manager' appears in /system_ext/framework/miui-framework.jar)

at

com.lbe.security.Configuration.setPermis sionSwitch(Unknown Source:17)

at

com.lbe.security.service.provider.Permiss ionManager Provider.onCreate(Unknown Source:103)

at

android.content.ContentProvider.attachl nfo(ContentProvider.java:2636)

at

android.content.ContentProvider.attachl nfo(ContentProvider.java:2602)

at

android.app.ActivityThread.install Provide r(ActivityThread.java:8278)

at

android.app.ActivityThread.installConten tProviders(ActivityThread.java:7779)

at

android.app.ActivityThread.handleBindA pplication(ActivityThread.java:7462)

at android.app.ActivityThread.-$ $Nest$mhandleBindApplication(Unknow n Source:0)

at

android.app.ActivityThread$H.handleMe ssage (ActivityThread.java:2409)

at

android.os.Handler.dispatchMessage(Ha ndler.java:106)

at

android.os.Looper.loop Once (Looper.java:

at

android.os.Looper.loop (Looper.java:314)

at

android.app.ActivityThread.main(Activity Thread.java:8716)

at

java.lang.reflect.Method.invoke(Native Method)

at

com.android.internal.os.RuntimeInit$Met hodAndArgsCaller.run(RuntimeInit.java:5 65)

at

com.android.internal.os.ZygoteInit.main( ZygoteInit.java:1081)

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

79526401

Date: 2025-03-21 19:11:43
Score: 1
Natty:
Report link

You can address to specific folder in the picking up dropdown list, there is no way addressing path in the prompt currently.

E.g. I type #folder, enter, searching for the folder, you may notice that some folders not in top level but even in 2nd level.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Alfred Luu

79526388

Date: 2025-03-21 19:02:41
Score: 1
Natty:
Report link

If you set the task to "Run only when the user is logged on", then the script will be launched in the context of the user's desktop session. That allows you to see and interact with the console window.

When you have it set to "Run whether the user is logged on or not." then the launched script does not interact with the desktop. You cannot "see" the window.

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

79526371

Date: 2025-03-21 18:52:39
Score: 1
Natty:
Report link

Here's what worked for me with column values of Y, N, empty string. I had to use isNull for my derived column to be true, false, null.

toBoolean(toString(iif({ColumnName} == "Y", "1", iif(isNull({ColumnName}), "", "0"))))

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

79526370

Date: 2025-03-21 18:51:39
Score: 3.5
Natty:
Report link

I was able to solve this by having nginx host the files, rather than using pygbag's built-in development server.

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

79526367

Date: 2025-03-21 18:50:39
Score: 0.5
Natty:
Report link

I sympathise with your desire to stay DRY but I don't think it can be done.

I think it is safer to achieve your aim as follows:

@Component
public class WrappedBean {

    @Autowired
    public SomeBean starterBean;

    @Bean
    WrappedBean wrappedBean() {
        this.starterBean.doSomethingCustom();
        return this;
    }
}

Then access it as follows:

    @Autowired
    WrappedBean someOtherBean;
    
    SomeBean someBean;
    

    @EventListener(ApplicationReadyEvent.class)
    public void doSomethingAfterStartup() {
        someBean = someOtherBean.starterBean;
    }

These are attempts to subvert the Spring mechanisms/sequence.

Pulling the starter created bean directly from applicationContext:

@Configuration
@Lazy
public class MyConfiguration {

    @Autowired
    private ApplicationContext applicationContext;

    @Bean
    SomeBean someOtherBean() {
        SomeBean starterBean = (SomeBean) applicationContext.getBean("someBean");
        starterBean.doSomethingCustom();
        return starterBean;
    }
}

Resulted in error:

Field someOtherBean in com.example.abstractunmarshallexception.AbstractunmarshallexceptionApplication required a bean named 'someBean' that could not be found.

Messing about with @Qualifier

@Configuration
@Lazy
public class MyConfiguration {

      @Autowired
      private SomeBean starterBean;

      @Autowired
      private ApplicationContext applicationContext;

    @Bean
    SomeBean someOtherBean() {
        starterBean.doSomethingCustom();
        return starterBean;
    }
}

and usage:

    @Autowired
    SomeBean someOtherBean;

Results results in error as follows:


Error creating bean with name 'someOtherBean': Requested bean is currently in creation: Is there an unresolvable circular reference or an asynchronous initialization dependency?
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Qualifierand
  • High reputation (-1):
Posted by: John Williams

79526364

Date: 2025-03-21 18:48:38
Score: 8 🚩
Natty: 5
Report link

me too have this error
did you find solution ?

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

79526357

Date: 2025-03-21 18:44:37
Score: 0.5
Natty:
Report link

First off thank you Tim Williams.

Final Code:
Numbers are different because I have two different data sets I'm going to be working with.
`

Sub HourColorsLong()
    Dim rg As Range
    Dim cs As ColorScale
 
    For Each rg In Selection.Cells
        If rg.Value < 4.75 Then
            Set cs = rg.FormatConditions.AddColorScale(ColorScaleType:=2)
                cs.ColorScaleCriteria(1).Type = xlConditionValueFormula
                cs.ColorScaleCriteria(1).Value = "0"
                cs.ColorScaleCriteria(1).FormatColor.Color = RGB(255, 0, 0)
                cs.ColorScaleCriteria(1).FormatColor.TintAndShade = 0
                cs.ColorScaleCriteria(2).Type = xlConditionValueFormula
                cs.ColorScaleCriteria(2).Value = "4.75"
                cs.ColorScaleCriteria(2).FormatColor.Color = RGB(255, 255, 0)
                cs.ColorScaleCriteria(2).FormatColor.TintAndShade = 0
                
        ElseIf rg.Value <= 14.25 Then
            Set cs = rg.FormatConditions.AddColorScale(ColorScaleType:=3)
                cs.ColorScaleCriteria(1).Type = xlConditionValueFormula
                cs.ColorScaleCriteria(1).Value = "4.75"
                cs.ColorScaleCriteria(1).FormatColor.Color = RGB(255, 255, 0)
                cs.ColorScaleCriteria(1).FormatColor.TintAndShade = 0
                cs.ColorScaleCriteria(2).Type = xlConditionValueFormula
                cs.ColorScaleCriteria(2).Value = "9.5"
                cs.ColorScaleCriteria(2).FormatColor.Color = RGB(0, 255, 0)
                cs.ColorScaleCriteria(2).FormatColor.TintAndShade = 0
                cs.ColorScaleCriteria(3).Type = xlConditionValueFormula
                cs.ColorScaleCriteria(3).Value = "14.25"
                cs.ColorScaleCriteria(3).FormatColor.Color = RGB(255, 255, 0)
                cs.ColorScaleCriteria(3).FormatColor.TintAndShade = 0
                
        ElseIf rg.Value > 14.25 Then
            Set cs = rg.FormatConditions.AddColorScale(ColorScaleType:=2)
                cs.ColorScaleCriteria(1).Type = xlConditionValueFormula
                cs.ColorScaleCriteria(1).Value = "14.25"
                cs.ColorScaleCriteria(1).FormatColor.Color = RGB(255, 255, 0)
                cs.ColorScaleCriteria(1).FormatColor.TintAndShade = 0
                cs.ColorScaleCriteria(2).Type = xlConditionValueFormula
                cs.ColorScaleCriteria(2).Value = "19"
                cs.ColorScaleCriteria(2).FormatColor.Color = RGB(255, 0, 0)
                cs.ColorScaleCriteria(2).FormatColor.TintAndShade = 0
        End If
    Next
End Sub
So things to note:
1 ColorScaleType:=3, scaling will not work if you only give it two values. Had to fix this to ColorScaleType:=2.
2 I had 14.25 set to less than rather than greater than.
3 Setting a range to selection then checking a range withing that range will not work and that's why I believe I was getting type mismatch.

Once again thank you for the help. Hopefully this helps other people too.
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ghost022

79526342

Date: 2025-03-21 18:36:35
Score: 2
Natty:
Report link

If Key is char*, the assumption that const Key is const char* is wrong. const Key is char* const.

typedef std::map<char*, void*, stlcompare_char, TestAllocatorA<std::pair<char* const, void*> > > MAPTEST;

What is the difference between const int*, const int * const, and int * const?

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: 3CxEZiVlQ

79526340

Date: 2025-03-21 18:35:35
Score: 4
Natty:
Report link

CUPS, as far as I am concerned, is like offloading printing for the sake of "printing everywhere" and all too often fails to be anything but some expedition into failure.

For example, I went to Open Printing and they haven't got 1, not 1 Brother "HL-L" script, and of course CUPS can't associate it with a PPD, errors out and won't process my printer add. Then the only "solutions" or at least sort of one but I can't find out really, is to type some command in terminal whose parameters I have no idea about but shazam if i type it in it fixes the problem, yet, I have to have the exact name of the printer etc., and as I can get it to connect to my network and computer the name there doesn't work in the command line. After hours of trying I can't even connect my Brother laser printer at all.

It's like "printing everwhere" is a group people who made sure to tailor the actuality of their theme to meet the needs of the corporations selling printers and regardless of those who don't have (and can't afford) the latest and greatest printer.

Then of course we go looking for websites for help and it just blows my mind, post after post, link after link, how much effort is made to force some "ahh ha" point of how inaccurate someone may have described something (that may have solely resulted from them being a bit lazy and / or not being as knowledgeable).

Newsflash: There are man new to Linux and we're glad to be away from Windows. I urge you experts to take that to heart and help us out without needing to beat us over the head with how wrong we are about something we said. And if you believe what is essentially a bullying behavior is what using Linux requires every user to accept from more informed Linux users then I ask those who surely know more about Linux than I ever will to appeal to Linus Torvalds regarding making Linux less command syntax intensive as that will deny those who use their extensive knowledge of the intricacies of Linux to apparently look for brow beating opportunities against us newbies. Reality: More Linux users is more influence on the end of the tech monopolies.

Reasons:
  • RegEx Blacklisted phrase (1): help us
  • RegEx Blacklisted phrase (2): help us out
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Printer Frustrated

79526339

Date: 2025-03-21 18:34:34
Score: 4.5
Natty: 5.5
Report link

I have this solution, although not simple. https://github.com/coreybutler/nvm-windows/issues/1209

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

79526333

Date: 2025-03-21 18:32:33
Score: 3
Natty:
Report link

if you need, web_concurrent_start(), then why not just lease some number of virtual user hours or a one month/three month license to cover your testing needs?

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

79526328

Date: 2025-03-21 18:29:32
Score: 14 🚩
Natty: 6.5
Report link

were you able to resolve this issue? I'm facing the same issue and would appreciate your help.

Reasons:
  • Blacklisted phrase (2): appreciate your help
  • Blacklisted phrase (1.5): would appreciate
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aboli

79526327

Date: 2025-03-21 18:28:31
Score: 8 🚩
Natty: 5
Report link

I have a doubt here. Even I'm also facing the same issue. But I need to pass this as a list but terraform is accepting only string. what to do in that case

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2): I have a doubt
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: IJAZ MUHAMMED

79526318

Date: 2025-03-21 18:25:30
Score: 1
Natty:
Report link

The declaration of an anonymous block is wrong, you should use DO $$ and END $$. In sql use INTEGER, plpgsql only accepts the integer keyword. This is how you should write.

 DO $$ 
DECLARE 
    c INTEGER;
BEGIN
    EXECUTE 'SELECT count(1) FROM my_dwh.accounts' INTO c;
    RAISE NOTICE 'Count: %', c;
END $$;

I hope this is the answer you are looking for.

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

79526317

Date: 2025-03-21 18:25:30
Score: 0.5
Natty:
Report link

I'm not an animation expert, but I've used Canvas a lot; it's super fast for most use cases, so using multiple canvases probably won't help you.

From what I know, the answer to your question depends on two things: (1) whether or not the animated images are appearing in the same place, and (2) whether they are translucent or opaque.

If they're stationary and opaque, just redraw them in place on a 500ms timer; if they're translucent (alpha < 1.0), then you have to draw something over the last one before you draw the next one so the images don't blend together.

If they're moving, then you have to redraw the original background in the old place before you draw the next image in the new place. This can be arbitrarily complex depending on what else you're drawing on the canvas.

For simple drawings, redrawing the entire canvas every frame can be fast enough; for more complex stuff, perhaps not.

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

79526309

Date: 2025-03-21 18:20:29
Score: 0.5
Natty:
Report link

The current version of spacy (3.8.0) downloads the pretrained models by installing them with pip command. That is, it internally runs pip, as can be seen in its source code in spacy/cli/download.py, function download_model(). So the models are stored in the directory where your local modules installed by pip are stored, package name being the name of the model.

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

79526302

Date: 2025-03-21 18:16:27
Score: 3
Natty:
Report link

@kfir I'm working Kotlin so below is the converted code - took me a while because of the nullable variables. This works but it zooms to exactly the same level as setLinearZoom() in my original code - absolutely no difference. Really unclear as to why there are two ways to do exactly the same thing.

val P = zoomSliderPos * 100f // my slider value was already in the 0.0 - 1.0 range so this corrects it for your code

val minZoom = controller.cameraInfo?.zoomState?.value?.minZoomRatio
val maxZoom = controller.cameraInfo?.zoomState?.value?.maxZoomRatio
Log.d(TAG, "minZoom and maxZoom: $minZoom - $maxZoom")

if (minZoom != null && maxZoom != null) {

  val translatedValue = Math.pow((maxZoom / minZoom).toDouble(), (P / 100f).toDouble()).toFloat() * minZoom

  Log.d("translatedValue", "translatedValue: $translatedValue")

  controller.cameraControl?.setZoomRatio(translatedValue)
}
Reasons:
  • Blacklisted phrase (1): to do exactly the same
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @I'm
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: garrettlynchirl

79526298

Date: 2025-03-21 18:12:26
Score: 0.5
Natty:
Report link

On CentOS, I had to augment my PATH after installing openmpi3:

$ sudo yum install openmpi3-devel
...
$ export PATH=/usr/lib64/openmpi3/bin/:$PATH
$ mpicc --version
gcc (GCC) ... 
$ pip3 install mpi4py
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: w.t

79526273

Date: 2025-03-21 18:00:24
Score: 1.5
Natty:
Report link

For anyone wonder, they answered me with this:

test_report_url = self.driver.capabilities.get("testobject_test_report_url")
TelegramReport.send_tg(f"{test_report_url}")

and finally it works!

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Z T M N

79526255

Date: 2025-03-21 17:54:23
Score: 0.5
Natty:
Report link

OK, so a non-challenge is just a flag (or lack of http, dns, etc..) that most acme clients use to basically not perform any type of challenge, skip right over that part. This is usually the case when you are using External Account Binding (EAB), and do not need to perform a challenge to show you are the owner of a domain, etc.

In the case of Sectigo/InCommon, they have an internal method of registering all the various domains with a specific ACME account, this eliminating the need to verify with a challenge.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: jewettg

79526254

Date: 2025-03-21 17:54:23
Score: 1.5
Natty:
Report link

As a hacky workaround, you can edit your program while it's running and use hot reload to see your changes. You'll probably have to re-show the popup (at least if StaysOpen is false), but it's better than editing, running the program to see the edits, stopping the program, making more changes, etc. etc...

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Erik Knowles

79526253

Date: 2025-03-21 17:53:22
Score: 1.5
Natty:
Report link

I answered this on your post to forums couchbase com. Since stackoverflow will spank me if I post the link, here's my post copy/pasted from there

ctx.insert(collection,

I don’t think your issue is transaction related.
Avoid mixing-and-matching the Couchbase Java SDK with Spring Data Couchbase. Spring Data Couchbase expects every document to have a _class property, and uses that as a predicate for all operations that are not -ById. So where you’ve used the Java SDK to insert a TransactionSubLedgerEntity document, it does not have a _class property. So when spring data queries with "SELECT … FROM … WHERE … AND _class = “com.example.TransactionSubLedgerEntity” it will only find documents inserted by Spring Data Couchbase (which have the _class property).
If you attempt to retrieve the document that you inserted using findById() - I believe you will find it.
There are exceptions, but by and large - that’s the deal.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mn_test347

79526252

Date: 2025-03-21 17:53:22
Score: 2.5
Natty:
Report link

Try to open VSC setting and search Editor: Suggest On Trigger Characters and enable it.

The next step is to restart VSC, which is very common, and it should be ready to use~ :p

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

79526250

Date: 2025-03-21 17:51:22
Score: 2.5
Natty:
Report link

I made my own library for this, it uses flags to control what's allowed. This is my first time really using regex, and my first Python library, so apologies if I did anything badly. It supports negative numbers and decimals, and can either allow or prevent leading zeroes (ex. 01).

Apologies too for the somewhat neglected repository, I couldn't make a directory in the browser and didn't wanna use git cli. If you want the source code, it's probably better to use the PyPI source distribution.

https://pypi.org/project/better-is-numeric/

https://codeberg.org/Butter/numerical/

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Butter

79526247

Date: 2025-03-21 17:50:21
Score: 2.5
Natty:
Report link

I seem to have figure it out. I noticed that at times it would also show an error related to the different minor major version, which is often related to code compiled in one JDK version and running in a different one.

I cleaned up my computer of JDKs and reconfigured eclipse and things are now working.

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

79526246

Date: 2025-03-21 17:50:21
Score: 3
Natty:
Report link

I had a similar issue and it was due to the missing BOM after copying the project from my linux host.

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

79526243

Date: 2025-03-21 17:48:21
Score: 2.5
Natty:
Report link

Not sure if I understood your question correctly.. You want to use Dataframe from pandas python library in flutter? If so have a look at this: https://pub.dev/packages/dartframe this library offers comparable functionality in dart

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Paul Weibert

79526235

Date: 2025-03-21 17:47:21
Score: 1.5
Natty:
Report link

There is an interesting way to create a GCD queue that can be both concurrent and serial, to say allow thread safe "reads" from a structure to occur concurrently in any order, but only permit "write" to occur synchronously after all queued reads have completed. For example to access items where reads may actually take some time to search the structure. But writes must occur serially to prevent altering the structure while a read is taking place. Refer to the Related item on "barrier" for how to do this.

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

79526229

Date: 2025-03-21 17:43:20
Score: 6 🚩
Natty:
Report link

Thanks to the link below i was able to jump over the hurdle.

.Net Maui - ShellContent navigation issue

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): the link below
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kenneth Goodwin

79526228

Date: 2025-03-21 17:42:19
Score: 1
Natty:
Report link

I have worked it around by suppressing this dll during build in my yaml. Because of the transitive dependency we have on this dll this fix makes sense at the moment.
Below are the steps:

  1. Create a folder under the source folder which is the root of your repo.

  2. Copy the .gdnsuppress file which BinSkim generates during the build failure and paste it in the above created folder.

  3. Create a Copy Files task in your build yaml file to copy this file to the target folder. The target folder would be $(Agent.BuildDirectory)/gdn, given the name of the folder you created at the 1st step is "gdn".

  4. Test the build.

This fixed the build failure.

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

79526225

Date: 2025-03-21 17:42:19
Score: 0.5
Natty:
Report link

It's easy with static data like this:

"properties": {
          "type": { "type": "string", "enum": [ "cell", "home", "work" ] },
          "number": { "type": "string" }
        },

But what should be done if my schema is dynamic?

enum can have different values for different element of array.

{
label,
selectedIds
}
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Sergey Nikolaevich Guk

79526223

Date: 2025-03-21 17:41:19
Score: 3.5
Natty:
Report link

Same issue for me, adding Supabase + Auth worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: natalyarockets

79526221

Date: 2025-03-21 17:40:18
Score: 3
Natty:
Report link

In case anyone else finds their way here, I found this list that matches Darwin kernel version to apple OS versions:
https://theapplewiki.com/wiki/Kernel#Versions

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

79526215

Date: 2025-03-21 17:37:18
Score: 1.5
Natty:
Report link

You can go to Tools > Options > Text Editor > All Languages and then check "Line numbers" it will then show you line numbers.

If checkbox is "indeterminate" (showing dash instead of checked) state then click twice to mark it as checked.

Settings

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

79526174

Date: 2025-03-21 17:20:15
Score: 2.5
Natty:
Report link

use string(SHA1) to get a unique name for the output file, use that as a target name in add_custom_target.

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

79526165

Date: 2025-03-21 17:17:14
Score: 2
Natty:
Report link

No integrated Traefik middleware for that. You can check the list of plugins for Traefik.

I doubt that it will be that easy, because you will have multiple requests for dependencies, which might not include the initial query param or header, so you probably need to establish a session with a cookie.

Maybe try with ForwardAuth again, I just created a test setup with a dummy node.js auth container, maybe you can adapt that for your requirements and add a session cookie.

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: bluepuma77

79526164

Date: 2025-03-21 17:17:14
Score: 0.5
Natty:
Report link

I figured it out. There's a seemingly new setting in Xcode 15 called "ENABLE_USER_SCRIPT_SANDBOXING". I turned that off and all is good now. However, I have to figure out what the implications of this are.

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Michael Gaines

79526156

Date: 2025-03-21 17:13:13
Score: 1
Natty:
Report link

I spent a lot of time and decided to share the solution.
And I found this to be the best solution for me.

public class SomeDbContext :DbContext
{
...
[DbFunction("set_and_get_upp_user_instance", "public")]
public IQueryable<AppUser> SetAndGetUppUserInstance(Guid userId) => FromExpression(() => this.SetAndGetUppUserInstance(userId));
...
}
var appUser = await this._context.SetAndGetUppUserInstance(userId).FirstOrDefaultAsync(c => c.UserId == userId);

Apologies for postgresql, I'm new to this.

CREATE OR REPLACE FUNCTION set_and_get_upp_user_instance(p_user_id uuid)
RETURNS TABLE (
    AppUserID uuid,
    UserID uuid,
    LastIPAddress character varying(64),
    IsOnline BOOLEAN,
    LastConnected TIMESTAMPTZ,
    LastDisconected TIMESTAMPTZ,
    CurrentLanguageID uuid
 )
 LANGUAGE plpgsql 
AS $function$
BEGIN
    RETURN QUERY SELECT * FROM get_app_user_by_id(p_user_id);

    IF NOT FOUND THEN
        INSERT INTO "AppUser" (UserID, LastIPAddress, IsOnline, CurrentLanguageID)
        VALUES (p_user_id, '124', true, get_default_language());
    END IF;

    RETURN QUERY SELECT * FROM get_app_user_by_id(p_user_id);
END;
$function$;
Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Илья Ступин

79526155

Date: 2025-03-21 17:13:13
Score: 3
Natty:
Report link

I never tried it, but it seems if the set_integer_now_func will help to allow you to use the integer:

https://github.com/timescale/timescaledb/blob/d1d74dcc92892c72fe93ddab7002026d2aaecdd7/tsl/src/bgw_policy/compression_api.c#L120

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

79526151

Date: 2025-03-21 17:11:13
Score: 2.5
Natty:
Report link

Clemens in the comments above answered the question. I just assigned Image directly to the PictureBox.Image and it worked.

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

79526150

Date: 2025-03-21 17:11:13
Score: 2
Natty:
Report link
import util from 'util';
console.log(util.inspect(conversation, false, null));
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ollioikarinen

79526144

Date: 2025-03-21 17:10:12
Score: 7 🚩
Natty: 5.5
Report link

I have the same question smal 2.0 with jwt

Reasons:
  • Blacklisted phrase (1): I have the same question
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hello boy Yuo

79526129

Date: 2025-03-21 17:03:09
Score: 8.5 🚩
Natty: 4
Report link

I know the question is a couple of years old, but I am stuck at the exact same use case. I am also trying to access the information which is located under the "Docker Info" tab in a key/value pair in the Artifactory UI. I tried the approach in the accepted answer, which does return the properties object. But for me there is no .label part included. Basically I think this is because the information I want to request is not in the manifest.json. It is located a level "higher".

To help visualize this, I have the following screenshot:
enter image description here

Here you can see on the left my Artifactory with the selected Docker image. I want to request the information from the key "release". On the right side I opened the browser developer tools to check the request that gets executed when loading the Artifactory page. Under Network in the tab "Fetch/XHR" you can find an entry "dockerv2". When selecting this you can see under "Response" a "tagInfo" object which contains the desired information. So I guess it should be possible to request that information via an API call.

I tried the following:

curl -uadmin:pass https://artifactory.myUrl.io/ui/api/v1/ui/views/dockerv2/repo-name/path-to-image

But this returns 404 not found. In my opinion the URL is not right (because contains ui parts), but the developer tools shows this as the Request URL.
So I am kinda stuck on how to figure out the correct request. I would say it is possible to retrieve the desired information, because it is available and it should be accessible. Anyone has an idea on how to approach this? Thanks in advance!

If more information is needed, please let me know.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Bernte

79526125

Date: 2025-03-21 17:00:09
Score: 1.5
Natty:
Report link

The LOCKLPM5 bit was not cleared in the slave code which means that the GPIO pins were not unlocked, therefore preventing proper operation of P1.3 and P1.2 in I2C mode.

The line:

PM5CTL0 &= ~LOCKLPM5

clears the LOCKLPM5 bit and unlocks the GPIO pins on the MCU.

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

79526124

Date: 2025-03-21 17:00:09
Score: 2
Natty:
Report link

utilize:

"collection.include.list": "databaseName.collectionName1, databaseName.collectionName2"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Rafael Peggau

79526100

Date: 2025-03-21 16:47:06
Score: 1
Natty:
Report link

This extra code you're seeing during "start execution" is Dataform's way of ensuring the environment is properly set up before running your SQL. To put it simply, it's taking care of schema creation if it doesn't already exist. This is a built-in feature to prevent errors if the target schema is missing. This is a best practice for production deployments as it prevents failures if the schema doesn't already exist.

You don't actually need to remove this generated code. It's crucial for robust deployments.

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

79526086

Date: 2025-03-21 16:40:05
Score: 5
Natty: 5
Report link

bruh

why no answers is anyone reads sauce labs here?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Z T M N

79526082

Date: 2025-03-21 16:38:04
Score: 5.5
Natty: 5.5
Report link

....but it won't for more than 5000 pixels.

Is there a solution to get all the coordinates of pixels in a given image? here a image represent more than 5 US states at the resolution of 30m.

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Amrit Shrestha

79526076

Date: 2025-03-21 16:36:03
Score: 1
Natty:
Report link

Using gradle you need to add the following to build.gradle:

bootRun {
    standardInput = System.in
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: User8461

79526075

Date: 2025-03-21 16:35:02
Score: 1
Natty:
Report link
(define (recognize-move label tape)
   (cond ((equal?(assoc label abbreviations)#f)(print "erreur"))
    ((or (eq? label (car tape))
          (member (car tape) (assoc label abbreviations)))      
      ((list (cdr tape)))
     (eq? label '|#|)
          (list tape)))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: c.talarmin

79526070

Date: 2025-03-21 16:34:02
Score: 1
Natty:
Report link

Using gradle you need to add the following to build.gradle:

bootRun {
    standardInput = System.in
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: User8461

79526068

Date: 2025-03-21 16:34:02
Score: 1.5
Natty:
Report link

The 403 Forbidden error usually means that the server understands the request but refuses to authorize it. Missing or Invalid Spotify Scopes In your refreshAccessToken() function, you are refreshing the token but not specifying the required scopes. Without proper scopes, you might get a 403 error when trying to access playlist data.

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

79526067

Date: 2025-03-21 16:34:02
Score: 3.5
Natty:
Report link

You can replace @EnableJpaRepositories with @EnableEnversRepositories and it will work as needed.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @EnableJpaRepositories
  • User mentioned (0): @EnableEnversRepositories
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: vbg

79526066

Date: 2025-03-21 16:34:02
Score: 3.5
Natty:
Report link

Please review the splunk community link for an answer. https://community.splunk.com/t5/Getting-Data-In/Splunkforwarder-Startup-Error-in-Docker-containers/m-p/740901. This solution worked for me who had the same error messages.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ajeesh

79526064

Date: 2025-03-21 16:33:02
Score: 0.5
Natty:
Report link

As of 2025-03-21 the API appears to accept up to 12 dimensions at a time despite what the documentation says. The discovery document for the beta version of the API reads:

Requests are allowed up to 9 dimensions.

My requests with 12 dimensions are currently succeeding though.

Source: https://analyticsdata.googleapis.com/$discovery/rest?version=v1beta

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ryan Bradley

79526060

Date: 2025-03-21 16:33:02
Score: 4
Natty:
Report link

Have You tried verifying & retrieving data using same tokens with Postman or cURL ?

Reasons:
  • Whitelisted phrase (-1): Have You tried
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Shane Dushyantha

79526053

Date: 2025-03-21 16:32:01
Score: 2.5
Natty:
Report link

The uniqueness of an item in HashSets is ultimately determined by the equals() method of the underlying object. See these references in JDK to a comment and the specific code.

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

79526050

Date: 2025-03-21 16:30:01
Score: 1.5
Natty:
Report link

Since strings in C# are variable-based, they starts with 32-bit integer that tells how many characters stored in string. So the answer will be 2^32 if we ignore the limitation of the system.

If we imagine that we have completely filled the memory, it's representation in memory will have: 8 (SyncBlock) + 8 (Virtual Table Pointer) + 4 (m_arrayLength before .NET Framework 4.0, or padding for later versions) + 2 * length (characters itself) + 2 (null-terminator) = (26 + 2 * length) bytes in 64-bit system.

In reality, you'll never fill out the string completely, because you'll hit the 2Gb limits faster :)

I recommend to read this article for deeper knowledge about string implementation (use translator): https://habr.com/ru/articles/727300/

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

79526048

Date: 2025-03-21 16:29:00
Score: 2.5
Natty:
Report link

Unfortunately, no there isn't.

My recommendation is to use a .NET Framework that supports cross-platform.
Avalonia is my go-to when it comes to cross-platform UI. I would stay away from NET Maui as it is just riddled with bugs and a pain to use.

I am currently working on a project porting over a lot of WinForms Apps to Avalonia, so if you need any help feel free to reach out!

Reasons:
  • Blacklisted phrase (1): any help
  • No code block (0.5):
  • Low reputation (1):
Posted by: nosniktaj

79526045

Date: 2025-03-21 16:27:00
Score: 2.5
Natty:
Report link

I found my issue and it was actually caused by running as sudo vs the user. When I was executing the AppleScript in the script editor it was running as my user account and editing the com.apple.dock.plist in my /User/.... folder. This has the intended behaviour of editing my dock. When I ran the same code, osascript or bash directly, as sudo it did not edit the com.apple.dock.plist in either my user directory or the system directory /Library/Preferences/.

I am now trying to use PlistBuddy to explicitly edit the file that I want, taking some time to learn today

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Daniel T.S

79526034

Date: 2025-03-21 16:23:59
Score: 1.5
Natty:
Report link

Per recommendation in atob function documentation, use Buffer.

const newUint8Array = Uint8Array.from(Buffer.from(text,'base64'));

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

79526028

Date: 2025-03-21 16:20:58
Score: 2.5
Natty:
Report link

Although @Daniel answers was working and correct, but I think using user agent is not working in all of the cases and we should check every browser with the version to understand if its compatible or not.
At the end I came up with this solution that I am checking with the "flutter-view" element to see if its available or not and if not so I conclude that the browser is not supporting.
I would appreciate if anyone came up with a better solution.

for this solution i changed my index.html in this way:

<body>
  <!-- Flutter App Container -->
  <div id="flutter-app" style="display: none;">
    <script src="flutter_bootstrap.js"></script>
  </div>

  <script>

    (function() {
      var MIN_VERSIONS = {
        chrome: 120,
        firefox: 72,
        safari: 14,
        edge: 84
      };

      function checkFlutterView() {
        setTimeout(function() {
          const flutterViewElement = document.querySelector('flutter-view');

          if (flutterViewElement) {
            console.log("Browser supported. Showing app.");
          } else {
            console.log("Browser NOT supported. Showing error message.");
            showUnsupportedBrowserMessage();
          }
        }, 2000); // Wait 2 seconds to allow Flutter to load
      }

      function showUnsupportedBrowserMessage() {
        var messageDiv = document.createElement('div');
        messageDiv.style.position = 'fixed';
        messageDiv.style.top = '0';
        messageDiv.style.left = '0';
        messageDiv.style.width = '100%';
        messageDiv.style.height = '100%';
        messageDiv.style.backgroundColor = '#ffffff';
        messageDiv.style.display = 'flex';
        messageDiv.style.flexDirection = 'column';
        messageDiv.style.alignItems = 'center';
        messageDiv.style.justifyContent = 'center';
        messageDiv.style.padding = '20px';
        messageDiv.style.textAlign = 'center';
        messageDiv.style.fontFamily = 'Arial, sans-serif';
        messageDiv.style.zIndex = '9999';

        var header = document.createElement('h1');
        header.style.color = '#e53935';
        header.style.marginBottom = '20px';
        header.textContent = 'Browser Not Supported';

        var message = document.createElement('p');
        message.style.maxWidth = '600px';
        message.style.lineHeight = '1.5';
        message.style.marginBottom = '20px';
        message.textContent = 'Your browser is not supported by this application. Please use one of the following browsers:';

        var browserList = document.createElement('ul');
        browserList.style.listStylePosition = 'inside';
        browserList.style.textAlign = 'left';
        browserList.style.display = 'inline-block';
        browserList.style.marginBottom = '30px';

        var browsers = [
          'Google Chrome (version ' + MIN_VERSIONS.chrome + ' or later)',
          'Mozilla Firefox (version ' + MIN_VERSIONS.firefox + ' or later)',
          'Microsoft Edge (version ' + MIN_VERSIONS.edge + ' or later)',
          'Safari (version ' + MIN_VERSIONS.safari + ' or later)'
        ];

        browsers.forEach(function(browserText) {
          var item = document.createElement('li');
          item.style.margin = '10px 0';
          item.textContent = browserText;
          browserList.appendChild(item);
        });

        var updateMessage = document.createElement('p');
        updateMessage.style.fontWeight = 'bold';
        updateMessage.textContent = 'Please update your browser or switch to a supported one to continue.';

        messageDiv.appendChild(header);
        messageDiv.appendChild(message);
        messageDiv.appendChild(browserList);
        messageDiv.appendChild(updateMessage);
        
        document.body.innerHTML = '';
        document.body.appendChild(messageDiv);
      }

      // Run the check once the document is fully loaded
      document.addEventListener('DOMContentLoaded', checkFlutterView);
    })();
  </script>

</body>
</html>
Reasons:
  • Blacklisted phrase (1.5): would appreciate
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Daniel
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mohsen

79526016

Date: 2025-03-21 16:14:57
Score: 2.5
Natty:
Report link

try to clear route cache php artisan route:cache

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kostya Bronshteyn

79526012

Date: 2025-03-21 16:14:57
Score: 1
Natty:
Report link

with Ashkan solution anywhere in the page

<style>
 .ui.table thead tr:first-child>th {
 position: sticky !important;
 top: 0;
 z-index: 2;
 }
</style>

<div style="overflow-y: auto; overflow-x: hidden; resize: vertical; height: 400px;">
<table class="ui celled striped selectable table">
...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ParMesSoins

79525996

Date: 2025-03-21 16:09:56
Score: 7
Natty: 7
Report link

how do you make this UML diagram ? with plantUML ?

i cannot find in documentation how to round corners like you do? (even ai are out of range)
Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): how do you
  • Blacklisted phrase (1.5): i cannot find
  • Blacklisted phrase (0.5): i cannot
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how do you
  • Low reputation (1):
Posted by: frank nowhere

79525989

Date: 2025-03-21 16:06:54
Score: 9.5 🚩
Natty: 5.5
Report link

Did you find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution for this
  • Low reputation (1):
Posted by: Leonardo Gama

79525980

Date: 2025-03-21 16:01:53
Score: 2
Natty:
Report link

Thank you very much @β.εηοιτ.βε. Your answer pointed me to the good documentation.

And I found vars[item] to complete my research (here Ansible: how to construct a variable from another variable and then fetch it's value).

Thus my last version, that works with a list of variables :

---
- name: Playbook to try assert module
  hosts: all
  gather_facts: false

  vars:
    mandatories:
      - variableA
      - variableB
      - variableThatDoesNotExist

  tasks:
    - name: Check mandatory variableA
      assert:
        quiet: false
        that:
          - variableA is defined
          - variableA | length > 0

    - name: Check mandatory variableB
      assert:
        quiet: false
        that:
          - variableB is defined
          - variableB | length > 0

    - name: Check mandatory variables with loop
      assert:
        quiet: false
        that:
          - vars[item] is defined
          - vars[item] | length > 0
      loop: "{{ mandatories }}"

    - meta: end_play
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Michel Briand

79525979

Date: 2025-03-21 16:01:53
Score: 3.5
Natty:
Report link

just change the overflow-x to scrollbar in .test-table css and it will work fine.

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

79525973

Date: 2025-03-21 15:58:53
Score: 0.5
Natty:
Report link

You need to made chagnes in css

Here is code:

<div class="bg-[linear-gradient(to_right,var(--tw-gradient-stops))] from-pink-500 via-purple-500 via-blue-500 to-pink-500 bg-[length:200%_100%] animate-[gradientMove_4s_linear_infinite]">
         <!-- Content will be here  -->
</div>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kamran Khalid

79525970

Date: 2025-03-21 15:58:53
Score: 2
Natty:
Report link
import turtle

# Configuración inicial
screen = turtle.Screen()
screen.bgcolor("lightblue")

# Crear una tortuga para dibujar
pen = turtle.Turtle()
pen.shape("turtle")
pen.speed(10)

# Función para dibujar un pétalo
def draw_petal():
    pen.color("yellow")
    pen.begin_fill()
    pen.circle(100, 60)
    pen.left(120)
    pen.circle(100, 60)
    pen.end_fill()
    pen.left(120)

# Función para dibujar el centro de la flor
def draw_center():
    pen.color("brown")
    pen.begin_fill()
    pen.circle(20)
    pen.end_fill()

# Función para dibujar una flor completa
def draw_flower():
    for _ in range(6):
        draw_petal()
    draw_center()

# Mover la tortuga a una posición inicial
pen.penup()
pen.goto(-50, 150)
pen.pendown()

# Dibujar la flor
draw_flower()

# Mover la tortuga a otra posición para dibujar otra flor
pen.penup()
pen.goto(200, -100)
pen.pendown()

# Dibujar otra flor
draw_flower()

# Finalizar
pen.hideturtle()
screen.mainloop()
Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alejandro Largo

79525966

Date: 2025-03-21 15:56:52
Score: 0.5
Natty:
Report link

If you are using Host.CreateDefaultBuilder()

Host.CreateDefaultBuilder(args)
           ...
           .ConfigureWebHostDefaults(webBuilder =>
           {
               webBuilder.ConfigureKestrel(options => options.Limits.MaxRequestBodySize = 50 * 1024 * 1024);
               ...
           });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tropin Alexey