79556408

Date: 2025-04-05 00:15:14
Score: 1
Natty:
Report link

There are some possibilties:

  1. In the pydevd debugger code.py the line variable is not initialized properly. The problem can be related to an incorrect installation or configuration of the debugger in Visual Studio as it was mentioned in comment section under question. You can try to run the code without using the IDE (for example, from the command line). If the error does not occur, then the problem is related to IDE.

  2. Broken python core environment. Try running the code on another version Python with clean packages to eliminate the possibility of conflict with installed packages or environment settings.

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

79556394

Date: 2025-04-04 23:59:10
Score: 0.5
Natty:
Report link

Thanks again for the assist. Using provided input I went in a different direction and believe I have a working solution. I'm posting code here for others who might find it helpful. I would suggest preloading these images (especially if using for a header/hero option else the first loop will probably appear wonky. Once images are loaded, crossfades are smooth and a random image is served as site starting point (to then run through remaining images in array). I'm sure there are other ways to achieve this, but feel free to throw out any red-flag warnings I should consider.

<!DOCTYPE html>
<html>
<head>
<title>random start slideshow</title>

<style>

.upper {
position: absolute;
z-index: 1;
width: 500px;
height: 300px;
}

.upper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.upper img.active { opacity: 1; }

.lower {
position: relative;
width: 500px;
height: 300px;
}

.lower img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.lower img.active { opacity: 1; }

</style>
</head>
<body>

<div class="upper" id="container1"></div>
<div class="lower" id="container2"></div>

<script>

const images = [
"https://picsum.photos/id/650/1000",
"https://picsum.photos/id/651/1000",
"https://picsum.photos/id/652/1000",
"https://picsum.photos/id/653/1000",
];

const container1 = document.getElementById('container1');
const container2 = document.getElementById('container2');

let currentIndex = Math.floor(Math.random() * images.length);
let nextIndex;

function showImage(container, index) {
const img = document.createElement('img');
img.src = images[index];
img.onload = () => {
container.appendChild(img);
setTimeout(() => {
img.classList.add('active');
}, 5);
};
}

function crossfadeImages() {
nextIndex = (currentIndex + 1) % images.length;
showImage(container2, nextIndex);
const currentImage = container1.querySelector('img');
if (currentImage) {
currentImage.classList.remove('active');
currentImage.addEventListener('transitionend', () => {
currentImage.remove();
container1.innerHTML = container2.innerHTML;
container2.innerHTML = '';
currentIndex = nextIndex;
setTimeout(crossfadeImages, 4000);
}, { once: true });
} else {
container1.innerHTML = container2.innerHTML;
container2.innerHTML = '';
currentIndex = nextIndex;
setTimeout(crossfadeImages, 4000);
}
}

showImage(container1, currentIndex);
setTimeout(crossfadeImages, 4000);

</script>
</body>
</html>
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: SJR

79556373

Date: 2025-04-04 23:36:05
Score: 1.5
Natty:
Report link

You're close, and your first formula works nicely for the ungrouped scenario. The second one just needs a better way to dynamically group entries by the link in 'Tickets'!B2:B, and then create a proper email body per group.

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

79556372

Date: 2025-04-04 23:36:05
Score: 3.5
Natty:
Report link

Question is answered by andy holmes. see comments

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

79556369

Date: 2025-04-04 23:32:04
Score: 3.5
Natty:
Report link

I found this page on the stripe docs that allows you to visually create the code any checkout session easily

--> https://docs.stripe.com/api/sources/detach?lang=node&shell=true&api=true&resource=checkout%20sessions&action=create

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

79556366

Date: 2025-04-04 23:31:03
Score: 4
Natty:
Report link

i just labeled the models folder as model

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

79556355

Date: 2025-04-04 23:16:00
Score: 0.5
Natty:
Report link

Your parameters for .load() are incorrect. The third parameter should be the callback function.

function load_data(search){
    $("#leftContent").load(
        "includes/handlers/search-handler.php",
        {search:search},
        function(response) {
            console.log(response);
        }
    );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: stuartb

79556353

Date: 2025-04-04 23:16:00
Score: 3
Natty:
Report link

I was missing the t function on expo. I tried everything before trying your comment

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

79556351

Date: 2025-04-04 23:13:59
Score: 0.5
Natty:
Report link

When using HubSpot's search endpoint, I always convert datetimes to milliseconds and pass the milliseconds as strings in the filters, similar to the example below taken directly from HubSpot's documentation here: https://developers.hubspot.com/docs/guides/api/crm/search

curl https://api.hubapi.com/crm/v3/objects/tasks/search \
  --request POST \
  --header "Content-Type: application/json" \
  --header "authorization: Bearer YOUR_ACCESS_TOKEN" \
  --data '{
   "filterGroups":[{
      "filters":[
        {
          "propertyName":"hs_lastmodifieddate",
          "operator":"BETWEEN",
          "highValue": "1642672800000",
          "value":"1579514400000"
        }
      ]
    }]
}'
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Colin Perel

79556350

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

It was a simple fix for me as I updated it to the newest version of the Gitbash and now I can open it by right-clicking the folder.

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

79556347

Date: 2025-04-04 23:04:57
Score: 3.5
Natty:
Report link

On my OAth consent screen, I found the test user options in the "Audience" menu.

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

79556343

Date: 2025-04-04 23:03:56
Score: 8.5 🚩
Natty: 6.5
Report link

Have you ever fixed that keystore issue? I have same problem with OnePlus 8T and I can't repair it

Reasons:
  • Blacklisted phrase (1): I have same problem
  • RegEx Blacklisted phrase (1.5): fixed that keystore issue?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: D'av

79556340

Date: 2025-04-04 22:57:55
Score: 2.5
Natty:
Report link

NONATOMIC stored procedures let you catch errors and continue

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

79556339

