79626684

Date: 2025-05-17 15:18:57
Score: 1.5
Natty:
Report link

Please refer to the official PrestaShop documentation: ЁЯФЧ Getting Started with Theme Development

This will be very helpful for understanding how to develop a theme in PrestaShop.

You can also refer to the new official theme, Hummingbird, on GitHub: [ЁЯФЧ PrestaShop Hummingbird Theme] (https://github.com/PrestaShop/hummingbird)

Use it as a reference and compare its structure and approach to your own theme development process.

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

79626680

Date: 2025-05-17 15:11:55
Score: 10 ЁЯЪй
Natty: 5.5
Report link

Facing the exact same issue. Any luck?

Reasons:
  • Blacklisted phrase (1.5): Any luck
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): Facing the exact same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kshitij Dhar

79626663

Date: 2025-05-17 14:51:50
Score: 1
Natty:
Report link

If you have a positive number on a signed int.

const i: i32 = 123;

~i will be negative.

assert(~i < 0)

this could be solved with a @bitCast() since @intCast() does not allow to change the sign.

const u: u32 = @bitCast(~i)

2nd problem: c_ulong and c_int have different bitsized

@bitCast only works if they have the same size.

Solution 1: First use @intCast() and then use ~ that you don't cast a negative number.

Solution 2: Use a @bitCast() to change the type from c_int to c_uint. and then use @intCast() from c_uint to c_ulong.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @bitCast
  • User mentioned (0): @intCast
  • User mentioned (0): @bitCast
  • User mentioned (0): @intCast
  • User mentioned (0): @bitCast
  • User mentioned (0): @intCast
  • Low reputation (1):
Posted by: Emmmmllll

79626662

Date: 2025-05-17 14:50:49
Score: 3
Natty:
Report link

Has it ever accord to you programmers that I don't know about computers and I was thrown in this competition because I don't know computers have you ever thought of that or do you even care ? It's to me that you don't care so that would be your fault and your money wasted cause I'm going to sue

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

79626658

Date: 2025-05-17 14:45:48
Score: 1
Natty:
Report link

A select element is as follows:

<select id="cars">
  <option value="ford">Ford</option>
  <option value="bmw">BMW</option>
</select>

You have an input type="radio" - a different type of HTML element, so I think what you may need to do is to select the element and send a click() to it, as per something like:

  string Xpath = ".//input[preceding-sibling::span[contains(.,'Admin')]]";
  var radio = driver.FindElement(By.Xpath(Xpath));
  radio.Click();

As per this answer here: https://stackoverflow.com/a/38908430/30012070

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nick Pattman

79626655

Date: 2025-05-17 14:43:48
Score: 3
Natty:
Report link

i dont know dsal;dkj;alkjfds;f dsfda gfd gs fd hf h gf h gfd h

dfgdfgdfgdfgggggggggggggggggggggggggggggdgturetjjqlksd;alidl;klaslslal sd\23 2

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Filler text (0.5): ggggggggggggggggggggggggggggg
  • Low reputation (1):
Posted by: H0lwin

79626643

Date: 2025-05-17 14:31:45
Score: 0.5
Natty:
Report link

1.Here the ControllerAdviceBean refers to the internal thing in the spring-web not the one in you code.

2.This happens when your application is using Spring Boot 3.x (which depends on Spring Framework 6), but at runtime it loads an old version of spring-web, typically Spring 5.x.

3.The ControllerAdviceBean(Object) constructor exists only in Spring Web 6+. If an older version is loaded, the method is missing, and you get the NoSuchMethodError.

4.Since the error occurs even you are using Springboot 3.4.5 means there is some other dependency in your pom.xml/buil.gradle that's been adding the old spring-web to the classpath.

5.First look for duplicate springweb either jar files in classpath or using the command


 ./mvnw dependency:tree -Dincludes=org.springframework

6.Look for any unexpected or duplicate versions like:

org.springframework:spring-web:5.x.x <-- BAD

org.springframework:spring-web:6.2.6 <-- GOOD

If you find 5.x.x, find which dependency brought it in :

7. You can do this by checking the dependency tree in IDE and exclude the springweb from it by adding the <exclusion> tag.

<dependency>
  <groupId>conflicting.group</groupId>
  <artifactId>conflicting-lib</artifactId>
  <exclusions>
    <exclusion>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
    </exclusion>
  </exclusions>
</dependency>

Hope this solves your issue this is my first answer in stackoverflow I don't know the standard practices here so please do excuse me if anything seems wrong.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Easa Feroz

79626630

Date: 2025-05-17 14:21:41
Score: 1
Natty:
Report link

If your goal is to place a PHP file into the htdocs folder of another computer's XAMPP, here are your options:

Use File Sharing (SMB / Windows Share)

On the XAMPP host machine (the one running Apache/MySQL):

Share the htdocs directory:

Right-click C:\xampp\htdocs тЖТ Properties тЖТ Sharing тЖТ Share with specific people тЖТ Give your user read/write access.

From your development computer:

Open the shared folder via \\[IP address]\htdocs

Copy/edit PHP files directly.

Now you're directly modifying files that the XAMPP server will run.

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

79626625

Date: 2025-05-17 14:17:40
Score: 1
Natty:
Report link

Both statements are true because they are referencing different transactions.

There is a really good step by step explanation of this example on the Postgres wiki https://wiki.postgresql.org/wiki/SSI#Deposit_Report.

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

79626623

Date: 2025-05-17 14:14:39
Score: 4.5
Natty:
Report link

рдпрд╣ рдХрд╣рд╛рдиреА рд╣реИ рдЕрд░реНрдЬреБрди рдХреА... рдПрдХ рдЫреЛрдЯреЗ рд╕реЗ рдЧрд╛рдБрд╡ рдореЗрдВ рдЬрдиреНрдорд╛ рдПрдХ рдЧрд░реАрдм рд▓рдбрд╝рдХрд╛ред рдЙрд╕рдХрд╛ рд╕рдкрдирд╛ рдерд╛ рдкрдврд╝-рд▓рд┐рдЦрдХрд░ рдХреБрдЫ рдмрдбрд╝рд╛ рдХрд░рдирд╛ред рдордЧрд░ рд╣рд╛рд▓рд╛рдд... рдЙрд╕рдХреЗ рдЦрд┐рд▓рд╛рдл рдереЗред

рдЙрд╕рдХреЗ рдШрд░ рдореЗрдВ рдмрд┐рдЬрд▓реА рдирд╣реАрдВ рдереА, рд▓реЗрдХрд┐рди рд╡реЛ рдЪрд┐рд░рд╛рдЧ рдХреА рд░реМрд╢рдиреА рдореЗрдВ рджреЗрд░ рд░рд╛рдд рддрдХ рдкрдврд╝рддрд╛ред рдорд╛рдБ рдЦреЗрддреЛрдВ рдореЗрдВ рдХрд╛рдо рдХрд░рддреА рдереА, рдФрд░ рдЕрд░реНрдЬреБрди рдШрд░ рдХреЗ рд╕рд╛рд░реЗ рдХрд╛рдо рдирд┐рдкрдЯрд╛рдХрд░ рдкрдврд╝рд╛рдИ рдХрд░рддрд╛ред

