79464290

Date: 2025-02-24 16:56:38
Score: 2.5
Natty:
Report link

thanks for your response. I built the Graph query in Monday.com API playground. The query works in the body of both web and copy data activities. Unfortunately, the schema column values are repeated from the source, and I need map the column value {text} to their respective columns in Azure SQL table. I have the process working in a pipeline fine by using an initial web activity to then store the cursor into a variable which then an Until activity runs a copy activity with another web activity/set variable to continue to update the cursor until the if condition is met which is cursor results to null.

The problem I have with this method is it takes approximately 15 seconds run the each process and to write the data using the limit to 1 result per cursor (this enables the rows to be wrote separately for the repeated column values). I have a large amount of data to query and write and would take days.

My idea was to use the dataflow so i could call the source API and then flatten the JSON to be able to then re-map the schema before its wrote to the Azure SQL table.

Thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: daniel baird

79464282

Date: 2025-02-24 16:54:37
Score: 1.5
Natty:
Report link

This worked for me: Properly sidechain_compress stereo background with stereo sidechain into stereo output Try with higher ratio, like 9, to check the difference

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: luciomonter

79464273

Date: 2025-02-24 16:51:36
Score: 0.5
Natty:
Report link

From what you're describing here, Admins are customers of Super Admin. There's no obligation for the Admins' Stripe Accounts to be connected to the Super Admin since from what I could tell the Super Admin doesn't really need to create Payment Links on the Admin's behalf.

On the other hand the Partners are effectively the connected accounts that need to onboard on the Admin's platform to be able to receive payouts as the Admin's connected accounts.

Reasons:
  • No code block (0.5):
Posted by: Tarzan

79464271

Date: 2025-02-24 16:51:36
Score: 0.5
Natty:
Report link
osascript -e "tell application \'Finder\' to set desktop picture to POSIX file \'/path/3Q83dROp3Fk.jpg\'"

You put the same quotation marks for the paths as the script itself in the shell command. I hope this helps.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: anonymous

79464259

Date: 2025-02-24 16:44:35
Score: 2.5
Natty:
Report link

Redirection does a reload, but it also changes the history.

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

79464248

Date: 2025-02-24 16:36:33
Score: 2.5
Natty:
Report link

Try to follow this docker image configuration https://hub.docker.com/r/banglamon/oracle193db In two words: container should redirect ports 1521:1521 as well.

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

79464246

Date: 2025-02-24 16:35:33
Score: 3
Natty:
Report link

you can resolve this issue with add this version of react-native-reanimated: 3.17.0, this is new version of react-native-reanimated

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

79464242

Date: 2025-02-24 16:33:32
Score: 1
Natty:
Report link

The "invalidateInput" log from InputMethodManager appears when the input method is refreshed frequently, often due to focus changes or unnecessary input updates. This is more noticeable on physical devices, especially Samsung, because of how One UI handles input differently from the emulator. It can be caused by frequent focus shifts between text fields, animations triggering layout updates, or unnecessary calls to restartInput() or showSoftInput(). To reduce it, avoid unnecessary input method updates, optimize UI animations, test with another keyboard like Gboard, and review focus handling in your layouts. It’s not an error but reducing it can improve performance.

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

79464240

Date: 2025-02-24 16:31:32
Score: 3.5
Natty:
Report link

I made a Chrome extension for this because I found it too hard to do manually. It's called Firebase Storage Backup Downloader. Check it out! :DD

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Presko Presko

79464223

Date: 2025-02-24 16:23:31
Score: 1
Natty:
Report link

Here is an explicit way:

i=0 # initialize the variable to your liking
echo $i # inspect the value
let 'i=i+1' # increment by one
echo $i # inspect the value again
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: daruma

79464214

Date: 2025-02-24 16:19:29
Score: 3
Natty:
Report link

Your provided code does not show where this shortcode is used. By default, the values for "link" and "title" are null so unless you provide it with a new value the shortcode will return null.

try using [subscribe link="https://stackoverflow.com/" title="Stack Overflow"]

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hamza Kingdom Vision

79464200

Date: 2025-02-24 16:13:28
Score: 1
Natty:
Report link

I've done something of this sort by doing ray tracing (ray casting really, since I care only about the first hit). Basically you subdivide the 3D projection plane into pixels, and make a ray from your eye point through the pixel towards the plane. If the ray hits the plane, convert the ray intersection point on your plane into texture coordinates and take that as the colour of your pixel. I have used a simple procedural texture to produce the checkerboard texture on the infinite plane in my renderings below.

You'll get aliasing artefacts especially very close to the horizon line, but that can be ameliorated by doing subpixel sampling, and you can see the results as the number of subpixel samples increases.

unantialiased raycast checkerboard texture on an infinite plane

antialiased with 16 subsamples per pixel

antialiased with 256 subsamples per pixel

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

79464196

Date: 2025-02-24 16:12:27
Score: 4
Natty: 4
Report link

I am not able to run your Food Recipes app project you posted on GitHub. I have performed the steps as you specified, but I am having issues with connecting it to Firebase as well as running the project. It will be a great help if you guide me through the problem ASAP. https://github.com/MuhammadSabah/Frisp?tab=readme-ov-file

Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): I am not able to
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saajal Borhade

79464195

Date: 2025-02-24 16:12:27
Score: 3
Natty:
Report link

In my case, i was getting server session at static page, which was unavailable at build time, and throwing 501 error in production but runs locally. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rohit kumar yadav

79464193

Date: 2025-02-24 16:11:27
Score: 1.5
Natty:
Report link