Date: 2025-04-04 22:55:54
Score: 0.5
Natty:
Report link

As you saw, you don't need a custom element in this case.

But for anyone wanting to draw lines in custom elements, the function is drawLine(x1,y1, x2,y2), like you had, except for the capital "L".

I've never found a proper definition of what's available, but they provide some examples here: https://umlet.com/custom_elements.html

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

79556338

Date: 2025-04-04 22:53:54
Score: 0.5
Natty:
Report link

Windows 10 and above support the SIO_TCP_INFO control code for querying the statistics for a socket handle including the number of retransmissions:

typedef struct _TCP_INFO_v0 {
  TCPSTATE State;
  ULONG    Mss;
  ULONG64  ConnectionTimeMs;
  BOOLEAN  TimestampsEnabled;
  ULONG    RttUs;
  ULONG    MinRttUs;
  ULONG    BytesInFlight;
  ULONG    Cwnd;
  ULONG    SndWnd;
  ULONG    RcvWnd;
  ULONG    RcvBuf;
  ULONG64  BytesOut;
  ULONG64  BytesIn;
  ULONG    BytesReordered;
  ULONG    BytesRetrans;
  ULONG    FastRetrans;
  ULONG    DupAcksIn;
  ULONG    TimeoutEpisodes;
  UCHAR    SynRetrans;
} TCP_INFO_v0, *PTCP_INFO_v0;

TCP_INFO_v0 tcpInfo;
ULONG version = 0; // Specify 0 to retrieve the v0 version of this structure.
ULONG bytesReturned;

WSAIoctl(
   SocketHandle, 
   SIO_TCP_INFO, 
   &version, 
   sizeof(ULONG), 
   &tcpInfo, 
   sizeof(TCP_INFO_v0),
   &bytesReturned, 
   NULL, 
   NULL
   );
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Steven G

79556337

Date: 2025-04-04 22:50:53
Score: 3.5
Natty:
Report link

This is a little late haha but the issue here is that the Variant data type can contain any kind of data EXCEPT fixed-length String data.

https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/variant-data-type

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

79556336

Date: 2025-04-04 22:50:53
Score: 2.5
Natty:
Report link

To help those searching for a modern solution to this question, and use .NET, give BenchmarkDotNet a try. Sometimes time doesn't tell the whole story, and BenchmarkDotNet will give you various different statistics to help formulize your own path forward.

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

79556335

Date: 2025-04-04 22:43:51
Score: 0.5
Natty:
Report link

Update 2025:

Just use .tint on the NavigationStack:

NavigationStack {
    //...
}
.tint(.mint)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Andrei G.

79556332

Date: 2025-04-04 22:38:50
Score: 1
Natty:
Report link

I discovered that npx searches upward from the current directory for a local package. There was an unexpected node_modules in the parent directory, which it was pulling the unexpected version of the nx package from.

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

79556329

Date: 2025-04-04 22:35:49
Score: 1
Natty:
Report link

I know you only asked about the domain but I landed here with the same question in the context of the same-origin policy. The port is included in the same-origin policy.

"...the same-origin policy performs string matching on the protocol, domain, and port. Two websites have the same origin if their protocols, domains, and ports all exactly match."

http://example.com/ != http://example.com:8080/

Sources:
CS161 Textbook
RFC6454-section-3.2.1

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

79556325

Date: 2025-04-04 22:28:48
Score: 3.5
Natty:
Report link

Here a small projet that i have created to show how the Jwt Auth work with Blazor Wasm on Dotnet 8 : https://github.com/boutamen/Synaplic.BlazorJwtApp

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

79556323

Date: 2025-04-04 22:26:47
Score: 8 🚩
Natty: 6
Report link

I guess this plugin will not work for what I am needing it for. I am using a single product template in Elementor builder so the short code will not work. Because this one template shows on every single product and they all have different id numbers. Does anyone know of a better plugin that will work the way I need it too?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): this plugin
  • RegEx Blacklisted phrase (2): Does anyone know
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Stacy

79556310

Date: 2025-04-04 22:13:43
Score: 1
Natty:
Report link

Use this solution for flutter 3.10

change de info.plist

<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>

<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gleison silveira

79556306

Date: 2025-04-04 22:11:43
Score: 3
Natty:
Report link

Check out how the Wordpress PHP function sanitize_html_class() is implemented. Should be straight forward to translate into JS.

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

79556302

Date: 2025-04-04 22:05:41
Score: 3.5
Natty:
Report link

To help those searching for a modern solution to this question, and use .NET, give BenchmarkDotNet a try.

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

79556297

Date: 2025-04-04 21:57:39
Score: 1.5
Natty:
Report link

Ultimately what I was looking for was Assembly Definitions, which does divide a Unity project up into separate projects (.csproj files) in Visual Studio (and other IDEs like Rider).

However, it doesn't speed up build times, but it does speed up compilation time when making code changes: only the assembly that contain the code change or the assemblies that depend on the changed assembly recompile, instead of the entire project.

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

79556295

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

Damn I need 15 reputations to thank User LG for his valuable solution

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1.5): reputation
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Karen Liu

79556288

Date: 2025-04-04 21:44:36
Score: 4.5
Natty: 7
Report link

hell nah? f hi hih hih iosfhgh gshgrhg ghrguhg hgufhgiu fhguf gg gg gg g g g g g gggg

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

79556282

Date: 2025-04-04 21:38:34
Score: 2.5
Natty:
Report link

callback responseHeader status 0 QTime 513 params query subject

description

fields u0634 u0646 u0627 100 OR salients title

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

79556269

Date: 2025-04-04 21:23:30
Score: 4
Natty:
Report link

استعادة البرنامج الأساسية الاقتراضية تثبيت تلقائي 70 خطأ Google Play "خطأ أثناء استرداد المعلومات من الخادم [DF-DFERH-01]" باستخدام android-latest-release

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: حميد احمد