рд╕реНрдХреВрд▓ рдореЗрдВ рдмрдЪреНрдЪреЗ рдЙрд╕рдХрд╛ рдордЬрд╝рд╛рдХ рдЙрдбрд╝рд╛рддреЗ, рдЙрд╕рдХреЗ рдкреБрд░рд╛рдиреЗ рдХрдкрдбрд╝реЛрдВ рдФрд░ рдлрдЯреЗ рдмреИрдЧ рдХреЛ рджреЗрдЦрдХрд░ред рдордЧрд░ рдЕрд░реНрдЬреБрди рдиреЗ рдХрднреА рдзреНрдпрд╛рди рдирд╣реАрдВ рджрд┐рдпрд╛... рдЙрд╕рдХреА рдирдЬрд╝рд░ рд╕рд┐рд░реНрдл рдЕрдкрдиреЗ рд╕рдкрдиреЛрдВ рдкрд░ рдереАред

рд╡реЛ рд╕реБрдмрд╣ 4 рдмрдЬреЗ рдЙрдарддрд╛, рдкрд╣рд▓реЗ рджреВрдз рдмрд╛рдБрдЯрддрд╛, рдлрд┐рд░ рд╕реНрдХреВрд▓ рдЬрд╛рддрд╛ред рд╕реНрдХреВрд▓ рдХреЗ рдмрд╛рдж рдЦреЗрддреЛрдВ рдореЗрдВ рдХрд╛рдо рдХрд░рддрд╛, рдФрд░ рд░рд╛рдд рдХреЛ рдкрдврд╝рд╛рдИ рдХрд░рддрд╛ред рдердХрд╛рд╡рдЯ рдЙрд╕рдХреЗ рд╣реМрд╕рд▓реЗ рдХреЗ рдЖрдЧреЗ рд╣рд╛рд░ рдЬрд╛рддреА рдереАред

рдлрд┐рд░ рдЖрдпрд╛ рдкрд░реАрдХреНрд╖рд╛ рдХрд╛ рджрд┐рдиред рдЕрд░реНрдЬреБрди рдиреЗ рдореЗрд╣рдирдд рддреЛ рдмрд╣реБрдд рдХреА рдереА... рд▓реЗрдХрд┐рди рдбрд░ рдЙрд╕реЗ рднреА рдерд╛ред рдХреНрдпрд╛ рд╡реЛ рд╕рдлрд▓ рд╣реЛрдЧрд╛?

рдЬрдм рд░рд┐рдЬрд╝рд▓реНрдЯ рдЖрдпрд╛... рдЕрд░реНрдЬреБрди рдХреА рдЖрдВрдЦреЛрдВ рдореЗрдВ рдЖрдБрд╕реВ рдереЗ... рд▓реЗрдХрд┐рди рдЗрд╕ рдмрд╛рд░ рдпреЗ рдЖрдБрд╕реВ рджрд░реНрдж рдХреЗ рдирд╣реАрдВ... рдЦреБрд╢реА рдХреЗ рдереЗред рдЙрд╕рдиреЗ рдЬрд┐рд▓реЗ рдореЗрдВ рдЯреЙрдк рдХрд┐рдпрд╛ рдерд╛ред

рдЖрдЬ рд╡рд╣реА рдЕрд░реНрдЬреБрди... рдПрдХ рдмрдбрд╝рд╛ рдЕрдлрд╕рд░ рд╣реИред рдЬрд┐рд╕рдиреЗ рдЕрдкрдиреА рдЧрд░реАрдмреА рдХреЛ рдЕрдкрдиреЗ рдкреИрд░реЛрдВ рдХреА рдЬрд╝рдВрдЬреАрд░ рдирд╣реАрдВ рдмрдирдиреЗ рджрд┐рдпрд╛... рдмрд▓реНрдХрд┐ рд╕реАрдврд╝реА рдмрдирд╛ рд▓рд┐рдпрд╛ред

рдЕрдЧрд░ рд╣рд╛рд▓рд╛рдд рддреБрдореНрд╣рд╛рд░реЗ рдЦрд┐рд▓рд╛рдл рд╣реЛрдВ... рддреЛ рдордд рдШрдмрд░рд╛рдУред рдореЗрд╣рдирдд рддреБрдореНрд╣рд╛рд░реЗ рд╕рд╛рде рд╣реЛ, рддреЛ рдХрд┐рд╕реНрдордд рдХреЛ рднреА рдЭреБрдХрдирд╛ рдкрдбрд╝рддрд╛ рд╣реИред

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: abhi yadav

79626613

Date: 2025-05-17 14:05:37
Score: 1
Natty:
Report link

In your code, you're using a custom toggle with activeId state, but React Bootstrap's Accordion component has its own built-in functionality for handling which panel is active.

