79333678

Date: 2025-01-06 16:26:32
Score: 1
Natty:
Report link

Explanation:

•   findstr "not found /source": Filters lines containing /source.
•   for /F "tokens=3 delims= ": Extracts the 3rd token (file path).
•   for /F "tokens=* delims=/": Splits the file path by / and extracts the last token.
•   %~nB: Extracts just the file name (without extension).
  1. Remove Duplicates

Pipe the output to sort /unique to remove duplicates:

findstr "/source" logfile.txt ^ | for /F "tokens=3 delims= " %A in ('findstr "/source" logfile.txt') do @for /F "tokens=* delims=/" %B in ("%A") do @echo %~nB ^ | sort /unique

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @for
  • User mentioned (0): @echo
  • Low reputation (1):
Posted by: rihab BJ

79333665

Date: 2025-01-06 16:23:31
Score: 3.5
Natty:
Report link

There's now a page with instructions to install Anaconda/Miniconda via command-line on its official website

For Anaconda https://docs.anaconda.com/anaconda/install/

For Miniconda https://docs.anaconda.com/miniconda/install/#quick-command-line-install]

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Je Qin Chooi Jay

79333652

Date: 2025-01-06 16:17:30
Score: 3.5
Natty:
Report link

Only the space and special characters removed from the printer share made the command operate accordingly (copy), sending a txt.

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

79333646

Date: 2025-01-06 16:14:29
Score: 2
Natty:
Report link

To convert Ethereum (ETH) to USD in real-time, you need access to live exchange rates between ETH and USD. Unfortunately, Nethereum doesn’t provide built-in functionality for fetching real-time exchange rates because it focuses on Ethereum blockchain interactions. However, you can integrate a third-party API to retrieve real-time ETH/USD conversion rates.

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

79333636

Date: 2025-01-06 16:09:28
Score: 2
Natty:
Report link

The runtime outcome is effectively identical. The difference is that Python 3.12 introduces a way to declare type parameters right in the class definition instead of requiring manual TypeVar declarations.

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

79333623

Date: 2025-01-06 16:05:27
Score: 1.5
Natty:
Report link

I know it's been a while, here's a quick answer :

If you want to use raw flowbite library, prefere using it within afterNextRender.

I you can and are not afraid of witching libraries, I can say you that flowbite-angular is released now and fully compatible with with angular 18+ version. :)

Reasons:
  • Blacklisted phrase (1): I know it's been
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: miguel gremy

79333613

Date: 2025-01-06 16:03:27
Score: 2.5
Natty:
Report link

I enabled the "fontconfig-dlopen" feature. This makes the build less dependent on the OS

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

79333602

Date: 2025-01-06 15:59:25
Score: 5.5
Natty:
Report link

Yogi, Thank you... Perfect, Regards

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Regards
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nigel

79333595

Date: 2025-01-06 15:57:25
Score: 0.5
Natty:
Report link

Use the native URL constructor

Don't use a regular expression here; there is no need, and it opens up the possibility of making mistakes. Use javascript's native URL constructor instead:

let url = new URL('https://stackoverflow.com/questions/7000995/jquery-removing-part-of-string-after-and-removing-too/7001040#7001040');
let hostname = url.hostname;
console.log(hostname); // stackoverflow.com

https://developer.mozilla.org/en-US/docs/Web/API/URL/URL

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
Posted by: tklodd

79333587

Date: 2025-01-06 15:54:24
Score: 1
Natty:
Report link

As suggested by @Patrick, changing the shape coordinate from meters to degress solved this problem.

shp_file=shp_file.to_crs('EPSG:4326’)

the mask function of the regionmask package treats the meter coordinate as a degree coordinate; I think it will be good if the function tests first the type of Coordinate reference system CRS. Since the error that I got (below) makes me feel that the problem is the netcdf data file ValueError: lon has data that is larger than 180 and smaller than 0. Set `wrap_lon=False` to skip this check.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Patrick
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kernel

79333578

Date: 2025-01-06 15:51:23
Score: 2.5
Natty:
Report link

Sub CrearPresentacionBovinos() Dim pptApp As Object Dim pptPres As Object Dim slideIndex As Integer Dim slide As Object

' Crear una nueva presentación de PowerPoint
Set pptApp = CreateObject("PowerPoint.Application")
pptApp.Visible = True
Set pptPres = pptApp.Presentations.Add

' Título de la presentación
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 1) ' 1 = Título
slide.Shapes(1).TextFrame.TextRange.Text = "Los Bovinos"
slide.Shapes(2).TextFrame.TextRange.Text = "Introducción a los bovinos y su importancia en la agricultura"

' Slide 2 - Introducción
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 2) ' 2 = Título y contenido
slide.Shapes(1).TextFrame.TextRange.Text = "¿Qué son los Bovinos?"
slide.Shapes(2).TextFrame.TextRange.Text = "Los bovinos son animales de granja que incluyen vacas, toros y bueyes. Son conocidos por su importancia en la producción de leche, carne y cuero."

' Slide 3 - Características de los Bovinos
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 2)
slide.Shapes(1).TextFrame.TextRange.Text = "Características de los Bovinos"
slide.Shapes(2).TextFrame.TextRange.Text = "• Tienen una complexión robusta y son animales herbívoros. " & vbCrLf & _
                                            "• Cuentan con cuernos (aunque no todos) y un sistema digestivo especializado. " & vbCrLf & _
                                            "• Los machos se llaman toros y las hembras vacas."

' Slide 4 - Tipos de Bovinos
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 2)
slide.Shapes(1).TextFrame.TextRange.Text = "Tipos de Bovinos"
slide.Shapes(2).TextFrame.TextRange.Text = "Existen dos tipos principales de bovinos:" & vbCrLf & _
                                            "1. Bovinos de carne (ej. Hereford, Charolais)." & vbCrLf & _
                                            "2. Bovinos de leche (ej. Holstein, Jersey)."