79556265

Date: 2025-04-04 21:22:30
Score: 2.5
Natty:
Report link

I have the same problem.

Steps to reproduce:

  1. npx create-expo-app@latest (create a new project)
  2. Install watchman, xcode and command line tools (if you haven't already)
  3. npx expo install expo-dev-client
  4. npx expo run:ios Until here everything's fine. Project runs and it's Saul Goodman.

Add a dependency: 5) npx expo install react-native-svg 6) npx expo run:ios

Project runs fine -again- but in the simulator you get said error. "Compiling JS failed: 1208:3:import declaration must be at top level of module" and a stacktrace.

Screenshot:

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • High reputation (-1):
Posted by: noripcord

79556262

Date: 2025-04-04 21:21:29
Score: 7 🚩
Natty:
Report link

You have to include wp-load.php at the begining to work wordpress environment like $wpdb object to interact with database. and also what is your database prefix? in $wpdb->prefix.'wpe6_ymm' is wpe6 is your prefix?

Reasons:
  • Blacklisted phrase (1): what is your
  • RegEx Blacklisted phrase (1.5): fix?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: bulbul islam

79556240

Date: 2025-04-04 21:06:25
Score: 3
Natty:
Report link

RHEL 8 uses dnf, the newer replacement to yum. Please install python3-dnf and refactor to match.

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

79556236

Date: 2025-04-04 21:00:24
Score: 3.5
Natty:
Report link

You could take a look at my Linkedin post where I resolved this issue:https://www.linkedin.com/posts/tsgiannis_a-small-demo-of-using-the-64bit-version-of-activity-7226101267104690177-bhz9?utm_source=share&utm_medium=member_android&rcm=ACoAAAQ3QLYBWMJnsiZ_tWhmK3lgFDvLloH4F8U

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tsgiannis

79556234

Date: 2025-04-04 20:59:23
Score: 0.5
Natty:
Report link

Boilerplate:

Starter Kit:

Key Differences Summarized:

Feature Boilerplate Starter Kit
Primary Goal Functional Foundation Complete Application Foundation
Scope Core code, basic config Core + common features (auth, DB, UI)
Focus Technology / Stack Application Type / Domain
Opinionatedness Relatively Low High
Flexibility High Lower
Customization Requires more coding to add features Less coding to get to a functional state
Learning Curve Steeper (need to build features yourself) Potentially faster initial progress
Time to Value Longer to get a fully functional application Shorter to get something usable
Trade-offs More control, more work Less control, faster initial progress

When to Choose Which:

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

79556225

Date: 2025-04-04 20:52:21
Score: 6.5 🚩
Natty: 5.5
Report link

which plugin did you use? did it work?

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

79556202

Date: 2025-04-04 20:39:17
Score: 1
Natty:
Report link

For me running

sudo chmod -R 777 /var/www/project_name/storage 

//then back to: 

sudo chmod -R 775 /var/www/project_name/storage 

//is what fixed it.
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alphy Gacheru

79556201

Date: 2025-04-04 20:39:17
Score: 0.5
Natty:
Report link

@State is for values not classes and you need to learn @binding to pass down write access

Async func needs to be in struct not class

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @State
  • User mentioned (0): @binding
  • High reputation (-2):
Posted by: malhal

79556187

Date: 2025-04-04 20:26:14
Score: 10 🚩
Natty: 5
Report link

I have the same problem, but I need custom PHP code, not WordPress function.

Can someone help me to write an API request that will get me products filtrated by “meta_data” whose “value” is a specific number (e.g. 1200130002830)

I tried with this API request but unsuccessfully filtrated (getting all products):

$produsts = print_r($woocommerce->get(‘products?meta_data[value]=1200130002816’));

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Can someone help me
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Petar Cvetic

79556185

Date: 2025-04-04 20:25:13
Score: 6.5 🚩
Natty:
Report link

What I have noticed is that if we go into the model view and right click on the table we get an option to refresh the table. Theres one way of doing that, if theres an another way of doing the refreshes please let me know. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please let me know
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What I have not
  • Low reputation (1):
Posted by: Ibrahim Hussain

79556184

Date: 2025-04-04 20:24:12
Score: 1.5
Natty:
Report link

If your app uses kotlin (build.gradle.kts) use this instead

isMinifyEnabled = true
isShrinkResources = true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: João Vitor Amorim

79556179

Date: 2025-04-04 20:16:10
Score: 1.5
Natty:
Report link

I can confirm with 8.2 that you cannot use -audio none.

From virsh-install:

Starting install...
ERROR    internal error: process exited while connecting to monitor: 2025-04-04T20:02:58.77
2146Z qemu-system-arm: no default audio driver available
Perhaps you wanted to use -audio or set audiodev=audio1?

Install string used:

sudo virt-install   --name rpios    --arch armv6l   --machine
versatilepb   --cpu arm1176   --vcpus 1   --memory 256   --import    --disk 2024-10-22-rasp
ios-bullseye-armhf.img,format=raw,bus=virtio   --network bridge,source=virbr0,model=virtio
--video vga     --audio none   --graphics spice   --boot 'dtb=versatile-pb-bullseye-5.10.63
.dtb,kernel=kernel-qemu-5.10.63-bullseye,kernel_args=root=/dev/vda2 panic=1'   --events on_
reboot=destroy

qemu-system-aarch64 --version
QEMU emulator version 8.2.9 (SUSE Linux Enterprise 15)
Copyright (c) 2003-2023 Fabrice Bellard and the QEMU Project developers

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

79556173

Date: 2025-04-04 20:10:09
Score: 0.5
Natty:
Report link
SELECT name
FROM actor a
JOIN casting c ON (c.actorid = a.id)
 WHERE c.movieid IN (
    SELECT c.movieid
    FROM casting c
    WHERE c.actorid IN (
        SELECT a.id
        FROM actor a
        WHERE a.name = "Art Garfunkel")
 )
