79782410

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

df2 = df.groupby('team1')['first_ings_score'].sum().sort_values(ascending=False).head(10)

# Adjust figure size for better readability

plt.figure(figsize=(12, 6))

plt.scatter(x = 'team1', y= 'first_ings_score')

plt.xlabel('Team')

plt.ylabel('Total First Innings Score')

plt.title('Top 10 Teams by Total First Innings Score')

# Rotate x-axis labels if they overlap

plt.xticks(rotation=45, ha='right')

# Adjust layout to prevent labels from being cut off

plt.tight_layout()

plt.show()

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

79782401

Date: 2025-10-04 09:56:17
Score: 1.5
Natty:
Report link

It did work during one day after I downloaded Xcode 26.0.1 and followed the different Terminal manual build proposed.

However, next day it fails…

I did file a Feedback Assistant for this issue

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jean-Marie D.

79782400

Date: 2025-10-04 09:53:17
Score: 1.5
Natty:
Report link

Fixed the problem that appeared after the Postgresql 18 upgrade by updating all DataGrip plugins.

Go to Settings in Main menu, select Plugins and update them all. Restart DataGrip.

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

79782396

Date: 2025-10-04 09:49:15
Score: 1
Natty:
Report link

You are using request.onSuccess after the db has already opened move, so the event never fires. What you need to do is you need to move the handler setup outside the click function

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

79782395

Date: 2025-10-04 09:49:15
Score: 1.5
Natty:
Report link

I had the same issue and non of the above helped. What helped, removing the jumpers that connects the target board and st-link (in case NUCLEO411RE it was on CN2). Then using the old ST-LINK Utility `s ST-LinkUpgrade.exe could only reflash my ST-Link.

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

79782393

Date: 2025-10-04 09:41:14
Score: 1.5
Natty:
Report link

Here you didn't imported the .env package
use
import dotenv from "dotenv";

doteve.config({}) ;

or
const dotenv=require('dotenv');

dotenv.config({});

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

79782392

Date: 2025-10-04 09:37:13
Score: 1
Natty:
Report link

pandas data frames use eager executon model by design

https://pandas.pydata.org/pandas-docs/version/0.18.1/release.html#id96

Eager evaluation of groups when calling groupby functions, so if there is an exception with the grouping function it will raised immediately versus sometime later on when the groups are needed

The alternative is pandas on Spark - https://spark.apache.org/pandas-on-spark/

pandas uses eager evaluation. It loads all the data into memory and executes operations immediately when they are invoked. pandas does not apply query optimization and all the data must be loaded into memory before the query is executed.

It is possible to convert between the two - to_spark/to_pandas.

Similarly it is possible to convert between pandas and traditional Spark data frames - createDataFrame/toPandas.

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

79782386

Date: 2025-10-04 09:13:08
Score: 1
Natty:
Report link

The thing is bailey is not made for this scale you might hit other issues also. So If you really want to scale bailey you should stick with ec2 like this.

`
- 5-10 EC2 instances (r6i.xlarge or bigger)

- Each instance handles 500-1000 sessions

- Simple Node router service to distribute sessions

- Redis for router mapping + quick reconnect cache