' Slide 5 - Importancia de los Bovinos
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 2)
slide.Shapes(1).TextFrame.TextRange.Text = "Importancia de los Bovinos"
slide.Shapes(2).TextFrame.TextRange.Text = "Los bovinos son esenciales en la agricultura debido a su contribución en:" & vbCrLf & _
                                            "• Producción de leche." & vbCrLf & _
                                            "• Producción de carne." & vbCrLf & _
                                            "• Aporte al abono y fertilizantes." & vbCrLf & _
                                            "• Fuente de trabajo y economía en muchas regiones del mundo."

' Slide 6 - Alimentación y cuidado
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 2)
slide.Shapes(1).TextFrame.TextRange.Text = "Alimentación y Cuidado de los Bovinos"
slide.Shapes(2).TextFrame.TextRange.Text = "Los bovinos son animales rumiantes y necesitan una dieta balanceada basada en pasto, heno, y alimentos concentrados. El cuidado incluye:" & vbCrLf & _
                                            "• Provisión de agua fresca." & vbCrLf & _
                                            "• Control sanitario y vacunación." & vbCrLf & _
                                            "• Espacio adecuado para el pastoreo."

' Slide 7 - Enfermedades Comunes
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 2)
slide.Shapes(1).TextFrame.TextRange.Text = "Enfermedades Comunes"
slide.Shapes(2).TextFrame.TextRange.Text = "Entre las enfermedades comunes de los bovinos se encuentran:" & vbCrLf & _
                                            "• Brucelosis." & vbCrLf & _
                                            "• Tuberculosis." & vbCrLf & _
                                            "• Mastitis (en las vacas lecheras)." & vbCrLf & _
                                            "Es importante tener medidas de control y prevención para garantizar la salud del ganado."

' Slide 8 - Producción y Comercio
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 2)
slide.Shapes(1).TextFrame.TextRange.Text = "Producción y Comercio"
slide.Shapes(2).TextFrame.TextRange.Text = "Los bovinos son parte fundamental en la economía mundial." & vbCrLf & _
                                            "• Exportación de carne y productos lácteos." & vbCrLf & _
                                            "• El comercio de ganado también tiene un impacto significativo en países productores."

' Slide 9 - Conclusión
slideIndex = slideIndex + 1
Set slide = pptPres.Slides.Add(slideIndex, 2)
slide.Shapes(1).TextFrame.TextRange.Text = "Conclusión"
slide.Shapes(2).TextFrame.TextRange.Text = "Los bovinos son animales esenciales para la agricultura moderna, con un rol destacado en la alimentación humana y el desarrollo económico."

' Finalizar y limpiar objetos
Set slide = Nothing
Set pptPres = Nothing
Set pptApp = Nothing

End Sub

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: M'aria G'onzalez

79333572

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

It's a typo issue in the info plist file. Use this name for your font file:

myFont.ttf

ttf should be in small letters

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Taimoor Arif

79333565

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

you can use the smsmobileapi Python module to connect your WhatsApp account and send messages directly.

The setup is quick — just authenticate your WhatsApp account through their dashboard, and you’re good to go, I use it for serveral project for my customers

Here’s the link https://smsmobileapi.com/python/

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Quest-concept

79333563

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

All these years later this issue is still present. I am just learning scraping in Python. I am getting a 503 error. Seems to be an issue with parsing UK Amazon web pages. Any advice on this? This is using bs4. I just get an error message along the lines of it being a problem their end and they are looking into it. I looked into using the official API mentioned above. It seems you can't use the Product Advertising API unless you have been accepted as an Amazon associate, as the API requires an Associate ID as part of its authentication.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Michael Jones

79333561

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

Use the below line to make the button fill the space:

playButton.imageView?.contentMode = .scaleAspectFit

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Taimoor Arif

79333558

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

ARP responses in AWS EC2 is generally given by the gateway (router) IP address (usually N.N.N.1 IP Address).

Yes you can receive broadcasted ARP request in another ec2 instance but the response is given by the router only. (I could not see the destination machine giving ARP response in TCPDump and this is the reason for my conclusion.)

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

79333557

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

You can find the Microsoft Ribbon Control .NET 9.0 on github

https://github.com/Dragan-Radovac-75/ribbon-net9.0-windows

All Ribbon components have been styled using framework only.

The Ribbon can also be hosted in a Winforms Application using ElementHost in Winforms.

How to use ElementHost in Winforms

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

79333556

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

@banterCZ I am using the same WEB-INF/jboss-deployment-structure.xml file but getting below issue

Caused by: java.lang.IllegalArgumentException: methods with same signature getSchemaManager() but incompatible return types: [interface org.hibernate.relational.SchemaManager, interface jakarta.persistence.SchemaManager]
at java.base/java.lang.reflect.ProxyGenerator.checkReturnTypes(ProxyGenerator.java:311)
at java.base/java.lang.reflect.ProxyGenerator.generateClassFile(ProxyGenerator.java:488)
at java.base/java.lang.reflect.ProxyGenerator.generateProxyClass(ProxyGenerator.java:178)
at java.base/java.lang.reflect.Proxy$ProxyBuilder.defineProxyClass(Proxy.java:558)
at java.base/java.lang.reflect.Proxy$ProxyBuilder.build(Proxy.java:670)
at java.base/java.lang.reflect.Proxy.lambda$getProxyConstructor$1(Proxy.java:440)
at java.base/jdk.internal.loader.AbstractClassLoaderValue$Memoizer.get(AbstractClassLoaderValue.java:329)
at java.base/jdk.internal.loader.AbstractClassLoaderValue.computeIfAbsent(AbstractClassLoaderValue.java:205)
at java.base/java.lang.reflect.Proxy.getProxyConstructor(Proxy.java:438)
at java.base/java.lang.reflect.Proxy.newProxyInstance(Proxy.java:1037)
at deployment.wildfly-0.0.1-SNAPSHOT.war//org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.createEntityManagerFactoryProxy(AbstractEntityManagerFactoryBean.java:464)
... 40 more
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @banterCZ
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: ashwani gupta

79333546

Date: 2025-01-06 15:43:21
Score: 1
Natty:
Report link

Debugging with the 32bit runtime is no longer supported, as of Visual Studio 2022. You can still deploy the package and run with the 32bit runtime.

enter image description here

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

79333544