You need to make a few changes:

  1. `activeKey
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ClaireElaine Molnar

79626605

Date: 2025-05-17 13:58:35
Score: 1
Natty:
Report link

You are using the Jetpack cache services on your WordPress.com based website. So you need to clear the cache, as there is no more Google Tag Manager code in your <head> </head> tags.

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

79626600

Date: 2025-05-17 13:55:33
Score: 4
Natty:
Report link

Try this out this might work:

  1. Add you're okta user to you're okta application. since this is redirect to the okta dashboard I have face the same issue and it is related to not assign you're application to the user.

  2. In the Okta API scopes grant below scope and try: enter image description here

  3. Make sure sign in redirect URI is point to correct URI: enter image description here

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • No code block (0.5):
  • Me too answer (2.5): face the same issue
  • Low reputation (1):
Posted by: W A J Amasara

79626598

Date: 2025-05-17 13:52:32
Score: 2
Natty:
Report link

I have the exact same setup at home, docker container running the otel collector, on an lxc container. The grafana dashboard is showing the uptime, and metrics, of the host and not the container. So far I have not been able to figure out why. The lxc uptime and htop all show the correct information but otel is seeing something deeper. I think this is because the docker service is sharing the host kernel for running the application, and the lxc is just a fancy set of apparmour and permissions to restrict its capabilities and resources.

If anyone else has any ideas I would greatly appreciate it. Ill keep investigating.

Reasons:
  • Blacklisted phrase (1): any ideas
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Logan Mancuso

79626591

Date: 2025-05-17 13:44:30
Score: 3.5
Natty:
Report link

Microsoft Developer Studio Workspace File, Format Version 6.00

# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!

###############################################################################

Project: "Cpp1"=".\Cpp1.dsp" - Package Owner=<4>

Package=<5>

{{{

}}}

Package=<4>

{{{

}}}

###############################################################################

Global:

Package=<5>

{{{

}}}

Package=<3>

{{{

}}}

###############################################################################

Reasons:
  • No code block (0.5):
  • No latin characters (1.5):
  • Filler text (0.5): ###############################################################################
  • Filler text (0): ###############################################################################
  • Filler text (0): ###############################################################################
  • Low reputation (1):
Posted by: Ayham Alsalhi

79626590

Date: 2025-05-17 13:43:29
Score: 3.5
Natty:
Report link

Apparently:

https://github.com/cloudflare/pingora/blob/main/pingora-proxy/tests/utils/websocket.rs helps.

It should be OK, replacing tungstenite with fastwebsockets. Let's dig into it.

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

79626588

Date: 2025-05-17 13:43:29
Score: 3
Natty:
Report link

It solved me by giving conda.exe file location followed by command

Ex:c:/anaconda/conda.exe crea proj1 python=3.10

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

79626585

Date: 2025-05-17 13:39:28
Score: 1
Natty:
Report link

useSeoMeta() and useHead() work properly in SSR only if they run during the initial server-side render. However, in some cases, especially in or when reactive sources are used indirectly, the execution timing might delay until after hydration тАФ meaning the meta tags only appear client-side (i.e., after the page is loaded in the browser, not in view-source:).

This behavior breaks SEO and social media previews, because bots and scrapers usually only see the server-rendered HTML. Instead of useSeoMeta(), use definePageMeta() for page-level static meta.

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

79626581

Date: 2025-05-17 13:32:27
Score: 1.5
Natty:
Report link

I have kind of the same issue, when I launch my app that uses the expo camera and barcode scanner, it instantly crashes on ios.

When I look at the ios testflight logs, I get:

Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000020 Exception Codes: 0x0000000000000001, 0x0000000000000020 VM Region Info: 0x20 is not in any region. Bytes before following region: 4369612768 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL UNUSED SPACE AT START --->
__TEXT 104730000-104734000 [ 16K] r-x/r-x SM=COW /var/containers/Bundle/Application/869C46D1-8619-4AD3-AEEC-0AAB5C0AAE66/VeganVerify.app/VeganVerify Termination Reason: SIGNAL 11 Segmentation fault: 11 Terminating Process: exc handler [90193]

Triggered by Thread: 5

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): 00000000000000
  • Filler text (0): 000000000000000
  • Filler text (0): 00000000000000
  • Low reputation (1):
Posted by: Mr_Gain

79626579

Date: 2025-05-17 13:31:26
Score: 1.5
Natty:
Report link

Azure Container Apps now includes native Azure Functions support by setting the kind=functionapp property on a Container App resource. This enables you to combine the rich programming model and auto-scaling capabilities of Azure Functions with the flexible, serverless container hosting environment of Container Apps, including "custom domains".

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

79626575

Date: 2025-05-17 13:26:25
Score: 5.5
Natty:
Report link

I have installed latest eclipse ide and java17 and created maven project. When i add selenium and maven dependencies in pom.xml and saved these are not downloading in Maven Dependencies of the project. Could someone help to fix this issue

Reasons:
  • RegEx Blacklisted phrase (3): Could someone help
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: santosh kumar

79626570

Date: 2025-05-17 13:23:24
Score: 3
Natty:
Report link

hello i have this error too with laravel and Vite

i removed in hot file in public folder in laravel application and thats run

Reasons:
  • RegEx Blacklisted phrase (1): i have this error
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mehrdad Shirvan

79626567

Date: 2025-05-17 13:21:23
Score: 4.5
Natty:
Report link

i have the same questionя╝Мand here is the evidence i foundуАВ Another thing to noticeя╝Мslab use alloc_pagesя╝Мbut it doesn't call kmapуАВ So if highmem was alloced, page_address() would return nullуАВ

Reasons:
  • Blacklisted phrase (1): i have the same question
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same question
  • Low reputation (1):
Posted by: ц╣ЦхРЙцЩи

79626562

Date: 2025-05-17 13:15:22
Score: 5.5
Natty:
Report link

me pasaba lo mismo pero el error mio estaba en que el return no lo tenia en el else

if request.method =='POST':

     if request.POST.get("nombre") and request.POST("apellidos")
        edito desde el template lo pertienente
     else:
        return redirect('/editarcurso')
else:
   return render(request, 'carpetasilahay/lista_cursos.html'

esto me soluciono el editar, dado que no estaba instanciando lo de cada if al else
   
Reasons:
  • Blacklisted phrase (2.5): solucion
  • RegEx Blacklisted phrase (2.5): mismo
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Matis

79626553

Date: 2025-05-17 12:59:19
Score: 0.5
Natty:
Report link

You cannot use the blockSubscribe method on most public Solana RPC endpoints because this feature is considered unstable and is only available if the validator was started with the --rpc-pubsub-enable-block-subscription flag. It is disabled by default.

Source: https://solana.com/docs/rpc/websocket/blocksubscribe

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

79626544

Date: 2025-05-17 12:52:17
Score: 2.5
Natty:
Report link

You're experiencing a common Livewire 3 issue where pagination links are rendered, but clicking them doesn't trigger updates. This usually indicates that Livewire is not properly mounting or recognizing your component on the page. Here's a checklist and fix strategy to solve the issue:


Root Cause Possibilities

  1. Component is not mounted using Livewire directives (<livewire:...> or @livewire(...))

  2. Missing wire: key on root elements in a paginated or dynamic context

  3. Pagination links using custom Blade view are missing Livewire directives

  4. Livewire script not running properly on page load (often with Jetstream + Livewire stack)

  5. Missing or incorrect Alpine.js + Livewire script setup


Solution Checklist

1. Ensure the Livewire Component is Mounted Properly

In your Blade view (resources/views/admin/categories.blade.php or wherever this component is used), the component should be included like this:

blade

CopyEdit

<livewire: admin.category-management />

Please don't render it with @include() or blade logic.


2. Verify the Layout Structure

Since you're using:

php

CopyEdit

#[Layout('layouts.admin')]

Make sure layouts/admin.blade.php includes both:

blade

CopyEdit

@livewireStyles ... @livewireScripts @stack('modals') {{-- If using Jetstream --}}

And Livewire's JS is after Alpine if you're using Alpine.js:

blade

CopyEdit

<script src="//unpkg.com/alpinejs" defer></script> @livewireScripts


3. Pagination Custom View: Use wire: click Carefully

Your custom pagination component looks mostly correct, but you must add:

HereтАЩs an improved example of a page button:

blade

CopyEdit

<button type="button" wire:click="gotoPage({{ $page }})" wire:loading.attr="disabled" class="btn btn-outline mx-1"> {{ $page }} </button>

Make sure you do not use regular anchor <a> tags with href, or the full page will reload.


4. Check That Pagination Is Tracked

Add this to your component:

php

CopyEdit

protected$queryString = ['page'];

This helps Livewire track pagination state properly, especially with Jetstream.


5. Force Rehydration on Mount (Debugging Step)

Temporarily add this to the render() method to confirm the component is mounted:

php

CopyEdit

publicfunction mount() { logger('CategoryManagement mounted'); }

Check the Laravel log. If it doesnтАЩt show, Livewire is not mounting your component correctly.


6. Test Without Custom Pagination View

To rule out your custom view as the problem, try switching temporarily to:

blade

CopyEdit

{{ $cat->links() }}

If this works, your custom pagination view likely has broken or missing Livewire directives.


Summary Fix Actions

  1. Confirm you're rendering with <livewire:admin.category-management />

  2. Add protected $queryString = ['page']; to component

  3. Verify @livewireScripts is included after Alpine

  4. Test using default pagination to isolate view issue

  5. Update pagination buttons to use wire:click="gotoPage(...)"


If you've checked all of these and it's still not working, let me know and we can try an isolated reproduction or dive into Jetstream/Livewire Livewire hydration quirks.

Reasons:
  • Blacklisted phrase (2): still not working
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @livewireStyles
  • User mentioned (0): @livewireScripts
  • User mentioned (0): @livewireScripts
  • Low reputation (1):
Posted by: Zaid Zhonbedkar

79626527

Date: 2025-05-17 12:29:12
Score: 1.5
Natty:
Report link

Change "externalConsole": true to "terminal": "external"

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

79626525

Date: 2025-05-17 12:28:11
Score: 1.5
Natty:
Report link

I experience the same thing. What has helped (sometimes) for me is to go to the Parallels network settings, and change the network source to "Default Adapter" then restart windows.

Then after the restart I go bak to network settings and change back to "Shared Network" and restart windows again. It's a little time consuming, but seems to work 70% of the time.

It's also worth double checking to make sure your VS is trying to access the correct IP address on your mac.

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

79626520

Date: 2025-05-17 12:26:11
Score: 2
Natty:
Report link

I don't know if this is applicable to older comments, but Expo recently released a new SDK, Expo53, and this introduced some breaking changes with supabase's realtime functionality, so they can't be run together. I didn't find a solution, but it's only breaking on expo53, so if you switch back to expo 52, or any other older version that worked, you can test in the ios simulator on your device, or use development server, and then you can still release to testflight. same applies to any other version that was working.

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

79626518

Date: 2025-05-17 12:22:09
Score: 4
Natty:
Report link

Answer from here:

Mailjet Nodejs : Email send but not recived

Looks like Sub Account API Keys are not doing the job properly

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

79626504

Date: 2025-05-17 12:08:05
Score: 2
Natty:
Report link

You should have dotenv installed as a dependency , not a devDependency.

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

79626501

Date: 2025-05-17 12:05:05
Score: 2.5
Natty:
Report link

Finally, after trying multiple times, there's no way to use Gemini Nano / AICore on a device emulator. I had to buy a physical Pixel 8a for my tests.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Aris Guimer├б

79626496

Date: 2025-05-17 11:59:03
Score: 6.5 ЁЯЪй
Natty:
Report link

What data are you hoping to display with cout?

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

79626492

Date: 2025-05-17 11:49:01
Score: 1
Natty:
Report link

In some cases, references to the `internal` packages directory may cause these problems, which is from go v1.4 ignored by the compiler. See https://go.dev/doc/go1.4#internalpackages for more info.

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

79626491

Date: 2025-05-17 11:49:01
Score: 0.5
Natty:
Report link

I know this was a while back but I think I've figured out the best solution to this question that doesn't involve actually evaluating the query (which can be expensive) like the OP suggested.

qs = MyModel.objects .... rest of query
field_names = list(qs.query.values_select) + list(qs.query.annotation_select)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jordan Hyatt

79626487

Date: 2025-05-17 11:46:00
Score: 0.5
Natty:
Report link

In my situation problem deals with postgres on localhost

Solution

brew services
brew services stop postgresql@15

After these commands I can connect to DB:

psql -h localhost -p 5432 -U username -d dbname
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: mascai

79626483

Date: 2025-05-17 11:40:59
Score: 2.5
Natty:
Report link

Use import { createApp } from 'vue/dist/vue.esm-bundler';

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nikita Dmitriev

79626468

Date: 2025-05-17 11:22:54
Score: 7.5 ЁЯЪй
Natty: 6.5
Report link

I'm filling the online application form from some days ago.

When I wanted to open and continue with my application, i get a message telling me that"" Unexcepted Exception" null"" How can I continue with my application?

Please can you help?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (3): can you help
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Self Help Christian Refugees A

79626455

Date: 2025-05-17 11:06:50
Score: 2.5
Natty:
Report link

public static string StripHtml(string input) { return string.IsNullOrEmpty(input) ? input : System.Web.HttpUtility.HtmlDecode(System.Text.RegularExpressions.Regex.Replace(input, "<.*?>", String.Empty)); }

this worked for my problem

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Dhruv Shah

79626446

Date: 2025-05-17 10:58:48
Score: 0.5
Natty:
Report link
using namespace std;

int main(){
    // sqrt(100000) = 316.22..
    for(int squareLength = 317;squareLength*squareLength <= 200000;squareLength++)
    {
        int luas = squareLength*squareLength;
        if ( laus % 2 == 0){
            cout << luas << endl;
            break;
        }
    }
} 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kingsjester

79626445

Date: 2025-05-17 10:58:48
Score: 2
Natty:
Report link

Need reliable app developers in Perth SunriseTechs offers high-performance mobile app development for businesses seeking to innovate and scale. Our Perth development team delivers tailored apps for iOS and Android, built with user experience, performance, and security at the core. Whether you're launching your first app or enhancing an existing product, we provide consultation, design, development, and post-launch support to make sure your product succeeds.

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

79626443

Date: 2025-05-17 10:57:47
Score: 1.5
Natty:
Report link

Logic Issues:

The boundary checks in your partition function's while loops could lead to index errors

The i <= high condition in the first inner while loop can cause unnecessary comparisons

There's no handling for arrays with duplicate values efficiently

Edge Cases that might fail:

Arrays with duplicate elements might not be handled optimally

Already sorted arrays will have poor performance (O(n┬▓))

Empty arrays or single element arrays aren't explicitly handled

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

79626440

Date: 2025-05-17 10:47:46
Score: 2
Natty:
Report link

this problem arises because springBoot considers the initially configured beans as the primary beans and by default , accounts for only one configuration class for SpringBatch. Hence , if the initially defined batchJob configuration is already there , it will require some differentiation between multiple batch configuration classes.
there are many solutions to this problem :
-> Making the beans defined in the batchConfiguration files as primary by adding @Primary annotation , so that springBoot can differentiate between the primary and secondary beans .

But , it would give us problems if there are more than two configuration files present in the scenario.
Hence the usage of @Qualifier annotation will be the best suited option .

@Bean
@Qualifier("jsonProcessingJobBeanV1")
public Job jsonProcessingJob(JobRepository jobRepository, Step jsonProcessingStep) {
        return new JobBuilder("jsonProcessingJob", jobRepository)
                .incrementer(new RunIdIncrementer())
                .listener(jobExecutionListener())
                .start(jsonProcessingStep)
                .build();
    }

and similarly for the stepBuilder , ItemReader , ItemWriter and ItemProcessor also , we will define the @Qualifier names.
Example (ItemReader) :

@Bean
@Qualifier("ItemReaderV1")
@StepScope
public ItemReader<ItemEntity> jsonItemReader(@Value("#{jobParameters['fileName']}") String fileName) {

In the same manner we are supposed to annotate all the beans. And your problem will be solved .

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Primary
  • User mentioned (0): @Qualifier
  • User mentioned (0): @Qualifier
  • Low reputation (1):
Posted by: harsh pandey

79626436

Date: 2025-05-17 10:43:45
Score: 3
Natty:
Report link

even my rtx 2080 ti only supports up to feature level 12_1. i have my drivers fully updated.

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

79626429

Date: 2025-05-17 10:36:43
Score: 0.5
Natty:
Report link

When you double-click a .sh in Windows, Git Bash actually launches it via a wrapper (sh.exe or bash.exe -c тАж) rather than executing it directly. That wrapper injects extra frames (MSYS2 startup, the тАЬтАУcтАЭ eval, etc.) into the call stack, so your hard-coded

bash

CopyEdit

caller_file="${BASH_SOURCE[2]}" caller_line="${BASH_LINENO[1]}"

no longer point at the TestFunction "11111" "22222" line (28) but at the very first source in your script (line 6) .

Solution 1: Run it from the Git Bash prompt

Open Git Bash and do:

bash

CopyEdit

./tester_copy.sh

This invokes bash.exe directly on your script (no wrapper), so the call stack is exactly

css

CopyEdit

ErrorReport тЖТ TestFunction тЖТ Main

and ${BASH_SOURCE[2]} тЖТ tester_copy.sh, ${BASH_LINENO[1]} тЖТ 28 as you expect .

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: saivihal

79626428

Date: 2025-05-17 10:35:43
Score: 1
Natty:
Report link

Check PHP.info for: number_format

number_format(FLOAT, DECIMAL_PLACES);

OR JavaScript:

STRING = FLOAT.toString();
STRING = STRING.substring(0, STRING.indexOf(".")+2);
return STRING;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RAHEEL RAHMAN

79626411

Date: 2025-05-17 10:16:38
Score: 1
Natty:
Report link

My workaround

I found a workaround: using the docker-compose.exe instead of the docker compose command. To do this, I had to add its path to the environment variables.

Workaround
x(DIR, {
   PATH: process.env.Path + 'C:\\Program Files\\Docker\\Docker\\resources\\bin;',
},`docker-compose -f=${p(DOCKER_COMPOSE_YML)} ${args.join(' ')}`) 
Previous version (for comparison)
await x(DIR, {}, `docker compose -f ${p(DOCKER_COMPOSE_YML)} up`)
I would still be pleased if someone could make me understand what is wrong.
Reasons:
  • RegEx Blacklisted phrase (1): I would still be please
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: PizzaOverflow

79626408

Date: 2025-05-17 10:14:37
Score: 7.5 ЁЯЪй
Natty: 6
Report link

Same issue for me - not sure why subaccount API keys are not working.

Using primary key is not ideal, but it gets the job done. Anyone found any alternative tools?

Reasons:
  • Blacklisted phrase (2): Anyone found
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Doka

79626402

Date: 2025-05-17 10:07:36
Score: 2
Natty:
Report link

Currently (Pandas 2.2.3), this can be done using the map method (https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.map.html). For example:

def yes_or_no(value):
    return not value or "N/A" in value or "-" in value

df.map(yes_or_no)
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: anapaulagomes

79626397

Date: 2025-05-17 09:58:33
Score: 3.5
Natty:
Report link

I made a small mistake. I shouldn't have changed the value of DisableLogonBackgroundImage to 1. Now everything works

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

79626394

Date: 2025-05-17 09:53:32
Score: 0.5
Natty:
Report link

frozenWidth is required to explicitly define the width of the frozen section in order to properly align and render the frozen columns alongside the scrollable part of the table.

<div class="ui-table-wrapper">
 <p-table
    [value]="products"
    [columns]="colsProd"
    [frozenColumns]="frozenCols"
    [scrollable]="true"
    scrollHeight="400px"
    frozenWidth="250px"
    dataKey="loadId"
   
  >
    <ng-template pTemplate="frozenheader">
      <tr>
        <th style="width: 250px" *ngFor="let col of frozenCols">{{ col.header }}</th>
      </tr>
    </ng-template>

    <ng-template pTemplate="frozenbody" let-rowData>
      <tr>
        <td style="width: 250px" *ngFor="let col of frozenCols">{{ rowData[col.field] }}</td>
      </tr>
    </ng-template>

    <ng-template pTemplate="header">
      <tr>
        <th style="width: 250px" *ngFor="let col of colsProd">{{ col.header }}</th>
      </tr>
    </ng-template>

    <ng-template pTemplate="body" let-rowData>
      <tr>
        <td style="width: 250px" *ngFor="let col of colsProd">{{ rowData[col.field] }}</td>
      </tr>
    </ng-template>
  </p-table>
</div>

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Navid Abedini

79626390

Date: 2025-05-17 09:50:30
Score: 1.5
Natty:
Report link

May be the issue was environment corruption

  1. Broken Dependency Chains: Your old env likely had:

    • Conflicting package versions

    • Partial/corrupted PyTorch installations

    • Leftover build files

  2. Path Pollution: The env might have inherited system packages or had incorrect PATH settings.

  3. Cache Issues: Pip's cache sometimes serves broken wheels for specific env states.

Always Use Fresh venvs if New Projects

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mahefa Nirina Randrianavalona

79626376

Date: 2025-05-17 09:28:26
Score: 2
Natty:
Report link

for me i added like this in my discovery.locator

 name: RemoveRequestHeader
  args:
    name: "'Origin'"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30562924

79626372

Date: 2025-05-17 09:26:26
Score: 2
Natty:
Report link

may I ask how could I split a column of string into list of list?

Try This:

Snippet:

df = df.with_columns(
    pl.col(0).str.split(",").alias("split_column")
)
Reasons:
  • Blacklisted phrase (1): may I ask
  • Whitelisted phrase (-2): Try This:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Adios Gringo

79626369

Date: 2025-05-17 09:24:25
Score: 1.5
Natty:
Report link

When working with GNU make, you can invoke an undefined function:

define ECHO_FOO = 
   $(comment @echo foo)
endef

This will expand to empty text before passing the content to the shell.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Alexandre

79626365

Date: 2025-05-17 09:16:24
Score: 2.5
Natty:
Report link

I found out that if you dynamically allocate the memory, it works fine because the size of a static array must be initialized or defined at compile time, while at runtime, the values of your variables have already been assigned a value and so the size of the array is known.

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

79626355

Date: 2025-05-17 09:05:21
Score: 0.5
Natty:
Report link

Hello All,

Error Encountered while using kubelogin - error: unknown shorthand flag: 'l' in -l

Below is the summary as how I made Kubelogin worked for my AKS Cluster.

1. Installed Kubelogin using choco :- choco install kubelogin

2. AKS uses kubelogin plugin for authentication :- kubelogin convert-kubeconfig -l azurecli

Below was the error encountered -

error: unknown shorthand flag: 'l' in -l

3. Uninstall kubelogin using choco :- choco uninstall kubelogin -y

4. Install kubelogin using Azure Github: https://azure.github.io/kubelogin/install.html

winget install --id=Microsoft.Azure.Kubelogin -e

5. Validate Version : - kubelogin --version

Below is the output -

kubelogin version

git hash: v0.2.8/d7f1c16c95cc0a1a3beb056374def7b744a38b3a

Go version: go1.23.7

Build time: 2025-04-25T17:17:57Z

Platform: windows/amd64

6. Get AKS Credentials :- az aks get-credentials --resource-group <Name of the Resource Group> --name <Name of the AKS Cluster> --overwrite-existing

7. Use kubelogin plugin for authentication :- kubelogin convert-kubeconfig -l azurecli

The command executed successfully.

8. Validate :- kubectl get nodes

Below Follows the Output :-

NAME STATUS ROLES AGE VERSION

aks-agentpool-99335204-vmss000000 Ready <none> 3h7m v1.31.7

Hope this helps.

Many Thanks

Best regards, Arindam

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arindam Mitra

79626341

Date: 2025-05-17 08:51:18
Score: 1
Natty:
Report link
  1. Verify your rewrite is deployed (console + --debug).

  2. Confirm same project, correct serviceId & region.

  3. Test your service directly with curl.

  4. Inspect Network tab and Hosting logs to see whatтАЩs actually being served.

  5. Check hosting rule order, CLI version, and custom-domain status.

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

79626339

Date: 2025-05-17 08:47:16
Score: 2.5
Natty:
Report link

Embarrassingly enough, in my case it was a silly mistake. I was starting the cluster from the terminal and then closing the terminal window тАФ which killed the entire session. All I had to do was minimize the terminal instead, and everything started working

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

79626314

Date: 2025-05-17 08:12:08
Score: 4.5
Natty: 5
Report link

Thank you Mr @Jasper.. Thank you all.. wonderfull ansers, wonderfull questions. Who is deciding the rules of future of these languages ? (Some languages stay and others almost desapeare).Ooops don't need to answer I will find it on the web, sorry.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Jasper
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel GAUQUELIN

79626312

Date: 2025-05-17 08:09:07
Score: 0.5
Natty:
Report link

This issue appears to stem from a change introduced in Chrome/Chromium versions after 88.0.4324, which affects how the DevTools window renders when using Stetho.

As discussed in this GitHub comment, a practical workaround is to use an older version of a Chromium-based browser. I found that Brave v1.20.110, which is based on Chromium 88.0.4324, works as expected and properly renders the DevTools window when inspecting via Stetho.

You can download that version here:
ЁЯСЙ Brave v1.20.110

Until thereтАЩs an upstream fix or compatibility update, this workaround should help restore the expected debugging experience.

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

79626306

Date: 2025-05-17 08:02:05
Score: 1
Natty:
Report link

I resolved the issue by rotating the image as default it showed the image is rotated 90 degree
-> https://stackoverflow.com/a/79626304/15993378

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-2): I resolved
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Dkathayat1

79626301

Date: 2025-05-17 07:53:03
Score: 2.5
Natty:
Report link

As it turned out, my application just needed 2 additional lines:
EdgeToEdge.enable(this); in onCreate
and <item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item> in the application theme.
With these lines the cutout calculation works correctly.

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

79626295

Date: 2025-05-17 07:40:59
Score: 0.5
Natty:
Report link

To allow employees to register by company and have full company-wide access in your Azure B2C application, youтАЩre on the right track considering custom attributes to store company information during registration.

Best Practices to Implement Company-Based Access in Azure B2C:

  1. Use Custom Attributes to Capture Company Info:
    Extend your user profiles with a custom attribute like company Id or company Name when users sign up. This ensures each user is tagged with their company.

  2. Restrict Registration by Domain (Optional but Recommended):
    To avoid users registering with the wrong company, you can:

    • Validate the userтАЩs email domain during sign-up against an allowed list per company.

    • Automatically assign the company attribute based on the verified email domain.

  3. Additional Approval Workflow (Optional):
    If you want tighter control, implement an approval process where a company admin verifies new users before granting access. This can be done by integrating Azure Functions or Logic Apps to handle approval and update user attributes post-verification.

  4. Implement Role-Based Access Control (RBAC):
    Once users have their company attribute set, your application should enforce access control based on this attribute, showing resources only relevant to their company.

  5. Consider Using Groups or Directory Extensions:
    For complex scenarios, use Azure AD B2C custom policies or integrate with Azure AD groups (if using Azure AD alongside B2C) to manage company memberships and roles more granularly.

Summary

This approach balances ease of registration with security and proper access control. If you want, I can also share sample policy XML or code snippets to help implement this.

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

79626293

Date: 2025-05-17 07:39:59
Score: 1.5
Natty:
Report link

There is not a bug in just_audio 10.2 causing this issue, but according to Ryan Heise the problem is with AGP 8.6 and 8.7 and the solution is to downgrade AGP to for example AGP 8.5.2 used in the official example (see issue #1468 on just_audio github).

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: sigjak

79626289

Date: 2025-05-17 07:35:58
Score: 0.5
Natty:
Report link

Normally a shell command only executes when the previous command finishes. When you execute ssh, that command does not finish until the ssh session finishes. Presumably you dropped into a remote shell. If you exit that shell it will return to the script and execute the next command. You could of course put & ampersand after a command so that the shell doesn't wait, though it doesn't seem to make much sense to run ssh in the background, unless you are running something remotely, and not just a shell.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: xpusostomos

79626288

Date: 2025-05-17 07:31:57
Score: 5
Natty: 4.5
Report link

Here you can find a solution which works for both text and table cells: https://m.mediawiki.org/wiki/Extension:ColorizerToolVE

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

79626287

Date: 2025-05-17 07:28:56
Score: 3.5
Natty:
Report link

You should create a menu item with categories and assign it an appropriate gantry template.
https://docs.gantry.org/gantry5/configure/assignments

https://docs.gantry.org/gantry5/configure/outlines

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

79626275

Date: 2025-05-17 07:13:53
Score: 1
Natty:
Report link

I had a similar problem. The solution was to install libssl-dev and then ext-ftp. So in the Dockerfile you need to add in this order:

RUN apt-get update && apt-get install -y libssl-dev
RUN docker-php-ext-configure ftp --with-openssl-dir=/usr \
&& docker-php-ext-install ftp
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tomasz Kartasi┼Дski

79626273

Date: 2025-05-17 07:10:52
Score: 0.5
Natty:
Report link

models:read is now required for GitHub Models access. Do this to solve your issue;

  1. Delete your old Github access token

  2. Create a new Personal access token and give it the permission of "Read" for Models

  3. Use the new token

It should now work. I hope that helps

enter image description here

Reasons:
  • Whitelisted phrase (-1): hope that helps
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kamal Moha

79626264

Date: 2025-05-17 06:51:48
Score: 2.5
Natty:
Report link

For those who might have the same problem, I have figured out that I can make a reverse proxy using Next.js rewrites function.

I have created a reverse proxy like this in next.config.js

async rewrites() {
    return [
      {
        source: "/api/:path*",
        destination: `${process.env.NEXT_PUBLIC_BACKEND_URL}/:path*`,
      },
    ];
  },

then changed my cookie to be like this

res.cookie("auth_session", token, {
    httpOnly: true,
    secure: true,
    sameSite: "lax",
    maxAge: 60 * 60 * 24 * 30,
    path: "/",
})
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Raffi

79626257

Date: 2025-05-17 06:38:45
Score: 1
Natty:
Report link

Years later and another solution to limit the width of the ouput of commandlines:

# limit the output to "80" characters:
pstree | sed 's#\(.\{,80\}\).*$#\1#'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sven

79626251

Date: 2025-05-17 06:23:41
Score: 2
Natty:
Report link

Found here: https://supabase.com/docs/reference/cli/supabase-migration-up

supabase migration up [flags]

Flags
--db-url <string> Optional
Applies migrations to the database specified by the connection string (must be percent-encoded).

Put the db-url with (sslmode=require) then we can run migration to remote table which enabled ssl

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

79626249

Date: 2025-05-17 06:21:41
Score: 0.5
Natty:
Report link

Simple FILTER by Team column. Wrap it by CHOOSECOLS to extract needed columns:

=CHOOSECOLS(FILTER($A$2:$E$4,$E$2:$E$4=B7),1,2,4)

enter image description here

Adapt to your ranges.

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

79626243

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

This might be helpful

func CalculateRequestSize(req *http.Request) (int, error) {
    b, err := httputil.DumpRequestOut(req, true)
    return len(b), err
}

func CalculateResponseSize(resp *http.Response) (int, error) {
    b, err := httputil.DumpResponse(resp, true)
    return len(b), err
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bhautik Chudasama

79626232

Date: 2025-05-17 05:50:34
Score: 3
Natty:
Report link

In this hands-on workshop, you will learn how to upload files to an Oracle Database using only PL/SQL:

https://livelabs.oracle.com/pls/apex/r/dbpm/livelabs/view-workshop?wid=4127

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

79626223

Date: 2025-05-17 05:40:31
Score: 2
Natty:
Report link

In your case, you are not awaiting the function "fetchData", that is why it s returning only promise and not the data.

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: HARSH KUMAR CHOUDHARY

79626219

Date: 2025-05-17 05:33:30
Score: 1
Natty:
Report link

Worked me on Dotnet Core 8

on code behind 

Description = Description.Replace("\r\n", "<br>");
on razor page

 @Html.Raw(item.Description)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: safeena rasak

79626212

Date: 2025-05-17 05:22:27
Score: 2.5
Natty:
Report link

For RN Version 0.78.2 and above Add

implementation 'com.facebook.fresco:animated-gif:3.2.0'

in your android/app/build.gradle

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

79626210

Date: 2025-05-17 05:18:27
Score: 1
Natty:
Report link

In the second schema, the comment field is a required string, where it was a nullable string in the past.

This is a forward compatible change (the old schema can be used to read data written with the newer schema), but not a backward compatible one: the new schema cannot read null values.

To fix, you need to either relax compatibility rules (but that usually causes other problems), or make the field nullable again.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Oscar Westra van Holthe - Kind

79626208

Date: 2025-05-17 05:16:26
Score: 1.5
Natty:
Report link

Ok - managed to work it out :-)

Each item on the screen has an attached stylesheet - so we can set the stylesheet of the item e.g.:

self.SongList.setStyleSheet("QListView::item:selected {background-color: #000088;}")

This sets the currently selected item to blue - see https://doc.qt.io/qt-6/stylesheet-examples.html

The trick is to use the "::item:" element...

In the preferences dialog in my app I can allow the user to select what colour they want:

color = QColorDialog.getColor()
# use color.name()   to get the #nnnnnn value

Many thanks for the suggestions, however, this allows me to give the user the ability to keep the theme, but then select what they want as a highlight colour.

I've got a few more tweaks and testing to do, but I'll put uploading the code to https://github.com/carlbeech/OpenSongViewer in a few days.

Thanks

Carl.

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

79626207

Date: 2025-05-17 05:15:26
Score: 3
Natty:
Report link

You can extract text from a PDF file saved as BLOB data in an Oracle DB. Please have a look at:

https://stackoverflow.com/a/79626172/6045431

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Valentin Tabacaru

79626205

Date: 2025-05-17 05:14:26
Score: 1
Natty:
Report link

This issue is occurring due to forgetting some basic checks while installing project dependencies. In my case the main issue was that the TypeScript version did not match the latest version of Angular [19].

Updated following thisngs to run my project.

Update angular/cli from 16 to 19.

Update angular/devkit to 19.

Update Typescript 2 to 5.6.

Before run project check all the version install on your device. if any mistmatch version can caues this issue

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

79626194

Date: 2025-05-17 04:56:22
Score: 3
Natty:
Report link

hey you guys what's the way to do this in expo snack in mobile as you can't have the access to terminal what's the right version of babel runtime

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

79626189

Date: 2025-05-17 04:49:21
Score: 2
Natty:
Report link

So, would the reference system have to be specified exactly so that this minimal difference between the raster's extent and cut doesn't occur?

And the other question, I have this example code on a plot with the Terra package of any raster to which I add the extent:

`library(terra)