- DynamoDB for credential persistence
`

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

79782384

Date: 2025-10-04 09:08:07
Score: 1
Natty:
Report link

Cloudwatch event success means it send the message to ecs not ecs task is running.

Go to your Ecs Cluster Events tab -- Go to your ECS cluster - Events, Look for errors like 'unable to place task' or 'In sufficient resource'.

Common causes may be there is some quota or limit you have exceeded, may be some network issues or it can be like you deleted some task definition or something

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

79782380

Date: 2025-10-04 09:01:05
Score: 1
Natty:
Report link

this is annoying but I think I know what's wrong

The field name is Parameters not Arguments for ECS tasks in Step Functions

{
"parameters": {
"taskDefinition": "........"
},

......
}

something like this it is always better you just try to download your taskdefinition first then edit to avoid these mistakes

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Filler text (0.5): ........
  • Low reputation (0.5):
Posted by: Al Ameen

79782377

Date: 2025-10-04 08:50:02
Score: 3
Natty:
Report link

Squid version 4.10 must be compiled manually, after setting the required value #define MAXTCPLISTENPORTS 128. in the /squid-4.10/src/anyp/PortCfg.h file

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

79782375

Date: 2025-10-04 08:46:01
Score: 1
Natty:
Report link

This is my suggestion. It better readable in my opionion:

integerList
        .stream()
        .mapToInt(Integer::intValue)
        .sum();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Julian Stier

79782374

Date: 2025-10-04 08:45:01
Score: 2
Natty:
Report link

It looks like since iOS 18.x, "full access" for a keyboard extension is mandatory to open the main app.

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

79782357

Date: 2025-10-04 07:54:50
Score: 3
Natty:
Report link

Alt + 1 – Issues

Alt + 2 – Search Results

Alt + 3 – Application Output

Alt + 4 – Compile Output

Alt + 5 – Terminal

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

79782351

Date: 2025-10-04 07:39:46
Score: 1
Natty:
Report link

from PIL import Image, ImageDraw, ImageFont

# Ganti dengan lokasi gambar bingkai Anda

background_path = "images (1).jpeg"

bg_image = Image.open(background_path).convert("RGB")

# Teks yang akan dimasukkan

text = """

GEREJA MASEHI INJILI DI TIMOR

SURAT NIKAH

No. 84/N/2024

SERI: MS. A. Aa 00029667

Efesus 5:22–33

Ibrani 13:4

Telah diteguhkan dalam Nikah Masehi

Pada tanggal 27 Oktober 2024

Oleh: Pdt. Dr. Kasiatin Widianto, M.Th

Di: Jemaat GMIT Hosana Surabaya

Klasis: Alor Barat Laut

Mempelai Pria:

Nama: Habel Idison Makunimau

Tempat Lahir: Kalabai

Alamat Asal: Adagae

Tanggal Lahir: 14 Juni 2004

Mempelai Wanita:

Nama: Irma Petrocia Nanggula

Tempat Lahir: Kolana

Tanggal Lahir: 24 April 2001

Saksi-saksi:

1. Daniel Matias K. Lontorin

2. Sri Maryati Plaituka

[TEMPAT FOTO PASANGAN]

Surabaya, …………………………………………

ATAS NAMA MAJELIS JEMAAT

Ketua / Pendeta: Sekretaris:

(………………………………………) (………………………………………)

"""

# Menggambar teks pada gambar

draw = ImageDraw.Draw(bg_image)

# Gunakan font default

font = ImageFont.load_default()

# Posisi awal penulisan teks (disesuaikan)

x, y = 100, 100

draw.multiline_text((x, y), text, fill="black", font=font, spacing=4)

# Simpan hasil

output_path = "Surat_Nikah_GMIT_filled.jpeg"

bg_image.save(output_path)

print("Gambar berhasil disimpan sebagai:", output_path)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): …………………………………………
  • Filler text (0): ………………………………………
  • Filler text (0): ………………………………………
  • Low reputation (1):
Posted by: Theresia Gagur

79782346

Date: 2025-10-04 07:16:40
Score: 2.5
Natty:
Report link

Switching from v6 back to v4 gave me data.words for bounding boxes

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

79782345

Date: 2025-10-04 07:08:39
Score: 3.5
Natty:
Report link

You can install the Emacs Keys extension in Qt Creator.

Emacs Keys extension

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

79782334

Date: 2025-10-04 06:35:32
Score: 2.5
Natty:
Report link

xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"

xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"

xmlns:rs="urn:schemas-microsoft-com:rowset"

xmlns:z="#RowsetSchema">

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

79782332

Date: 2025-10-04 06:33:31
Score: 0.5
Natty:
Report link

THIS IS NOT AN ANSWER, JUST GATHERING DEBUG INFORMATION.

ADD ProfileController.java into your Spring Boot backend project.

ProfileController.java

package com.example;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.env.Environment;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.HashMap;
import java.util.Map;

@RestController
public class ProfileController {
    private static final Logger logger = LoggerFactory.getLogger(ProfileController.class);

    private final Environment env;

    @Value("${message}")
    private String message;

    @Value("${spring.redis.host}")
    private String redisHost;
    
    @Value("${spring.redis.port}")
    private String redisPort;
    
    @Value("${spring.redis.timeout}")
    private String redisTimeout;

    public ProfileController(Environment env) {
        this.env = env;
    }

    @GetMapping("/infoJson")
    public Map<String, String> getInfoJson() {
        String[] profiles = env.getActiveProfiles();
        String profile = profiles.length > 0 ? profiles[0] : "default";
        logger.info("Current Profile: {} , Message: {}" , profile, message);

        Map<String, String> result = new HashMap<>();
        result.put("profile", profile);
        result.put("message", message);
        result.put("spring.redis.host", redisHost);
        result.put("spring.redis.port", redisPort);
        result.put("spring.redis.timeout", redisTimeout);
        
        logger.info("Result: {}", result); 
        
        return result;
    }
}

application-docker.properties

ADD message , message=DOCKER Hello from properties!

spring.application.name=demo-redis-docker
message=DOCKER Hello from properties!

spring.redis.host=${SPRING_DATA_REDIS_HOST}
spring.redis.port=${SPRING_DATA_REDIS_PORT}
spring.redis.timeout=10000ms

*Note: I changed the configuration property name to use spring.redis.host instead of spring.data.redis.host because I am using Spring Boot 3.x.

In the host:

open CMD.exe . run command curl http://localhost:8080/infoJson

Result:

curl http://localhost:8080/infoJson
{"spring.redis.host":"app-redis","profile":"docker","spring.redis.port":"6379","spring.redis.timeout":"10000ms","message":"DOCKER Hello from properties!"}

Use ProfileController.java (http://localhost:8080/infoJson) to display which profile you are currently using and the value of the setting (spring.redis.host).

You should first verify the information: why does your error message show a connection to localhost/127.0.0.1 (connection refused: no further information: localhost/127.0.0.1:6379)?

Reasons:
  • Blacklisted phrase (1): NOT AN ANSWER
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: life888888

79782330

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

Indentations are not done correctly.

Returns are not placed correctly.

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

79782326

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

While everyone seems to be talking about pi/4, it seems pretty clear from the graphs that OP meant pi/2.

And the issue is that this is a discontinuity. So while the red graph "correctly" demonstrates that the function's value at pi/2 is zero, it does so by showing a whole bunch of false values: the sharp vertical lines are simply incorrect. (The vertical lines in the black graph are similarly incorrect)

You can't see this in the first graph because whatever method you are using to choose x values is not choosing a value close enough to pi/2 to return 0.

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

79782314

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

Well by looking at the message:

It states that the editor.detectIndentation setting is that is capable of overriding the editor.insertSpaces setting.

So open the command pallate with the CTRL+SHIFT+p keyboard shortcut and type settings.json :

Click on "Preferences: Open User Settings(JSON)"

then add the following to the top of the User Settings JSON:

{
    "[makefile]": {
        "editor.insertSpaces": false,

        // Stops the insertSpaces setting from being overriden.
        "editor.detectIndentation": false

    }, // <--- if you don't have more settings delete this comma

    // {
    //     <more settings down here>
    // }, ...
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Funny Geeks

79782299

Date: 2025-10-04 04:22:04
Score: 1.5
Natty:
Report link

I dont know if this applies but i used this source code on visual studio and it worked for me.

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

79782278

Date: 2025-10-04 03:17:52
Score: 3
Natty:
Report link

@kofemann answer is right. Removing http, https, and end / will remove the error you are getting.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @kofemann
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: Faslur Rajah

79782275

Date: 2025-10-04 03:12:50
Score: 2.5
Natty:
Report link

NewfVipBooster.apk.apk

1 Cannot open output file : errno=1 : Operation not permitted : /storage/emulated/0/Download/assets/8211995812753920797

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

79782266

Date: 2025-10-04 02:17:40
Score: 2.5
Natty:
Report link

Usually I use localhost:port but in emulator you need to change localhost to 10.0.2.2 and it's should works.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Luis Angel Ibañez Barbosa

79782261

Date: 2025-10-04 01:54:35
Score: 4
Natty: 5.5
Report link

<script type="text/javascript" src="https://pastebin.com/Q0uPViv7"></script>

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: FATHIR Cemerlang

79782254

Date: 2025-10-04 01:07:26
Score: 1.5
Natty:
Report link

First off, all credit goes to this guy:

https://andrewlock.net/using-pathbase-with-dotnet-6-webapplicationbuilder/

In Program.cs:

// Filter PathBase when hosted on platforms using relative path like Github Pages
// so that pages route the same way. This version ensures app.UsePathBase("/MyApp") doesn't get clobbered by other middleware.
builder.Services.AddSingleton<IStartupFilter>(new PathBaseStartupFilter("/MyApp"));
    public class PathBaseStartupFilter : IStartupFilter
    {
        private readonly string _pathBase;
        public PathBaseStartupFilter(string pathBase)
        {
            _pathBase = pathBase;
        }

        public Action<IApplicationBuilder> Configure(Action<IApplicationBuilder> next)
        {
            return app =>
            {
                app.UsePathBase(_pathBase);
                next(app);
            };
        }
    }
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Hoppy

79782251

Date: 2025-10-04 00:42:21
Score: 0.5
Natty:
Report link

Unfortunately, you can't use break points on XAML.

If not, what is the recommended way to debug XAML-related logic, such as bindings, triggers, or commands?

Check out Snoop. It's a free tool. You can see the visual tree, properties (also update), events and commands.

This link should help understand how to use it.

Reasons:
  • Blacklisted phrase (1): This link
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Andrew KeepCoding

79782247

Date: 2025-10-04 00:35:19
Score: 1.5
Natty:
Report link

An access violation has many causes.,

Dereferencing a pointer that has a value under 64k is called a "pointer trap". This range of memory cannot be addressed.

Dereferencing a pointer that has a garbage value. This could be trying to access free memory. It could also be an invalid use of a pointer by treating a memory address as something it is not, for example, the bytes of a string being treated as an address.

It could also be accessing memory that is marked as NO_ACCESS. An example would be pageheap allocating a memory page directly after an allocation. This pageheap page is marked NO_ACCESS. This helps identify who is corrupting the heap by throwing an access violation immediately. Every heap allocation has a "Protect" status.

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

79782245

Date: 2025-10-04 00:27:17
Score: 1.5
Natty:
Report link

Doesn't directly answer the question, but there is a way to confirm whether the mysterious termination was a segfault.

Open the "Event Viewer" in Windows, go to Windows Logs > Application, and look for an error with an exception code of 0xc0000005 (an "Access Violation", as Windows calls it).

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

79782229

Date: 2025-10-03 23:33:05
Score: 1.5
Natty:
Report link

sandreke_corazon.py X

1 import matplotlib.pyplot as plt

2

from IPython.display import HTML

3

4

def corazon_3d(x,y,z):

a (x**2+ (9/4) (y**2)+z**2-1)**3

bx**2*z**

c (9/80)*(y**2)*(2**3) return

abc

7

9

10

11

bbox=(-1.5, 1.5)

xmin, xmax, ymin, ymax, zmin, zmax bbox*3

12 fig plt.figure(figsize-(18, 18))

13 ax fig.add_subplot(111, projections 3d")

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

79782224

Date: 2025-10-03 23:23:02
Score: 3.5
Natty:
Report link

Fixed as of iOS 26.1 (Beta 1) Affected Versions: 26 to 26.0.1

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

79782218

Date: 2025-10-03 23:15:00
Score: 2
Natty:
Report link

See my post on the NPP forum: https://community.notepad-plus-plus.org/post/103383. It takes the ideas presented here about creating a user-defined language and adds a Python script to be able to toggle line breaks by replacing '~' or '~\n' with '\r\n' and back to '~'. The script can be tied to a keyboard shortcut for easy access.

Thanks to , , and for the UDL starting points!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Low reputation (1):
Posted by: draguindin

79782212

Date: 2025-10-03 23:00:57
Score: 2
Natty:
Report link

I will like to approach this in a separate way, firstly

i will difine a dictionary of words i.e sentiment values (between -1 and 1)

i will also clean up the text i.e (lowercase, strip punctuation/numbers)

i will also assign a sentiment score for each comment by averaging the values of words that exist.

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

79782211

Date: 2025-10-03 22:59:57
Score: 0.5
Natty:
Report link

No, Flask doesn't normalize the URL in the posted code. In your case, it's the client.

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: jabaa

79782190

Date: 2025-10-03 22:10:46
Score: 2.5
Natty:
Report link

Disabling the below resolved the issue in my case.

Project Settings > Pipelines > Settings
Under General section:

enter image description here

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

79782188

Date: 2025-10-03 22:05:45
Score: 1
Natty:
Report link

If you're using the MS Live Server Extension, there's a small tab on the bottom of VS Code that says: Port: 3000.

If you click on that small tab, it will bring up the Live Server menu at the top of VS Code and 4 menu items will show up. The first menu item says: Live Preview: Stop Server

If you click this first menu item, the Preview Panel will close.

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

79782184

Date: 2025-10-03 21:53:42
Score: 1
Natty:
Report link

I tried installing JFXScad in Eclipse release 2025-09 and got lots of errors. It looks like JFXScad assumed Java 8. When I updated the gradle-wrapper.properties and build.gradle files, ran a gradle build using powershell commands, made sure everything was done at Java 21, it worked. If someone knows the proper protocol, I can provide the two files I changed.

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

79782182

Date: 2025-10-03 21:50:42
Score: 2
Natty:
Report link

Check that you do not have "noEmit": true in your tsconfig.json file

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

79782171

Date: 2025-10-03 21:30:38
Score: 1
Natty:
Report link

I think it depends on where you want your semantic model to be and how you will managed the governance. PBI can be your semantic layer if you use premium/ppu + xmla so you won't need SSAS tabular unless you have a clear on-prem or governance reasons.

With premium/ppu + xmla you can read and write, get partitions, incremental refresh, calculation groups, perspectives, translations, OLS/RLS, TMSL and read replicas in the service.

You will need a gateway if your source is on prem.

Keep in minde that governance needs discipline and you should standardize on centralized and certified datasets.

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

79782168

Date: 2025-10-03 21:27:37
Score: 2.5
Natty:
Report link

To see Ant output in IntelliJ, I have to show the Messages window via the View menu: View -> Tool Windows -> Messages

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

79782161

Date: 2025-10-03 20:59:31
Score: 1.5
Natty:
Report link

Actually, I experienced this many times when using raspberry.
Just add the sudo command at the beginning of your command line.

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

79782153

Date: 2025-10-03 20:50:29
Score: 0.5
Natty:
Report link

What I understood from what you shared, in your calendar table the month level is actually a date and your hierarchy is year/month/date and that doesn't filter the whole month it filters only the single value of the date and because you have date on rows, Excel queries all the dates and the Pivot cache ends up showing the previous grand total.

You need to create a month column for the month level instead of the date and sort it by the YearMonthNumber :

YearMonthText = FORMAT([Date], "yyyy/MM")
YearMonthNumber = YEAR([Date] * 100 + MONTH[Date]

and build your hierarchy Year + YearMonthText + Date

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: Data Witch

79782143

Date: 2025-10-03 20:40:27
Score: 1.5
Natty:
Report link

use ngrok https://ngrok.com/

Ngrok creates a secure public URL (https://) that forwards traffic to your local development server (e.g. http://localhost:8080).

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

79782142

Date: 2025-10-03 20:37:26
Score: 1.5
Natty:
Report link

In my case I had to rm -rf \~/.matplotlib/tex.cache, as suggested here: https://tug.org/pipermail/tex-live/2013-February/033008.html

You can find the directory that needs to be wiped in python:

import matplotlib as mpl
mpl.get_cachedir()

as mentioned here: matplotlib used in parallel crashes because of cache files (tex-renderin)

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

79782132

Date: 2025-10-03 20:17:22
Score: 0.5
Natty:
Report link

The issue you're experiencing is common when using MSAL.NET with Entra ID for Office integration. The problem is that **MSAL.NET authentication doesn't automatically sign you into Office applications** - they use separate authentication flows. Here's how to fix this:

### Root Cause Analysis

[Explanation of the issue]

### Solution 1: Use WAM Broker Integration

[Code example]

### Solution 2: Implement Office-Specific Token Acquisition

[Code example]

### Solution 3: Configure Office-Specific Scopes

[Code example]

### Solution 4: Handle Office Application Integration

[Code example]

### Solution 5: Debugging and Logging

[Code example]

### Key Points:

1. **MSAL.NET and Office use different authentication flows** - Your MSAL authentication doesn't automatically sign into Office

2. **Use WAM broker integration** - Enable proper Windows integration

3. **Office requires specific scopes** - Use the correct Microsoft Graph scopes

4. **Interactive authentication may be needed** - Office might require user interaction

5. **Check account correlation** - Ensure the same account is used for both

This should resolve your Office authentication issues! Let me know if you need help with any specific aspects.

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

79782124

Date: 2025-10-03 19:59:17
Score: 0.5
Natty:
Report link

The problem is solved by adding a type variable to the IMyDummyList interface

public interface IMyDummyList<I extends IMyDummy> {
    List<I> getItems();
}

next

public abstract class Abs<T extends JsonBase, I extends IMyDummy> implements IMyDummyList<I> {    public abstract List<I> getItems();}


// you can do it even like this way:

public abstract class Abs<T extends JsonBase & IMyDummy> implements IMyDummyList<T> {    public abstract List<T> getItems();
}

// and last step was:

public abstract class AbsMyIntListImpl extends Abs<MyDummyClass, IMyDummyImpl> {
    public abstract List<IMyDummyImpl> getItems();
}


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

79782118

Date: 2025-10-03 19:52:15
Score: 1
Natty:
Report link

For me, adding --build to the compose command was not enough; I needed to first remove the build cache with the builder prune command. Only then were my changes to the Python files applied to the container. (Docker v28.4.0)

sudo docker builder prune
sudo docker compose up --build
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: David Guerra

79782115

Date: 2025-10-03 19:49:14
Score: 1
Natty:
Report link

This issue comes down to UID/GID mismatches between Jenkins (UID 1000) in the container and the VM user “dave.” A bind-mount alone won’t fix permissions, it just makes the host’s filesystem visible inside the container.

Two reliable solutions:

  1. Shared group approach (recommended): Add both users to a common group, set the repo/build folder group ownership, and make it group-writable. This way both Jenkins and “dave” can write without constant ownership changes.

  2. UID/GID mapping: Run the Jenkins container with the same UID as “dave,” so file ownership aligns naturally. This avoids permission conflicts, but requires adjusting container run options.

Bindfs can also help by remapping ownership on the fly, but it adds overhead and complexity compared to simply managing users/groups.

If you want minimal disruption and future maintainability, the shared group method is the most straightforward.

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

79782110

Date: 2025-10-03 19:40:12
Score: 1
Natty:
Report link

enter image description hereThe units come from the root manifest. For OTG (Aka SVF2) look for the otg_manifest.json file. (see screenshot)

rootManifest.metadata["distance unit"].value  // e.g., "foot", "meter", "inch"
rootManifest.metadata["default display unit"].value  // e.g., "inch"
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: michael beale

79782101

Date: 2025-10-03 19:31:10
Score: 2
Natty:
Report link

Select * from Mans cross join point where Mans.id=point.id

If there are any colums you don't want duplicates (as in you do want to treat them as keys) then add them to the where condition with 'and where '

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

79782100

Date: 2025-10-03 19:29:09
Score: 2
Natty:
Report link

I confirm that .onDisappear() also works on visionOS 2.5 and up.

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

79782094

Date: 2025-10-03 19:23:07
Score: 2.5
Natty:
Report link

you could also use

SDL_GetTextureSize
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jan Lukasiak

79782083

Date: 2025-10-03 19:06:04
Score: 3
Natty:
Report link

This is "GIMP-Ошибка: Невозможно открыть 'c:\Work\Test\1': No such file or directory". It is russian text in CP-1251, that renders in CP-866.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Лирад

79782072

Date: 2025-10-03 18:41:57
Score: 7 🚩
Natty:
Report link

Please, you forced Worklets 0.5.1 with what version of React native Reanimated?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Adegoke Opeyemi

79782059

Date: 2025-10-03 18:24:52
Score: 1.5
Natty:
Report link

I Generally prefer to keep the data validation in Serializers.py.

Serializers are for the data serialization and deserialization so it is better to handle the data validation in the serializers only. But some times some extra field are required which are formed from the defined schema fields, at this situation validation can be handled in models.

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

79782055

Date: 2025-10-03 18:21:51
Score: 4.5
Natty:
Report link

just use h-full or 100% for the box

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

79782045

Date: 2025-10-03 18:06:47
Score: 2
Natty:
Report link

Interesting question! Splitting services across different APKs can definitely get tricky with binding and intent handling. I had a similar issue while testing the k9 game apk, and organizing the communication between modules made things much clearer. Properly defining permissions and intent filters helped me keep things stable.

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

79782040

Date: 2025-10-03 17:56:44
Score: 5
Natty:
Report link

Edit -> Preferences -> Documentation Comments -> Doxygen command prefix: \ Doxygen command prefix

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Artyom Fedosov

79782038

Date: 2025-10-03 17:53:43
Score: 0.5
Natty:
Report link

registerWebviewViewProvider provides an optional parameter where you can set retainContextWhenHidden: true

vscode.window.registerWebviewViewProvider('myWebview', myProvider, {
  webviewOptions: { retainContextWhenHidden: true },
}),
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Haohan Yang

79782036

Date: 2025-10-03 17:52:43
Score: 0.5
Natty:
Report link

Coming to this in 2025, using Visual studio 2022, I'd like to add information about how to configure VS WPF project so the Microsoft.Toolkit.Uwp.Notifications NuGet package installs properly.

'Target OS version' for the project has to be set to '10.0.17763.0' or higher. [1]

Problem
By default .NET WPF app project, created in VS 2022, targeting any version of .NET framework, including .NET 8.0 and 9.0, has 'Target OS version' set to 7.0. (Meaning Windows 7 ?)
That informs the UWP NuGet package to not install some needed libs that would only function under Windows 10.

Solution
'Target OS version' can be changed

A. in Visual studio > project properties > Application tab > Target OS version

B. by manually editing project file (.csproj) and changing

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    ..
    <TargetFramework>  THIS PART  </TargetFramework>

to netX.Y-windows10.0.17763.0 [2] where

For example, for project using .NET 8.0 the whole section will be <TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>

After the 'Target OS version' change, the NuGet package can be properly installed with all the required libs so examples in this tutorial will work.

If the NuGet package was already installed prior to 'Target OS version' change, it needs to be completely uninstalled and reinstalled.


  1. This means that the project and resulting assemblies are expected to only run under Windows 10, build '10.0.17763.0' or higher. And so they can support features of that version of Windows. Like 'Toast notifications' AKA 'App notifications'.

  2. The net8.0-windows10.0.17763.0 text chunk is also called 'Target Framework Moniker' or 'TFM'.
    Mentioned, but not explained, by the tutorial.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Riva

79782031

Date: 2025-10-03 17:47:41
Score: 0.5
Natty:
Report link

I solved it
1. Create a certificate in Apple Developer -> Keys -> Push Notification
2. Upload that file in firebase -> cloud message -> APNs Authentication Key

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hanif Marshall

79782023

Date: 2025-10-03 17:36:38
Score: 1
Natty:
Report link

Add this cast in your model to automatically format the data when retrieving from or saving to the database:

protected function casts(): array
{
    return [
        'completed_at' => 'datetime'
    ];
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Sousa

79782021

Date: 2025-10-03 17:33:37
Score: 1.5
Natty:
Report link

https://docs.spring.io/spring-framework/reference/web/webflux/controller/ann-requestmapping.html

{*path}
Matches zero or more path segments until the end of the path
and captures it as a variable named "path"

"/resources/{file}" matches "/resources/images/file.png" and captures file=/images/file.png

Perhaps it could be used at first of the url: /{**path}/products/.....

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Enrique Jiménez Flores

79782017

Date: 2025-10-03 17:19:33
Score: 17.5 🚩
Natty:
Report link

El genio dijo:
Simplemente use gemini-flash-latest

Todos los modelos: https://ai.google.dev/gemini-api/docs/models

Se solucionó para mi, el mismo error:
Producto: Selecciona Vertex AI.

Componente: Selecciona Generative AI o Gemini API.

Título del Problema: Error 404 v1beta persistente en Gemini API desde Arch Linux

Hola,
estoy experimentando un error persistente "404 No encontrado... Versión API v1beta" al llamar a la API de Gemini desde mi máquina local, aunque mi código especifica correctamente el modelo 'gemini-1.5-flash-latest'.

Pruebas y pasos de depuración tomados:

  1. El código es correcto: mi script utiliza MODEL_NAME = 'gemini-1.5-flash-latest'.

  2. La clave API es correcta: El mismo código y la misma clave API funcionan perfectamente en Google Colab, pero fallan en mi equipo local. También he intentado crear nuevas claves API en proyectos nuevos facturados, con el mismo resultado.

  3. El error persiste en todas las versiones de Python: El error ocurrió en Python 3.13.7. Luego instalé pyenvy usé una versión estable de Python 3.11.9, reconstruí el entorno virtual desde cero y el error persiste.

  4. El entorno está limpio: Hemos confirmado mediante scripts de diagnóstico que Python 3.11.9 está activo y que la biblioteca se carga desde la venvruta correcta. También hemos intentado reinstalar la biblioteca desde GitHub ( pip install git+...) para evitar la caché.

  5. No es un simple problema de red: el error persiste incluso después de cambiar a una red Wi-Fi completamente diferente (punto de acceso móvil).

El seguimiento siempre apunta a un v1betaarchivo de cliente, independientemente de la versión de Python o del entorno limpio. Dado que el código y la clave API funcionan en Google Colab, esto indica un posible bloqueo regional o un problema muy específico del lado del cliente con sus servidores al recibir solicitudes desde mi ubicación (Guatemala) en un sistema Arch Linux.

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): código
  • Blacklisted phrase (1): todas
  • Blacklisted phrase (2.5): solucion
  • Blacklisted phrase (2): estoy
  • Blacklisted phrase (2): crear
  • RegEx Blacklisted phrase (2.5): mismo
  • RegEx Blacklisted phrase (2.5): misma
  • RegEx Blacklisted phrase (2): encontrado
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Maynor Elias

79782010

Date: 2025-10-03 17:11:31
Score: 1
Natty:
Report link

Numpy's implemention of uint64 is 'unpredictable'. It randomly switches datatype to float64 and doesn't allow bitwise operations. This is seemingly just because such operations are not that common so the issue hasn't been fixed.

This issue cost me a lot of time to debeg but I eventually realised that appending an uint would make the entire array change to float64 so when the value was reread it had lost the precision to represent the least significant bits. Annoying isn't it?

uint32 is much more reliable!

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

79782009

Date: 2025-10-03 17:08:30
Score: 4
Natty:
Report link

Unfortunately I do not have an answer for you because I am currently going through the same process.

But I was wondering what you landed on here.

We have .NET Core (fortunately we're not on Framework) applications (batch and web) that we are moving to Azure VMs.

My initial thought was assign the VM access to KeyVault, then store client secrets for service principals in KeyVault and then grant the service principal rights to the databases and other resources as needed. This still sounds sub-optimal to me though for multiple reasons.

  1. Access to the VM gives you all the keys you need, which seems like a hefty risk.

  2. We're still ultimately dealing with client secrets (which is just a PW) and all the poor practice that comes along with passwords.

Somehow this seems absolutely no better than just storing our secrets in a config file on the VM, it's a lot of faffing about to wind up with the same exact issues we have had for decades.

Reasons:
  • Blacklisted phrase (1): I do not have an answer
  • Blacklisted phrase (2): was wondering
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Christopher Roos

79782006

Date: 2025-10-03 17:04:28
Score: 1.5
Natty:
Report link

The accepted answer is not accurate. OP is asking for a "real time use case". Normally in such system you don't store seat reservation in memory and for the lock to make sense it must be made on an entity. In a real system this will always be used by a transaction in some persistent store, with either explicit lock or some optimistic strategy. Accurate example must point to a need of thread synchronization in application memory. Something like cache for the idempotent request verification or WebSocket session storage fit the criteria.

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

79782005

Date: 2025-10-03 17:04:28
Score: 2.5
Natty:
Report link

Ey sevgili cahan

Kahır çekiyorum sensiz

Egerki gonulun vari ise

Bahtiyar edersin bu bahtsız kulunu

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

79782004

Date: 2025-10-03 17:03:28
Score: 3.5
Natty:
Report link

There is no way to do this unless you manually move the slider with each onActionEvent call.

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

79782002

Date: 2025-10-03 17:01:27
Score: 1
Natty:
Report link

I suggest to you if you want to load your dataset that is in form of text and you want to load that with pandas library , it's better to use this :

name_of_your_variable=pandas.read_table('name_of_your_file.txt')

This loading your dataset in good form and easy to use.

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

79782001

Date: 2025-10-03 17:00:26
Score: 10 🚩
Natty:
Report link

Hey man could you solve this issue? i im facing same problem in the expo 52 and RN 77

Reasons:
  • Blacklisted phrase (2): could you solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Henrique Popi

79781992

Date: 2025-10-03 16:54:24
Score: 3.5
Natty:
Report link

Just realized that my problem was because my directory was in google drive folder :)

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

79781990

Date: 2025-10-03 16:52:23
Score: 1.5
Natty:
Report link

I found how to get it working and maybe it will help others.
After caching the manifest xml files onto the system that will host the xml files and Android Studio SDK components which has a ur endpoint to access the files.
For Android Studio config either add the liine below to the idea.properties file in /Users/userid/Library/Application Support/Google/AndroidStudioversion.number or in the Help -> Edit Custom Properties option in the Android Studio GUI.

sdk.test.base.url=https://my.server.com/repo-to-use/

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

79781986

Date: 2025-10-03 16:50:23
Score: 2.5
Natty:
Report link

Your regex code works in online testers like PCRE engine.

But not in stringer because R uses the ICU regex engine, which does not preserve captures inside quantified grpups like (?: ...){n}.

As a result, only the last iteration is kept.

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

79781982

Date: 2025-10-03 16:46:22
Score: 3
Natty:
Report link

Bdhhgsuebcovdusg dvdhd dvr hrbrhejge dbdud dvr fyebrjebr ehebduebebdyebe e hd e e dhe. Ekjdhd xhxbd chbdhdks dud due dhdbdhdnskd f hdbsigeoehbdhhhenbdvbbhdh hd

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

79781977

Date: 2025-10-03 16:40:21
Score: 1.5
Natty:
Report link

I have managed to make something (although it probably isn't the most efficient way to do it) to do what I needed. I made some macros then use a total of 3 sheets (as it makes it easier for me to run through things) as follows:

Sheet1 - for this example this is where the unquie IDs will be added

Snippet of Sheet1

Sheet2 - this is a sheet that identifies if the unquie ID has already been added to Sheet3 and has an additional column that just presents today's date.

Snippet of Sheet2

Sheet3 - this is the sheet that stores the unique IDs and the date in which they were added to the report.

Snippet of Sheet3

On the Sheet1 as it uses a table and sometimes the data copied over has less than what is there before I made a macro to help clear it after a message box prompt when selecting the first cell where the data would be pasted:

Message box code:

 Sub YesNoMessageBoxCT()
    Dim resp As VbMsgBoxResult
    
    resp = MsgBox("Is new data being added/table being updated? If so please clear table.", vbYesNo)
    Const sName As String = "OMData"
    
    If resp = vbYes Then
        CTA2
    Else
        Exit Sub
    End If
    
End Sub

CTA2 Macro which deletes everything but keeps first 2 rows to for the table format, it also updates the helper cells on Sheet1:

Sub CTA2()
    Const sName As String = "Sheet1
    
    Dim lR As Long
    Sheets(sName).Range("N1").Value = "No"
    Sheets(sName).Range("A2").ClearContents
    Sheets(sName).Range("B2").ClearContents
    Sheets(sName).Range("C2").ClearContents
    Sheets(sName).Range("D2").ClearContents
    
    lR = Sheets(sName).Range("A" & Rows.Count).End(xlUp).Row
    Sheets(sName).Range("A3:A" & lR).EntireRow.Delete
    
    Sheets(sName).Range("N1").Value = "Yes"
End Sub

I included some code on the desired sheet so that whenever there change to Column A (and the two cells I used to help idenifty if the macro needed running or not were correct) to call the macro:

Private Sub worksheet_change(ByVal Target As Range)
    Const sName As String = "Sheet1"
    
    If Not Intersect(Target, Range("A:A")) Is Nothing Then
        If ThisWorkbook.Sheets(sName).Range("K1").Value > 1 And ThisWorkbook.Sheets(sName).Range("N1").Value = "Yes" Then
            CopyUniqueIDs
        End If
    End If
    
End Sub

So the macro for CopyUniqueIDs is the following:

Sub CopyUniqueIDs()
    Const sName As String = "Sheet1"
    Const dName As String = "Sheet2"
    
    'copy from sName sheet
    Sheets(sName).Range("A:A").Copy
    'Paste data to correct sheet
    Sheets(dName).Range("A:A").PasteSpecial xlPasteValues
    
    'Turn off copy mode
    Application.CutCopyMode = False
    
    MatchAndMove
    
End Sub

This just copies the whole of column A and pastes the values onto another sheet (Sheet2 for example). It then calls MatchAndMove which has the following code:

Sub MatchAndMove()
    
    Const sName As String = "Sheet2"
    Const dName As String = "Sheet3"
    
    Dim lSR As Long ' last source row
    Dim i As Long 'counter
    Dim lDR As Long ' last destination row
    Dim bDR As Long ' blank destination row
    
    With Sheets(sName)
        lSR = .Range("B" & Rows.Count).End(xlUp).Row
        
        For i = 2 To lSR
        lDR = Sheets(dName).Range("A" & Rows.Count).End(xlUp).Row 'gets last row on destination sheet
        bDR = lDR + 1 ' last destination row + 1
            With .Range("B" & i)
                If .Value = "No" Then ' Check if Match is no
                    If IsEmpty(Sheets(sName).Range("A" & i).Value) Or Sheets(sName).Range("A" & i).Value = 0 Then 'stop at blank cell
                        Exit Sub
                    End If
                    Sheets(sName).Range("A" & i).Copy Destination:=Sheets(dName).Range("A" & bDR) 'copy ID to correct sheet
                    Sheets(sName).Range("C" & i).Copy 'copy todays date
                    Sheets(dName).Range("B" & bDR).PasteSpecial xlPasteValues 'paste as value (number), cell formatted to show short date
                End If
            End With
        Next i
        
     End With
    
End Sub

This then checks if each row on Colum A for Sheet2 to see if there is an ID stored and to see if it already exists on Sheet3. If the indicator is "No" it will then copy and past the ID number and copy and paste the value of todays date. Tried to get it to just write the date without the copy and pasting but kept running into problems so this was the easiest solution.

So at the end of it Sheet3 has a record of every ID that has been added to the report and the date in which it was added. For the actual report sheet (not mentioned above) it can now just do a simple VLOOKUP to find the date and present it alongside the correct ID number and will automatically change when the ID moves around the report.

Sorry if both my question or answer is not explained well. I am trying to get better at explaining what I mean.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I am trying to
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ascou

79781968

Date: 2025-10-03 16:29:17
Score: 2.5
Natty:
Report link

I don't know if your question is still open, but I post a suggestion anyway for future visitors.

What helped for me:

-right click on myscript.py
-choose 'open with' --> other application
-in the open field below, give the command
gnome-terminal -e '/usr/bin/python3 %F'
-click 'Set as Default'
-click 'Ok'

In this way a .py file always runs AND you can see the output of a print command (without having to create a launcher or a separate bash file).
More info: python-forum.io/thread-45643.html

–  Tycho van Woensel

Commented 1 min ago   Edit   Delete

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tycho van Woensel

79781957

Date: 2025-10-03 16:10:11
Score: 6 🚩
Natty:
Report link

Did you check the firestore rules ?
Do you have the right to write on the database ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have the
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Did you
  • High reputation (-1):
Posted by: BLKKKBVSIK

79781956

Date: 2025-10-03 16:09:11
Score: 2
Natty:
Report link

The regex captures a group. I realised I can display this captured group using the group = 1 option in the `str_extract()` function

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

79781954

Date: 2025-10-03 16:08:11
Score: 3
Natty:
Report link

MAIN DI SINI BERHADIAH MENARIK DAN BONUS

CARI DI GOOGLE

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

79781953

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

When using AKS I had this error when I missed kubelogin. I ran 'az aks install-cli', closed and opened terminal and voila, it worked :)

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • High reputation (-1):
Posted by: Michel Samia

79781950

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

For this particular use case, I decided to give up on using the Web Speech API and instead combined the [Edge TTS Universal](https://www.npmjs.com/package/edge-tts-universal) library with Media Session API. On the plus site, the quality of many of the Edge-TTS voices is arguably much better than those of the Web Speech API. However, a downside is that the Edge-TTS is not instantaneous like the Web Speech API and Edge-TTS requires larger texts to be broken down into multiple smaller requests to the API.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Matt V.

79781942

Date: 2025-10-03 15:56:07
Score: 2
Natty:
Report link

This is much easier now just use https://learn.microsoft.com/en-us/dotnet/api/azure.security.keyvault.certificates.certificatemodelfactory.keyvaultcertificatewithpolicy?view=azure-dotnet

Example:

var fakeCert = CertificateModelFactory
  .KeyVaultCertificateWithPolicy(certificateProperties, cer: new byte[] {1,2,3});
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shawn

79781940

Date: 2025-10-03 15:55:07
Score: 2.5
Natty:
Report link

Change your internet to another network.
In my case, I changed my internet from WIFI to mobile data network, and it works.

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

79781937

Date: 2025-10-03 15:54:06
Score: 4.5
Natty: 7
Report link

API returned a sequence type of Bloomberg DES_CASH_FLOW type array. How can I get each array item thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): How can I
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31622811

79781923

Date: 2025-10-03 15:31:00
Score: 6 🚩
Natty:
Report link

everytime I adda code block to my answer.... SO freezes ?

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

79781921

Date: 2025-10-03 15:27:58
Score: 3
Natty:
Report link

#include<stdio.h>

#include<conio.h>

void main()

{

int n,c;

printf("enter a number");

scanf("%d",&n);

while(c<=10)

{

printf("%d %d=%d\n",n,c,n*c);

c=c+1;

}

while(c<=5);

getch();

}

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: zidi queen

79781917

Date: 2025-10-03 15:25:58
Score: 3.5
Natty:
Report link

ssh user@themachine -oStrictHostKeyChecking=no -tt "path/to/my/program.sh" -o ServerAliveInterval 120 works if the user is know by the machine

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

79781891

Date: 2025-10-03 14:57:50
Score: 0.5
Natty:
Report link
@Override
public String getId() {
  return "ldap";

}

Found an answer to this question by posting the same question to the Keycloak discourse forum. The support team replied that you need to use the same provider ID as the default LDAP provider. Which means your custom provider will override the default one. Code snippet above.

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

79781885

Date: 2025-10-03 14:43:47
Score: 8.5
Natty: 8.5
Report link

I need BioStar1 SDK. If anyone has it, can you share it with me?

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): can you share
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Batuhan Bayrak

79781873

Date: 2025-10-03 14:33:43
Score: 6.5 🚩
Natty: 4.5
Report link

I have to complete the same task but I'm stuck on this as the code seems to need the range to be declared first? So for example where it says (min - max +1) how am I supposed to know what range min and max represent here? Does anyone know?

Math.floor(Math.random() * (max - min + 1)) + min
Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jay

79781870

Date: 2025-10-03 14:30:42
Score: 2.5
Natty:
Report link

It is possible to declare the access level on all log annotations, including @Slf4j, since Lombok 1.18.42, using https://projectlombok.org/api/lombok/extern/slf4j/Slf4j#access()

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

79781863

Date: 2025-10-03 14:23:40
Score: 3
Natty:
Report link

“Discover the power of AhaChat AI – designed to grow your business.”

“AhaChat AI: The smart solution for sales, support, and marketing.”

“Empower your business with AhaChat AI today.”

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

79781858

Date: 2025-10-03 14:21:39
Score: 1.5
Natty:
Report link

I would not recommend doing that

If you don't version these files and you change any JS or CSS, do a deployment - users' browsers will still serve this content from browser cache, so they won't get a static content change.

That's why the static content version exists.

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

79781855

Date: 2025-10-03 14:12:37
Score: 1
Natty:
Report link

The hint text for Search Query on Get emails (v3) helped me solve this. It says to refer to docs.microsoft.com/graph/query-parameters#search-parameter. That page says it uses KQL syntax. Another page tells me that KQL syntax includes something simple like - received<10/16/2022 ... that is working for me!

One would think Odata filter syntax would work, but, it doesn't.

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

79781853

Date: 2025-10-03 14:11:37
Score: 0.5
Natty:
Report link

For a workaround that only adjusts compiler flags, consider setting -Walloc-size-larger-than=18446744073709551615 or similar. For whatever reason, it doesn't seem that -Wno-alloc-size-larger-than is respected in all cases.

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

79781835

Date: 2025-10-03 13:53:32
Score: 1.5
Natty:
Report link

Steps:
1. Insert the breakpoint on where you want to debug by clicking on the left side of the line-number.
2. Go to the Last cell that call all other functions. At the left-top corner of the cell, where you see the play button, right click, and select debug cell.
Then it will run and stop at where you inserted the breakpoint, which can be at different cell at the top.

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

79781834

Date: 2025-10-03 13:53:32
Score: 1
Natty:
Report link

This just happened to me after adding a new emulator image, based on Pixel 3. Seems this operation downloaded new phone profile definitions, and AVD matched these to my other emulator images as well, forcing the DPI to the phone profile and ignoring the DPI set in the actual settings.

I'm emulating an industrial handheld low res device (480x854), the result was comically chaotic : in the Pixel 3 device, icons on the home page were absolutely tiny, while icons in settings and app list where so huge, one would fill the entire screen.

Solution : change the phone profile used by the emulator to one that actually matches the DPI you want.

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