The error might be in NVIC configuration for that timer. Make sure to enable the global interrupt for that timer and also set the preemption and sub priority to 0 (as it's the default priority for the sysTick timer).

Also it's better to use TIM6 or TIM7 for that purpose (if your MCU has these timers) because they are basic timers and you just need their basic features!

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

79464191

Date: 2025-02-24 16:10:27
Score: 0.5
Natty:
Report link

Answering my own question - at least for the GUI part. This Dialog here does the trick:

configuration

As soon as you add the desired test configuration the needed test points are created. Note that I added one test configuration but got two test points.

You find the dialog here:

enter image description here

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

79464189

Date: 2025-02-24 16:10:27
Score: 2.5
Natty:
Report link

"But this is rarely a useful thing to do"

These types of comments do make me smile. I kinda reinterpret_cast them as:

"But I haven't experienced a reason or need to do this"

How about easily calculating the length of a message without having to count through it? (End address - Start address = length)

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

79464188

Date: 2025-02-24 16:10:27
Score: 0.5
Natty:
Report link

In that case, you need to register the delegate manually as a listener in the step.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Mahmoud Ben Hassine

79464187

Date: 2025-02-24 16:10:27
Score: 2.5
Natty:
Report link

If you are using a JWT plugin like JWT Authentication for WP, you can define the variable JWT_EXPIRE_TIME in wp-config.php file for the timeout in seconds. For example, one day timeout would be: define('JWT_EXPIRE_TIME', '86400');

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

79464186

Date: 2025-02-24 16:09:26
Score: 10 🚩
Natty:
Report link

I am facing the exact issue! Is there any solution available yet?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution available yet?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anand Babu

79464185

Date: 2025-02-24 16:09:26
Score: 3.5
Natty:
Report link

Check the latest Hubleto release (links below) which contains many bugfixes and possibly this problem is also resolved.

https://developer.hubleto.com/download-and-install

https://www.hubleto.com/en/install

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

79464183

Date: 2025-02-24 16:09:26
Score: 1.5
Natty:
Report link

Based on answer from @Vencovsky I think today answer will be:

import { renderHook } from '@testing-library/react-hooks'
import { useGetUserDataQuery } from '../../services';

test('should working properly', () => {
  const { result } = renderHook(() => useGetUserDataQuery())
  expect(result.current.result).toBe("Idk what");
})
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Vencovsky
  • Low reputation (1):
Posted by: Kospel

79464180

Date: 2025-02-24 16:08:25
Score: 6.5 🚩
Natty: 5
Report link

Was wondering if you got anywhere with this? I am trying to do the same but struggling.

I am trying to use LDAP with MISP using the ldapAuth plugin which is supposed to be easier to implement....

https://github.com/MISP/MISP/tree/50df1c9771bf4d420cd9fb20d1f48d7fd80202e7/app/Plugin/LdapAuth

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (2): Was wondering
  • Blacklisted phrase (1): trying to do the same
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ranjb81

79464179

Date: 2025-02-24 16:08:24
Score: 1
Natty:
Report link

Use 'File' as variable type!

Add a newline after your SSH Key!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: jschnasse

79464165

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

Ran into this issue while trying to find a way to find the 30th of all months except Feb which needed to show the last day of the month. Created this formula below:

=IF(C2="FEB",EOMONTH(H5,0),CONCATENATE(MONTH(H5),"/","30","/",YEAR(H5)))

Where C2 shows the 3-letter abbreviation for the month in and H5 shows the first day of the current for the month listed in C2. The result is no matter what month and year is used in H5, if "FEB" shows in C2 it will always show me the last day of Feb or the 30th of all other months.

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

79464153

Date: 2025-02-24 16:01:23
Score: 3
Natty:
Report link

Solves the issue

This checks if the element is in a range and then echos what you want.

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

79464145

Date: 2025-02-24 15:59:22
Score: 4
Natty:
Report link

[2025-02-24 07:09:17] Chat: This chat may be used by third-party AI tools for quality assurance and training purposes. Learn more about how we use & protect your data in our Terms Of Service & Privacy Policy

Hi! Can I help you find the right plan?

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

79464137

Date: 2025-02-24 15:57:22
Score: 2.5
Natty:
Report link

setcap cap_sys_rawio,cap_dac_override,cap_sys_admin+ep works for me

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zhi Guo

79464134

Date: 2025-02-24 15:53:21
Score: 1.5
Natty:
Report link

This produced the results I needed: -

var data = await _context.Books.Include(i => i.Genre)
    .GroupBy(b => b.Genre)
    .Select(g => new { name = g.Key, id = g.Key.Id, 
     description = g.Key.Description, 
     count = g.Count() })
    .ToListAsync(); 
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: D.Man

79464133

Date: 2025-02-24 15:53:21
Score: 0.5
Natty:
Report link

The tlbinf32.dll allows listing all properties of an object, but as its name says it only works in 32 bit office (I think). See: https://jkp-ads.com/articles/objectlister.aspx

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

79464132

Date: 2025-02-24 15:53:21
Score: 6
Natty: 7
Report link

You might be interested in https://github.com/wy-z/vscode-vim-mode, thanks.🙏

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): 🙏
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: weiyang

79464126

Date: 2025-02-24 15:51:20
Score: 1.5
Natty:
Report link

You just have to change :

  apis: ['./src/routes/*.ts'],

to :

  apis: ['./src/routes/*.js'],

in your "src/utils/swagger.ts" file

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

79464119

Date: 2025-02-24 15:48:19
Score: 4.5
Natty:
Report link

Para subir una aplicación de Next en el IIS, puedes seguir estos pasos:

1- Instalar los siguientes módulos

IIS NODE

https://github.com/Azure/iisnode/releases/tag/v0.2.26

URL REWRITE

https://www.iis.net/downloads/microsoft/url-rewrite

Application Request Routing

https://www.iis.net/downloads/microsoft/application-request-routing

2- Crear una carpeta en tu disco C y pasar lo siguiente:

3- Crea un archivo server.js en tu carpeta con la siguiente información.

const { createServer } = require("http");
const { parse } = require("url");
const next = require("next");

const dev = process.env.NODE_ENV !== "production";

const port = process.env.PORT ;
const hostname = "localhost";
const app = next({ dev, hostname, port });
const handle = app.getRequestHandler();

app.prepare().then(() => {
  createServer(async (req, res) => {
    try {
      const parsedUrl = parse(req.url, true);
      const { pathname, query } = parsedUrl;

      if (pathname === "/a") {
        await app.render(req, res, "/a", query);
      } else if (pathname === "/b") {
        await app.render(req, res, "/b", query);
      } else {
        await handle(req, res, parsedUrl);
      }
    } catch (err) {
      console.error("Error occurred handling", req.url, err);
      res.statusCode = 500;
      res.end("internal server error");
    }
  })
    .once("error", (err) => {
      console.error(err);
      process.exit(1);
    })
    .listen(port, async () => {
      console.log(`> Ready on http://localhost:${port}`);
    });
});