AND name <> "Art Garfunkel"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Julian

79556169

Date: 2025-04-04 20:06:08
Score: 2
Natty:
Report link

Make sure you set Application.MainFormOnTaskbar := True in your project source (.dpr) before Application.Run.

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

79556168

Date: 2025-04-04 20:06:08
Score: 1
Natty:
Report link

Had the same problem

https://www.python-ldap.org/en/python-ldap-3.3.0/reference/ldap.html?highlight=cacert#tls-options

libldap does not materialize all TLS settings immediately. You must use OPT_X_TLS_NEWCTX with value 0 to instruct libldap to apply pending TLS settings and create a new internal TLS context

This solved for me.

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

79556164

Date: 2025-04-04 20:04:07
Score: 0.5
Natty:
Report link

Finally found the working code. Install userChromeJS extension, create chrome/userChrome.js file with the next code:

document.addEventListener("DOMContentLoaded", () => {
  ZoomManager.setZoomForBrowser(getBrowser(), 1.2);
});

Works for the email preview and message composition window.
Kudos to Reddit guys, their discussion gave me an idea, how my command should be invoked properly.

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

79556134

Date: 2025-04-04 19:43:01
Score: 4
Natty:
Report link

They just issued a blog post for you here.

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

79556130

Date: 2025-04-04 19:37:00
Score: 2
Natty:
Report link

I need to get better at reading!

It's not highlighted very well, but the docs explain that you must import their base css file in the file that contains your calendar component. Specifically:

When you include Big Calendar in your interface, you will need the core styles. We provide a precompiled style sheet (react-big-calendar/lib/css/react-big-calendar.css) for you, or you can directly import the SASS into your implementation.

Simply adding import "react-big-calendar/lib/css/react-big-calendar.css"; to my file fixed my issues. Thanks @DaveNewton for pointing this out.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @DaveNewton
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: tprebenda

79556122

Date: 2025-04-04 19:31:58
Score: 2.5
Natty:
Report link

For anyone who has the same problem in the future, I found the issue. Turns out it had nothing to do with my invocation code, but rather a quirk with lambda's built in testing suite sending old test cases, as opposed to old inputs being used. Testing outside of lambda doesn't run into this issue, so not actually an issue at all. Still spent a good few hours on it, of course!

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

79556115

Date: 2025-04-04 19:26:57
Score: 2.5
Natty:
Report link

If you remove video={true} then it works. Not sure why it does not work with video={true} though..

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

79556087

Date: 2025-04-04 19:08:52
Score: 6.5 🚩
Natty:
Report link

Its seems the issue is HTTPS, I changed a unit I have at my office to HTTP and I started working.

I am suspecting, and please advise if this is a possibility, can it be that Azue Service at some level is forcing TLS V1.3, which the device would not support?

Reasons:
  • RegEx Blacklisted phrase (2.5): please advise
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DJDJ

79556078

Date: 2025-04-04 19:04:50
Score: 5.5
Natty: 5.5
Report link

You ever find an actual solution that wasn't "try something else"?

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

79556064

Date: 2025-04-04 18:53:47
Score: 0.5
Natty:
Report link

Okay, so eventually the code that finally made a MovieClip to shake is the following.

import flash.display.MovieClip;
import flash.events.Event;

function shake(which:MovieClip, power:Number, count:int = -1):void {
    if (!which) return;
    unshake(which);
    which.preset = {x: which.x, y: which.y, power: power, count: count};
    which.addEventListener(Event.ENTER_FRAME, onShaking);
}

function unshake(which:MovieClip):void {
    if (!which) return;
    which.removeEventListener(Event.ENTER_FRAME, onShaking);
    if (which.preset) {
        which.x = which.preset.x;
        which.y = which.preset.y;
        which.preset = null;
    }
}

function onShaking(e:Event):void {
    var which:MovieClip = e.currentTarget as MovieClip;
    if (!which.preset) {
        unshake(which);
        return;
    }
    var count:int = which.preset.count;
    if (count > 0) {
        count--;
        if (count == 0) {
            unshake(which);
            return;
        }
        which.preset.count = count;
    }
    var power:Number = which.preset.power;
    which.x = which.preset.x + Math.random() * power - power / 2;
    which.y = which.preset.y + Math.random() * power - power / 2;
}

//For insertNamehere, change it to the name of the MovieClip in the properties panel

shake(insertNamehere, 10, 100);

//Thanks again Organis, you are a great help!
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Johnson Yan

79556059

Date: 2025-04-04 18:51:47
Score: 1
Natty:
Report link

Check if the current location is already /object before pushing

final currentLocation = GoRouter.of(context).location;
if (currentLocation != '/object') {
  context.push('/object');
}

This ensures you don't push the same screen twice if it's already open.

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

79556043

Date: 2025-04-04 18:32:43
Score: 0.5
Natty:
Report link

You need to use the builder on the DiskFileItemFactory:

FileItem file = null;
FileItemFactory factory = DiskFileItemFactory.builder().get();
JavaxServletFileUpload fileUpload = new JavaxServletFileUpload( factory );
List<FileItem> fileItems = fileUpload.parseRequest( request );
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Piers Geyman

79556033

Date: 2025-04-04 18:25:41
Score: 0.5
Natty:
Report link

The longitude and latitude fly to fun c should be in a use effect func. This fixes it

  useEffect(() => {
    if (mapReady && latitude !== 0 && longitude !== 0 && mapRef.current) {
      const map = mapRef.current.getMap();
      map.flyTo({
        center: [longitude, latitude],
        zoom: 15,
        speed: 1.2
      });

    }
  }, [latitude, longitude, mapReady]);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: C A OB1

79556032