Date: 2025-01-06 15:42:21
Score: 3.5
Natty:
Report link

Make sure you have gorilla/mux installed and reload the vscode.

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

79333534

Date: 2025-01-06 15:36:20
Score: 1.5
Natty:
Report link

You are missing ensures fresh(heap) clause in constructor.

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

79333532

Date: 2025-01-06 15:35:19
Score: 2.5
Natty:
Report link

easebuzz is the worst payment gateway provider. their support was so unprofessional and they dont have qualified employees. I recently had a very bad experience with them. I will suggest you to use stripe or cashfree. I think razorpay has resumed onboarding new clients now so its all good

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

79333527

Date: 2025-01-06 15:32:18
Score: 3
Natty:
Report link

I have added the following in the Dockerfile. But the error in question still persists. Could someone please help. I have been juggling with this issue since 2 days

FROM python:3.9 AS backend-builder

RUN apt-get update && \
    apt-get install -y unixodbc unixodbc-dev && \
    apt-get clean

# Set LD_LIBRARY_PATH
#ENV LD_LIBRARY_PATH=/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH

# Set LD_LIBRARY_PATH properly with conditional appending
ENV LD_LIBRARY_PATH=/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}

# Debug: Print environment variable and check the installed libraries
RUN echo "LD_LIBRARY_PATH is: $LD_LIBRARY_PATH"
RUN ldconfig -p | grep libodbc

RUN pip install -r requirements.txt

My requirements.txt already has pyodbc

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dawat1234

79333523

Date: 2025-01-06 15:32:18
Score: 0.5
Natty:
Report link

After trying out several options (thaks to everyoe that helped!), my choice was usig a regular experssion:

protected function validator(array $data)
{
    $rules = [
        'first_name' => ['required', 'string', 'max:255'],
        'last_name' => ['required', 'string', 'max:255'],
        'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
        'password' => ['required', 'string', 'min:6', 'confirmed', 'regex:/^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{6,}$/'],
        'password_confirmation' => ['required', 'same:password'],
        'accept' => ['accepted'],
    ];

    $messages = [
        'first_name.required' => 'The "First name" field is required',
        'last_name.required' => 'The "Last name" field is required',
        'email.required' => 'Please provide a valid email address',
        'email.email' => 'The email address you provided is not valid',
        'email.unique' => 'The email address you provided is already in use',
        'password.required' => 'A password is required',
        'password.min' => 'The password must have at least :min characters',
        'password.regex' => 'Include uppercase and lowercase letters, at least one number and one symbol (special character)',
        'accept.required' => 'You must accept the Terms & conditions of service'
    ];
    
    return Validator::make($data, $rules, $messages);
}
Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Razvan Zamfir

79333522

Date: 2025-01-06 15:31:18
Score: 1.5
Natty:
Report link

This was a big headache to me, I don't see really why unity bugs are so ridiculous, and miss guided for beginners

Ya as said by @Last_Imba and @emredesu it works when adding a one frame delay

previous code

 gunCtrl.Shoot();

The Fix

IEnumerator ShootThread()
    {
        yield return new WaitForEndOfFrame();
        gunCtrl.Shoot();
        yield return null;
    }

Posting this as it would help some beginners like me.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Last_Imba
  • User mentioned (0): @emredesu
  • Low reputation (1):
Posted by: chandrasekaran Natarajan

79333517

Date: 2025-01-06 15:29:18
Score: 1.5
Natty:
Report link

I was facing same issue, all because of folder permission issue, it resolved by running this on terminal sudo chmod a+w /private/var/tmp/

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

79333514

Date: 2025-01-06 15:28:17
Score: 2
Natty:
Report link

Step 1: npm i webpack-node-externals

Step 2: Make below changes in the webpack.config.js

const nodeExternals = require('webpack-node-externals');

module.exports = { target: 'node', externals: [nodeExternals()], };

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

79333513

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

This does not work on WC Version 9.5.1

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

79333499

Date: 2025-01-06 15:25:16
Score: 2
Natty:
Report link

The Facebook Groups API is deprecated in v19 and was removed from all versions. This deprecation included all Permissions (publish_to_groups, groups_access_member_info) and Reviewable Features (Groups API) associated with the Facebook Groups API. https://developers.facebook.com/blog/post/2024/01/23/introducing-facebook-graph-and-marketing-api-v19/

I can't find a way to post to the Facebook group via Graph API

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

79333494

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

Yes, you can create a persistent dictionary in Python and modify it using regular dictionary methods.

Among the options, I'd look at shelve, persidict, pickle, sqlite3.

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

79333493

Date: 2025-01-06 15:23:15
Score: 2
Natty:
Report link

I want to adapt your source code python in arcgis pro 3.1.5 but I have received th error in feature class. I nead to know how can fix this issue please inform me at the email : [email protected]

Thank you

Dr. DEHNI. A

enter code herearcpy.CreateFeatureclass_management(rep, nFcOut, "MULTIPOINT", "", "", "", prj) Traceback (most recent call last): File "", line 1, in File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\management.py", line 3858, in CreateFeatureclass raise e File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\management.py", line 3855, in CreateFeatureclass retval = convertArcObjectToPythonObject(gp.CreateFeatureclass_management(*gp_fixargs((out_path, out_name, geometry_type, template, has_m, has_z, spatial_reference, config_keyword, spatial_grid_1, spatial_grid_2, spatial_grid_3, out_alias), True))) File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\geoprocessing_base.py", line 512, in return lambda *args: val(*gp_fixargs(args, True)) arcgisscripting.ExecuteError: Échec de l’exécution. Les paramètres ne sont pas valides. ERROR 000735: Nom de la classe d’entités : Value Requested Valeur requise Échec de l’exécution de Execution fail (CreateFeatureclass).

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): I nead to know how can fix this issue please
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dehni Geomaticien

79333481

Date: 2025-01-06 15:19:14
Score: 1
Natty:
Report link

answer from here plus the header tweak down thread:

.headers on
.mode ascii
.separator "\t" "\n"
.import my_pure_tsv_file SomeTable
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: njamescouk

79333475