4- Configuración en el IIS

Verificamos si tenemos instalados nuestros módulos; eso lo hacemos dando click en nuestro servidor del IIS.

enter image description here

Luego damos clic en módulos para ver el IIS NODE.

enter image description here

Luego de eso seleccionamos delegación de características.

enter image description here

y verificamos que las asignaciones de controlador estén en lectura y escritura.

enter image description here

luego creamos nuestro sitio web en el IIS y referenciamos la carpeta que creamos, damos click en el sitio web y entramos en asignaciones de controlador

enter image description here

una vez dentro le damos click en agregar asignaciones de modulo, en Ruta de acceso de solicitud ponemos el nombre del archivo js en este caso "server.js", en modulo seleccionamos iisnode y en nombre colocamos iisnode.

Le damos en aceptar; esto nos creará un archivo de configuración en nuestra carpeta llamado "web". Lo abrimos y colocamos esto:

    <!-- First we consider whether the incoming URL matches a physical file in the /public folder -->
    <rule name="StaticContent">
      <action type="Rewrite" url="public{REQUEST_URI}"/>
    </rule>

    <!-- All other URLs are mapped to the node.js site entry point -->
    <rule name="DynamicContent">
      <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
      </conditions>
      <action type="Rewrite" url="server.js"/>
    </rule>
  </rules>
</rewrite>

<!-- 'bin' directory has no special meaning in node.js and apps can be placed in it -->
<security>
  <requestFiltering>
    <hiddenSegments>
      <add segment="node_modules"/>
    </hiddenSegments>
  </requestFiltering>
</security>

<!-- Make sure error responses are left untouched -->
<httpErrors existingResponse="PassThrough" />
<iisnode node_env="production"/>

<!--
  You can control how Node is hosted within IIS using the following options:
    * watchedFiles: semi-colon separated list of files that will be watched for changes to restart the server
    * node_env: will be propagated to node as NODE_ENV environment variable
    * debuggingEnabled - controls whether the built-in debugger is enabled

  See https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config for a full list of options
-->
<!--<iisnode watchedFiles="web.config;*.js"/>-->

</system.webServer>

Detenemos nuestro sitio en el IIS actualizamos y subimos el sitio.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (2): Crear
  • Blacklisted phrase (2): crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Maria Teresa Soriano

79464112

Date: 2025-02-24 15:47:18
Score: 3
Natty:
Report link

For those wondering how it now (2025) works with standalone components, here is a nice tutorial I found out: https://youtu.be/Jv7jOrGTKd0?si=kqvGSDOzs0oA-4Vx&t=434, or text version https://www.angulararchitects.io/en/blog/testing-angular-standalone-components/

tl;dr use TestBed.overrideComponent

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: merlosy

79464107

Date: 2025-02-24 15:46:18
Score: 2.5
Natty:
Report link

To resolve the "Automation error" when using the Selenium library, you need to download and install Microsoft .NET Framework 3.5. You can download it from the official Microsoft website at the following link: Microsoft .NET Framework 3.5 Download.

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

79464106

Date: 2025-02-24 15:46:18
Score: 5.5
Natty: 5
Report link

How do we do this now, since the changes Google have implemented?

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): How do we
  • Low reputation (0.5):
Posted by: D.Man

79464102

Date: 2025-02-24 15:44:17
Score: 2.5
Natty:
Report link

This is a Dart VM issue. Dart first looks up ipv4, then after a delay looks up ipv6. Linking to github issue: https://github.com/dart-lang/sdk/issues/60192

Some workarounds are using a custom http client that manually looks up ipv6 addresses of hosts, or using a proxy in your http client.

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

79464089

Date: 2025-02-24 15:40:16
Score: 3
Natty:
Report link

Rotating on Z (roll) affects the object's local X and Y axes. When you roll (tilt on the Z-axis), your local right (Vector3.right) and up (Vector3.up) directions change. This makes your mouse look behave unexpectedly because it's based on local axes, which are no longer aligned with world space. Mouse look rotates in local space, so when tilted, X and Y behave differently. It is better to use Quaternions instead of separate euler rotations.

    Quaternion currentRotation = transform.rotation;

    // Apply rotation based on world space (avoiding local axis issues)
    Quaternion yRotation = Quaternion.Euler(0, rotationY, 0); // Yaw (left-right)
    Quaternion xRotation = Quaternion.Euler(rotationX, 0, 0); // Pitch (up-down)

    // Apply new rotation while preserving Z-axis roll
    transform.rotation = yRotation * currentRotation * xRotation;

Instead of applying Rotate() separately for each axis, this creates a single new rotation using quaternions. Please reply to this comment for further queries I will try my best to help. And Notify me if the problem has been solved I will be grateful. I apologize in advance if I was unable to understand the scenario to maximum detail.

Reasons:
  • Blacklisted phrase (1.5): Please reply
  • RegEx Blacklisted phrase (2): I will be grateful
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Saqlain Haider

79464087

Date: 2025-02-24 15:39:16
Score: 3.5
Natty:
Report link

I ended up decrypting it manually, by calling a decrypting method from a controller, instead of using an annotation

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

79464084

Date: 2025-02-24 15:39:16
Score: 1
Natty:
Report link

I was able to fix the problem by setting these configs in my GitVersion.yml:

branches:
  main:
    increment: None
    tracks-release-branches: true
mode: ContinuousDeployment
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maxime Baker

79464068

Date: 2025-02-24 15:32:14
Score: 0.5
Natty:
Report link

I worked out that there had to be some extra configuration to make this work. In my case, I was using Storyblok as a CMS, and NuxtImage includes support for that platform (along with many others).

I googled "NuxtImg Storyblok" and found this link: https://v0.image.nuxtjs.org/providers/storyblok

In short, if your provider/CMS is supported, you need to add something like this to your nuxt.config.ts:

 image: {
    storyblok: {
      baseURL: 'https://a-us.storyblok.com'
    }
  }

and then specify the provider on the NuxtImg tag:

<NuxtImg
:src="https://...image.webp"
sizes="100vw sm:50vw md:100px"
provider="storyblok"
loading="eager"
class="aspect-3/2 w-full bg-gray-50 object-cover sm:absolute sm:inset-0 sm:aspect-auto sm:h-full"
/>
Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Fijjit

79464065

Date: 2025-02-24 15:31:14
Score: 1.5
Natty:
Report link

I had a similar problem. The excel file had NaN as text but the style was double. When load in excel it showed a datetime field with custom format.

The solution was to simply save the file from excel without changing anything. After this all the NaN were gone.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Peter v.d. Vos

79464064

Date: 2025-02-24 15:30:14
Score: 2
Natty:
Report link

What worked for me was renaming the file to just .env. The DotEnv dependency can't find the file if you have given it a name like variables.env.

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

79464059

Date: 2025-02-24 15:27:13
Score: 4.5
Natty: 6
Report link

Thank you Tim. The code works great !!!

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

79464057

Date: 2025-02-24 15:27:12
Score: 0.5
Natty:
Report link

When reordering commits, shortcut to set timestamp to the timestamp of the previous commit is handy. Also, this is powershell and can be binded to GUI tool one-click command:
powershell "$prevCommitDate = git log -2 --format=%ci | Select-Object -Last 1;$env:GIT_COMMITTER_DATE = $prevCommitDate; git commit --amend --no-edit --date $prevCommitDate"

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

79464047

Date: 2025-02-24 15:25:12
Score: 2
Natty:
Report link

/mnt/driver-daemon/jars is a symbolic link to /databricks/jars so both work. But I agree with Alex it's better to use the API or the UI to install libraries.

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

79464044

Date: 2025-02-24 15:25:11
Score: 8.5 🚩
Natty: 3.5
Report link

hey i have working on the same , can you help if you got an idea

Reasons:
  • RegEx Blacklisted phrase (3): can you help
  • RegEx Blacklisted phrase (2): hey i have
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dev MuhammedSalih

79464038

Date: 2025-02-24 15:23:11
Score: 1
Natty:
Report link
SELECT
    Product_Name,
    PONo,
    SUM(Quantity) AS Total_Quantity
FROM GrnTable
GROUP BY 1, 2
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: gzzz

79464037

Date: 2025-02-24 15:23:11
Score: 1
Natty:
Report link

The last available 64-bit version of MySQL ODBC Driver is 8.0.33. You can find this version under the archive section. After installing this 64-bit driver, it will be accessible in the 64-bit ODBC window.

visual studio 2022 doesn't allow you to change the runtime to 32bit therefore this is the only option i had to use the 64bit driver.

enter image description here

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

79464028

Date: 2025-02-24 15:21:10
Score: 5.5
Natty:
Report link

What you are trying can be achieved through the "Foreach" or "While" loop.

Can you let me know the language you are using to get the JSON response? So I can provide you with docs and examples.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you let me know
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (1):
Posted by: Hamza Kingdom Vision

79464027

Date: 2025-02-24 15:21:10
Score: 2
Natty:
Report link
  1. I switched Android Studio from the default "Auto-detect proxy" to "No proxy."
  2. I cleared all cookies for that localhost domain since the browser also used to include a lot of studd in the request that was not relevant and cause second error 513 status code..
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dami

79464026

Date: 2025-02-24 15:21:10
Score: 2
Natty:
Report link

I had this same error while running a next app.

The issue was resolved when i moved src (which contained my index.js file) out of public folder making it look this way; my-app/frontend/src

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

79464025

Date: 2025-02-24 15:21:10
Score: 0.5
Natty:
Report link

You should focus more on verifying JWT tokens on the server side, as there’s no more secure way than letting clients store their own tokens. However, storing access tokens in cookies on the client side exposes them to XSS attacks. A better approach is:

For Web (React): Store the access token in memory and the refresh token in an HTTP-only, Secure cookie. For Mobile (Flutter): Store both tokens in secure storage (Keychain/Keystore) since cookies aren’t supported. Also, implement token blacklisting and cache invalidated tokens to prevent unauthorized reuse. Always use short-lived access tokens and verify them on every request.

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

79464022

Date: 2025-02-24 15:20:10
Score: 3.5
Natty:
Report link

I dont think OvenMedia Engine supports pulling RTMP. You can push RTMP and pull WebRTC..

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

79464016

Date: 2025-02-24 15:17:09
Score: 1
Natty:
Report link

Either you can change the runtime to 32bit in Visual Studio or install the 64 bit driver.

The last available 64-bit version of MySQL ODBC Driver is 8.0.33. You can find this version under the archive section. After installing this 64-bit driver, it will be accessible in the 64-bit ODBC window.

visual studio 2022 doesn't allow you to change the runtime to 32bit therefore thi is the only option i had to use the 64bit driver.

enter image description here

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

79463996

Date: 2025-02-24 15:10:07
Score: 3.5
Natty:
Report link

I found an answer thanks to the question Django REST Framework pagination links do not use HTTPS

setting proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto; in the nginx solves the problem.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ayatoo

79463994

Date: 2025-02-24 15:09:07
Score: 1
Natty:
Report link

Ok I have found a solution that worked for me...

I did the following:

Step 1: Open a new terminal and run sudo apt autoremove sudo apt clean sudo apt autoclean

