79384455

Date: 2025-01-24 13:12:35
Score: 0.5
Natty:
Report link

As already answered by @ehiller, it's only possible to have covariant returns if a property is readonly, but you can still set its value when calling the constructor. Here's an example:

  1. Define a couple of types that are going to be used to declare the properties (using interfaces in this example):
public interface IBase {
    void Method1();
}

public interface IDerived : IBase {
    void Method2();
}
  1. Define the types that declare the properties:
public class Base {
    public virtual IBase Property { get; }

    public Base(IBase b) {
        Property = b;
    }

    public void CallMethod1() {
        Property.Method1();
    }
}

public class Derived : Base {
    // Property with covariant return. 
    public override IDerived Property { get; }

    public Derived(IDerived d) : base(d) {
        Property = d;  // No setter, but it's legal to set the value here.
    }

    public void CallMethod2() {
        Property.Method2();
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @ehiller
  • Low reputation (0.5):
Posted by: metator

79384447

Date: 2025-01-24 13:10:35
Score: 1.5
Natty:
Report link

The content jumps around because initially <img> elements have 0 height, the image loads and height increases, making content other "jump". The images are loaded when they are entering the viewport.

There are 2 options to solve that:

  1. Define height of the <img> elements to be the same as the height of the image itself. The problem here would be retrieve that height.
  2. Preload images. You can load all images before they are entering the viewport, that would minimize the jump. Here are some resources on how to do it: How to Preload Images without Javascript?
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Max Mayorov

79384442

Date: 2025-01-24 13:09:34
Score: 2
Natty:
Report link

If you're coming across the issue where the tailwind.config.js file is not being generated, it's likely because Tailwind CSS has been updated to version 4.0 (released on January 22, 2025). In this version, there might be changes in how the configuration is initialized. https://tailwindcss.com/docs/installation/using-vite

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

79384440

Date: 2025-01-24 13:08:34
Score: 3
Natty:
Report link

Please install the Lombok plugin for VS Code.

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

79384439

Date: 2025-01-24 13:08:33
Score: 7.5
Natty: 7
Report link

it doesn't work for me. I have the broken ones in the first place of course. How can I convert them to real emojis?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: HoseinGSD

79384437

Date: 2025-01-24 13:07:33
Score: 3
Natty:
Report link

t-minus365 has details on how to consent to apps on behalf of customers, without having to consent using admin accounts in the customer tenants. Use the REST API examples, not the PartnerCenter stuff.

https://tminus365.com/my-automations-break-with-gdap-the-fix/

https://tminus365.com/gdap-multi-tenant-automation/

https://tminus365.com/how-to-leverage-microsoft-apis-for-automation/

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

79384432

Date: 2025-01-24 13:04:32
Score: 1.5
Natty:
Report link

The visual and description in this blog post OP referred to on how the decoder blocks work is misleading.

The last encoder block does not produce K and V matrices.

Instead, the cross-attention layer L in each decoder block takes the output Z of the last encoder block and transforms them to K and V matrices using the Wk and Wv projection matrices that L has learned. Only the Q matrix in L is derived from the output of the previous (self-attention) layer. As the original paper states in section 3.2.3:

In "encoder-decoder attention" layers, the queries come from the previous decoder layer, and the memory keys and values come from the output of the encoder.

Also refer to Fig. 1 in the original paper.

Thus, each token fed to the decoder stack attends to all tokens fed to the encoder stack via the cross-attention layers and all previous tokens fed to the decoder stack via the (masked) self-attention layers.

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

79384416

Date: 2025-01-24 13:00:31
Score: 1
Natty:
Report link

I really like firefox and much appriciate their effort to make it work. So I, would just add these screenshots to help future fellas despretly looking to re-enable breakpoints. This is how to do it for Firefox 128, under linux.

inspec panel re-enable debugger

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

79384410

Date: 2025-01-24 12:58:30
Score: 0.5
Natty:
Report link

The draw method of reportlab.graphics.barcode.code39.Extended39 doesn't take anything as input: see the source code.

Furthermore, it seems like the reportlab library only allows you to draw on PDF. See this code snippet for an example.

I'd advise to use the python-barcode library which allows you to work on code39 barcodes and to draw them on images.

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

79384409

Date: 2025-01-24 12:58:30
Score: 1
Natty:
Report link

I did this a few times. You just need to read binary safely. Writing can be less safe. Read it exactly into bytes. Yes, doing it all manually is feasible. All it requires is separating the headers from the pixels. Errors will happen because you copy and cut a few bits wrong. You can't rely on ascii reading but you can rely on ascii writing to file. So declare new variable types and sure they are bitwise exact. Reading it all bitwise would probably be easier than passing it into ascii characters.

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

79384407

Date: 2025-01-24 12:57:30
Score: 2
Natty:
Report link

There was an error with data coming, data should be come like this { id: "arrow_tile_layer", type: "symbol", source: "arrow", 'source-layer': "ways", minzoom: 13, maxzoom: 20, filter: ["==", ["get", "way_type"], "primary"], paint: {}, layout: {'icon-image': 'arrow_icon', 'visibility': 'visible', 'symbol-spacing': 80, 'symbol-placement': 'line'}, },

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

79384402

Date: 2025-01-24 12:56:29
Score: 0.5
Natty:
Report link

There's a probably underrated Github project https://github.com/hansmi/prombackup that can be deployed, for instance, as a service container beside your Prometheus service container. It has a reduced-to-the-max no-thrills web UI where you simply click to take and then immediately download the snapshot to your browser.

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

79384391

Date: 2025-01-24 12:52:28
Score: 1
Natty:
Report link

so yk, In the XC8 compiler, you can't directly use the @ syntax like you can do in CC5X to assign a variable to a specific memory address.

here's an example,

#include <xc.h>

char my_array[10]; unsigned int *cont_up;

void main() { cont_up = (unsigned int *)&my_array[5];

*cont_up = 0xABCD; 


while (1);

}

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

79384390

Date: 2025-01-24 12:52:28
Score: 0.5
Natty:
Report link

This error may have been because the local DNS server is no present in the ip "127.0.0.1".

This may be checked with the file "/etc/resolv.conf". If it has the line "nameserver 127.0.0.53" then you need to adjust nginx to use "resolver 127.0.0.53;" under "http" instead of the default "127.0.0.1".

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Antón Kryukov Chinaev

79384368

Date: 2025-01-24 12:43:26
Score: 3.5
Natty:
Report link

Im getting this ExtractAppIntentsMetadata error when building apps on GitHub runners using Xcode 16.1 and 16.2. I have tried on both macos-14 and macos-15.

I have tried adding the Other_swift_flags, but It doesn't seem to work.

Anybody else experienced this, and have suggestions?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: einarnot

79384366

Date: 2025-01-24 12:41:26
Score: 1.5
Natty:
Report link

There is also a solution possible using "rev". Rev reverses all characters per line. Therefore:

  1. Replace space as newlines

  2. Reverse all characters per line

  3. Lose newlines by avoiding quote

  4. Reverse the whole string

    list="abc cde efg" reverselist=$(echo $(rev <<< ${list// /$'\n'}) | rev) echo $reverselist

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

79384364

Date: 2025-01-24 12:41:26
Score: 3
Natty:
Report link

What is you exact error you are seeing?

Hint: in WSS this is most times related to certificate configuration, you can start for testing with self-signed certs, but for production you need officially signed certs.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is you
  • Low reputation (1):
Posted by: Jörg Grote

79384354

Date: 2025-01-24 12:37:25
Score: 2
Natty:
Report link

Yes, although not recommended, but when talking about dev dependencies I'd say it's okay do to it. However, when you want to use that root level dependency in your packages you have to run it with:

yarn run -T or yarn run --top-level

https://yarnpkg.com/cli/run

Discussion on whether it is bad or not:

https://www.reddit.com/r/javascript/comments/9t6yht/yarn_workspaces_why_is_adding_something_to_the/

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

79384350

Date: 2025-01-24 12:36:25
Score: 0.5
Natty:
Report link

One thing can be checked if the user running the PHP script has read access to below file. /etc/resolv.conf

If not, changing the permission as below can fix the domain name resolution issue.

chmod 644 /etc/resolv.conf
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: AnkitK

79384338

Date: 2025-01-24 12:33:23
Score: 2.5
Natty:
Report link

USE: py -3.7 to select a specific version, use py --list to list installed versions.

Usage example: py -3.7 script.py

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

79384332

Date: 2025-01-24 12:30:22
Score: 10.5 🚩
Natty: 6.5
Report link

Did you manage to solve it? If so, what was the solution?

Reasons:
  • 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):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Valdir Lima

79384318

Date: 2025-01-24 12:25:21
Score: 1
Natty:
Report link

Why does loss.backward() cause such a significant memory increase in GPU which there is a matrix on it ?

When you call loss.backward(), all the gradients of your network are computed. There is one gradient per tensor of parameter. Basically, this multiplies by two the memory usage.

How can I optimize this setup to run on GPUs without running out of memory? Are there specific strategies or PyTorch functionalities that can reduce GPU memory usage during the backward pass?

You could try using mixed-precision training, reduce the dimensions of your input, use SGD instead of Adam, use a network with fewer FLOPs (for instance one that downsamples your input quite early), or use a larger GPU.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why do
  • Low reputation (0.5):
Posted by: quickfakename

79384312

Date: 2025-01-24 12:23:20
Score: 1
Natty:
Report link

Hydration error is caused when the pre-rendered tree in server and browser doesn't match and there are a set of rules for wrapping patterns that needs to be followed.

I noticed that you are wrapping a <p></p> tag inside another <p></p> tag. Which is not something Next allows. Read this to understand the wrapping patterns

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

79384310

Date: 2025-01-24 12:22:18
Score: 6 🚩
Natty:
Report link

I couldn't comment directly because not enough reputation, but https://stackoverflow.com/a/79052103/22037071 Helped me a lot. But I did not need to add The volume '//var/run/docker.sock://var/run/docker.sock' in my docker compose and it was ok.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): Helped me a lot
  • RegEx Blacklisted phrase (1.5): enough reputation
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leonardo Gama

79384300

Date: 2025-01-24 12:17:17
Score: 2
Natty:
Report link

When using an SFTP server, the correct command would be "rm file.txt". To remove a file from a SFTP server using RCurl I build on @Ruggero Valentinotti his answer, using:

curlPerform(url = "sftp://xxx.xxx.xxx.xxx/", quote = "rm file.txt", userpwd = "user:pass")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Ruggero
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Adriaan Nering Bögel

79384293

Date: 2025-01-24 12:13:16
Score: 1
Natty:
Report link

As I don't have enough rep to comment (and my edit got rejected), adding this as an answer instead.

Various answers (e.g. Schof, David, Daniel Schuler) and comments suggest using or following sysexits.h. I'd like to note that this has since been deprecated and its usage is discouraged, by at least FreeBSD and OpenBSD. (NetBSD hasn't done so but their last change to at least the manual comes from 2010 so they may just haven't looked at it since other BSDs deprecated it, or have a different opinion.)

As the file in Linux also comes from BSD (and doesn't seem to have had an actual update this century) I'd recommend following this advice.

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sevens

79384289

Date: 2025-01-24 12:12:16
Score: 2.5
Natty:
Report link

in Ubuntu 24.0.4, I test installing dependencies first, and it works.

after install mininet

git clone https://github.com/faucetsdn/ryu.git

pip install -r tools/pip-requires

cd ryu; pip install .

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

79384280

Date: 2025-01-24 12:09:15
Score: 3.5
Natty:
Report link

I dont think the strokes work in headless.that could be the issue

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

79384278

Date: 2025-01-24 12:09:15
Score: 2.5
Natty:
Report link

When signals are emitted from the threads different from the one the receiver lives in, the Qt::QueuedConnection is used. As AhmedAEK answered in the comments under the question, "emit" is thread-safe but not atomic. Therefore, if we need the slots to be synchronized with each other regarding the signals they are processing, we need to synchronize access to "emit" from different threads. In other words, this case

is there a possibility that event loop triggers A's slot with "true" and then "false" and B's slot with "false" and then "true"?

is possible if access to the emit of this signal is not synchronized and impossible otherwise.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Alexpo

79384272

Date: 2025-01-24 12:06:14
Score: 1
Natty:
Report link

i think you have to try this way by this website

UUid generqator

to generate rss feed ID also you can generate unique for every link you want to add but i don't know about false or true i think you have to set false for every other link of posts

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

79384268

Date: 2025-01-24 12:04:14
Score: 0.5
Natty:
Report link

for all of you who, like me, just wanted to have a few simple pictures and some text in the combo box, I found something

<ComboBox x:Name="cmbStuff">
    <ComboBox.Items>
            <sys:String xmlns:sys="clr-namespace:System;assembly=mscorlib">UrText</sys:String>
            <sys:String xmlns:sys="clr-namespace:System;assembly=mscorlib">UrText</sys:String>
    </ComboBox.Items>

    <ComboBox.ItemTemplate>
            <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                            <Image Source="../Images/UrImage.png"/>
                            <TextBlock Text="{Binding}"/>
                    </StackPanel>
            </DataTemplate>
    </ComboBox.ItemTemplate>
    
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Fabian

79384267

Date: 2025-01-24 12:04:14
Score: 1
Natty:
Report link

I've asked ChatGPT and it suggested me many approaches but this one works for me: "Use external console"

Debug Config

Reasons:
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: ZiglioUK

79384266

Date: 2025-01-24 12:04:14
Score: 0.5
Natty:
Report link

Note: Triggers have been deprecated and replaced by pipelineTriggers. For more details, refer to JENKINS-53775.

If you want to use disableConcurrentBuilds, Triggers (with pollSCM and cron) for a DSL job, you can achieve it using the following configuration:

pipelineJob(repoName) {
  properties {
    disableConcurrentBuilds()
    pipelineTriggers {
      triggers {
        pollSCM {
          scmpoll_spec('* * * * *') // Adjust the schedule as needed
          ignorePostCommitHooks(true)
        }
        cron {
          spec(cronTime) // Replace 'cronTime' with your desired cron schedule
        }
      }
    }
  }
}

Credit: Special thanks to Catrobat for providing the original implementation. You can find more details in their repository: https://github.com/Catrobat/Jenkins/blob/master/job_dsl/src/main/lib/JobBuilder.groovy

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lovesh Bishnoi

79384265

Date: 2025-01-24 12:03:13
Score: 4
Natty:
Report link

How is your RLS setup? Most likely an issue with how you have RLS set up. If you can post your RLS config that might give insight on what's wrong.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How is you
  • Low reputation (1):
Posted by: cheekyprogrammer

79384263

Date: 2025-01-24 12:03:13
Score: 1.5
Natty:
Report link

Run:

  1. sudo rm -rf /Library/Developer/CommandLineTools
  2. xcode-select --install
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Itay Tur

79384257

Date: 2025-01-24 12:02:13
Score: 1
Natty:
Report link

Seemingly OCI was installed with root user privileges. Installing the OCI with root privilege leaves the oci.so and 20-oci.ini files with the read permissions which the nginx user or group do not have access.

You need to update the file read permission of the OCI's .so file and .ini file that nginx can read those files and load when it processes a request.

It is assumed that your PHP-FPM is running with nginx user, too.

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

79384256

Date: 2025-01-24 12:02:12
Score: 8.5 🚩
Natty: 5.5
Report link

You saved my day @alexkr, this really worked!

Reasons:
  • Blacklisted phrase (2): You saved my
  • Blacklisted phrase (2): saved my day
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @alexkr
  • Single line (0.5):
  • Low reputation (1):
Posted by: YeIIowsnow

79384255

Date: 2025-01-24 12:01:11
Score: 0.5
Natty:
Report link

i have used window.setInterval for solving this issue and it is working well now, and instead of invoking the function inside onInit, now I have moved it into afterViewInit

  ngAfterViewInit(): void {
    this.startPersistentCountdown();
  }
  startPersistentCountdown(): void {
    this.stopCountdown();

    this.zone.runOutsideAngular(() => {
      this.countdownTimer = window.setInterval(() => {
        this.zone.run(() => {
          this.updateAuctionTimers(this.liveAuctions);
          this.updateAuctionTimers(this.futureAuctions);
          this.groupFutureAuctions();
          
          this.cdr.markForCheck();
        });
      }, 1000);
    });  
  }

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

79384251

Date: 2025-01-24 11:59:10
Score: 5
Natty:
Report link

The installation guide only works for projects without a custom tailwind.config.cjs and, most importantly, without any "@apply" directive.

I only manage to make i work be referencing the config file on each component style that makes use of apply and/or the theme:

@config "../../tailwind.config.cjs";

Did anyone had any luck with this?

Reasons:
  • Blacklisted phrase (1.5): any luck
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Caio Rolla

79384246

Date: 2025-01-24 11:57:09
Score: 4
Natty:
Report link

Finally found a fix for that, is posted on GitHub repo issues section of library issue 503 google cloud sdk php

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jordi Tomàs Molina

79384232

Date: 2025-01-24 11:53:08
Score: 1
Natty:
Report link

Do you want to programmatically use tab_a to get data from tab_b? You can use python. Use a python connector to connect to your db to fire queries. Write code to create a .sql file which creates the sql by using data from tab_a. Write the sql query generated to another .sql file and then fire sql command in the second file using the python connector. Store this data into a pandas dataframe and then this df can either be written back to the DB or file or sent over email as you see fit.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sahitya Reddy

79384226

Date: 2025-01-24 11:49:07
Score: 10.5 🚩
Natty: 5
Report link

Did you manage to solve it? I have the same problem in my app.

Versions:

{
  "react-native": "0.76.6",
  "expo": "^52.0.27",
  "react-native-mmkv": "^3.2.0"
}
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):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Matheus Costa

79384212

Date: 2025-01-24 11:45:06
Score: 2.5
Natty:
Report link

Finally figured this out, in the Python extension you have this option 'Python > Experiments: Enabled' The key is 'you MAY get included in proposed enhancements'.

All three computers have this setting enabled, looks like only two of them got auto opt'd in to the experimental feature 'pythonTerminalEnvVarActivation'

To force this feature, click on 'Edit in settings.json' under 'Python > Experiements: Opt Into' and add 'pythonTerminalEnvVarActivation'

enter image description here enter image description here

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

79384206

Date: 2025-01-24 11:43:05
Score: 4
Natty:
Report link

Looks like they fixed it but the fix hasn't been shipped to production yet. Link to issue: https://github.com/supabase/supabase/issues/32901.

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

79384188

Date: 2025-01-24 11:35:03
Score: 3.5
Natty:
Report link

The workaround for now is to turn off Cloudflare.

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

79384184

Date: 2025-01-24 11:31:03
Score: 3
Natty:
Report link

Found this still on Google. In 2025+ you should use id because name is obsolete. See https://html.spec.whatwg.org/multipage/obsolete.html#obsolete-but-conforming-features

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Chris L

79384183

Date: 2025-01-24 11:31:03
Score: 3
Natty:
Report link

i was facing the same issue installing tailwindcss and postcss with vite but i was able to fix this issue by adding the tailwind.config.ts file manually and filling in the required information then i added the tailwindcli in my project with the command given above

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

79384172

Date: 2025-01-24 11:29:02
Score: 2.5
Natty:
Report link

Hi @wlyles we are getting the "Keyset does not exist" problem even if we use correct aliases as you mentioned. Is there any idea

We are also wanted the code to be used by both net48 project and NetStandard also. So we can't move to netstandard 2.1. The code which was early using CopyWithPrivateKey with net48.

Reasons:
  • Blacklisted phrase (1): Is there any
  • Has code block (-0.5):
  • User mentioned (1): @wlyles
  • Low reputation (1):
Posted by: Ekalaivan Chidambaram

79384169

Date: 2025-01-24 11:29:02
Score: 1
Natty:
Report link

To prevent spammers from posting ads and curses in your forum, a CAPTCHA can help, but it's not 100% reliable. Blocking IPs works to an extent but isn’t foolproof either. Have you tried the Anti-Spam Filter for Gravity Forms? It’s great for advanced filtering—blocks keyword-based spam, Cyrillic text, and lets you customize protection for specific forms. It’s super easy to use and highly effective!

https://wordpress.org/plugins/anti-spam-filter-gravity-forms/

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: andrew welch

79384168

Date: 2025-01-24 11:29:02
Score: 2.5
Natty:
Report link

12 Feature Unavailable: facebook login is currently unavailable for this app since we are updating additional details for this app. Please Try again

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

79384154

Date: 2025-01-24 11:25:01
Score: 3
Natty:
Report link

Overloading with lots of abs does the job - select min_mo: min mo, max_mo: max mo, step_size: abs min abs deltas abs mo by ex from t

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

79384151

Date: 2025-01-24 11:24:00
Score: 4
Natty:
Report link

Solved: Replace EmbeddedModel by BaseModel

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

79384148

Date: 2025-01-24 11:24:00
Score: 2
Natty:
Report link

1-First Update you're flutter. 2-if you're using CachedNetworkImage First add this Package: https://pub.dev/packages/cached_network_image_platform_interface then in your CachedNetworkImage add this line: imageRenderMethodForWeb: ImageRenderMethodForWeb.HttpGet,

3-then run this: build web --web-renderer canvaskit

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

79384128

Date: 2025-01-24 11:16:58
Score: 3.5
Natty:
Report link

This issue can be tracked here and a solution has been proposed.

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

79384122

Date: 2025-01-24 11:14:58
Score: 2.5
Natty:
Report link

TailwindCSS has just released its new v4 version , so all the older v3 documentation has become outdated. this new guide line to add tailwind into vite+react app. guided url link

https://tailwindcss.com/docs/installation/using-vite

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

79384119

Date: 2025-01-24 11:13:57
Score: 2
Natty:
Report link

I updated yarn from 1.22.22 to 4.1.1 with:

corepack enable

corepack prepare [email protected] --activate

yarn -v gives 4.1.1

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

79384111

Date: 2025-01-24 11:11:57
Score: 0.5
Natty:
Report link

Have you tried using mixed precision?

You can usually set it using precision="16-mixed" in a Lightning trainer. anomalib seem to have implemented a way to use it during deployment.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: quickfakename

79384103

Date: 2025-01-24 11:07:56
Score: 3
Natty:
Report link

use this command and then try again. 1)php artisan cache:clear
2)php artisan route:clear

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

79384068

Date: 2025-01-24 10:57:53
Score: 4.5
Natty:
Report link

I too got this same issue but solved by changing the libraries.

Refer this:

https://stackoverflow.com/a/79108363/7521690

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

79384067

Date: 2025-01-24 10:57:53
Score: 2
Natty:
Report link

The MAC address is a Layer 2 address so it changes in the encapsulating Layer 2 packet every time the packet is forwarded by a router. A host will know the MAC address for another host on the same subnet, which it gets via an ARP request.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Chris Glendinning-Smith

79384056

Date: 2025-01-24 10:53:52
Score: 2.5
Natty:
Report link

This is not currently possible in Databricks, but there is a feature in private preview that will allow exactly what you describe - table triggers (see here: https://www.linkedin.com/posts/laurentdhondt_databricks-azure-deltalake-activity-7200756908134154240-r89H/). Databricks announced it last year, but it's not yet been added to the main product.

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

79384054

Date: 2025-01-24 10:52:51
Score: 2
Natty:
Report link

Bitbucket has "read", "write" and "admin" permissions. You have to have admin permissions to be able to view the repository settings. Your Bitbucket administrator has to add you.

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

79384049

Date: 2025-01-24 10:51:51
Score: 1.5
Natty:
Report link

Thanks to @JonasH who pointed me in the right direction. The answer is indeed to simply multiply the matrices. Using this information, I was able to create this class which does exactly what I wanted:

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BIUK9000
{
    public class HSBTAdjuster
    {
        //Hue 0 - 360, 0 is no change
        //Saturation 1 is no change, <1 for decrease, >1 for increase
        //Brightness 1 is no change, <1 for decrease, >1 for increase
        //Transparency 1 is fully opaque, <1 for transparency
        public static Bitmap HSBTAdjustedBitmap(Bitmap bitmap, float hue, float saturation, float brightness, float transparency)
        {
            ImageAttributes imageAttributes = HSBTAdjustedImageAttributes(hue, saturation, brightness, transparency);

            Bitmap result = new Bitmap(bitmap.Width, bitmap.Height);
            using Graphics g = Graphics.FromImage(result);
            g.DrawImage(bitmap,
                new Rectangle(0,0, bitmap.Width, bitmap.Height),
                0, 0, bitmap.Width, bitmap.Height,
                GraphicsUnit.Pixel, imageAttributes);
            return result;
        }

        public static ImageAttributes HSBTAdjustedImageAttributes(float hue, float saturation, float brightness, float transparency)
        {
            ImageAttributes ia = new ImageAttributes();
            ia.SetColorMatrix(
                MultipliedColorMatrix(
                    SBTShiftedColorMatrix(saturation, brightness, transparency),
                    HueRotatedColorMatrix(hue)),
                ColorMatrixFlag.Default, ColorAdjustType.Bitmap);
            return ia;
        }

        private static ColorMatrix MultipliedColorMatrix(ColorMatrix sbtCm, ColorMatrix hCm)
        {
            ColorMatrix result = new ColorMatrix();
            for (int i = 0; i < 5; i++)
            {
                for (int j = 0; j < 5; j++)
                {
                    result[i, j] = sbtCm[i, 0] * hCm[0, j];
                    result[i, j] += sbtCm[i, 1] * hCm[1, j];
                    result[i, j] += sbtCm[i, 2] * hCm[2, j];
                    result[i, j] += sbtCm[i, 3] * hCm[3, j];
                    result[i, j] += sbtCm[i, 4] * hCm[4, j];
                }
            }
            return result;
        }
        private static ColorMatrix SBTShiftedColorMatrix(float saturation, float brightness, float transparency)
        {
            //adapted from https://stackoverflow.com/a/14384449/9852011
            // Luminance vector for linear RGB
            const float rwgt = 0.3086f;
            const float gwgt = 0.6094f;
            const float bwgt = 0.0820f;

            // Create a new color matrix
            ColorMatrix colorMatrix = new ColorMatrix();

            // Adjust saturation
            float baseSat = 1.0f - saturation;
            colorMatrix[0, 0] = baseSat * rwgt + saturation;
            colorMatrix[0, 1] = baseSat * rwgt;
            colorMatrix[0, 2] = baseSat * rwgt;
            colorMatrix[1, 0] = baseSat * gwgt;
            colorMatrix[1, 1] = baseSat * gwgt + saturation;
            colorMatrix[1, 2] = baseSat * gwgt;
            colorMatrix[2, 0] = baseSat * bwgt;
            colorMatrix[2, 1] = baseSat * bwgt;
            colorMatrix[2, 2] = baseSat * bwgt + saturation;

            // Adjust brightness
            float adjustedBrightness = brightness - 1f;
            colorMatrix[4, 0] = adjustedBrightness;
            colorMatrix[4, 1] = adjustedBrightness;
            colorMatrix[4, 2] = adjustedBrightness;

            colorMatrix[3, 3] = transparency;

            return colorMatrix;
        }
        private static ColorMatrix HueRotatedColorMatrix(float hueShiftDegrees)
        {
            float theta = (float)(hueShiftDegrees / 360 * 2 * Math.PI); //Degrees --> Radians
            float c = (float)Math.Cos(theta);
            float s = (float)Math.Sin(theta);

            float A00 = (float)(0.213 + 0.787 * c - 0.213 * s);
            float A01 = (float)(0.213 - 0.213 * c + 0.413 * s);
            float A02 = (float)(0.213 - 0.213 * c - 0.787 * s);

            float A10 = (float)(0.715 - 0.715 * c - 0.715 * s);
            float A11 = (float)(0.715 + 0.285 * c + 0.140 * s);
            float A12 = (float)(0.715 - 0.715 * c + 0.715 * s);

            float A20 = (float)(0.072 - 0.072 * c + 0.928 * s);
            float A21 = (float)(0.072 - 0.072 * c - 0.283 * s);
            float A22 = (float)(0.072 + 0.928 * c + 0.072 * s);

            ColorMatrix cm = new ColorMatrix();
            cm.Matrix00 = A00;
            cm.Matrix01 = A01;
            cm.Matrix02 = A02;
            cm.Matrix10 = A10;
            cm.Matrix11 = A11;
            cm.Matrix12 = A12;
            cm.Matrix20 = A20;
            cm.Matrix21 = A21;
            cm.Matrix22 = A22;
            
            cm.Matrix44 = 1;
            cm.Matrix33 = 1;
            return cm;
        }
    }
}

The HSBTAdjustedBitmap method returns the bitmap passed into it with the hue, saturation, brightness and transparency adjusted by the passed arguments.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @JonasH
  • Self-answer (0.5):
Posted by: andrewb

79384048

Date: 2025-01-24 10:51:51
Score: 2.5
Natty:
Report link

The class swiper-button-lock is added automatically if you don't have enough slides to slide. Just add more images and it will appear

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

79384042

Date: 2025-01-24 10:48:50
Score: 1.5
Natty:
Report link

Don't run asyncio.run(), its a common issue, use asyncio.get_event_loop().run_until_complete() and then use client.run_until_disconnected()

Caution: Do not use asyncio.run() in Telethon!

Edit: Also, first connect the client and then use the connected client in all gathering functions directly, Do not again and again connect in those gathering client for database locked issue!

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

79384036

Date: 2025-01-24 10:47:50
Score: 0.5
Natty:
Report link

I wasn't able to reproduce, but workers fall under "worker-src" directive. It has a fallback to "script-src", but I think it only controls hosts and schemes. Can't find a definitive answer in the specification. To block, set "worker-src 'none'".

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Halvor Sakshaug

79384033

Date: 2025-01-24 10:46:50
Score: 2.5
Natty:
Report link

If you mean the “all changes saved” message at the bottom of the editors page, it indicates that the changes in the document have been successfully sent to the database, allowing a new version of the file to be created in the OO Docs cache.

To create a new version of the file in your storage, a callback handler must be implemented on your end. There are few Document Save Examples available here

"callbackUrl": "https://xxxxx/"

Please describe how you save the file.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please describe how you
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ibnpetr

79384023

Date: 2025-01-24 10:43:49
Score: 4
Natty: 4
Report link

I know the answer now , but I’m 9 years late. Sorry buddy

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

79384016

Date: 2025-01-24 10:41:48
Score: 2
Natty:
Report link

This should be supported now - thanks for highlighting it. Similar changes (e.g. dynamic binding support for the mode property) will also be available soon.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ricardo Mallols

79384013

Date: 2025-01-24 10:38:47
Score: 1
Natty:
Report link

/home/ranger/.m2 is mounted as volume to you local home user directory ~/.m2

    volumes:
      - ${HOME:-~}/.m2:/home/ranger/.m2:

So you should be confident that that directory ( ~/.m2 ) have owner (your local user) or have write access to your local user

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

79384007

Date: 2025-01-24 10:37:47
Score: 3
Natty:
Report link

The errors you're encountering indicate multiple issues related to package compatibility, imports, and Gradle setup. Here's a step-by-step guide to resolve them:

  1. Plugin Compatibility Issue The error regarding flutter_local_notifications:linux suggests a missing plugin or incorrect platform configuration.

Ensure you are using the latest version of the flutter_local_notifications package.

  1. File Reference Issues : Error when reading 'lib/screens/wishList/view/widget/wishlist_item_list.dart': No such file or directory

indicates missing or incorrect file references.

Verify that the file lib/screens/wishList/view/widget/wishlist_item_list.dart exists. If it's missing, check your version control system for any untracked or deleted files. Ensure that your import paths are correct and relative to your project structure.

  1. Flutter SDK Incompatibility with Dependencies : The error related to HtmlFlex indicates that the flutter_widget_from_html_core package might not be compatible with your Flutter SDK version. Update the flutter_widget_from_html_core package:

If you're using an older Flutter version, downgrade the package to a version compatible with your SDK.

A clean build often resolves Flutter and Gradle issues. Then rebuild your project.

Additionally, please confirm if you are using the latest Bagisto mobile e-commerce version 2.2.2 released recently.

If you still encounter issues after following these steps, please provide additional details about your Flutter SDK version, pubspec.yaml configuration, and the specific errors you encounter. happy to help further!

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Social Mobikul

79384005

Date: 2025-01-24 10:36:46
Score: 3.5
Natty:
Report link

Unfortunately no. Could you please use ranges instead of iterators. This can help

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

79384003

Date: 2025-01-24 10:35:46
Score: 1
Natty:
Report link

Thank you to the people that commented, and the different options, it isn't an architecture issue as I thought but as Guru-Stron suggested it's most likely an unawaited Async call.

I was doing a saveAsync without awaiting, completely my fault:

 _wrapper.RepositoryContext.AddAsync(dbSession);
 // save in the database
 _wrapper.RepositoryContext.SaveChangesAsync();

Changed to:

await _wrapper.RepositoryContext.AddAsync(dbSession);
// save in the database
await _wrapper.RepositoryContext.SaveChangesAsync();

Please upvote his comment, not this answer.

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

79383989

Date: 2025-01-24 10:31:45
Score: 3.5
Natty:
Report link

Does xlrd evaluate excel before reading values?

I am trying to read excel using pd.read_excel() but this doesn't read excel cells that contains formulas. Not even after applying data_only=True.

I'm wondering if xlrd is able to read excel cells that contains formulas and does it evaluate the formula before reading them?

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: SP Chaurasiya

79383988

Date: 2025-01-24 10:31:45
Score: 1
Natty:
Report link

When you did update_at: datetime = created_at it did not work, because python judges created_at at class definition time not instance creation time. They were different because basically default values are evaluated independently at instance creation time.

Solution to this could be during model creation setting updated_at to None and then during initializing setting it as created_at...

class User(UserBase, table=True):
    id: int | None = Field(default=None, primary_key=True)
    created_at: datetime = Field(default_factory=get_current_utc_time)
    updated_at: datetime | None = None
    last_login_at: datetime | None = None
    email: EmailStr = Field(unique=True)

    def __init__(self, **data):
        super().__init__(**data)
        if self.updated_at is None:
             self.updated_at = self.created_at

The solution will solve the problem but the more maintainable solution could be create a paired factory function, something like...

inital_time_factory, shared_time_factory = create_timestamp_pair()


class User(UserBase, table=True):
    id: int | None = Field(default=None, primary_key=True)
    created_at: datetime = Field(default_factory=initial_time_factory)
    updated_at: datetime = Field(default_factory=shared_time_factory)
    last_login_at: datetime | None = None
    email: EmailStr = Field(unique=True)

the create_timestamp_pair() creates a pair of factory functions that returns the same timestamp.

Finally, I dont think validators to be the best solution, because iguess they are executed after the fields are set, not sure about this, you will have to manage validation order properly.

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: jiisanda

79383986

Date: 2025-01-24 10:30:44
Score: 6 🚩
Natty: 6
Report link

has anybody resolved this error? I am also encountering the exactly same issue. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): resolved this error?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chriz Caga-anan

79383981

Date: 2025-01-24 10:28:42
Score: 7 🚩
Natty: 5.5
Report link

i need help with my assignment

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (2.5): i need help
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Laila

79383965

Date: 2025-01-24 10:22:40
Score: 0.5
Natty:
Report link

Here, you will find your assigned Twilio free number.

Messaging => Try it out => Send an SMS
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Qudus

79383958

Date: 2025-01-24 10:19:38
Score: 3
Natty:
Report link

I got this problem nad had python 3.12. Wheel built successfuly when I reinstalled python and run pip with python 3.11

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

79383957

Date: 2025-01-24 10:19:38
Score: 1
Natty:
Report link

It doen't work with the select dropdown. So you must have at least the size 2 of your select element:

Solved with jquery

$(".selectClassName").on("click", function(){
    $(this).find("option").eq($(this).prop("selectedIndex")).remove();
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andy

79383953

Date: 2025-01-24 10:18:38
Score: 2
Natty:
Report link

The most simple and straight-forward approach is using parzer library. For example, given points

library(parzer) 

latitude = "40°14'55.5"

lat_out = parse_lat(latitude)

longitude = "19°58'22.7"

lon_out = parse_lon(longitude)

Note: the direction is not required.

For more information, check https://semba-blog.netlify.app/02/25/2020/geographical-coordinates-conversion-made-easy-with-parzer-package-in-r/

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

79383952

Date: 2025-01-24 10:17:38
Score: 2
Natty:
Report link

I also encountered this problem, but the solution for me was the following: check the CORS rules on the server side of the application, when the server side receives requests through the internal network of the docker, then the host is called as a service from docker-compose.yaml

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

79383944

Date: 2025-01-24 10:15:37
Score: 2
Natty:
Report link

According to my recent experience, I've noted that any image in the whole assets with wrong dimensions will cause the widget to do ridiculous things even if you are not using that image in your widget. So, make sure to use supported dimensions

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

79383938

Date: 2025-01-24 10:14:37
Score: 1
Natty:
Report link

You need to include a reference to the schema in the XML, otherwise the parser will reject the dnsmasq:options part. I.e.

<network xmlns:dnsmasq='http://libvirt.org/schemas/network/dnsmasq/1.0'>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jan Den Ouden

79383937

Date: 2025-01-24 10:14:37
Score: 2
Natty:
Report link

According to my recent experience, I've noted that any image in the whole assets with wrong dimensions will cause the widget to do ridiculous things even if you are not using that image in your widget. So, make sure to use supported dimensions

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

79383934

Date: 2025-01-24 10:12:36
Score: 0.5
Natty:
Report link

Since the question isn't clear if its about up in general or just the camera, I will provide a general answer that works for all objects (including cameras/OrbitalControls) created after this has been called:

import * as THREE from "three"
THREE.Object3D.DEFAULT_UP = new THREE.Vector3(0, 0, 1);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Corvince

79383930

Date: 2025-01-24 10:10:35
Score: 6 🚩
Natty:
Report link

https://www.youtube.com/watch?v=ZTIbukFy3jM this video may help you ,as i was facing same issues.

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

79383919

Date: 2025-01-24 10:05:34
Score: 2
Natty:
Report link

DEFAULT_CIPHERS was removed in urllib3 v2, so one way to solve this is to force urllib3<2 in your requirements.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Olivier Gérardin

79383918

Date: 2025-01-24 10:05:34
Score: 2.5
Natty:
Report link

here is well explained : How can I read multiple files faster?

you should run the reading in a multithreaded flow and for each of them you should access and copy into memory , process and free it.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ROCFER

79383906

Date: 2025-01-24 10:00:33
Score: 1.5
Natty:
Report link

NO, the new bot can't have the same chats, data, and access as the old bot because the API keys for both Bots are different. When you delete a chatbot, all the data is released. When you delete a chatbot and create a new one with the same username, you know that it is your bot, but Telegram doesn't know, they will consider it as a new fresh chatbot.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Trusha Jadeja

79383904

Date: 2025-01-24 09:59:32
Score: 2.5
Natty:
Report link

It can happen also when you use a localization language which is not supported, for example if you localize in Javanese (jv).

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

79383903

Date: 2025-01-24 09:59:32
Score: 2.5
Natty:
Report link

The problem in your first CMake-command is that you need to wrap it with quotes "

add_custom_command( ... COMMAND "$<$CONFIG:Debug:cmake;-E;echo;foo>" )

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

79383899

Date: 2025-01-24 09:58:32
Score: 1.5
Natty:
Report link

Since the 4.1 version, NUnit is providing a UsingPropertiesComparer() suffix to the Is.EqualTo equality constraint. It will recursively check all the object public properties.

https://docs.nunit.org/articles/nunit/writing-tests/constraints/EqualConstraint.html#comparing-classesstructures

You will even get a specific message when a particular property fails the equality test !

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

79383896

Date: 2025-01-24 09:57:32
Score: 1.5
Natty:
Report link

The problem lies within your custom factory class. You overwrote getView() but your getView() method doesn't return a delegate (you need to return a BehaviourDelegate or a subclass of it) but ViewLoop expects one.

For further questions I suggest you to use the official developer forum. There tend to be more active monkey-c developers than here.

You can also check out the "PrimatesApp" example shipped with the SDK. If you use VSCode, press F1 and type "monkey c: open samples folder". You can find the samples there.

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

79383894

Date: 2025-01-24 09:57:32
Score: 1.5
Natty:
Report link

As of Today, space-evenly does that, it adds same space on the edges than in between elements.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: c.chapa

79383887

Date: 2025-01-24 09:53:31
Score: 2.5
Natty:
Report link

Right click connection >> Connection view >> Advanced

This will allow you to create databases.

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

79383882

Date: 2025-01-24 09:52:30
Score: 4
Natty:
Report link

minikube start --driver=docker --force

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

79383881

Date: 2025-01-24 09:51:30
Score: 3
Natty:
Report link

crunch 8 8 @%@%@%%% @ alphabet % numbers

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

79383876

Date: 2025-01-24 09:49:29
Score: 0.5
Natty:
Report link

Try explicitly cast to boolean or float first

mask_diff =outage_mask.diff().astype("boolean").fillna(False)
outage_mask.loc[mask_diff]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Kirill Ilichev

79383860

Date: 2025-01-24 09:43:27
Score: 4
Natty:
Report link

For testing try the modbus tcp ip for mobile android

https://play.google.com/store/apps/details?hl=en_US&id=com.com.Annzar.dergott.ModbusTCPIPMobile&utm_source=chatgpt.com

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