# Example raster
r <- rast(system.file("ex/elev.tif", package="terra"))

# Original extent
ext_original <- ext(r)

# Expanded extent (larger on all sides)
ext_expanded <- ext(
xmin(ext_original) - 1,
xmax(ext_original) + 1,
ymin(ext_original) - 1,
ymax(ext_original) + 1
)

# Expanded raster (with NA in the new areas)
r_expanded <- extend(r, ext_expanded)

# Plot 1: original raster
plot(r, main = "Original raster with normal extent")

# Plot 2: expanded raster (larger, with NA on the edges)
plot(r_expanded, main = "Raster with expanded extent")

`
This is the raster plot without the background map. Now to this map I want to add the "background map" from the previous code of the maptiles library but keeping the same format of the raster map with the extension, but it happens that it does not respect the format of the terra plot itself.

`library(terra)
library(maptiles)

# Example raster: global elevation
r <- rast(system.file("ex/elev.tif", package="terra"))

# Original extent and expanded extent
ext_original <- ext(r)
ext_expanded <- ext(
xmin(ext_original) - 1,
xmax(ext_original) + 1,
ymin(ext_original) - 1,
ymax(ext_original) + 1
)

# Download OSM tile with the expanded extent
osm_rast <- get_tiles(ext_expanded, provider = "OpenStreetMap", crop = TRUE, zoom = 8)