Date: 2025-01-06 15:16:14
Score: 1
Natty:
Report link

your code probably looks ok i dont think there is problem in it... maybe the problem is in the request itself, are you certain that the botToken provided is valid ?

try by curling a request there :

$ curl https://api.telegram.org/bot<token>/getMe

it should return a response with no error if the token we valid.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Imrane Aabbou

79333474

Date: 2025-01-06 15:16:14
Score: 1
Natty:
Report link

Big thank you to OP for sharing their solution!

Just to add my findings when I used it these days on the iOS Safari browser …

google.script.run.withSuccessHandler(google.script.host.close).passResult(result);
google.script.run.withSuccessHandler(google.script.host.close).passResult(JSON.stringify(result));
const parsedResult = JSON.parse(result);
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anonymous

79333469

Date: 2025-01-06 15:14:13
Score: 1
Natty:
Report link

To fix this issue is as simple as looking at the docs and it shows you how to do this without extra css.

<ion-item lines="none">
 <ion-label>Item Lines None</ion-label>
</ion-item>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: StackOverHoes

79333451

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

Check out this service called Z0rath, it's a centralized responsive authorization system. It's not open source, however it has a free version. It also has a react plugin for easy integration.

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

79333448

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

It appears that I was able to find a temporary solution for the majority of the options that I wanted hidden but it does require me to disable the Project Manager for Java extension shown in the screenshot below for each non-Java project/workspace. This should suffice for now but I'd be open to alternatives.

Screenshot showing Project Manager for Java disabled

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

79333444

Date: 2025-01-06 15:07:11
Score: 1.5
Natty:
Report link

The beam size is the number of "nodes" you remember in your search. I would say when the beam size is infinity, that is you have all the nodes in graph as your size of beam then it becomes a Breadth-First-Search (BFS). On the other hand, if the beam size is 1, then it basically becomes the Depth-First-Search (DFS). The beam size is the amount of information you want to retain during the entire algorithm. The more memory/space you have the better the results but slower and vice-versa.

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

79333435

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

After hours on it, I could get everything working as:

Note: Don't forget to restart your machine, as environments vars and editors may keep old values.

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

79333432

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

I want a execut.asmx in asp.net core project and I have tried to install the http://abctest.asmx url but I am getting error.

HTTP GET ERROR

The remote name could not be resolved: "abctest.asmx".

Reasons:
  • Blacklisted phrase (1.5): m getting error
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ManishaNand tech

79333431

Date: 2025-01-06 15:01:08
Score: 1.5
Natty:
Report link

You maybe able to get what you are looking for via the dashboard serviceability menu.

Click on the visualization in the dashboard and then click CTRL+.

Within the available menu, click the fetch SQL to obtain and view the SQL.

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

79333428

Date: 2025-01-06 15:00:08
Score: 3.5
Natty:
Report link

The behavior was fixed in maven-doxia-sitetools:1.8.1 for my use case (see DOXIASITETOOLS-179).

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

79333414

Date: 2025-01-06 14:55:06
Score: 11.5 🚩
Natty: 6
Report link

have you found any solutions? Sorry, I couldn't ask in the comments because I need 50 reputation for this.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1.5): 50 reputation
  • RegEx Blacklisted phrase (2.5): have you found any solutions
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tokyo boy

79333406

Date: 2025-01-06 14:49:03
Score: 6.5 🚩
Natty: 4.5
Report link

I wanted to comment on @GET T's answer, but the site wouldn't let me.

The solution presented is a creative solution, but it doesn't work for dates in full, suggestions?

E.g.:

{ IF { MERGEFIELD ESTADO_CIVIL_DATA \ @"dd"} > 12 { MERGEFIELD ESTADO_CIVIL_DATA \@"dd' de 'MMMM' de 'yyyy" } { MERGEFIELD ESTADO_CIVIL_DATA \@ "MM' de 'dddd' de 'yyyy" } }

The date 'October 8, 1984' result with the code above: "08 of friday of 1984" (Brazilian date standard) If it were the date in numbers it would work, but for this document I need it like this.

@LMORSE did find a solution?

Reasons:
  • Blacklisted phrase (1): this document
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @GET
  • User mentioned (0): @LMORSE
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ibraim

79333405

Date: 2025-01-06 14:49:03
Score: 1
Natty:
Report link

Similar to Nathan's answer, i find this works on material-ui v6 outlined-input:

<TextField
  slotProps={{
    input: {
      inputProps: {
        size: "small"
      }
    }
  }}
/>

Here is the docs:

  1. slotProps
  2. inputProps
  3. size
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rongjin Zhang

79333403

Date: 2025-01-06 14:48:03
Score: 1.5
Natty:
Report link

