79357080

Date: 2025-01-15 04:42:35
Score: 0.5
Natty:
Report link

Create a client like -

from pybit.unified_trading import HTTP as BybitHTTP

class ProxyHTTP(BybitHTTP):
    def __init__(self, proxy_host=None, proxy_port=None, **kwargs):
        super().__init__(**kwargs)
        self.proxy_url = f'https://{proxy_host}:{proxy_port}' if proxy_host and proxy_port else None
        
    def _send_http_request(self, req, **kwargs):
        if self.proxy_url:
            settings = self.client.merge_environment_settings(
                req.url,
                proxies={'https': self.proxy_url, 'https': self.proxy_url},
                stream=None,
                verify=True,
                cert=None
            )
            return self.client.send(req, timeout=self.timeout, allow_redirects=False, **settings)
        return self.client.send(req, timeout=self.timeout)

Use this in your main file -

from bybit_client import ProxyHTTP
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Akshat Sharma

79357076

Date: 2025-01-15 04:40:35
Score: 3
Natty:
Report link

Too bad he’s NOT paranoid and he’s absolutely right. It’s out of control how much people are hacking, wait and see how bad it becomes you’ll know then I bet you’ve already been scammed and don’t even know if because you can’t even tell if it’s real or not

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

79357075

Date: 2025-01-15 04:39:34
Score: 3.5
Natty:
Report link

Just know that not all versions of PHP allow the trailing comma. It's best to avoid those versions, since trailing commas are pretty much ubiquitous.

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

79357069

Date: 2025-01-15 04:35:33
Score: 4
Natty:
Report link

Thanks so much for helping I have found your help complicated that findcontrol do not work at delphi prism or i dont know how to use it.
I applied but i see that my gridview do not have itemtemplate it has emptydatatemplate and i cant make it visible. I used to do this very easy way but i have a fire accident and i lost all my external hdd backups and all samples that i cant remember again. I want to attach a session to use at where clause at another datasource. I did try to use your code but didnt succeed Cheers

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Cheers
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Eddie Turerer

79357060

Date: 2025-01-15 04:26:31
Score: 1.5
Natty:
Report link

Turns out, all we needed to do was simply comment out the --reload option if used async playwright and fastApi in windows. Just the code

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

79357055

Date: 2025-01-15 04:22:30
Score: 2
Natty:
Report link

Make sure in your app.json, that you don't include @react-native-firebase/firestore as one of the plugins under expo. That fixed it for me.

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

79357049

Date: 2025-01-15 04:15:27
Score: 8 🚩
Natty: 6
Report link

الموقع ممتاز جدا وجميل ومفيد جدا انح به

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Koraa 7

79357038

Date: 2025-01-15 04:07:25
Score: 1.5
Natty:
Report link

In Bagisto, a customer can currently belong to only one group. If you require a many-to-many relationship, you’ll need to create a pivot table for customers and groups. Additionally, you’ll need to customize the blade file to support this functionality.

If you require assistance, feel free to raise a support ticket at Bagisto Support.

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

79357031

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

namespace Simulation2.BL { public static class ConfigurationService { public static void AddBLService(this IServiceCollection services) { services.AddAutoMapper(Assembly.GetExecutingAssembly());
services.AddScoped<ITechnicianService, TechnicianService>();
} } }

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

79357026

Date: 2025-01-15 03:58:24
Score: 1.5
Natty:
Report link

You're using PaddingMode.None which requires the input data to be exactly divisible by the block size (16 bytes for AES).

Try encrypting/decrypting TESTTESTTESTTEST (4 TESTs, 16 bytes), and you will get the correct result like the first screenshot.

I prefer you use PKCS7 padding instead of None padding, as PKCS7 does not have this issue.

Change

aesAlg.Padding = PaddingMode.None;

To

aesAlg.Padding = PaddingMode.PKCS7;

None Padding

PKCS7 Padding

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

79357021

Date: 2025-01-15 03:54:23
Score: 1
Natty:
Report link

No, it is not a good practice because it removes the wrapper exception.

The proper handling for exceptions is that you must wrap into another exception or handle another.

So we must change our signature to