# Plot base map
plot(osm_rast, axes=FALSE, legend=FALSE)

# Plot raster on top
plot(r, add=TRUE)

` and this is the map with the "openstreetmap style background map" My question is how can I make the OpenStreetMap style map be added to the background without changing the format of the map plot without a background with the Terra library?, that is, the same map without a background with the extension, but with the background, I don't know if I'm making myself clear.Because as you can see the difference is huge and as you can see in image 2 the latitude limits seem to be "not respected"

Reasons:
  • Blacklisted phrase (0.5): how can I
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: LUCAS SEBASTIAN SALINAS MORALE

79626172

Date: 2025-05-17 04:17:09
Score: 6 ЁЯЪй
Natty:
Report link

If there is still interest in this subject, here is a hands-on tutorial and sample code showing how to achieve it:

Hands-on reading .docx and .pdf file using PL/SQL

Please share your feedback. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (2.5): Please share your
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Valentin Tabacaru

79626168

Date: 2025-05-17 04:08:07
Score: 2
Natty:
Report link
vim.o.termguicolors = true

Adding this to init.lua file solved my problems.

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

79626151

Date: 2025-05-17 03:48:03
Score: 1
Natty:
Report link

The "sout" shortcut is an IDE feature, not a Java language feature. It's most commonly associated with IntelliJ IDEA, but similar shortcuts exist in other IDEs like Eclipse or NetBeans. This shortcut doesn't "appear" in a public class because it's not actual Java code - it's just a typing shortcut that your IDE expands into the full System.out.println() statement when you type it. If you're not seeing the shortcut work:

Make sure you're typing it inside a method body, not at the class level Check that code completion/templates are enabled in your IDE Try pressing Tab or Enter after typing "sout" to trigger the expansion

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

79626144

Date: 2025-05-17 03:35:00
Score: 1.5
Natty:
Report link

I like @sonjz answer (https://stackoverflow.com/a/24190283/4582204) the best, but it is case-SENSITIVE. To make it case-INsensitive, here are two options (edited repost of: https://stackoverflow.com/a/79626135/4582204).

mode modifier (?i) :

([regex]'(?i)a.b').Matches('A1B_A2B') | ft

Or use the class function, rather than instance/object function, and pass an option or flag.

$string = 'A1B_A2B'
$regex = 'a.b'
$flags = 'IgnoreCase'
[regex]::matches($string, $regex, $flags) | ft

or simply:

[regex]::match('A1B_A2B', 'a.b', 'IgnoreCase') | ft

Both approaches return a 2-element array (really a MatchCollection):

Groups Success Name Captures Index Length Value
------ ------- ---- -------- ----- ------ -----
{0}       True 0    {0}          0      3 A1B  
{0}       True 0    {0}          4      3 A2B  
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @sonjz
  • Low reputation (0.5):
Posted by: john v kumpf

79626135

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

I think the most convenient answer (besides the mode modifier (?i) above) which is case-insensitive and also will match multiple times on a single line (-Match will not) (https://stackoverflow.com/a/24190283/4582204) is:

$string = 'A1B_A2B'
$regex = 'a.b'
$flags = 'IgnoreCase'
[regex]::matches($string, $regex, $flags) | ft

or simply:

[regex]::match('A1B_A2B', 'a.b', 'IgnoreCase') | ft

Which returns a 2-element array (really a MatchCollection):

Groups Success Name Captures Index Length Value
------ ------- ---- -------- ----- ------ -----
{0}       True 0    {0}          0      3 A1B  
{0}       True 0    {0}          4      3 A2B  
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: john v kumpf

79626124

Date: 2025-05-17 02:44:50
Score: 0.5
Natty:
Report link

Look at the PHP module BCMath BC Math

It uses strings as numbers with any length and have all common mathematical functions to operate with them.

<?php
$a=bcadd('1234567890123456789012345678901234567890','1000000000000000000000000000000000000000');
echo $a;

https://3v4l.org/UJUku

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

79626115

Date: 2025-05-17 02:18:45
Score: 0.5
Natty:
Report link

Use the Preferences: Open Default Keyboard Shortcuts (JSON) command in the command palette.

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

79626112

Date: 2025-05-17 02:14:44
Score: 1.5
Natty:
Report link

Check for env variables, remove them then also remove the env configuration you have in your babel.config.ts after that stop the app and run npx expo start -c. That worked for me

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

79626109

Date: 2025-05-17 02:07:42
Score: 1
Natty:
Report link
public String altPairs(String str) {
  String s = "";
  for(int i = 0; i <= str.length(); i+=2)
{
      if(i%4 == 2){
      s+= str.substring(i-2,i);
      }
      if(i%4 == 0){
        if(i == str.length()-1){
          s+= str.substring(i);
       }
      }
  }
  return s;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jova Paunovic

79626107

Date: 2025-05-17 01:51:39
Score: 4
Natty:
Report link

simple way

extension=mbstring

php.ini

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: M Reza Muktasib

79626104

Date: 2025-05-17 01:43:37
Score: 1
Natty:
Report link

I had to install nodejs :D

sudo apt update
sudo apt install nodejs npm -y

everything works fine now

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Don Feto

79626094

Date: 2025-05-17 01:14:31
Score: 4.5
Natty:
Report link

If there is ( @plugin "daisyui"; ) written before, then remove it. It should work.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @plugin
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdullah-Al-Emran Emon

79626089

Date: 2025-05-17 01:02:28
Score: 10.5
Natty: 8
Report link

were you able to resolve this?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vic Okeke

79626087

Date: 2025-05-17 01:00:28
Score: 3
Natty:
Report link

so apparently it's called "Components V2" and guess what, it's not available on discord.py, only discord.js
a call for me to migrate into discord.JS

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

79626083

Date: 2025-05-17 00:52:26
Score: 2.5
Natty:
Report link

Yep, scratched a bit on that one. There must be no overflow elements, ie the scroller-starter must be within the viewport of the mobile, for it to work, i mean remain static aso that it can trigger animations. Also maybe specify "scroller:window" in scrollTrigger parameters to be sure the mobile stick to it.

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