Step 2: Open a new terminal and run rm -rf ~/.cache/thumbnails/* systemctl stop ufw && systemctl disable ufw

step 3: Open a new terminal and run sudo apt autoremove --purge

Step 4: Open new terminla and run sudo apt install nload iftop nload iftop

Step 5: Open new terminla and run curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 -

Reasons:
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kevin Garza

79463989

Date: 2025-02-24 15:07:07
Score: 2
Natty:
Report link

I would suggest grouping by the PO number first, and then also group by the Product Name : Group By PONo., Product Name

By adding the group by to the PONo, you accomplish the first task of grouping by respective PO.

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

79463988

Date: 2025-02-24 15:07:07
Score: 1.5
Natty:
Report link

I found that $_SERVER['REQUEST_URI'] contains the double slashes. I will use that to redirect to the single-slash-variant.

I don't get how nobody on this thread seamed to understand your problem.

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

79463984

Date: 2025-02-24 15:07:07
Score: 2
Natty:
Report link

You can also use the parameter: NewCircuitPeriod at torrc file and put there any time you want, in seconds, for TOR to renew your circui, for example:

NewCircuitPeriod 60

Normally this file is in: /etc/tor/torc

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

79463977

Date: 2025-02-24 15:05:06
Score: 2.5
Natty:
Report link

Well, it seems that changing the 24-hour time on the MacBook settings works only if you reset the simulator with Erase All Content and Settings....

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

79463973

Date: 2025-02-24 15:04:06
Score: 2.5
Natty:
Report link

You could use DeepSeek (without deep thinking), it works better than chatGPT for this particular case.

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

79463965

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

It's much easier to make these changes directly in GeneXus instead of reading and modifying the HTML.

Button.Caption = "New Caption"
&Column_var.Title = "New Title"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ealmeida

79463962

Date: 2025-02-24 15:02:06
Score: 0.5
Natty:
Report link

In my experience, the temp dataset is always left as the default value (cloud_dataflow). Instead, the necessary permissions are granted to the service account to enable the job to read data from BigQuery e.g. roles/bigquery.dataEditor role.

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

79463955

Date: 2025-02-24 15:01:05
Score: 5
Natty:
Report link

I've exactly your configuration and issue. I tried to create a C++ class that install a new QTranslator. Every C++ classes that have a localized strings can register for QEvent::LanguageChange and then emit a signal for every string. This works on C++ class side but qml files still not change. Have you find a solution?

Reasons:
  • Blacklisted phrase (2): Have you find
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Riccardo Casagrande

79463949

Date: 2025-02-24 15:00:05
Score: 0.5
Natty:
Report link

To those that replied Thank you and to any that follow, I found this:- It works in this test code and it remains to be seen if it works in my application. It is very fast too, it has gone from 100's milliseconds to a few microseconds.

from multiprocessing import Process, Lock, Value, shared_memory
import time
import numpy as np
import signal
import os

class Niao:
    def __init__(self, axle_angle, position_x, position_y, energy, speed):
        self.axle_angle = axle_angle
        self.position_x = position_x
        self.position_y = position_y
        self.energy = energy
        self.speed = speed 
        
    def move(self, new_x, new_y):
        self.position_x.value = new_x
        self.position_y.value = new_y

class SharedWorld:
    def __init__(self):
        self.lock = Lock()
        self.niao_shm = None  # Shared memory for Niao attributes

    def create_niao_shared_memory(self):
        # Create shared memory for Niao attributes
        self.niao_shm = shared_memory.SharedMemory(create=True, size=5 * 8)  # 5 double values (8 bytes each)
        return self.niao_shm

    def add_niao(self, niao):
        with self.lock:
            # Store values in shared memory
            shm_array = np.ndarray((5,), dtype='d', buffer=self.niao_shm.buf)
            shm_array[0] = niao.axle_angle.value
            shm_array[1] = niao.position_x.value
            shm_array[2] = niao.position_y.value
            shm_array[3] = niao.energy.value
            shm_array[4] = niao.speed.value

    def get_niao(self):
        with self.lock:
            shm_array = np.ndarray((5,), dtype='d', buffer=self.niao_shm.buf)
            return Niao(
                Value('d', shm_array[0]),  # Create new Value object
                Value('d', shm_array[1]),  # Create new Value object
                Value('d', shm_array[2]),  # Create new Value object
                Value('d', shm_array[3]),  # Create new Value object
                Value('d', shm_array[4])   # Create new Value object
            )
       
    def move_niao(self, new_x, new_y):
        with self.lock:
            shm_array = np.ndarray((5,), dtype='d', buffer=self.niao_shm.buf)
            shm_array[1] = new_x  # Update position_x
            shm_array[2] = new_y  # Update position_y

def niao_worker(shared_world):
    while True:
        with shared_world.lock:  # Lock access to shared data
            shm_array = np.ndarray((5,), dtype='d', buffer=shared_world.niao_shm.buf)
            print(f"Niao Worker accessing: Niao Position ({shm_array[1]}, {shm_array[2]})")
            pos_x = shm_array[1]
            pos_y = shm_array[2]
        
        # Move Niao object
        shared_world.move_niao(pos_x + 5.0, pos_y + 6.0)

        start_time = time.time()  # Record the start time
        with shared_world.lock:  # Lock access to shared data
            shm_array = np.ndarray((5,), dtype='d', buffer=shared_world.niao_shm.buf)

        end_time = time.time()  # Record the end time
        duration_microseconds = (end_time - start_time) * 1_000_000  # Convert to microseconds
        print(f"Niao_worker access shm_array {duration_microseconds:.2f} microseconds.")            
        print(f"Niao Worker accessing post update: Niao Position ({shm_array[1]}, {shm_array[2]})")
        
        time.sleep(1)  # Delay for 1 second

def worker(shared_world):
    while True:        
        niao = shared_world.get_niao()
        print(f"Worker accessing: Position ({niao.position_x.value}, {niao.position_y.value})")
        # Delay to reduce the loop's speed
        time.sleep(1)  # Delay for 1 second (adjust as needed)

def signal_handler(sig, frame):
    print("Terminating processes...")
    os._exit(0)

if __name__ == "__main__":
    signal.signal(signal.SIGINT, signal_handler)  # Handle Ctrl+C gracefully

    shared_world = SharedWorld()
    shared_world.create_niao_shared_memory()

    # Add Niao object to the shared world
    shared_world.add_niao(Niao(
        Value('d', 0.0),  # niao_axle_angle
        Value('d', 0.0),  # niao_position_x
        Value('d', 0.0),  # niao_position_y
        Value('d', 0.0),  # niao_energy
        Value('d', 0.0)   # niao_speed
    ))

    # Create and start Niao process
    niao_process = Process(target=niao_worker, args=(shared_world,))
    niao_process.start()

    # Create and start Worker process
    worker_process = Process(target=worker, args=(shared_world,))
    worker_process.start()

    # Wait for processes to finish (they run indefinitely)
    niao_process.join()
    worker_process.join()

    # Cleanup shared memory
    shared_world.niao_shm.close()
    shared_world.niao_shm.unlink()
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Peter Mason

79463933

Date: 2025-02-24 14:57:04
Score: 1
Natty:
Report link

Vite handles Public Base Path and by default base path equals to /. So you can add / to the beginning of the path, for example like /assets/fonts/GeistMono-Light.woff2 for font file located in /public folder. This will solve the warning.

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

79463930

Date: 2025-02-24 14:57:04
Score: 0.5
Natty:
Report link

The advantage of using numpy is that you can specify an optional axis argument along which the mean should be calculated:

def geom_mean(arr, axis=None):
    return np.exp(np.mean(np.log(arr), axis=axis))

It uses the identity exp(arithmetic_mean(log(values))) = geometric_mean(values)

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

79463878

Date: 2025-02-24 14:44:00
Score: 2
Natty:
Report link

I don't know much about "Polylang" plugin but upon searching "pll_get_post" might do it.

replace your code with this code and "1" with your thank you page post id.

add_action( 'wp_footer', 'mycustom_wp_footer' );
function mycustom_wp_footer() {
    if ( function_exists( 'pll_get_post' ) ) {
        // Get the translated Thank You page URL

        $page_id = 1; // Replace with the actual Thank You page ID in default language
        $new_thank_you_url = get_permalink( pll_get_post( $page_id ) );
    }
    ?>
    <script>
        document.addEventListener( 'wpcf7mailsent', function( event ) {
            location = "<?php echo esc_url( $translated_thank_you_url ); ?>";
        }, false );
    </script>
    <?php
}

Here is the link if you want to study about the function

https://polylang.wordpress.com/documentation/documentation-for-developers/functions-reference/

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): Thank You
  • Blacklisted phrase (1): Here is the link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hamza Kingdom Vision

79463875

Date: 2025-02-24 14:42:00
Score: 0.5
Natty:
Report link

I was thinking the easiest thing to do would be to delete the password sign-in method so that the user can only use Google sign-in (they could still reset their password), but I can't find a method anywhere in the docs that does this?

To delete a sign in provider, you have to do it via the Firebase Auth console. Screenshot

Firebase has also has blocking functions that trigger when a user creates an account but before they're added to Firebase. You could use beforeUserCreated to see if the email is already registered and block creation if it's found.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: En Jay Dee

79463872

Date: 2025-02-24 14:39:59
Score: 2
Natty:
Report link

You can solve this problem using the flutter_bloc_mediator package. This package allows BLoCs to communicate indirectly through a mediator, eliminating the need for direct dependencies between them.

How It Works:

Instead of manually invoking events in multiple BLoCs from another BLoC, you can define a Mediator that listens for events from one BLoC and delegates them to others.

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

79463871

Date: 2025-02-24 14:39:59
Score: 1
Natty:
Report link

Your theoretical approach using password-based encryption (PBE) for authentication introduces interesting trade-offs compared to traditional password hashing.

Below is a breakdown of the security implications, pros/cons, and recommendations:

Key Comparisons: Password Hashing vs. PBE

  1. Password Hashing (Traditional Approach) Mechanism:

A password is hashed with a salt using a secure key derivation function (KDF) like Argon2.

Validation involves rehashing the input password with the stored salt and comparing the result.

Advantages:

Simple, widely understood, and battle-tested.

No encryption/decryption overhead; minimal implementation complexity.

Explicitly designed for password storage (e.g., tools like bcrypt and argon2 handle salting and work factors).

Disadvantages:

Does not encrypt user data at rest (if that’s a requirement).

  1. Password-Based Encryption (Your Proposed Approach) Mechanism:

Derive a key from the password using a KDF (e.g., Argon2).

Encrypt arbitrary data (e.g., a fixed string or JSON blob) with this key and store the ciphertext.

Validate passwords by attempting decryption: Success implies the correct key (and password).

Advantages:

Encrypts user data at rest (if the data column contains sensitive information).

Obscures the authentication mechanism (security through obscurity, though not a robust defense).

Disadvantages:

Complexity: Requires secure encryption parameters (nonce/IV, authentication tags).

False Positives: Without authenticated encryption, garbage decryption might accidentally match expected plaintext.

Key Management: Changing passwords requires re-encrypting all data with a new key.

Performance: Encryption/decryption adds minor overhead, but KDFs like Argon2 dominate the cost.

Critical Security Considerations Authentication and Integrity:

Stream ciphers (e.g., ChaCha20) require authenticated encryption (e.g., ChaCha20-Poly1305). Without an authentication tag, attackers could tamper with ciphertexts or exploit false positives during decryption.

Known Plaintext Attacks:

If the encrypted data is predictable (e.g., "valid"), attackers could target it similarly to cracking hashes. Use randomized plaintext (e.g., a UUID) to mitigate this.

Security Through Obscurity:

If the database is breached, attackers likely also have server code (via other exploits), revealing KDF/encryption details. Do not rely on hidden algorithms for security.

Salt and Nonce Management:

Salts must be unique per user. Nonces/IVs must never repeat for the same key. Store these with the ciphertext.

Password Changes:

Updating passwords requires re-encrypting all data linked to the old key, adding complexity.

When to Use PBE Over Hashing? Use PBE if:

You need to encrypt user data at rest (e.g., sensitive user attributes).

You want to combine authentication and data encryption into one workflow.

Stick to Hashing if:

You only need to validate passwords (no data encryption requirement).

Simplicity and maintainability are priorities.

Recommendation For most applications, traditional password hashing is preferable due to:

Lower complexity and fewer failure points.

Explicit design for password storage (e.g., built-in handling of salts and work factors).

No need to manage encryption keys or ciphertexts.

If encryption at rest is required, combine both approaches:

Hash the password (for authentication).

Use a separate key (derived from the password) to encrypt data.

Example Secure Workflow (Hybrid Approach) Registration:

Generate a random salt.

Hash the password with Argon2 (or similar) and store the hash.

Derive an encryption key from the password and salt.

Encrypt user data with this key (using AEAD like AES-GCM) and store the ciphertext.

Login:

Verify the password against the stored hash.

If valid, derive the key and decrypt user data.

This separates concerns (authentication vs. encryption) while leveraging the strengths of both methods.

Final Notes Never use raw encryption without authentication (e.g., AES-CBC, ChaCha20 alone). Always use AEAD modes (e.g., AES-GCM, ChaCha20-Poly1305).

Avoid inventing custom schemes. Use established libraries (e.g., Libsodium, OpenSSL) for KDFs and encryption.

Prioritize code audits for cryptographic implementations, as subtle flaws can compromise security.

While your PBE approach is theoretically viable, it introduces risks that often outweigh its benefits unless encryption at rest is explicitly required. Stick to hashing for most use cases.

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

79463857

Date: 2025-02-24 14:34:58
Score: 4
Natty:
Report link

Use my tool, code on Go^ work witch last release 3.77: https://github.com/Chased/nexus-cli

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Дмитрий

79463848

Date: 2025-02-24 14:32:57
Score: 2.5
Natty:
Report link

Cancelling a Mono or Flux is possible if the subscription was made via subscribe(), but in that case you need to explicitly manage Subscription.

If you are using Netty's Reactor (which is usually the case with WebClient.create()), then canceling the request (dispose() or cancel()) does not immediately break the connection, but allows the connection pool to reuse it.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Can
  • Low reputation (1):
Posted by: Глеб Кудрявцев

79463843

Date: 2025-02-24 14:31:57
Score: 0.5
Natty:
Report link

If all entries are in the strict format 'M2 USD … BITC … MAD … LOSS …', where the BITC-value is always the fifth part, you can try using a simple split:

SELECT SUM(SPLIT_PART(value, ' ', 5)::float) AS bitc_sum
FROM TABLE(FLATTEN(INPUT => data))

Where data is your array with the values ​​from the question.

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

79463840

Date: 2025-02-24 14:30:57
Score: 1
Natty:
Report link

Since window.setInterval is returning a number (see http://developer.mozilla.org/en-US/docs/Web/API/Window/setInterval#return_value) we can safely cast it to number :

let onSizeChangeSetInterval = setInterval(() => {...}, 30) as any as number;

That way we can avoid any server side issues, and get rid of the Typescript error.

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

79463829

Date: 2025-02-24 14:27:56
Score: 3
Natty:
Report link

The main problem was that I put the claims in the JwtAuthenticationToken, but my OAuth2 client and resource server were in the same app with OIDC authorization and so the problem was solved after I put and view the claims from the OAuth2AuthenticationToken

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

79463828

Date: 2025-02-24 14:26:56
Score: 1
Natty:
Report link

To download the dependency, maven will need a version tag. This would be the most recent version:

<dependency>
    <groupId>com.playtika.reactivefeign</groupId>
    <artifactId>feign-reactor-spring-cloud-starter</artifactId>
    <version>4.2.1</version>
</dependency>

As mentioned by @rzwitzerloot, if you wanted to deal with the cause of the issue, you'd have to rewrite this in a reactive way, passing in success and failure callbacks to the token validation.

That may be a nontrivial rewrite, so you might want to first establish whether thread starvation is a relevant issue in your specific setup.

If you prefer the blocking style, you might get similar performance and eliminate starvation by using virtual threads.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @rzwitzerloot
  • Low reputation (1):
Posted by: Peter Aisher

79463821

Date: 2025-02-24 14:24:55
Score: 1.5
Natty:
Report link

I think we should use:

MediaQueryData.fromView(View.of(context));
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Uwe Post

79463812

Date: 2025-02-24 14:21:54
Score: 1
Natty:
Report link

Just in case not using it at all then just remove that plugin from eclipse, Quick to focus on important tasks. :-)

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

79463806

Date: 2025-02-24 14:18:54
Score: 1
Natty:
Report link

This worked for me:

import nltk nltk.download('punkt_tab')

pip install tokenizers

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

79463797

Date: 2025-02-24 14:15:53
Score: 2.5
Natty:
Report link

i know i am 9 years late , but consider moving from x to (3x + 1)/2 if x is odd insted of moving to (3x +1) because 3x + 1 will always be even if x is odd like that you will do less steps

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

79463796

Date: 2025-02-24 14:15:53
Score: 2
Natty:
Report link

You can use this API in Rapidapi to get accurate values for RSI, Bollinger bands, MACD, EMA, SMA and 20+ indicators

https://rapidapi.com/arjunravi868/api/crypto-technical-analysis-indicator-apis-for-trading

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

79463789

Date: 2025-02-24 14:12:52
Score: 5.5
Natty:
Report link

Thank you! This was exactly what I needed (simply adding "cidr" to the path expression field). I don't have the "reputations" to give you a vote though.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1.5): reputation
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kevin Lennan

79463771

Date: 2025-02-24 14:06:50
Score: 0.5
Natty:
Report link

In case this helps anyone. I'm running Jenkins locally on Windows with JDK21 and had this issue. You need to remember to open the command prompt as administrator ('Run as administrator') before starting Jenkins with a command like:

java -jar jenkins.war --httpPort=8081

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

79463760

Date: 2025-02-24 14:00:49
Score: 3
Natty:
Report link

| |
| 🔥 UNDER 25 APP LOGO [⚡] |
| |
| 🍕 25 |
| (Pizza slice with fiery "25" stamp) |
| |
| DELIVERING |
| UNDER 25 MINUTES |
| (Bold 3D text with motion blur lines) |
| |
| Neon gradient triangles ▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴
| |
| @e/nithin234 (graffiti-style tag) |
|_________________________________________________________|

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Filler text (0.5): ▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴▴
  • Filler text (0): _________________________________________________________
  • Low reputation (1):
Posted by: Nithin

79463754

Date: 2025-02-24 13:58:49
Score: 0.5
Natty:
Report link

If you are willing to type in the first two values manually then the following formula in A3 should work:

=A1*1.5

enter image description here

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

79463750

Date: 2025-02-24 13:56:48
Score: 1.5
Natty:
Report link

This can happen because of the termination of firebase client, If you are using a secondary firebase app with multiple configuration depending upon environments you need to check if the client is already terminated somewhere else before initialisation of new firebase app.

Note- Firebase app termination is a async call.

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

79463749

Date: 2025-02-24 13:56:48
Score: 2.5
Natty:
Report link

Here are Easy steps to integrate scrollview in iOS storyboard

Steps:

  1. Add ScrollView to the ViewController XIB or storyboard
  2. Add constraints to all four corners
  3. Add a UIView inside the UIScrollview and add constraints with the scrollView to all four corners.
  4. Set equal width between the UIView and the scrollView.
  5. Add height to the UIView (If the height is greater than the height of the device, It automatically becomes scrollable).

For live video watch: https://www.youtube.com/watch?v=nvNjBGZDf80

Reasons:
  • Blacklisted phrase (1): youtube.com
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hardika Vachhani

79463737

Date: 2025-02-24 13:52:47
Score: 1.5
Natty:
Report link

Icecream flover water% making Milk+flower

  1. stobary 50 40ml+90ml
  2. Mango 50 40ml+90ml
  3. Kiwi 50 40ml+90ml
  4. Lichi 50 40ml+90ml
  5. Gavava 50 40ml+90ml
  6. Black currant 50 40ml+90ml
  7. Blue Barry 50 40ml+90ml
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mayur Jayani

79463734

Date: 2025-02-24 13:51:47
Score: 1.5
Natty:
Report link

Safest way of impersonating another user: (safest because it avoids loading his startup scripts which may contain harmful code)

sudo -u somebody sh
cd
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andrzej Pieńkowski

79463733

Date: 2025-02-24 13:51:47
Score: 0.5
Natty:
Report link

You can create a composable for this grid item to use everywhere without duplicating code:

@Composable
fun GridContentItemWithDivider(
    index: Int,
    columnCount: Int,
    content: @Composable () -> Unit
) {
    val isLastColumn = (index + 1) % columnCount == 0
    Row(Modifier.height(IntrinsicSize.Min)) {
        Column(
            modifier = Modifier.weight(1f),
            horizontalAlignment = Alignment.CenterHorizontally
        ) {
            content()
            HorizontalDivider()
        }
        if (!isLastColumn) {
            VerticalDivider()
        }
    }
}

and use like this:

val columnCount = 3
LazyVerticalGrid(
    modifier = modifier.fillMaxSize(),
    columns = GridCells.Fixed(columnCount),
) {
    itemsIndexed(uiState.myitems, key = { _, item -> item.id }) { index, item ->
        GridContentItemWithDivider(
            columnCount = columnCount,
            index = index
        ) {
            MyItem(item = item)
        }
    }
}

enter image description here

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

79463726

Date: 2025-02-24 13:46:46
Score: 0.5
Natty:
Report link

I had the same problem.

When I disabled the "Avast" antivirus for 10 minutes, "composer" installed just fine.

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

79463721

Date: 2025-02-24 13:45:46
Score: 2
Natty:
Report link

You can use this API in rapid API to get accurate realtime values for RSI, Bollinger bands, MACD and 20+ indicators

https://rapidapi.com/arjunravi868/api/crypto-technical-analysis-indicator-apis-for-trading

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

79463720

Date: 2025-02-24 13:45:46
Score: 2
Natty:
Report link

As per recent versions of Jupyterlab (my guess: after version 4.0, released in June 2023), the solution by @waddles is broken due to the switch from Mathjax 2 to Mathjax 3, see version Jupyterlab 4.0 announcement.

Running the proposed code cell

%%javascript
MathJax.Hub.Config({
    TeX: { equationNumbers: { autoNumber: "AMS" } }
});

yields a Javascript Error: MathJax.Hub is undefined.

I looked at MathJax 3.2 doc which says that equation numbering should be activated by the following javascript code:

window.MathJax = {
  tex: {
    tags: 'ams'
  }
};

I've tried to implement this in a Jupyterlab code cell

%%javascript
window.MathJax = {
  tex: {
    tags: 'ams'
  }
};

and it runs without error.

However, the following Markdown cell doesn't work (doesn't work in the sense that 1) the equation is not numbered and 2) the reference is replace by (???)):

Here is equation number \eqref{eqa}:
\begin{equation}
    \label{eqa}
    a=1
\end{equation}

So I don't know what is the solution of Jupyterlab 4.0+...

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @waddles
  • Low reputation (0.5):
Posted by: Pierre H.

79463714

Date: 2025-02-24 13:43:45
Score: 0.5
Natty:
Report link

You can just use a tag like this

<template>
  <div>
    <a :href="url" target="_blank">Open Link</a>
</div>
</template>

<script>
export default {
  data() {
    return {
      url: 'https://example.com'
    };
  }
};
</script>

You can also change the target attribute to use variable or props

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

79463704

Date: 2025-02-24 13:39:44
Score: 0.5
Natty:
Report link

With Rails 8, I integrated my helper to a class by

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

79463703

Date: 2025-02-24 13:39:44
Score: 2
Natty:
Report link

The following works (thanks to a hint from @cafce25):

#![allow(unused_variables)]
use polars::prelude::*;

fn main() {
    println!("Hello, world!");
    let mut df = df! [
        "names" => ["a", "b", "c"],
        "values" => [1, 2, 3],
    ].unwrap();

    println!("{:?}", df);

    let old_name = df.get_column_names_str()[0].to_owned();
    let new_name = <PlSmallStr>::from_str("letters");
    let _ = df.rename(&old_name, new_name);
    println!("{:?}", df);
}
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • User mentioned (1): @cafce25
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Roger V.

79463697

Date: 2025-02-24 13:37:44
Score: 1.5
Natty:
Report link

WebClient is thread-safe and does not require explicit closing, as it is managed by Reactor Netty. There is no need to close it unless you are using custom resources.

Connection management in Reactor Netty: If you are using the standard WebClient, resources and connection pool are managed automatically. For custom resources, such as ConnectionProvider, they must be closed manually when the application is terminated.

Recommendations for long-lived applications: For Telegram bots, create one instance of WebClient, reuse it, and configure connection parameters via ConnectionProvider if necessary.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Глеб Кудрявцев

79463692

Date: 2025-02-24 13:36:44
Score: 1
Natty:
Report link

Your code isn't working because you used turtle.done() inside the movement functions, which stops the program after the first key press. Also, screen.onkeypress(None, key) disables the keybinding, so the keys stop working after one use. To fix it, remove both of these lines and make them simple by movement functions using pen.setx() and pen.sety() instead of getting and setting positions manually.

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