public myPublicMethod(...) throws WrapperException {
  try {
    doSomething(); // this throws OtherException
  }
  catch (OtherException e) {
    throw new WrapperException(e);
  }
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kolorowa

79357018

Date: 2025-01-15 03:48:22
Score: 0.5
Natty:
Report link

Found a solution by going to "Transform Data" and changing the "Source" code to dynamically get the last value in reviews.

= Python.Execute("#(lf)def extract_findings(filename):#(lf)    
...

#(lf)filename = "&"""" &Record.Field(Table.FirstN(Table.Sort(reviews, 
{{"createdon", Order.Descending}}), 1){0}, "attachment")& """"&"#(lf)
findings_df = extract_findings(filename)#(lf)
findings_df"
)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: carly m

79357017

Date: 2025-01-15 03:47:21
Score: 1
Natty:
Report link

Alachisoft.NCache.Runtime.Exceptions.ConfigurationException: 'Invalid property string'

public Cache_maneger()
{
    string cacheName = "myCache";

    _cache = CacheManager.GetCache(cacheName);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ritesh Singh

79357016

Date: 2025-01-15 03:46:21
Score: 3.5
Natty:
Report link

StringJoiner joiner = new StringJoiner("<br");

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

79356999

Date: 2025-01-15 03:38:19
Score: 2.5
Natty:
Report link

So the issue ended up being that I was missing some required modules. I took some time to look at the error stack trace and traced the path/files that it was trying to load the methods from. In this case I was missing IPython.

[1]: https://i.sstatic.net/MB3VLlNp.png

Once I installed IPython via anaconda navigator, this and all other code works fine now. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Chris Dunn

79356996

Date: 2025-01-15 03:35:18
Score: 2.5
Natty:
Report link

The problem had nothing to do with the nodes. Due to the scaling of the agents, they were "bumping" along seats and slowing down with every collision. Even though the agents looked "small enough" to fit through the corridor, the diameter set at the PedSource was too large.

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

79356985

Date: 2025-01-15 03:27:16
Score: 1.5
Natty:
Report link

Hi author of the issue here and sorry for the late response. We were unable to secure any sponsors for this component so we have an unofficial exporter for Postgres here: https://github.com/destrex271/postgresexporter

We'll eventually get this merged in the collector repository since it's a pretty long process but for the timebeing this is one of the alternatives.

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

79356982

Date: 2025-01-15 03:26:16
Score: 4
Natty: 4.5
Report link

I did as suggested, yet also found the _this.props.data is not a function. is thrown. Was there something I missed?

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

79356973

Date: 2025-01-15 03:16:13
Score: 6 🚩
Natty: 4
Report link

How about in reverse? How would you implement if the API service is in the cloud/Azure and needs to be invoked by an on-premise application? What are the security mechanisms that need to be in place?

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

79356962

Date: 2025-01-15 03:12:11
Score: 2
Natty:
Report link

How It Works Input Fields: Users enter details such as brand, model, processor, RAM, storage, and price. Submit Button: On clicking the "Submit" button, the details are saved and displayed in a visually styled card format. Card Design: The submitted details are displayed in a neat, user-friendly card. This React app is clean, intuitive, and easy to extend!!

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): How It
  • Low reputation (1):
Posted by: MALAYSIA Vp

79356960

Date: 2025-01-15 03:11:11
Score: 1
Natty:
Report link

Can you put an f before your f-string's brackets to see if it works then?

Ran this code over here with python3 and it worked:

number = float(input('blabla \n'))
number = float(f"{number:.2f}") # f"{fstring formatting here}"
print(number)
print(type(number))

Output:

blabla 
0.556
0.56
<class 'float'>
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Luigi Carvalho

79356954

Date: 2025-01-15 03:07:10
Score: 1
Natty:
Report link

This likely means that one of your columns is incompatible as a categorical data type or a continuous datatype. You can check the types using dtype.

for col in df.columns:
    print(col)
    print(df[col].dtype)
    print(df.cat_column.dtype == 'category')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Taylor England

79356947

Date: 2025-01-15 03:03:09
Score: 2
Natty:
Report link

ref : bind *:5000 ssl crt /etc/haproxy/cert/hapatroni.pem

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: RP.S

79356943

Date: 2025-01-15 02:59:09
Score: 2
Natty:
Report link

I was facing the same issue in VS 2022 and apparently upgrading to Version 17.12.3 resolved it.

I also added Visual Studio as Diff Tool and Merge Tool as mentioned in Bravo Yeung's answer, by going to Tools > Options > Source Control > Git Global Settings See below picture

https://i.sstatic.net/MB1GXHXp.png

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

79356935

Date: 2025-01-15 02:51:08
Score: 2.5
Natty:
Report link

disabling all vscode extensions on ssh host worked for me.

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

79356925

Date: 2025-01-15 02:46:07
Score: 3
Natty:
Report link

This solution worked for me, thank you @ingvar

[RECOMMENDED] Define hashcode/equals in your custom UserDetails class

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @ingvar
  • Low reputation (1):
Posted by: Khanh Tran

79356924

Date: 2025-01-15 02:46:06
Score: 4.5
Natty: 4.5
Report link

you may need to point to the folder it’s in in Linker on visual studio, it may have trouble accessing that directory

was matplotlib installed through pip?

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

79356921

Date: 2025-01-15 02:41:05
Score: 2
Natty:
Report link

enter image description here

In Column C use:

=UNIQUE(TRANSPOSE(TEXTSPLIT(TEXTJOIN(",",TRUE,B2:B6),",")))

And in Column D:

=COUNTIF(B:B,"*"&C2&"*")
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: liver

79356920

Date: 2025-01-15 02:40:05
Score: 2.5
Natty:
Report link

Solved answer: `defmodule HelloWeb.ThermostatLive do use HelloWeb, :live_view

def render(assigns) do ~H""" Current temperature: <%= @temperature %> °F + """ end

def mount(_params, _session, socket) do # Let's assume a fixed temperature for now temperature = 70 {:ok, assign(socket, :temperature, temperature)} end

def handle_event("inc_temperature", params, socket) do {:noreply, update(socket, :temperature, &(&1 + 1))} end end`

Reasons:
  • No code block (0.5):
  • User mentioned (1): @temperature
  • Low reputation (1):
Posted by: Samuel Martins

79356917

Date: 2025-01-15 02:37:04
Score: 2.5
Natty:
Report link

you need to go to safe restart after installation...I already tackled with this issue...I did Safe Restart and then logged in and the magic begins it allows me to install Slack Notification

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

79356913

Date: 2025-01-15 02:33:03
Score: 1
Natty:
Report link

protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder);

 modelBuilder.Entity<Technician>()
     .HasOne(t => t.Service)
     .WithMany(t => t.Technicians)
     .HasForeignKey(t => t.ServiceId)
     .OnDelete(DeleteBehavior.Restrict);

}

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

79356907

Date: 2025-01-15 02:28:02
Score: 4
Natty:
Report link

Please try the approach mentioned in below stack overflow post.

How to fix the Hibernate "object references an unsaved transient instance - save the transient instance before flushing" error

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

79356899

Date: 2025-01-15 02:21:59
Score: 14.5 🚩
Natty:
Report link

I have the same problem. Were you able to solve it?

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

79356890

Date: 2025-01-15 02:10:57
Score: 2
Natty:
Report link

I was facing the same issue in VS 2022 and apparently upgrading to Version 17.12.3 resolved it.

I also added Visual Studio as Diff Tool and Merge Tool by going to Tools > Options > Source Control > Git Global Settings See below picture

https://i.sstatic.net/MB1GXHXp.png

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

79356889

Date: 2025-01-15 02:10:56
Score: 9 🚩
Natty: 5.5
Report link

Did you find the solution of this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find the solution
  • 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 find the solution of this
  • Low reputation (1):
Posted by: Milan Gabani

79356882

Date: 2025-01-15 02:05:55
Score: 0.5
Natty:
Report link

AWS S3 (Simple Storage Service) and AWS Storage Gateway are both services that deal with data storage, but they serve different purposes and are designed for different use cases.

Here’s a detailed explanation with examples of how each service works:

  1. AWS S3 (Simple Storage Service) What it is:

AWS S3 is a highly scalable, durable, and secure object storage service. It is designed for storing and retrieving any amount of data from anywhere on the web. It’s mainly used for cloud-native storage where users or applications access the data directly in AWS. Use Cases:

Backup and archival of large amounts of data. Storing static website content (e.g., images, videos, documents). Data lake or big data analytics workloads. Hosting cloud-native applications’ storage. Example Use Case: Imagine you have a mobile app where users can upload and view photos. You could use AWS S3 to store all these uploaded photos. The app will interact directly with S3 to upload, store, and retrieve files. S3 can scale automatically, and there’s no need for infrastructure to manage, making it ideal for cloud-native storage.

  1. AWS Storage Gateway What it is:

AWS Storage Gateway is a hybrid cloud storage service that enables your on-premises applications to access and use AWS cloud storage. It connects on-premises environments (data centers, office locations) with AWS cloud storage. It’s mainly used when you have existing infrastructure on-premises but want to use cloud storage like S3 for backup or disaster recovery without completely moving to the cloud. Types of Gateways:

File Gateway: For storing files in S3 using standard file protocols (NFS/SMB). Volume Gateway: For backing up volumes as EBS snapshots. Tape Gateway: For using virtual tapes in AWS for backups and archiving. Use Cases:

Backup and disaster recovery for on-premises infrastructure. Cloud migration for organizations that still have physical data centers. Hybrid cloud environments where data needs to be stored both on-premises and in AWS. Example Use Case: Suppose you have a local data center with several servers storing critical company data. You want to back up these servers to AWS for disaster recovery, but you don’t want to change your existing infrastructure. You can set up AWS Storage Gateway in your on-premises data center. The gateway will cache data locally and asynchronously back it up to S3. This way, your on-premises applications can still operate normally, but you have the added benefit of cloud storage for backups.

Key Differences: Feature AWS S3 AWS Storage Gateway Primary Use Case Cloud-native object storage Hybrid cloud storage, integrating on-premises with AWS Access Method Direct cloud storage access On-premises applications using AWS for backup or storage Data Location Stored in AWS cloud (S3) Data starts on-premises, but is backed up to the cloud Common Protocols REST API, S3 SDKs NFS, SMB (for file access), iSCSI (for volumes) Example Storing app data, backups On-premises data backed up to the cloud Latency Cloud access, depends on the internet connection Low-latency local access with cloud integration Conclusion: AWS S3 is for cloud-native applications where you’re directly working with cloud-based storage. AWS Storage Gateway is for companies with on-premises data centers that want to connect their local systems to AWS for backup, disaster recovery, or hybrid cloud scenarios.

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

79356878

Date: 2025-01-15 02:02:55
Score: 3
Natty:
Report link

In my experience this error don't affect Visual Studio Code. Then, you have the option to use VSC instead of Spyder.

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

79356869

Date: 2025-01-15 01:55:53
Score: 3.5
Natty:
Report link

As I understand,

rtime: It's the actual time taken to process the media utime: It shows the time spent in user-mode. It's cpu processing time.

For time, I have questions. What's the total length of the media? What time is showing after ffmpeg completed?

Here is the source code of it: https://github.com/ffmpeg/ffmpeg/blob/master/fftools/ffmpeg.c#L998

Reasons:
  • Blacklisted phrase (1.5): I have question
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: anuj tyagi

79356865

Date: 2025-01-15 01:54:53
Score: 2
Natty:
Report link

PHP 8.4+ includes array_find() which will do exactly what you want.

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

79356864

Date: 2025-01-15 01:53:53
Score: 3.5
Natty:
Report link

I'd like to ask if there is a version without the split line, I tried to use http://tulrich.com/geekstuff/canvas/perspective.html but I still can't realize the control point and no split line together. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mila

79356861

Date: 2025-01-15 01:52:52
Score: 4
Natty:
Report link

Maybe you can try LightRAG, it's easy

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

79356846

Date: 2025-01-15 01:44:50
Score: 3.5
Natty:
Report link

Found the issue, header cells can't be empty or it corrupts.

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

79356845

Date: 2025-01-15 01:44:50
Score: 3
Natty:
Report link

For anyone looking to get the udf's to register and still work with the scala spark session you need to instantiate the python sparksession with a reference to the SparkSession from the gateway. Check the api docs, theres an optional parameter for it in the constructor.

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

79356841

Date: 2025-01-15 01:41:49
Score: 0.5
Natty:
Report link

A more anecdotal answer than @evanmcdonnal's is that, at least in go1.22,

package main

import "fmt"

const (
    str1 = "asdf"
    str2 = "ghjk"
)

func main() {
    fmt.Println(str1, str2)
}

and

package main

import "fmt"

const (
    str1 = "asdf"
    str2 = "asdf"
)

func main() {
    fmt.Println(str1, str2)
}

compile out to the same size. So the compiler doesn't even optimize that within the same file.

$ go version
go version go1.22.2 darwin/arm64
$ go build -o diff diff.go
$ go build -o same same.go
$ ls -l
total 7952
...  2029586 Jan 14 17:32 diff
...      110 Jan 14 17:31 diff.go
...  2029586 Jan 14 17:32 same
...      110 Jan 14 17:31 same.go
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @evanmcdonnal's
  • Low reputation (0.5):
Posted by: thisisbenmanley

79356840

Date: 2025-01-15 01:41:49
Score: 3.5
Natty:
Report link

Solved: It turns out the field name "type" is already in use by Wordpress. Duh.

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

79356838

Date: 2025-01-15 01:41:49
Score: 0.5
Natty:
Report link

The call was coming from inside the house! That 404 was being printed by my fastcgi script in response to apache's truly brain dead (and obviously undocumented) decision to set $ENV{'SCRIPT_FILENAME'} to 'proxy:fcgi://127.0.0.1:2022/path/to/my/file/index.stml'. To make your fastcgi scripts portable between apache and non-broken web servers do something like $ENV{'SCRIPT_FILENAME'} =~ s/.*2022//; before opening it.

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

79356837

Date: 2025-01-15 01:40:49
Score: 1.5
Natty:
Report link

I had the same issue。I mistakenly named the provisioning profiles for the development environment and the production environment incorrectly, which led to them being used interchangeably.

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

79356815

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

With UI, whenever you create any CloudFront distribution, open that distribution.

  1. At the right, you will find Logging tab >> Add
  2. Select S3 in Deliver To option
  3. Destination S3 bucket
  4. Now, you there will additional-settings section (optional). It will have field selection. Here, you can select Coookie field among all other fields like x-forwarded-for, date, time.

With IAC, Are you following example from latest version? https://registry.terraform.io/providers/hashicorp/aws/latest/docs

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: anuj tyagi

79356813

Date: 2025-01-15 01:23:46
Score: 1.5
Natty:
Report link

If anyone has the same issue after upgrading to NUnit 4, the correct syntax is:

Assert.That(object, Is.InstanceOf());

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Aref Karimi

79356811

Date: 2025-01-15 01:22:45
Score: 3
Natty:
Report link

Turning off developer mode and then turning back on with the forced reboot fixed this issue for me.

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

79356804

Date: 2025-01-15 01:17:43
Score: 4
Natty:
Report link

There is no need to activate Cloud Messaging API (Legacy) Now. firebase has changed the way notifications are sent and received https://firebase.google.com/docs/cloud-messaging/migrate-v1 Follow the method in the link and you will reach an ideal solution https://www.youtube.com/watch?v=bRyTYTXsljQ&t=495s Also, this video will explain a lot to you

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this video
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: mrwan dhwee

79356795

Date: 2025-01-15 01:08:42
Score: 2.5
Natty:
Report link

maybe you can change the setting to relative date and set to this month

enter image description here

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

79356794

Date: 2025-01-15 01:08:42
Score: 1
Natty:
Report link

To block all PDFs from the search engine index, create a robots.txt with this content:

User-agent: *
Disallow: *.pdf
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Phil

79356782

Date: 2025-01-15 00:55:40
Score: 2
Natty:
Report link

What worked for me is I created a new schema called public inside the database I use. I used pgadmin4 to do it.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: dagmawi

79356779

Date: 2025-01-15 00:52:39
Score: 2
Natty:
Report link

Spring Cloud AWS provides for loading secrets from Secrets Manager into your Spring configuration: https://docs.awspring.io/spring-cloud-aws/docs/3.0.0/reference/html/index.html#spring-cloud-aws-secrets-manager.

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

79356769

Date: 2025-01-15 00:45:38
Score: 1
Natty:
Report link

I think the below would work? If you need to join on multiple character columns that exist in both, can do by = c("var1", "var2", ...)

  result_df <-  df2 %>%  group_by(species) %>% 
  summarize(mean_variable1 = mean(variable1)
            ,mean_variable2 = mean(variable2)) %>% 
  inner_join(df1, by = c("species"))
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Deven Desai

79356761

Date: 2025-01-15 00:41:37
Score: 1
Natty:
Report link

Your apollo variable will now be the url with the basepath. you need to set up a new apollo variable as an environment variable without it. Then go into apollo and request that variable instead of the BASE_URL. In my case the file was src/apollo/client.js . You will see something like process.env.BASE_URL

Change that to process.env.APOLLO_URL after creating the env variable which in my case I created in an env.local file.

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

79356756

Date: 2025-01-15 00:36:35
Score: 2
Natty:
Report link

All I do is use a Generic Text Printer Driver on Windows. Mine are all networked, so just create a generic network port and use TCP 9100, then create the file in a standard Text Editor and select file, Print.

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

79356749

Date: 2025-01-15 00:30:35
Score: 0.5
Natty:
Report link

So turns out it wasn't actually the code itself that was the issue. I did more messing around with the firewall trying to figure out why other programs were receiving packets and my .NET program wasn't; and it turns out that it was actually firewall rules that were blocking the incoming packets, but for an odd reason.

Because when running your .NET code in Visual Studio compiles the program down to an .exe, windows prompts you to select firewall rules for the application communicating on either public or private networks. When I first ran my project, I unchecked the public network box and only checked the private network box because that's what I usually do. But apparently not having the public network box checked was blocking the incoming packets from my ESP32. I have never encountered this issue before and I will probably look into my network settings further to find the root of the issue. (New contract and router form provider likely frazzled a few things)

But TL;DR - Removing all firewall rules for incoming packets for the application, and then checking the public network option when I ran the .exe again and was prompted finally allowed the packets through.

If anyone is willing to give any more tips I would greatly appreciate it as someone new to .NET and UDP in general. Thanks.

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

79356748

Date: 2025-01-15 00:30:35
Score: 1
Natty:
Report link

You can also use asyncio.to_thread

async def upload_stream(self, stream, bucket_name, key):
   await asyncio.to_thread(self.S3.put_object, Body=stream, Bucket=bucket_name, Key=key)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zakari Salifu

79356745

Date: 2025-01-15 00:27:34
Score: 3.5
Natty:
Report link

tambien soy nuevo en esto, pero trate de hacerlo a como dijiste que lo intentaste.

import random

def guess_game():
    get_guess = random.randint(1, 100)
    score = 0


    for i in range(3):
        guess = int(input("Guess number: "))
        if guess < get_guess:
            print("Too high\n")
            score += 1
        elif guess > get_guess:
            print("Too low\n")
            score += 1
        elif guess == get_guess:
            print(f"yes {guess} is the correct number!\n")
            # score = 0
            break
    print(f"You are out of guesses! The number is {get_guess}\n")


    if score == 0:
        print("\rcongratulations!, you did on the firts try. 100%")
    elif score == 1:
         print("good!. 50%")
    elif score == 2:
         print("ufff very close to losing. 30%")
    else:
         print("zero punctuation. 0%")
    print("\n===End of the program ===")
guess_game()

Este codigo es algo sencillo que simplemente recorre el for 3 veces que son los intentos, esto se puede mejorar asignando los intentos a una variable y esa recorrerla desde el for, al igual que la puntuacion dependiendo de los intentos que le vayas a poner. Soy nuevo en esta plataforma y quiero aportar, espero que esta respuesta sea de ayuda :).

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): espero
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: camilo andres ospina villa

79356743

Date: 2025-01-15 00:26:33
Score: 1.5
Natty:
Report link

$("#tabDatos").dataTable({
  columns: [
    { data: "fecha" },    
    { data: "importe", className: "text-right" }
  ]
});

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

79356735

Date: 2025-01-15 00:23:32
Score: 4.5
Natty:
Report link

Not the place for that. Go to https://support.discord.com/hc/en-us and address your issue there.

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

79356728

Date: 2025-01-15 00:19:31
Score: 2
Natty:
Report link

FWIW: I just ran into the same error message. turned out the fancy Makefile wants to compile all *.cpp source files and I had cut and paste one of them: "file (2).cpp" and the fancy Makefile wasn't fancy enough to parse its own substitution output.

So all -include and all % substitutions could cause this.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Martin F Schulz

79356718

Date: 2025-01-15 00:13:30
Score: 3.5
Natty:
Report link

This is not an answer but a scenario in which it is required to recreate the session within the execution of a pl/sql. In this scenario the execution and update of some packages from my pl/sql code has created a lock on one of my java classes (a class level lock). And it seems that the only way to release that lock is by closing the session that created in the 1st place (my session). Perhaps the question is "is there any other way to release a java class level lock than closing the session that created the lock?"

Reasons:
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (1): is there any
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Liberto Santantón

79356716

Date: 2025-01-15 00:11:30
Score: 1.5
Natty:
Report link

Thrashing happens when a computer's operating system spends more time swapping data between RAM and disk storage than executing actual tasks. This leads to severe performance issues.

Why does it occur?

  1. Memory Overload: When the system runs more applications than the available RAM can handle, it resorts to virtual memory, leading to excessive swapping between RAM and disk.
  2. High Multiprogramming Level: Too many processes run simultaneously, causing constant context switching and memory swapping.
  3. Insufficient Memory Allocation: Not allocating enough memory to active processes can cause frequent page faults and swapping.
  4. Improper Page Replacement Algorithms: Inefficient algorithms can worsen the situation by not retaining frequently accessed pages in RAM.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Om Bhamare

79356715

Date: 2025-01-15 00:10:29
Score: 7.5 🚩
Natty:
Report link

Why do you need to update the styles via javascript. Do you need to update something beyond dark/light scheme declarations in CSS? Can you clarify what you need with the javascript function?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you clarify what you
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Why do you
  • Low reputation (1):
Posted by: Tim Jensen

79356708

Date: 2025-01-15 00:06:28
Score: 2.5
Natty:
Report link

I was using version 4.0.0, I updated to 5.4.11 and it worked fine

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel Alba

79356704

Date: 2025-01-15 00:02:27
Score: 2.5
Natty:
Report link

Faced the same problem. The issue was that I had imported some settings from VScode while installing Intellij. The solution was to go to settings -> Keymap Then from the dropdown select windows.

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

79356688

Date: 2025-01-14 23:47:25
Score: 3
Natty:
Report link

In my case, I added the gradle flyway dependency but somehow forgot to add the JPA dependency! Adding it to my project fixed the problem!

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

79356684

Date: 2025-01-14 23:44:23
Score: 8 🚩
Natty: 6
Report link

I've been having the same problem for weeks now. The problem doesn't seem to be at the HTTP level, but at the internal level. Today I use a Python script that receives and processes cXML and sends a Json to my ecommerce. The SAP people say that the punchout catalog link needs to be the same as the API link. Does that make any sense? The response seems to be perfect. Does anyone know if there are any limitations in the structure of the external script?

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: dhdonato

79356683

Date: 2025-01-14 23:44:23
Score: 1.5
Natty:
Report link

I can confirm that it's tricky to get the right password hash.

easier way was to add my user account to the admin role.

shutdown csvn first then edit csvn-production-hsqldb.script

Look for your user primary key

INSERT INTO USER VALUES(7,5,'LDAP_AUTH_ONLY',TRUE,'my.username','[email protected]','LDAP User','my.username')

In this example, it is 7.

add your user primary key to the admin role

INSERT INTO ROLE_PEOPLE VALUES(1,7)

Start csvn

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

79356681

Date: 2025-01-14 23:41:22
Score: 1
Natty:
Report link

You could try reading the MPS file and writing the model out as an LP format file which should be easier to read

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

79356679

Date: 2025-01-14 23:40:22
Score: 3.5
Natty:
Report link

i've found the same issue, it's fixed at 0.12.x

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Federico Becoña

79356675

Date: 2025-01-14 23:37:21
Score: 1.5
Natty:
Report link

This is what I finally got to work:

th:hx-vals="'{ &quot;page&quot;: &quot;' + ${pageNum} + '&quot;, &quot;size&quot;: &quot;' + ${pageSize} + '&quot; }'"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Steve Maring

79356672

Date: 2025-01-14 23:32:21
Score: 1
Natty:
Report link

"Invalid prop id supplied to React.Fragment", happens because React.Fragment only accepts the key and children props. If you accidentally pass an id or other props to React.Fragment, React throws this error. Inspect Your Code Look for where you are using <React.Fragment> or the shorthand <> in those files and passing an id or any other props. Alternative (if id is needed) If the id or another prop is required, replace React.Fragment with an actual HTML element, such as a .

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shahoud Al-Rai

79356662

Date: 2025-01-14 23:26:19
Score: 0.5
Natty:
Report link

Your issue derives from the fact that BeautifulSoup can only parse the HTML that you get from the initial request. In the second example, tmx.com is requesting a separate file (in this case https://app-money.tmx.com/graphql) that contains the price information, which is why it doesn't appear in your BeautifulSoup request. You can see this by opening the Inspect Developer tools tab by pressing F12 and navigating to the Network tab:

Network requests.

In order to get the price information, you'll need to send a request to https://app-money.tmx.com/graphql instead of https://money.tmx.com/quote/BNS with the appropriate headers indicating which stock you're requesting.

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

79356656

Date: 2025-01-14 23:23:17
Score: 8.5 🚩
Natty:
Report link

Hey if you solved this dataset, can you share your repo please ?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share your
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: omar

79356639

Date: 2025-01-14 23:12:14
Score: 1.5
Natty:
Report link

Found a the solution. For some reason TYPO3 13 does not show site extension in the include typo3 sets in the backend. I deleted the default typoscript added in backend and inserted it again. included fluid styled content and site extension typoscript from backend and it worked.

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

79356631

Date: 2025-01-14 23:10:13
Score: 4
Natty:
Report link

I'm facing the same issue. Commonly what I do is, to edit index.html and add a dot before the path of the JS file of the app and it solves the error and the webapp its showing.

But now for me, it doesnt show the assets, like vectoricons and images. But when I serve the webapp by terminal it shows the assets successfully

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Low reputation (1):
Posted by: Gerardo García

79356617

Date: 2025-01-14 23:04:12
Score: 3
Natty:
Report link

Found out that -image- requires a closing tag - -/image- Work a bit differently than -img- And place the -text- line after the image.

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

79356613

Date: 2025-01-14 23:01:11
Score: 3.5
Natty:
Report link

Quick update. I managed to get rid of the

'WARNING: RunAsUser for MSP ignored, check group ids(egid=972, want=51)' just adding slurm to RunAsUSer in submit.cf

But still get no subject in the email sent. Any help will be welcome!!

Reasons:
  • Blacklisted phrase (1): Any help
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Juan Carlos Sanchez

79356606

Date: 2025-01-14 22:59:10
Score: 1.5
Natty:
Report link

It occurred to me when selenium automated code was clicking on an element of my work dev website and the connection between Selenium and the Web driver controlling the browser was lost, ultimately leading to the failing of all remaining tests after it.

Upon looking at the URL, I found that '//' was added to it for some unknown reason. Modifying it to '/' resolved my issue.

My work URL (with error): https://workdevurl.com.sa:81//CaseCustom.aspx?id=1359&formId=4206&ccf=96352

My work URL (after rectifying it): https://workdevurl.com.sa:81/CaseCustom.aspx?id=1359&formId=4206&ccf=96352

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

79356605

Date: 2025-01-14 22:58:10
Score: 0.5
Natty:
Report link

One way to do this natively in Ruby is to use Method#source_location.

> helper.method(:label).source_location
=> ["/Users/myuser/.rbenv/versions/3.3.0/lib/ruby/gems/3.3.0/gems/actionview-7.0.8.5/lib/action_view/helpers/form_helper.rb", 1143]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lidiane T.

79356601

Date: 2025-01-14 22:57:10
Score: 2
Natty:
Report link

This is not a bug or related to KafkIO. This is how the Schema Registry behaves when you create "duplicate" versions of a schema. Rather than creating a new one, with a new ID, it does a noop, basically, knowing there's already that schema there. There is no need or advantage in creating another resource/schema ID.

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

79356588

Date: 2025-01-14 22:52:09
Score: 3
Natty:
Report link

In my case if was cause by me adding this : implementation ("org.springframework.boot:spring-boot-starter-data-rest")

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

79356578

Date: 2025-01-14 22:49:08
Score: 0.5
Natty:
Report link

According to: https://camerondwyer.com/2020/05/26/how-to-report-on-serialized-json-object-data-in-application-insights-azure-monitor-using-kusto/

You can use parse_json also:

enter image description here

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Jay Borseth

79356566

Date: 2025-01-14 22:42:06
Score: 1
Natty:
Report link

In the Google Cloud Console when you are in Google Cloud Functions, in the upper right click on "View in Cloud Run" This will move you to the associated Cloud Run.

Once there click on the info "ⓘ" by the URL. This should pop out a window on the right that has alternative URLs assigned by Cloud Run.

Instead of using a URL that looks like:

https://us-central1-<project_name>.cloudfunctions.net/personlookup

You want to use a URL that looks like

https://personlookup-.a.run.app

or

https://personlookup-.us-central1.run.app

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

79356554

Date: 2025-01-14 22:38:05
Score: 3
Natty:
Report link

In my opinion, the meaning is also the same if we consider 1 as a negative label, and 0 as a positive label (just a difference of opinion)

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

79356552

Date: 2025-01-14 22:34:04
Score: 7.5 🚩
Natty: 4.5
Report link

Did you ever sort this out? We're happy to lend a hand if you need to convince your higher ups to give CiraSync a go!

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever
  • Low length (1):
  • 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: Connor Provines

79356548

Date: 2025-01-14 22:32:03
Score: 2.5
Natty:
Report link

The super kind collaborator of the library has released version v19.0.2 which has the solution where you can ensure separation of concern for actions, reducers and effects. Also look at the documentation here for detail information. You need Angular 19 as the dependancy.

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

79356538

Date: 2025-01-14 22:26:01
Score: 4.5
Natty:
Report link

The exception was a red herring. I misspelled the "job/all" GET request as "jobs/all".

If anyone found this post with a similar error, I found this thread to be useful: https://github.com/testcontainers/testcontainers-java/issues/4695

Reasons:
  • Blacklisted phrase (2): anyone found
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: omri

79356525

Date: 2025-01-14 22:16:59
Score: 2.5
Natty:
Report link

use this command to replace the wheel: python3 -m pip install --upgrade pip setuptools wheel

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

79356523

Date: 2025-01-14 22:15:59
Score: 1.5
Natty:
Report link

with Python 3 on Windows 10, you have to enter the command in Powershell as following :

py -m pip install pyautogui
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vincent Duplessy

79356513

Date: 2025-01-14 22:12:58
Score: 3
Natty:
Report link

Solution on how to fix this problem without uninstalling anything/losing any data

Docker officially posted a fix to this problem.

Just follow this: https://docs.docker.com/desktop/cert-revoke-solution/?utm_source=marketo&utm_medium=email&utm_campaign=ES-O%202025-01-09%20Incident%3A%20iOS%20Cert&mkt_tok=NzkwLVNTQi0zNzUAAAGX8RzaamOkZSxmDX_FfACSrDXX7qpMAAib4AZoI9Gcz6cef48eGlqisEgciF3t-WueKsfv3Cdx07SfgTi_SsnAe_2BAkhQ9X7CbN2li7jBrgaD#upgrade-to-docker-desktop-version-4372-recommended
and it will work again, without deleting anything and losing any data.

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

79356508

Date: 2025-01-14 22:09:57
Score: 0.5
Natty:
Report link

data-[state=open]:animate-in will cause the blur in Dialog, Popover, DropdownMenu, Select, and ContextMenu, etc.

Remove the data-[state=open]:animate-in class from the Content of those components will solve the blur issue.

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

79356496

Date: 2025-01-14 22:01:56
Score: 2
Natty:
Report link

Moving the local repo from HDD to SSD (on the same computer) made the warning to disappear. I'm on Windows so I guess you are right, it can be because of the type of disk where the codebase is located.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raphael Pinto Gregorio

79356492

Date: 2025-01-14 21:58:55
Score: 2.5
Natty:
Report link

Currently with embedded SurveyMonkey forms (which are delivered in an iframe) you can monitor the iframe messages to detect load and success.

If you listen for the messages from https://surveymonkey.com you'll see: "survey messages"

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

79356475

Date: 2025-01-14 21:51:53
Score: 1.5
Natty:
Report link

The collector is probably best thought of as something separate from application instrumentation.

Here's the official docs https://opentelemetry.io/docs/languages/java/intro/#dependencies-and-boms

In short -- depend on the opentelemetry-instrumentation-bom; that'll bring in compatible versions of the otel agent & API.

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

79356471

Date: 2025-01-14 21:50:53
Score: 2
Natty:
Report link

the error with testhost.deps.json is because you need to add the Project Reference from the main project into test project, like this

Project Reference

after this, build your project and you can run your tests

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