"data": [

"minesNext": {

"id": "b53d83f9-cffd-43fd-Bab8-c6bb78bf239e",

"active": true,

"payoutMultiplier": 0,

"asountMultiplier": 1,

"ancunt": 0,

"payout": 0,

"updatedAt": "Mon, 17 Jun 2824 19:57:12 GMT",

"currency": "btc",

"game": "mines",

"user": {

"id": "72ab99ed-b185-4c1d-86c0-6ed3b0be46f9",

"name": "hagemaruindian

"state": [

"mines": null,

"minesCount": 3,

"rounds":[

"field": 7,

"payout Multiplier: 1.125

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

79333400

Date: 2025-01-06 14:48:03
Score: 1.5
Natty:
Report link

Please go through the amazing plugin developed by transitor software which is great so far for the background location tracking in every aspect and there great community support plugin is

flutter_background_geolocation

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

79333395

Date: 2025-01-06 14:47:02
Score: 3
Natty:
Report link

This part worked to send the variable, so much so that in the web browser I see it being sent.

chatflowConfig: { vars: { apiKey: "TEST_KEY" }

However, I cannot receive it in the Flowise stream. According to JanR, it would be possible to receive it via prompt from the agent, which I was unable to do.

Could someone, especially JanR, show in the flow how they received the variable?

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Alexandre Guimarães

79333389

Date: 2025-01-06 14:46:02
Score: 2.5
Natty:
Report link

You can use piecewise functions to make a gap. See this graph for an example: https://www.desmos.com/calculator/rrro8oc2ke

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Michael Savage

79333387

Date: 2025-01-06 14:45:02
Score: 2
Natty:
Report link

Just try to add

dotnet add package Serilog.Enrichers.Environment
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anton Zubarev

79333377

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

Postman is working by default with a cookie jar enabled, the HTTP client you are using, in Node.js, is not.

You can disable the cookie jar, for each request Postman, if you go to settings, scroll down though the settings, and enable Disable cookie jar, and I expect once you do that, the behavior is identical.

How do you enable cookies in Node.js?

You can wire a cookie jar to your HTTP requests in Node.js. There is no native support for this in Node.js.

This is portion of my code (TypeScript), where I enabled a cookie jar , provided by tough-cookie:

import {CookieJar} from "tough-cookie";

export type HttpFormData = { [key: string]: string; }

export interface IHttpClientOptions {
  baseUrl: string,
  timeout: number;
  userAgent: string;
}

export interface IFetchOptions {
    query?: HttpFormData;
    retryLimit?: number;
    body?: string;
    headers?: HeadersInit;
    followRedirects?: boolean;
}

export class HttpClient {

  private cookieJar: CookieJar;

  public constructor(private options: IHttpClientOptions) {
    this.cookieJar = new CookieJar();
  }

  public get(path: string, options?: IFetchOptions): Promise<Response> {
    return this._fetch('get', path, options);
  }

  public post(path: string, options?: IFetchOptions) {
    return this._fetch('post', path, options);
  }

  public postForm(path: string, formData: HttpFormData,  options?: IFetchOptions) {
    const encodedFormData = new URLSearchParams(formData).toString();
    return this._fetch('post', path, {...options, body: encodedFormData, headers: {'Content-Type': 'application/x-www-form-urlencoded'}});
  }

  public postJson(path: string, json: Object,  options?: IFetchOptions) {
    const encodedJson = JSON.stringify(json);
    return this._fetch('post', path, {...options, body: encodedJson, headers: {'Content-Type': 'application/json.'}});
  }

  private async _fetch(method: string, path: string, options?: IFetchOptions): Promise<Response> {

    if (!options) options = {};

    let url = `${this.options.baseUrl}/${path}`;
    if (options.query) {
        url += `?${new URLSearchParams(options.query)}`;
    }

    // Get cookies from Cookie JAR
    const cookies = await this.getCookies();

    const headers: HeadersInit = {
      ...options.headers,
      'Cookie': cookies // Assign cookies to HTTP request
    };

    const response = await fetch(url, {
      method,
      ...options,
      headers,
      body: options.body,
      redirect: options.followRedirects === false ? 'manual' : 'follow'
    });
    await this.registerCookies(response);
    return response;
  }

  private registerCookies(response: Response) {
    const cookie = response.headers.get('set-cookie');
    if (cookie) {
      // Store cookies in cookie-jar
      return this.cookieJar.setCookie(cookie, response.url);
    }
  }

  public getCookies(): Promise<string> {
    return this.cookieJar.getCookieString(this.options.baseUrl); // Get cookies for the request
  }

}
Reasons:
  • Blacklisted phrase (1): How do you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Theo Borewit

79333360

Date: 2025-01-06 14:33:59
Score: 1.5
Natty:
Report link

For me: force updating Maven dependencies solved the problem. Maven was just installed, and the error didn't indicate anything related to dependencies. Steps to solve the problem on IntelliJ:

  1. Open pom.xml
  2. Click maven refresh button
  3. A message will appear that there is a problem with dependencies, do you want to force update them? click yes or similar button.
Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: ReemRashwan

79333356

Date: 2025-01-06 14:32:59
Score: 2
Natty:
Report link

After hours on it, I could get everything working as:

Note: Don't forget to restart your machine, as environments vars and editors may keep old values.

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

79333352

Date: 2025-01-06 14:30:58
Score: 0.5
Natty:
Report link

If anyone still struggling with it. Here is the URL for the request to get order from two dates. The issue is the url encode for filter parameter.

https://YOUR-PREST-WEBURL.com/api/orders?filter[date_add]=[2025-01-01%2C2025-01-06]&date=1&output_format=JSON

Below is an working exanple of the PHP cURL to get orders of today date.

// PrestaShop API endpoint (replace with your store's domain)
$prestashop_url = 'https://YOURSHOPURLHERE.com/api/';
// Your PrestaShop API key
$api_key = 'Your API Key';

// Get today's date in the format PrestaShop uses
$today = date('Y-m-d'); // As of today the date will be like '2025-01-06'
// Prepare the URL for fetching orders created today
$order_url = $prestashop_url . 'orders?filter[date_add]=[' . urlencode($today . ' 00:00:00') . ',' . urlencode($today . ' 23:59:59') . ']&date=1&output_format=JSON';

// cURL setup for fetching order IDs
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $order_url); // URL to the orders endpoint
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return the response as a string
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Authorization: Basic ' . base64_encode($api_key . ':')
));

// Execute the cURL request
$response = curl_exec($ch);

// Check for errors
if (curl_errno($ch)) {
    echo 'Curl error: ' . curl_error($ch);
    exit;
}

// Close the cURL session
curl_close($ch);
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Techlyse Solutions

79333349

Date: 2025-01-06 14:29:58
Score: 3
Natty:
Report link

I think you are omitting the .js

so like

try

node hello.js

also exit repl if you haven't already

or you haven't saved your file? Happens to me a lot

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

79333337

Date: 2025-01-06 14:27:58
Score: 1
Natty:
Report link

You can remove last '/' and trailing string without using split function. Just modify the Regex a bit.

const url = 'https://example.com/';
console.log(url.replace(/^(?:https?:\/\/)?(?:www\.)?|\/.*$/i, ""));

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

79333333

Date: 2025-01-06 14:26:56
Score: 6 🚩
Natty:
Report link

Did you declare the production URI in your Google Cloud console?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: DWBTed

79333305

Date: 2025-01-06 14:17:54
Score: 2
Natty:
Report link

Changing the value of Settings > Terminal > Integrated: Gpu Acceleration from "auto" into "off" is likely the fix for visual issues in VS Code which have been known about for a long time. Were this not to fix the issue, disabling image sharpening for your GPU (often an issue with Nvidia GPUs) in Control Panel > Manage 3D Settings is another potential fix.

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

79333299

Date: 2025-01-06 14:16:53
Score: 2.5
Natty:
Report link

For the people still searching for this question, now there is an active fork of Cocos2d-x called Axmol Engine, and in the wiki there is available a conversion guide:

https://github.com/axmolengine/axmol/wiki/SpriteKit-to-Axmol

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

79333289

Date: 2025-01-06 14:11:53
Score: 2.5
Natty:
Report link

The simplest solution to this is remove SingleChildScrollView and add Expanded widget to buildmenuitem just that's it.

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

79333256

Date: 2025-01-06 13:58:49
Score: 1
Natty:
Report link

[06/01, 6:40 pm] Varad Jadhao 2: 1 test Real number & Surface area and volume [06/01, 6:41 pm] Varad Jadhao 2: 2nd test polynomial & Pair of linear equation [06/01, 6:43 pm] Varad Jadhao 2: 3rd test Quadratic equation & Arithmetic progression [06/01, 6:44 pm] Varad Jadhao 2: 4th test Triangle & Coordinate geometry [06/01, 6:46 pm] Varad Jadhao 2: 5th test Introduction to trigonometry & some applications of trigonometry [06/01, 6:47 pm] Varad Jadhao 2: 6th test Circle & Area related to circle [06/01, 6:48 pm] Varad Jadhao 2: 7th test Statistics & Probability

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

79333254

Date: 2025-01-06 13:57:49
Score: 1.5
Natty:
Report link

Thanks! I managed to get the AST manipulated accordingly using a lua filter as follows

function Strong(el)
    return pandoc.Span(el.content, {["custom-style"] = "test"})
 end

This assigns a custom style to all bold elements.

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

79333250

Date: 2025-01-06 13:57:49
Score: 1.5
Natty:
Report link

Sorry guys i found the problem.

It's always that rubber duck debugging. i've to post things, after that i find the problem ;-) Thanks

@Service
@Profile({"!signatureTest & test"})
public class ReceiveActivityVerifier4Test implements SignatureVerifierFactory {
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: naturzukunft

79333244

Date: 2025-01-06 13:55:48
Score: 2
Natty:
Report link
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: alexisa

79333232

Date: 2025-01-06 13:52:47
Score: 1
Natty:
Report link

First- We need to install Git on our VM "sudo yum install git"

Second- Check is it install or not "git -v"

Third- Check the installed Path "which git"

Fourth- Add Path "Manage Jenkins -> global tool configuration -> Git -> Git Installations -> Path to Git executable."

Fifth- Save and restart http://xyz:8180/restart

enter image description here

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jai Nath Gupta

79333230

Date: 2025-01-06 13:52:47
Score: 3.5
Natty:
Report link

I had the exact same error.

pip3 install wtforms==2.3.0 worked form me

see github docs (installation requirements) here https://github.com/pallets-eco/flask-admin/blob/master/requirements-skip/tests-min.txt

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

79333223

Date: 2025-01-06 13:49:46
Score: 0.5
Natty:
Report link

For me cal -m works.
cal --version

cal from util-linux 2.40.2

cal -m

    January 2025    
Mo Tu We Th Fr Sa Su
       1  2  3  4  5
 6  7  8  9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31      
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Koronis Neilos

79333220

Date: 2025-01-06 13:49:45
Score: 5.5
Natty: 5.5
Report link

Any update here? Any way we can get the buffering percentage?

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

79333217

Date: 2025-01-06 13:48:44
Score: 3.5
Natty:
Report link

Is it supposed to works in 1.5 version because I'm trying and it does not.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (0.5):
Posted by: David Vander Elst

79333211

Date: 2025-01-06 13:45:43
Score: 4.5
Natty: 4
Report link

Have you got this issue fixed? I am getting same defect trying to play audio in dart flutter application via UDP: releaseBuffer: mUnreleased out of range, !(stepCount:8 <= mUnreleased:0 <= mFrameCount:4096)

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nícolas Brinkhus

79333209

Date: 2025-01-06 13:44:42
Score: 3.5
Natty:
Report link

Does it hang if you try with -K rather than --become-method ?

ansible localhost -m command -a whoami -K
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: T.I

79333207

Date: 2025-01-06 13:44:42
Score: 1
Natty:
Report link

Roy Smith's suggestion worked for me https://github.com/microsoft/vscode-python/issues/24656 downgrading the python basically it's downgrading the python extension to version 2024.22.0 which fixed it and let's the discovery succeed again

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

79333205

Date: 2025-01-06 13:43:41
Score: 4
Natty:
Report link

Restarting Mac resolved the issue

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

79333183

Date: 2025-01-06 13:31:39
Score: 0.5
Natty:
Report link

I updated my code this way; I think it's better than the previous version.

List<Model> findAndOperate({
  required double value,
  required Operations operations,
  required List<Model> mainList,
  required List<Model> selectedList,
}) {
  for (final item in mainList) {
    if (selectedList.contains(item)) {
      final itemIndex = mainList.indexOf(item);
      final changeItem = switch (operations) {
        Operations.PLUS => item.copyWith(price: item.price + value),
        Operations.MULTIPLICATION => item.copyWith(price: item.price * value)
      };
      mainList[itemIndex] = changeItem;
    }
  }
  return mainList;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kaan

79333181

Date: 2025-01-06 13:31:39
Score: 1
Natty:
Report link

After switching from Maven to Gradle, we had the same problem. We got the tests running again by navigating to Run | Edit Configurations then selecting this option:

Intellij Kotlin Run | Edit Configurations dialog

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

79333180

Date: 2025-01-06 13:30:38
Score: 1.5
Natty:
Report link

oblivisheee. I little a bit modified your compose config to build and start this docker service by itself, without requiring a surrealdb, a redis, a loki and a nats services. My compose config looks like:

services:
  assistant:
    image: ghcr.io/kiroshi-ai/kiroshi-ai-assistant:v1
    build:
      context: ./assistant
      context: .
      dockerfile: Dockerfile
      dockerfile_inline: |
        FROM debian:bookworm
    ports:
      - "3500:3500"
    depends_on:
      - surrealdb
      - redis
      - loki
      - nats

    command:
      - sleep
      - "3600"

    dns:
      - 8.8.8.8
      - 8.8.4.4
      - 1.1.1.1
      - 9.9.9.9
      - 168.63.129.16
      - 20.62.61.128
      - 20.98.195.77
      - 84.200.69.80
      - 8.26.56.26
      - 208.67.222.222
      - 10.254.254.254
    extra_hosts:
      - "host.docker.internal:host-gateway"
    networks:
      - default
      - db
      - logs
      - nats
      - nginx



networks:
  default:
    driver: bridge
  db:
    name: kiroshi-ai-db-network
  logs:
    name: kiroshi-ai-logs-network
  nats:
    name: kiroshi-ai-nats-cluster
  nginx:
    name: kiroshi-ai-nginx-network

So, in general, your compose service has access to the global network. I checked it the next way:

# ping amazon.com
PING amazon.com (205.251.242.103) 56(84) bytes of data.
64 bytes from s3-console-us-standard.console.aws.amazon.com (205.251.242.103): icmp_seq=1 ttl=230 time=202 ms
64 bytes from s3-console-us-standard.console.aws.amazon.com (205.251.242.103): icmp_seq=2 ttl=230 time=222 ms
64 bytes from s3-console-us-standard.console.aws.amazon.com (205.251.242.103): icmp_seq=3 ttl=230 time=245 ms
^C
--- amazon.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2000ms
rtt min/avg/max/mdev = 202.095/223.137/245.254/17.635 ms

Try to reproduce, and if you still haven't access to the amazon.com from docker, check do you have access to amazon from the host system.

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have a
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mchist

79333177

Date: 2025-01-06 13:29:37
Score: 5.5
Natty: 5
Report link

Looks like might be related to IJPL-8337, tried updating the IntelliJ?

https://youtrack.jetbrains.com/issue/IJPL-8337/IntelliJ-forgets-Tomcats-location-and-I-cannot-re-configure-it

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: c4da

79333171

Date: 2025-01-06 13:27:36
Score: 4
Natty:
Report link

I found the similar answer here Click Here

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

79333168

Date: 2025-01-06 13:26:35
Score: 2.5
Natty:
Report link

The dependency you are looking for does exist in your repo or it the corporate firewall might be blocking you from connecting to the repo to pull the artifact.

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

79333166

Date: 2025-01-06 13:26:35
Score: 2.5
Natty:
Report link

Start-Process -FilePath "C:\Users\pkriz\Downloads\WebDeploy_amd64_en-US.msi" -ArgumentList "/quiet /norestart"

the above should work with your Powershell admin mode

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

79333154

Date: 2025-01-06 13:22:34
Score: 1
Natty:
Report link

check your imports in "your repository",

import org.apache.catalina.User;

change it to :

import org..User

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Mounir bkr

79333147

Date: 2025-01-06 13:18:34
Score: 0.5
Natty:
Report link

I had the same problem, but in my case I'm using Material for MKDocs to deploy the website.

To solve this, I noticed that the CNAME file was not created (or copied) on the branch that the Github Pages was configured, just moving the CNAME file to the docs folder (in case of MKDocs), but there is the possibility to change the pipeline to create it on the correct branch.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Leonardo Pangaio

79333137

Date: 2025-01-06 13:14:33
Score: 2.5
Natty:
Report link

findAnomalies.php was removed in 2022. The wiki page for it still contains a script, but it no longer works.

In my case, I used AttachLatest:
Run

cd /path/to/your/wiki
maintenance/run AttachLatest

This will list what would be changed. If this shows some changes, run

maintenance/run AttachLatest --fix

If not, or it still doesn't work, you can reattach all pages via

maintenance/run AttachLatest --regenerate-all --fix
Reasons:
  • RegEx Blacklisted phrase (2): it still doesn't work
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Redjard

79333135

Date: 2025-01-06 13:13:32
Score: 4.5
Natty:
Report link

Try specifying the python interpreter inside your inventory/hosts file.

enter image description here

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

79333132

Date: 2025-01-06 13:12:32
Score: 2
Natty:
Report link

Your application may have problems resolving file paths or network addresses when executing from a mapped drive on the network. This can happen due to the mapping or drive letter not being resolved accurately within the application

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: GAURAV KUMAR GUPTA

79333131

Date: 2025-01-06 13:12:31
Score: 4
Natty:
Report link

Try searching on vsix hub website

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

79333127

Date: 2025-01-06 13:11:31
Score: 2.5
Natty:
Report link

Use regex like shown in below snapshot...extra forward slash wherever it is single slash.

Regexpression

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

79333111

Date: 2025-01-06 13:04:29
Score: 3.5
Natty:
Report link

How to connect Wkcxvgvdnngcxdrrjnrfbjre vhdxmng not sure if ngani ano hahahah eme lang Ako sa harong Tano man I was ka doman ta truck

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Karen may L Dela peña

79333096

Date: 2025-01-06 13:00:27
Score: 9 🚩
Natty: 5.5
Report link

have you found a solution to this problem, I have the same problem and also modal does not open

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (2.5): have you found a solution to this problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Coşkun Karakoç

79333095

Date: 2025-01-06 12:59:26
Score: 1.5
Natty:
Report link

The correct answer in the end for this question: The function was hanging due to not having enough resources to deploy.

It was a very simple function that was deployed on the lower end of resource groups.

If the deploys are taking very long time and failing try increasing it's resources.

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

79333089

Date: 2025-01-06 12:56:25
Score: 2
Natty:
Report link

https://blog.octalabs.com/enhancing-security-in-spring-boot-managing-multiple-jwt-issuers-b8d74e2c71c4

You can use the configurationProps to further reduce the individual issuer reference variable declarations

enter image description here

enter image description here

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Manohar

79333086

Date: 2025-01-06 12:55:25
Score: 2
Natty:
Report link

Without data we can't be very helpful.

However you can check the {ggtree} package.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
Posted by: mdag02

79333084

Date: 2025-01-06 12:55:25
Score: 1
Natty:
Report link
  1. Load the key-value pairs using the json module from the json file.
  2. Create a DataFrame using the key-value pairs, with orient="index" which means keys will be the index and the values will be the rows.
  3. Now simply create your plot from the dataframe.
import pandas as pd
import json
import matplotlib.pyplot as plt

with open('temp.json', 'r') as file:
    data_pairs = json.load(file)

dataframe = pd.DataFrame.from_dict(data_pairs, orient="index")

dataframe[:5].plot(legend=False, figsize=(3 , 3))
_ = plt.xticks(rotation=45)
dataframe[5:].plot(legend=False, figsize=(3 , 3))
_ = plt.xticks(rotation=45)

Plots

Graph For first 5 pairs

Graph For first 5 pairs

References:

  1. Orient
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Likith B

79333069

Date: 2025-01-06 12:48:23
Score: 0.5
Natty:
Report link

Make sure you dont have VPN on else it will be picking the VPN ipaddress and you can use different ip address checker service to confirm the ip addresses are the same with the one digital ocean is showing

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sunny

79333060

Date: 2025-01-06 12:44:22
Score: 0.5
Natty:
Report link

You can try pattern validation using reactive forms for eg:- export const MNC = '^([0-9][0-9][0-9]|[0-9][0-9])$'; export const MCC = /^(001|999|[2-7][0-9]{2})$/; You can use above to match for these validations.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shivang Ghosh

79333055

Date: 2025-01-06 12:43:22
Score: 1
Natty:
Report link

I am facing the issue while running the docker image, attached the Dockerfile content here :

FROM eclipse-temurin:21 RUN apt-get update VOLUME /tmp EXPOSE 8080 ADD target/spring-boot-aws-exe.jar spring-boot-aws-exe.jar ENTRYPOINT [ "java", "-jar", "/spring-boot-aws-exe.jar " ]

The error while running the docker command from git bash: Unable to access jarfile

please see below command which I have run it from GIT bash **** MINGW64 ~/Downloads/springjpa (master) $ docker images REPOSITORY TAG IMAGE ID CREATED SIZE springjpa latest dcb2d2eabe26 18 seconds ago 1.09GB eclipse-temurin 21 1f1cad73899c About an hour ago 863MB

**** MINGW64 ~/Downloads/springjpa (master) $ docker run -p 8080:8080 dcb2d2eabe26 Error: Unable to access jarfile /spring-boot-aws-exe.jar

****MINGW64 ~/Downloads/springjpa (master)

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

79333051

Date: 2025-01-06 12:41:21
Score: 1
Natty:
Report link

I was able to come up with my own answer. The code is below.

Notes:

  1. This only applies to number formatting but can easily be modified for any Styler format.
  2. pandas display options usually print the minimum number of rows and the maximum number of columns (no option display.min_columns).

I had some help from the thread StackOverflow: Merging Pandas styler object side by side.

from IPython.display import display, HTML

# Function
def style_with_truncation(df, formatter='{:.2f}', min_rows=10, max_columns=20):
    half_rows = min_rows // 2
    half_cols = max_columns // 2

    # Left half
    upper_left = df.iloc[:half_rows ,:half_cols].style.format(formatter=formatter)
    lower_left = df.iloc[-half_rows:,:half_cols].style.format(formatter=formatter)

    ellipsis_half_row_left = pd.DataFrame([['...'] * (half_cols)],
                                          index=['...'], columns=upper_left.data.columns)
    
    left_half = upper_left.concat(ellipsis_half_row_left.style).concat(lower_left)

    # Right half
    upper_right = df.iloc[:half_rows ,-half_cols:].style.format(formatter=formatter)
    lower_right = df.iloc[-half_rows:,-half_cols:].style.format(formatter=formatter)
    
    ellipsis_half_row_right = pd.DataFrame([['...'] * (half_cols)],
                                          index=['...'], columns=upper_right.data.columns)

    right_half = upper_right.concat(ellipsis_half_row_right.style).concat(lower_right)

    # Middle
    ellipsis_column = pd.DataFrame({'...' : ['...'] * (min_rows+1)}, columns=['...'])
    ellipsis_column = ellipsis_column.style
    
    # Set the Styler attribute to be shown side by side
    left_half.set_table_attributes("style='display:inline'")
    right_half.set_table_attributes("style='display:inline'")
    ellipsis_column.set_table_attributes("style='display:inline'")

    # Display the styler objects inline
    row_col_text = f"<p>{df.shape[0]:d} rows × {df.shape[1]:d} columns</p>"
    display(HTML(left_half._repr_html_() +
                 ellipsis_column.hide(axis="index")._repr_html_() +
                 right_half.hide(axis="index")._repr_html_()
                 + row_col_text))

# Example of a function call
min_rows = pd.options.display.min_rows
max_columns = pd.options.display.max_columns
style_with_truncation(df, formatter='{:.2f}', min_rows=min_rows, max_columns=max_columns)

Output: Successful truncation of a stylized DataFrame

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

79333043

Date: 2025-01-06 12:39:21
Score: 0.5
Natty:
Report link

Depending on the version and configuration of your H2 database AUTO_INCREMENT might not be supported.

See this answer for a variety of how to get the same effective result with a more modern syntax.

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

79333042

Date: 2025-01-06 12:38:20
Score: 3.5
Natty:
Report link

Adding both the file path you are editing and an entry for $DERIVED_FILE_DIR into your output files for the matching file path will fix this issue without modifying User Script Sandboxing.

The location where you add the entries for the above instructions.

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

79333039

Date: 2025-01-06 12:36:20
Score: 0.5
Natty:
Report link

I ended up with a LESS plugin. less-lib.js:

registerPlugin(
    {
        install: function (less, pluginManager, functions)
        {
            functions.add('rp', function (rpx)
            {
                return new tree.Dimension(rpx.value / 16, 'rem');
            });
        }
    }
)

Using:

@plugin "less-lib";
.my-class
{
    width: rp(20);
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Shtole