Date: 2025-04-04 18:22:41
Score: 0.5
Natty:
Report link
ELF          >    €      @       X7          @ 8 
 @         @       @       @       Ø      Ø                                                                                                                                          q      q                                           $      $                   Ð-      Ð=      Ð=      `      p                   à-      à=      à=      à      à                   8      8      8                                   X      X      X      D       D              Såtd   8      8      8                             Påtd   H       H       H       ,       ,              Qåtd                                                  Råtd   Ð-      Ð=      Ð=      0      0             /lib64/ld-linux-x86-64.so.2              GNU € À                   GNU Üúñ?·jKUhRÅûùrZÂTý         GNU                                             (ŒÑeÎm                                              x                       F                      "                      ”                       0                      ?                      £                       )     0@                "                    __cxa_finalize __libc_start_main strcmp stdout __isoc99_scanf fwrite printf libc.so.6 GLIBC_2.7 GLIBC_2.2.5 GLIBC_2.34 _ITM_deregisterTMCloneTable __gmon_start__ _ITM_registerTMCloneTable                    M          ii
   W      ui    a      ´‘–   m       Ð=             `      Ø=                    (@             (@      À?                    È?                    Ð?                    Ø?                    à?         
           0@                      @                     @                     @                     @                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HƒìH‹Å/  H…ÀtÿÐHƒÄà         ÿ5Ê/  ÿ%Ì/  @ ÿ%Ê/  h    éàÿÿÿÿ%Â/  h   éÐÿÿÿÿ%º/  h   éÀÿÿÿÿ%²/  h   é°ÿÿÿÿ%j/  f        1íI‰Ñ^H‰âHƒäðPTE1À1ÉH=Î   ÿ/  ôf.„     @ H=y/  Hr/  H9øtH‹þ.  H…Àt   ÿà€    À    H=I/  H5B/  H)þH‰ðHÁî?HÁøHÆHÑþtH‹Í.  H…ÀtÿàfD  À    óú€=
/   u+UHƒ=ª.   H‰åtH‹=æ.  è)ÿÿÿèdÿÿÿÆå.  ]à À    óúéwÿÿÿUH‰åHƒì@H¸StringsIHºsForNoobH‰EÀH‰UÈfÇEÐs H‹–.  H‰Áº
   ¾   HV  H‰ÇèªþÿÿHEàH‰ÆHK  H‰Ç¸    èþÿÿHEàHB  H‰ÖH‰ÇèYþÿÿ…ÀxHEàH(  H‰ÖH‰Çè?þÿÿ…À~FHEàH  H‰ÖH‰Çè%þÿÿ…ÀuH  H‰Ç¸    èýýÿÿë*Hþ
  H‰Ç¸    èçýÿÿëHè
  H‰Ç¸    èÑýÿÿ¸    Éà  HƒìHƒÄà                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Password:  DoYouEven%sCTF __dso_handle _init Correct! Try again!    ;,      Øïÿÿx   (ðÿÿ    8ðÿÿH   !ñÿÿ¸              zR x        èïÿÿ"                  zR x   $      XïÿÿP    FJw€ ?;*3$"       D   €ïÿÿ              \   aðÿÿý    A†C
ø                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   `                    M                     
       h             Ð=                           Ø=                    õþÿo                  Ð             È      
       ½                                           è?             `                             À              è             Ø                      ûÿÿo           þÿÿo    ¨      ÿÿÿo           ðÿÿo    Ž      ùÿÿo                                                                                                                                   à=                      6      F      V      f              (@      GCC: (Debian 11.3.0-5) 11.3.0                               ñÿ                      |                  ñÿ                     °                    à              3                    I     8@             U     Ø=              |     `              ˆ     Ð=              §    ñÿ                    ñÿ                ­      !                   ñÿ                »     à=              Ä      H               ×     è?              í                      
                      &    0@             [      @              9    0@              @   h              F                     Y     @              f                     y                      ˆ   (@              •                   ¤    @@              _    €      "       ©    0@              µ    i      ý       º                     Ó                     æ   0@              ò                        "                   '                   Scrt1.o __abi_tag crtstuff.c deregister_tm_clones __do_global_dtors_aux completed.0 __do_global_dtors_aux_fini_array_entry frame_dummy __frame_dummy_init_array_entry zzz.c __FRAME_END__ _DYNAMIC __GNU_EH_FRAME_HDR _GLOBAL_OFFSET_TABLE_ __libc_start_main@GLIBC_2.34 _ITM_deregisterTMCloneTable stdout@GLIBC_2.2.5 _edata _fini printf@GLIBC_2.2.5 __data_start strcmp@GLIBC_2.2.5 __gmon_start__ __dso_handle _IO_stdin_used _end __bss_start main __isoc99_scanf@GLIBC_2.7 fwrite@GLIBC_2.2.5 __TMC_END__ _ITM_registerTMCloneTable __cxa_finalize@GLIBC_2.2.5 _init  .symtab .strtab .shstrtab .interp .note.gnu.property .note.gnu.build-id .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .got.plt .data .bss .comment                                                                                                                         #              8      8                                     6              X      X      $                              I              |      |                                     W   öÿÿo                     (                             a             È      È                                 i             Ð      Ð      ½                              q   ÿÿÿo       Ž      Ž                                  ~   þÿÿo       ¨      ¨      @                                          è      è      Ø                            —      B       À      À      `                           ¡                                                         œ                           P                             §             p      p                                   °             €      €      æ                             ¶             h      h                                     ¼                             E                              Ä             H       H       ,                              Ò             x       x       ¬                              Ü             Ð=      Ð-                                   è             Ø=      Ø-                                   ô             à=      à-      à                            «             À?      À/      (                             ý             è?      è/      8                                          @       0                                                0@      00                                         0               00                                                         P0      À                                                 4      -                                                   =6                                   
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Lassana Diawara

79556027

Date: 2025-04-04 18:20:40
Score: 1.5
Natty:
Report link

Also note this can happen when you do a CREATE DATABASE when such a trigger is in place. You can change the default property of ANSI_PADDING in the model database, but you will need to restart the server service for the change to take effect.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Robert Sievers

79556022

Date: 2025-04-04 18:18:39
Score: 2.5
Natty:
Report link

Use "base-color" For more info, go here: https://vuetifyjs.com/en/api/v-text-field/#props-base-color

<v-text-field
  base-color="red"
></v-text-field>
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jaylon Nichols

79556018

Date: 2025-04-04 18:16:39
Score: 0.5
Natty:
Report link

The information in both comments from @uglycoyote and @rohat helped me start debugging my (small) project comfortably after realizing I could just use the DEBUG macro to add members to my class, initialize them conditionally, and reference them from my natvis file instead of wasting time reimplementing existing functions in XML.

For more complex things, one should really refer to the documentation and large examples like stl.natvis itself.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @uglycoyote
  • User mentioned (0): @rohat
Posted by: Luis

79556006

Date: 2025-04-04 18:09:37
Score: 2.5
Natty:
Report link

You can also try to use Intl.Segmenter:

const text = "😀🎃👪";
const splitEmoji = [...new Intl.Segmenter().segment(text)].map(x => x.segment);
splitEmoji.pop();
console.log(splitEmoji.join(""));

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

79555999

Date: 2025-04-04 18:04:35
Score: 4.5
Natty: 4.5
Report link

See this, This solved my problem.

https://developer.tekla.com/documentation/tekla-open-api-basics-beam-application

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

79555994

Date: 2025-04-04 18:00:33
Score: 13.5
Natty: 7.5
Report link

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

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

79555992

Date: 2025-04-04 18:00:33
Score: 1
Natty:
Report link

This an old problem, but providing a link to the solution below for ease of reference.

https://gist.githubusercontent.com/alexeyknorre/b0780836f4cec04d41a863a683f91b53/raw/9b667333802c149ad1f503929a81de98cb78eef7/stargazer_fix.r

## Quick fix for stargazer <= 5.2.3 is.na() issue with long model names in R >= 4.2
# Unload stargazer if loaded
detach("package:stargazer",unload=T)
# Delete it
remove.packages("stargazer")
# Download the source
download.file("https://cran.r-project.org/src/contrib/stargazer_5.2.3.tar.gz", destfile = "stargazer_5.2.3.tar.gz")
# Unpack
untar("stargazer_5.2.3.tar.gz")
# Read the sourcefile with .inside.bracket fun
stargazer_src <- readLines("stargazer/R/stargazer-internal.R")
# Move the length check 5 lines up so it precedes is.na(.)
stargazer_src[1990] <- stargazer_src[1995]
stargazer_src[1995] <- ""
# Save back
writeLines(stargazer_src, con="stargazer/R/stargazer-internal.R")
# Compile and install the patched package
install.packages("stargazer", repos = NULL, type="source")
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CChen

79555978

Date: 2025-04-04 17:48:31
Score: 1
Natty:
Report link

How about this:

<cfparam name="url.comma_delimited_list" type="regex" pattern="(\d+)(,\d+)*">

Adds some partial validation to the list. Not sure if this check is server side or just client side though so may want to ensure correct data types with an additional cfqueryparam just in case when using in, say a cfquery.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Evolutionary

79555965

Date: 2025-04-04 17:38:28
Score: 9 🚩
Natty: 4.5
Report link

I am also facing the same problem. Configuring amplify on the client side did not change anything. I tried using fetchAuthSession and that also returned undefined. Did you ever find the issue OP?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find the
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am also facing the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: PabloCC

79555962

Date: 2025-04-04 17:37:27
Score: 4.5
Natty:
Report link

downgrading onnx actually worked

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

79555956

Date: 2025-04-04 17:35:27
Score: 1
Natty:
Report link

(Per discussion with @nikolaj_bjorner on email) The answer is because / is Real division while div is Int division.

So

(assert (>= b 32))
(assert (= a (div b 8)))  
(assert (not (= (div b a) 8))) 

is SAT with a = 4 and b = 37 , and so
* div b 8 is 4 but
* div b a is 9

OTOH the version with / is unsat because
1. The solvers automatically coerce the Int arguments to Real to enable / but
2. The define-fun is rejected because (/ x y) cannot be coerced down to Int

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @nikolaj_bjorner
  • Self-answer (0.5):
Posted by: Ranjit Jhala

79555950

Date: 2025-04-04 17:26:25
Score: 2
Natty:
Report link

If your service worker really looks like you have written in the very first append, then there is an extra comma right after

"/coffee.png"

which may result in an extra index in your array [], which you do not want and can finally lead to this error.

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

79555949

Date: 2025-04-04 17:25:25
Score: 1
Natty:
Report link

For "OpenFile", The documentation states that: "This method doesn't return any data." So result being undefined seems like what you should expect.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Ray Wallace

79555947

Date: 2025-04-04 17:25:24
Score: 6.5 🚩
Natty: 4
Report link

I have implemented this approach and it usually works well. But, when one creates UiText object as the StringResource with the resource ID from one module and try to access this resource ID from some other module, then asString method cannot access that resource ID and prints something like "com.<some_namespace>.UiText$StringResource@70c80" instead of actual string.

As I have multi modules application and I try to propagate messages from core modules to the feature module that calls the core modules, I have noticed this behavior. Every module can have it's own string resources and I don't like to have them all in one place since this cancels the modularization purpose.

Any idea how to solve this?

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (1.5): how to solve this?
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Bernard Čupić

79555937

Date: 2025-04-04 17:23:23
Score: 3
Natty:
Report link

Thanks @Mark

    {
        "key": "ctrl+j",
        "command": "selectNextSuggestion",
        "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
    },
    {
        "key": "ctrl+k",
        "command": "selectPrevSuggestion",
        "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
    },
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @Mark
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: jamgoo

79555929

Date: 2025-04-04 17:18:22
Score: 3.5
Natty:
Report link

Thanks everyone for insights and the official link is best

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

79555928

Date: 2025-04-04 17:18:22
Score: 1
Natty:
Report link

Support got back to me with this response, sharing in case it helps~

Hi, assuming this is Quantum KCC related (we also have KCC for Fusion). So when KCC runs its update, it internally executes methods on processors (such as EnvironmentProcessor) before and after move. Because EnvironmentProcessors overrides the KinematicVelocity, calling KCC.SetKinematicVelocity() before KCC updates doesn't have any impact. You need to:

  1. Remove EnvironmentProcessor and handle Gravity/KinematicVelocity/Jumping/... on your own using the KCC.SetKinematicVelocity() before KCC updates.

  2. [Recommended] Create a copy of EnvironmentProcessor and modify it - so for example instead of a EnvironmentProcessor speed property you get your custom component which holds the speed and is on the KCC entity.

  3. Add custom processor which overrides the velocity.

Be careful with changing EnvironmentProcessor properties (just don't do that :) ) because these are not part of the Quantum state and don't support rollback, you can easily get a desync.

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

79555926

Date: 2025-04-04 17:15:21
Score: 3.5
Natty:
Report link

Select the detector object (object that sends the signal) in your node tree. Click on Node, and you will see the options Signals and Groups. Click Signals, and you will see the list of signals. Double click any of them to link it to your script.

enter image description here

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

79555916

Date: 2025-04-04 17:08:19
Score: 0.5
Natty:
Report link

If you want to use the tag which was working then you can change this line to point to the working tag:

-e ORACLE_SID=sid gvenzl/oracle-free:latest

By specifying latest, you will always pull the most up-to-date image from the Docker registry, which means any updates to the image could introduce breaking changes.

To point to the version which was working. You can see the latest tags here: https://hub.docker.com/r/gvenzl/oracle-free/tags. Unfortunately, it is not clear which update could have caused the breaking change but if you have kept your images you could do something like:

docker images | grep oracle-free 

This will list all the images you have used. If you have always been specifying latest it might not be easy to see what tags you were using but you can still run a working image based on an image id you had on the 21st March:

docker run --name oracleDB -p 1521:1521 <image_id>

But if you do find the tag which was working for you on March 21st, you can specific that version:

-e ORACLE_SID=sid gvenzl/oracle-free:23.3
Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AlexPlayer15

79555900

Date: 2025-04-04 16:58:17
Score: 3
Natty:
Report link

If I click on Youtube button on right the lock does not work

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

79555880

Date: 2025-04-04 16:48:14
Score: 6.5 🚩
Natty: 6.5
Report link

https://www.nuget.org/packages/Microsoft.Extensions.ServiceDiscovery

Is this nuget helpful to translate service discovery mechanizm to net core ?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Szymon Mackowiak

79555879

Date: 2025-04-04 16:48:13
Score: 0.5
Natty:
Report link

I have the same situation and can't find any explanation in the above posts or answers. For me it seem to be something within the GitHub way of describing "git log" between two branches.

I've made sure in "gitk --all" that the difference between my "feature" branch and "base" branch are actually only my commits. (Also verified the remote hashes to be correct between my local references and GitHub)

So regardless if I update my "base" branch on GitHub the base for my PR seem to be unchanged and include also the merged changes from others.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Daniel Vikström

79555878

Date: 2025-04-04 16:47:13
Score: 4
Natty:
Report link

Go to settings and change http://www.yourdomain.com to https://www.yourdomain.com in the WordPress Address (URL) field and Site Address (URL).

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

79555876

Date: 2025-04-04 16:42:12
Score: 3.5
Natty:
Report link

This function will work only when your mouse is on object collider. Just read this unity stuff - https://docs.unity3d.com/6000.0/Documentation/ScriptReference/MonoBehaviour.OnMouseDrag.html

Might be your mouse x value is zero. Try with delta value.

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

79555871

Date: 2025-04-04 16:42:12
Score: 1.5
Natty:
Report link

As per Oracle support suggestion is to upgrade to latest patchset of OBPM of 14.5 which is 13.

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

79555869

Date: 2025-04-04 16:41:11
Score: 1.5
Natty:
Report link

Here's my workaround:

Create a new layer using your selected geometry type, and check the box to include Z coordinates. Once created, select all of the features you want to use, then copy and paste them into the new layer you created. I haven't been able to find a way to retroactively add Z coordinate use in a layer, so this is the quickest and easiest workaround I can think of.

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

79555867

Date: 2025-04-04 16:38:11
Score: 1
Natty:
Report link

import React from 'react'; import { StyleSheet, Text, View, Button, FlatList, TextInput } from 'react-native'; const App = () => { const [products, setProducts] = React.useState([]); const [searchQuery, setSearchQuery] = React.useState(''); const sampleProducts = [ { id: '1', name: 'Product 1', rating: 4.5 }, { id: '2', name: 'Product 2', rating: 4.0 }, { id: '3', name: 'Product 3', rating: 5.0 }, ]; React.useEffect(() => { setProducts(sampleProducts); }, []); const handleSearch = () => { const filteredProducts = sampleProducts.filter(product => product.name.toLowerCase().includes(searchQuery.toLowerCase())); setProducts(filteredProducts); }; return ( <FlatList data={products} keyExtractor={item => item.id} renderItem={({ item }) => ( {item.name} Rating: {item.rating} )} /> ); }; const styles = StyleSheet.create({ container: { flex: 1, padding: 20, }, searchInput: { height: 40, borderColor: 'gray', borderWidth: 1, marginBottom: 10, paddingHorizontal: 10, }, productItem: { padding: 10, borderBottomWidth: 1, borderBottomColor: '#ccc', }, }); export default App;

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

79555863

Date: 2025-04-04 16:37:10
Score: 3
Natty:
Report link

To resolve the issue, I followed these steps: Navigate to FileProject StructureProject SettingsProjectSDK, then select temurin-17.0.12 - aarch64 Java SDK.

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

79555861

Date: 2025-04-04 16:35:10
Score: 2
Natty:
Report link

I resolved the problem with this :

http://camel.apache.org/schema/cxf/jaxws http://camel.apache.org/schema/cxf/jaxws/camel-cxf.xsd

and with adding this lib to pom : camel-cxf-spring-rest, camel-cxf-spring-soap

https://camel.apache.org/manual/camel-3x-upgrade-guide-3_18.html#_camel_cxf

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: cs_zineb

79555859

Date: 2025-04-04 16:34:09
Score: 1
Natty:
Report link

Here is another more robust option using the -print0 option of find plus xargs with the -0 option - both of which, when used together, should escape any spaces or other less-safe characters in your MP3 filenames:

find . -type f -name '*.mp3' -print0 | xargs -0 -i cp {} ./oneList/
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric Sherrill

79555844

Date: 2025-04-04 16:27:07
Score: 1
Natty:
Report link

Modify the angular.json file....

"styles": [
          "src/global.scss",
          "src/theme/variables.scss"
        ],

Change the order of the global.scss and variables.scss and remove the node_modules scss files.

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

79555827

Date: 2025-04-04 16:17:05
Score: 0.5
Natty:
Report link

[email protected] is using angular 17.x.x. You need to overrides the dependencies for ng-recaptcha.like

"overrides": {
    "ng-recaptcha": {
        "@angular/common": "^19.0.0",
        "@angular/core": "^19.0.0"
    }
}

Add those dependencies in overrides which you are getting at runtime.

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

79555818

Date: 2025-04-04 16:10:03
Score: 0.5
Natty:
Report link

Sometimes You should use a VPN for getting the firebase package,
after that you should close the xcode, and delete
"/Users/[your-user-name]/Library/Caches/org.swift.swiftpm" this file(SPM cache),

after that you should go to the project folder(project path) in terminal and run this command "xcodebuild -workspace [yourworkspace.xcworkspace] -scheme your [your-scheme-name] build"

Reasons:
  • No code block (0.5):
Posted by: Maziar Saadatfar

79555816

Date: 2025-04-04 16:09:03
Score: 0.5
Natty:
Report link

Reading files in the folder where an MSIX package is deployed needs to be done in a way that may not alter the files. As such, we found a way to make the code work, by replacing

catalog.Catalogs.Add(new DirectoryCatalog(AppDomain.CurrentDomain.BaseDirectory));

by

string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) ??AppDomain.CurrentDomain.BaseDirectory;

foreach (string file in Directory.GetFiles(path, "*.dll"))
{
    catalog.Catalogs.Add(new AssemblyCatalog(Assembly.LoadFrom(file)));
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: B. Bram

79555813

Date: 2025-04-04 16:07:02
Score: 1.5
Natty:
Report link

You can copy values to integer and switch negative values into its positive 'unsigned' value:

byte[] bytes = [-1, 10, -128];
    
int[] ints = new int[bytes.length];
for (int idx = 0 ; idx < bytes.length ; idx++) {
    byte b = bytes[idx];
    ints[idx] = b < 0 ? 256 + b : b;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Javier

79555810

Date: 2025-04-04 16:04:01
Score: 2
Natty:
Report link

Solved it! It seems that an xor'd register at the start of a loop was treated as a 1. As a result, the open syscall saw a null terminator as the first character of the path and exited.

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

79555808

Date: 2025-04-04 16:01:01
Score: 0.5
Natty:
Report link

What worked for me on windows:

  1. Close VS Code (important!)

  2. Open cmd as administrator

  3. Run: winget upgrade --id Microsoft.VisualStudioCode

  4. Enjoy!

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

79555796

Date: 2025-04-04 15:58:00
Score: 1
Natty:
Report link

Apologies, I have now found the solution: use HTML syntax rather than Markdown

<a href=https://test.com>Test Link</a>

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AleXSR700

79555793

Date: 2025-04-04 15:56:59
Score: 2.5
Natty:
Report link

I've seen somebody do this kind of cmd format (with subprocess agruments as below) and it works:

cmd = f'ipmitool -I lan -U admin -P admin -H 10.100.7.25 fru print'

proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)

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

79555788

Date: 2025-04-04 15:54:59
Score: 3
Natty:
Report link

Start by understanding how textures and UV mapping work on 3D meshes, then experiment with video textures using three.js VideoTexture : [https://threejs.org/docs/#api/en/textures/VideoTexture][1]

or if you’re working with React, Drei’s useVideoTexturehook to map an HTML video onto your GLB model [1]: https://drei.docs.pmnd.rs/loaders/video-texture-use-video-texture#%3Cvideotexture%3E-component

Also, Don't worry about the downvotes—they often just mean that some people think you could have done a bit more research beforehand, not that your question was bad. I believe there are no bad questions; we all start somewhere. Keep learning and asking, and next time, try searching for answers on your own before reaching out to the community.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tariq Williams

79555784

Date: 2025-04-04 15:53:58
Score: 2
Natty:
Report link

Please use the following line:

df_grouped = df.groupby("Name").agg(list).reset_index()

Output:

enter image description here

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

79555778

Date: 2025-04-04 15:50:56
Score: 7.5 🚩
Natty: 6
Report link

I'm facing the same issue, how did you make the review for the instagram_business_content_publish ??

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Túlio Antunes

79555768

Date: 2025-04-04 15:45:54
Score: 2.5
Natty:
Report link

I was also looking for an answer to this question. I had a reference error: Can't access 'role' before initialization. The relationship between the tables was one-to-many and many-to-one. This solution helped me:

import { Role } from './Role';
@ManyToOne(role: Role, (role) => role.users) role: Role

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