79794819

Date: 2025-10-20 11:05:16
Score: 2.5
Natty:
Report link

Faced up with the same problem in Vue3 and Bootstrap 5 after bs-toaster has been plugged in. Cure it by comment out "import 'bootstrap/dist/js/bootstrap.bundle.min.js';" from main.js. Still not sure that not brake something elsewhere, but on first glance, everything works.

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

79794812

Date: 2025-10-20 10:55:14
Score: 0.5
Natty:
Report link

A clumsy attempt at reproduction:

library(maps)
library(sf)
library(ggplot2)

world1 <- sf::st_as_sf(map('world', plot = FALSE, fill = TRUE)) |>
  st_transform(crs = 4326)

ggplot() +
  geom_sf(data = world1) +
  scale_y_continuous(breaks = seq(20, 90, by = 10), labels = NULL) +
  scale_x_continuous(breaks = seq(-120, 180, by = 60), labels = NULL) +
  labs(x = NULL, y = NULL) +
  theme(
    panel.background = element_blank(),
    panel.grid.major = element_line(
      linewidth = 0.25,
      linetype = 'dashed',
      colour = "black"
    ),
    axis.ticks = element_blank(),
    axis.text = element_blank()
  ) +
  labs(caption = "Designed by Mikey Harper") +
  annotate(geom = 'text', x = I(0.5), y = I(0), label = '0°', vjust = 1) +
  annotate(geom = 'text', x = I(0.97), y = I(0.77), label = "120°E") +
  annotate(geom = 'text', x = I(0.97), y = I(0.25), label = "60°E") +
  annotate(geom = 'text', x = I(0.02), y = I(0.77), label = "120°W") +
  annotate(geom = 'text', x = I(0.02), y = I(0.25), label = "60°W") +
  annotate(geom = 'text', x = I(0.5), y = I(1), label = "180°W", vjust = 0.4) +
  annotate(geom = 'text', x = I(0.5), y = I(0.6), label = "80°N", vjust = 0) +
  annotate(geom = 'text', x = I(0.5), y = I(0.76), label = "60°N", vjust = 0) +
  annotate(geom = 'text', x = I(0.5), y = I(0.9), label = "40°N", vjust = 0) +
  coord_sf(
    crs = "+proj= ortho +lat_0=90 +lon_0=0",
    expand = FALSE,
    clip = FALSE
  )

enter image description here

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

79794811

Date: 2025-10-20 10:54:13
Score: 3
Natty:
Report link

I was wrestling with this problem some years ago. My solution was to use Panels instead of Buttons, since all i needed was the Click-event. If you REALLY want or need to use Buttons that of course is not a solution.

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mats Kristiansson

79794806

Date: 2025-10-20 10:42:11
Score: 2
Natty:
Report link

String hash = HashUtil.hash(hanaDok.getFileName());

Query query = entityManager.createQuery("SELECT o FROM OracleDok o WHERE o.fileNameHash = :hash", OracleDok.class);

query.setParameter("hash", hash);

This avoids encryption issues and is efficient for lookups.

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

79794799

Date: 2025-10-20 10:38:10
Score: 1.5
Natty:
Report link

For now code

.order_by('total DESC') 

changes to

.order_by(text('total DESC'))

and you should also import text from sqlalchemy

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Дмитрий Вавулин

79794798

Date: 2025-10-20 10:33:09
Score: 1
Natty:
Report link
  1. Go to Settings → Additional settings → Developer options

  2. Make sure these are all ON:

    • USB Debugging

    • Install via USB

    • USB Debugging (Security settings)

  3. Reboot your phone

  4. Try again:

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

79794788

Date: 2025-10-20 10:22:06
Score: 4
Natty:
Report link

My issue was that in the raw query I was using the @parameters (that were strings) surrounded with single quotes. Removing the single quotes solved my problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @parameters
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luca Francescon

79794783

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

import { useState } from 'react'; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { motion } from 'framer-motion';

export default function GameEdukasi() { const [score, setScore] = useState(0); const [question, setQuestion] = useState(generateQuestion()); const [answer, setAnswer] = useState('');

function generateQuestion() { const a = Math.floor(Math.random() * 10) + 1; const b = Math.floor(Math.random() * 10) + 1; return { text: ${a} + ${b} = ?, correct: a + b }; }

function checkAnswer() { if (parseInt(answer) === question.correct) { setScore(score + 1); } setQuestion(generateQuestion()); setAnswer(''); }

return (

<motion.h1 initial={{ y: -20, opacity: 0 }} animate={{ y: 0, opacity: 1 }} className="text-4xl font-bold mb-6 text-blue-700"> 🎮 Game Edukasi Matematika

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

79794778

Date: 2025-10-20 10:04:01
Score: 5
Natty:
Report link

05.11.1993

> ----------

05.11.1993

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • No latin characters (1):
  • Filler text (0.5): ----------
  • Low reputation (1):
Posted by: Thangapandiyan

79794777

Date: 2025-10-20 10:04:01
Score: 0.5
Natty:
Report link

Answer from Microsoft (support email):

1- Shell Launcher v2 and Assigned Access APIs modify machine-level settings under HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\ShellLauncher.

2- These changes affect all users, so Windows restricts them to SYSTEM or an elevated process with the right privileges.

3- Simply running as an Administrator often isn’t enough because the Assigned Access service enforces the policy.

Options and might work: Split Privilege Model

Use Task Scheduler with Highest Privileges

This avoids keeping a persistent SYSTEM service but still uses SYSTEM for the sensitive operation.

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

79794776

Date: 2025-10-20 10:03:00
Score: 2.5
Natty:
Report link

Just posting an update for anyone using a more recent version of the {lintr} package.

The with_defaults() function has been deprecated and is now linters_with_defaults().

The 'camel_case_linter' doesn't work for me, and I have to replace it with 'object_name_linter'.

My configuration also includes two common adjustments:

commented_code_linter = NULL: Disables warnings about commented-out code (useful for temporarily removing code like install.packages()).

line_length_linter(...): Increases the maximum line length to 120 characters from the default of 80 (far too narrow for the VS Code).

Regarding the file format, the .lintr file uses DCF syntax. The safest way to avoid parsing errors is to write the configuration on a single line (it can work when cut in multiple lines with tabulation but if you have a problem, put it in one line).

Working .lintr file (Single-Line)

linters: linters_with_defaults(object_name_linter = NULL, commented_code_linter = NULL, line_length_linter = line_length_linter(length = 120))

Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kristoff

79794772

Date: 2025-10-20 09:57:59
Score: 2
Natty:
Report link

To answer my own question, it seems like buildSrc modules share the same classloader with gradle and somehow lead to dependency leaks that end up triggering internal compiler errors. So the solution I chose to go with was to create a separate module (i.e. build-logic) and then include that into my project, that way the build-logic module gets its own classloader and such issues are avoided.

So the structure looks something like:


.
├── build-logic/
│   ├── build.gradle.kts
│   ├── settings.gradle.kts
│   └── src/main/kotlin/com/package/specifics/JacocoCoveragePlugin.kt
├── app/
│   └── build.gradle
├── settings.gradle.kts
└── build.gradle.kts

And then in the root project's build.gradle.kts file, I just include it via includeBuild("build-logic").

If anyone has knowledge of the specifics please share it!

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Stelios Papamichail

79794763

Date: 2025-10-20 09:44:55
Score: 3.5
Natty:
Report link

Might be related to this issue.

  1. Marking the directory with venv as "excluded"

  2. If it still hasn't been resolved, restart (I had tried)

I first saw this method here: https://intellij-support.jetbrains.com/hc/en-us/community/posts/22639845844498-Unexpected-type-s-int-Possible-type-s-SupportsIndex-slice-with-PyCharm-2024-3

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

79794759

Date: 2025-10-20 09:38:53
Score: 3.5
Natty:
Report link

Using the VS Code plugin Css Module Emmet JSX/TSX

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

79794755

Date: 2025-10-20 09:36:53
Score: 1.5
Natty:
Report link

Combining micro-frontends and SSR creates a contradiction.

SSR, requires Unified server-side rendering that is incompatible with Fragmented and isolated architectures

MFE, requires Isolated and independent applications that is incompatible withCoordinated server-side rendering

You can't simultaneously have, independent deployments, independent runtimes, and

a consistent and synchronized SSR.

Either choose one (MFE = independence), or choose the other (SSR = performance and SEO).

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: emanuele.galeotti

79794748

Date: 2025-10-20 09:23:49
Score: 1
Natty:
Report link

Seems that you have to add the Attribute [HttpResult] to the IActionResult property.

As in the Microsoft docuentation you mentioned dotnet-isolated-process-guide - Multiple output bindings.

public class OutputBindingType
{
    [HttpResult]
    public IActionResult HttpResponse { get; set; }
        
    [EventGridOutput(TopicEndpointUri = "SoftwareApplicationsTopicUri", TopicKeySetting = "SoftwareApplicationsTopicKey")]
    public EventGridEvent EventGridResponse { get; set; }
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bob Lokerse

79794742

Date: 2025-10-20 09:12:46
Score: 2.5
Natty:
Report link

Nowadays it's not possible and only thing you can do - open your application settings inside system settings. Below iOS 12 there was workaround with App-prefs, but since it's is private api your app will be rejected from App Store.

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

79794741

Date: 2025-10-20 09:12:46
Score: 1
Natty:
Report link

Try to compare the Row of the DataRowView :

public static int GetIndex(this DataRowView rowView)
{
    for (int i = 0; i < rowView.DataView.Count; i++)
    {
        if (rowView.DataView[i].Row == rowView.Row)   // <-----
            return i;
    }

    return -1;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Athansios Savvidis

79794739

Date: 2025-10-20 09:11:45
Score: 1
Natty:
Report link

The file history is not visible entirely in TIMELINE, but if you right-click on the file, then select File History | Open File History (with the Git Lens plugin), then everything can be displayed:

enter image description here

whereas it shows an error in the normal mode:

enter image description here

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

79794731

Date: 2025-10-20 08:58:42
Score: 2
Natty:
Report link

Moving away from publishing to folder on OneDrive to a local folder on the C: drive seems to work.

I also tried to change the rights to write to a folder on OneDrive, but it seems that applying new settings by unchecking "read only" folder attribute is not accepted.

Giving ALL users full rights does also not work.

Running VS in administrator mode also does not solve the problem.

So my conclusion is that ONEDRIVE is the BAD GUY!

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

79794729

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

Thank you. The webshot then magick method worked for me. I encountered a message to install phantomjs so I followed that. So now the first part is:
webshot::install_phantomjs()
webshot::webshot("presentation.html", "presentation.png")

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

79794728

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

Upgrading to
<PackageReference Include="MSTest.TestAdapter" Version="4.1.0-preview.25514.12" /> <PackageReference Include="MSTest.TestFramework" Version="4.1.0-preview.25514.12" />
fixed the issue as @Youssef13 suggested above.

I also had to change from Sdk="MSTest.Sdk/x.y.z" to Sdk="Microsoft.NET.Sdk" since the first one seems to overwrite packages even if and update element is added to the project file:
<ItemGroup> <PackageReference Update="MSTest.TestAdapter" Version="4.1.0-preview.25514.12" /> </ItemGroup>
That behavior is a bit unpredictable but not related to this issue.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Youssef13
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mattias Ström

79794725

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

In my case, I deleted the pubspec.lock file and then ran:

flutter pub get

This regenerated the lock file and resolved the dependency issues.

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

79794723

Date: 2025-10-20 08:46:39
Score: 2.5
Natty:
Report link

Installing from my main terminal (instead of vs code's terminal) worked for me.

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

79794720

Date: 2025-10-20 08:41:38
Score: 2.5
Natty:
Report link

as far as i know if you are (at the moment you are capturing the image) using v4l2 you can adjust the brightness and contrast of the camera itself(unless you are using pipewire which then im not even sure what to do)

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

79794705

Date: 2025-10-20 08:06:30
Score: 3.5
Natty:
Report link

I think your frontend did not save the token.

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

79794682

Date: 2025-10-20 07:26:18
Score: 0.5
Natty:
Report link

Try to restore the UID for that property in the model JSON file (and make otherwise sure it's sound, like undoing adding it to the retired UID list). Then run the generator again.

Background: If you remove a poperty from the model it's data is not actually deleted from objects when "upgrading" the database to the new model. Only once you put an existing object the existing data would get overwritten.

Reasons:
  • No code block (0.5):
Posted by: Uwe - ObjectBox

79794679

Date: 2025-10-20 07:24:18
Score: 3.5
Natty:
Report link

Maybe it will help you make voip app with ionic https://ionicvoip.com/

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

79794677

Date: 2025-10-20 07:21:17
Score: 0.5
Natty:
Report link

I just successfully installed the project with the following settings:

[tool.uv.build-backend]
module-name = "a_library.a_module"
namespace = true

I’ve been aware of this namespace option the whole time, but I’d been avoiding it because the documentation scared me with this warning:

Using namespace = true disables safety checks. Using an explicit list of module names is strongly recommended outside of legacy projects.

But now, I’m fine with using this option. Sorry for bothering you.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nattōsai Mitō

79794676

Date: 2025-10-20 07:20:16
Score: 3
Natty:
Report link

Actually you do not need to change VM type. You can increase the memory with editing the VM, but it has to be stopped.

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

79794673

Date: 2025-10-20 07:12:14
Score: 0.5
Natty:
Report link

Since Sept, 2025

Node24

https://github.com/actions/setup-node/releases/tag/v5.0.0

You can now write the following, wish will take node 24 by default

- name: Set up Node js
  uses: actions/setup-node@v6
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Raphaël Balet

79794670

Date: 2025-10-20 07:04:12
Score: 1
Natty:
Report link

Use projects.setItems(data_provider); instead.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Leif Åstrand

79794656

Date: 2025-10-20 06:50:08
Score: 4
Natty:
Report link

Yes, this can likely be done with a Docusign CLM Document Smart Rule, but it requires a more advanced configuration using XPath within the Rename action to dynamically capture the parent folder name and retain the original document name.

Your previous attempt failed because the "Rename" action, when used with a literal value, completely replaces the document name instead of appending or prepending to it.

You can refer to this link for an example: https://community.docusign.com/clm-112/rename-documents-using-attributes-2845

Thanks and regards,

Mahmoud

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mahmoud Essam

79794651

Date: 2025-10-20 06:44:06
Score: 2.5
Natty:
Report link

Fantastic post! Really helpful for anyone exploring Windows 11 upgrades and software options. 👉 I highly recommend checking out the website link in my profile for more tips and tools.

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

79794647

Date: 2025-10-20 06:36:04
Score: 4
Natty:
Report link

I noticed when I started debugging, at 53 seconds the error was like this

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

79794642

Date: 2025-10-20 06:30:03
Score: 1.5
Natty:
Report link

I had the same issue in my case i have installed SignalR NuGet Package in my Blazor Server Project as you know SignalR already exists in the Blazor Server due to that conflict i got that error.

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: Waqas Ahmad

79794626

Date: 2025-10-20 05:49:53
Score: 2.5
Natty:
Report link

iTerm2 has a variable $TERM_SESSION_ID which looks like this:

% echo $TERM_SESSION_ID
w1t0p0:C2EA7462-6ED9-479B-A323-5796ABCCABE8

From what I can figure out:

I didn't investigate "p0" but I presume something like process?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Claude

79794624

Date: 2025-10-20 05:46:53
Score: 1
Natty:
Report link

The issue is related to privileges between two different schemas.

When you use a LEFT JOIN,

Oracle needs to verify access to all referenced tables at compile time,

and the schema that owns the view (A) must have direct privileges

on the tables it joins from schema B

not just through a grant chain or a WITH GRANT OPTION.

Here’s how to fix it:

Option 1 – Grant access directly from B to A

Log in as schema B (the table owner) and run:

GRANT SELECT ON table1 TO A;

GRANT SELECT ON table2 TO A;

-- repeat for each table used

Then recompile the view:

ALTER VIEW A.view_name COMPILE;

You don’t need to use WITH GRANT OPTION unless schema A also needs to re‑grant those privileges to others.

Option 2 – Create Synonyms in A

In schema A, create synonyms to make references cleaner:

CREATE SYNONYM table1 FOR B.table1;

Then recompile the view or recreate it.

This helps Oracle resolve object names easily and prevents the ORA‑01720 privilege error during compile time.

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

79794619

Date: 2025-10-20 05:23:48
Score: 1.5
Natty:
Report link

If anyone wants to get a Google Reviews,

Before buying from any site of the online platform, the buyers first look at the reviews on Google. If Google Reviews are present when buyers visit your site, the sales of theat site will increase at a faster rate. So increase the amount of sales through Google Reviews on your site.

Key features of Google Reviews

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Donald K. Campbell

79794608

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

You can write a simple SQL statement that will bring only the 20, 30, etc. first records, and than write Visual Basic code for the export:

Me.RecordSource= "SELECT TOP 30 * FROM Customers ORDER BY CustomerID"  
DoCmd.OutputTo acOutputReport, "FormName", acFormatPDF, "pdfPath"  
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: דוד קלדרון

79794603

Date: 2025-10-20 04:41:37
Score: 8.5
Natty: 7.5
Report link

I hope you’re doing well. I just wanted to check if you were able to find any solution yet?

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

79794598

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

I have found the issue . The cause is <View> and <BottomSheet> are react native components , not MapView overlays . on IOS , MapView accepts react subviews (and ignores unsupported once ) , but on android MapView is a native SurfaceView , which cannot have nested React views unless they're valid map overlays like <Marker> , <Circle> etc .

so to avoid this UI error on android simply do not put nested views inside the MapView . and by doing so my component mounts on android without an issue .

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

79794578

Date: 2025-10-20 02:32:11
Score: 1.5
Natty:
Report link

The highest voted solution doesn't work for me. I am using version 6.5.4.
the Inno Setup keep generating the manifest with "asInvoker".

My solution is:

1, Use "Resource Hacker" to manually edit the file "SetupLdr.e32" from Inno Setup installation folder, usually it would be "C:\Program Files (x86)\Inno Setup 6" (make sure you have a backup), choose the "Manifest", change it from "asInvoker" to "requireAdministrator", compile and save, then override the file back.

2, Add the "DisablePrecompiledFileVerifications=setupldre32" under [Setup] Section, to avoid Inno compile issue(ask Inno to ignore it being changed outside).

3, rebuild.

Reasons:
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ming Tong

79794576

Date: 2025-10-20 02:19:08
Score: 2
Natty:
Report link

I removed screen.blit(screen, ...) and it worked accordingly

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mikkimat5412

79794568

Date: 2025-10-20 01:44:00
Score: 1.5
Natty:
Report link

Answering my own question.

Everything works by replacing transfrom_aggregate() by transform_joinaggregate()!

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

79794552

Date: 2025-10-20 00:46:49
Score: 3
Natty:
Report link

user207421 has answered my question. No other method needs to be overridden besides run().

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): user207421
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Frank Serkland

79794551

Date: 2025-10-20 00:45:49
Score: 1
Natty:
Report link

@musicamante Ok thanks for steering me away from QComboBox. Got a working solution "starting from scratch" and it's probably quite a bit easier to code up than the QComboBox contortions - and the two issues in the original question are resolved. Will do some more styling and sizing and such, but:

enter image description here

The code:

# heavily adapted from Google AI Overview: 'pyqt popup under button'

from PyQt5.QtWidgets import (
    QApplication, QWidget, QVBoxLayout, QTreeView,QMainWindow,QPushButton,QDialog
)
from PyQt5.QtGui import QStandardItemModel, QStandardItem
from PyQt5.QtCore import QModelIndex,Qt,QPoint

class MyPopup(QDialog):
    def __init__(self, parent=None):
        super().__init__(parent)
        self.parent=parent

        # Create the TreeView for the dropdown popup
        self.tree_view = QTreeView(self)
        self.tree_view.setHeaderHidden(True)  # Hide the header to look like a simple tree
        self.tree_view.setSelectionMode(QTreeView.SingleSelection)
        self.tree_view.setEditTriggers(QTreeView.NoEditTriggers)
        self.tree_view.setExpandsOnDoubleClick(False)
        self.tree_view.setAnimated(True)

        self.tree_view.setFixedHeight(300)

        # Create a model for the tree view
        self.model = QStandardItemModel()
        self.tree_view.setModel(self.model)

        self.tree_view.entered.connect(self.enteredCB)
        self.tree_view.clicked.connect(self.clickedCB)
        self.tree_view.expanded.connect(self.expandedCB)
        self.tree_view.collapsed.connect(self.collapsedCB)

        self.setWindowTitle("Popup Dialog")
        self.setWindowFlags(Qt.Popup)
        layout = QVBoxLayout(self)
        layout.setContentsMargins(0,0,0,0)
        layout.addWidget(self.tree_view)
        self.setLayout(layout)
        self.tree_view.setMouseTracking(True)

    def enteredCB(self,i):
        print('entered')
        self.setFullLabel(i)

    def expandedCB(self,i):
        print('expanded')
        self.collapseOthers(i)

    def collapsedCB(self,i):
        print('collapsed')

    def clickedCB(self,i):
        print('clicked')
        self.setFullLabel(i)
        self.close() # close the popup

    def setFullLabel(self,i):
        # Get the full hierarchy path for display
        current_index = i
        path_list = [self.model.data(i)]
        while current_index.parent().isValid():
            parent_index = current_index.parent()
            parent_text = self.model.data(parent_index)
            path_list.insert(0, parent_text)
            current_index = parent_index
        # Join path with a separator and set the text
        self.parent.button.setText(' > '.join(path_list))

    def populate(self, data):
        """Populates the tree model from a dictionary."""
        self.model.clear()
        for key, children in data.items():
            parent_item = QStandardItem(key)
            for child_text in children:
                child_item = QStandardItem(child_text)
                parent_item.appendRow(child_item)
            self.model.appendRow(parent_item)
        for r in range(self.model.rowCount()):
            for c in range(self.model.columnCount()):
                txt=self.model.item(r,c).text()
                print(f'row {r} col {c} : {txt}')

    def collapseOthers(self,expandedIndex):
        QApplication.processEvents()
        print('collapse_others called: expandedIndex='+str(expandedIndex))
        def _collapse_recursive(parent_index: QModelIndex,sp='  '):
            for row in range(self.model.rowCount(parent_index)):
                index = self.model.index(row, 0, parent_index)
                item=self.model.itemFromIndex(index)
                txt=item.text()
                print(sp+f'checking r={row} col=0 : {txt}')
                if index.isValid() and index!=expandedIndex:
                    print(sp+'  collapsing')
                    self.tree_view.collapse(index)
                    # self.tree_view.setExpanded(index,False)
                    
                    # Recursively process children
                    if self.model.hasChildren(index):
                        _collapse_recursive(index,sp+'  ')

        # Start the recursion from the invisible root item
        _collapse_recursive(QModelIndex())
        QApplication.processEvents()

class MainWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.setWindowTitle("Main Window")
        self.setGeometry(100, 100, 400, 300)

        central_widget = QWidget()
        self.setCentralWidget(central_widget)
        layout = QVBoxLayout(central_widget)

        self.button = QPushButton("Show Popup", self)
        self.button.clicked.connect(self.show_popup_under_button)
        layout.addWidget(self.button)

        self.popup = MyPopup(self)

    def show_popup_under_button(self):
        # Get the global position of the button's top-left corner
        button_pos = self.button.mapToGlobal(QPoint(0, 0))

        # Calculate the desired position for the popup
        popup_x = button_pos.x()
        popup_y = button_pos.y() + self.button.height()

        # Sample hierarchical data
        data = {
            "Fruits": ["Apple", "Banana", "Orange"],
            "Vegetables": ["Carrot", "Broccoli", "Spinach"],
            "Dairy": ["Milk", "Cheese", "Yogurt"]
        }
        
        self.popup.populate(data)

        self.popup.move(popup_x, popup_y)
        self.popup.exec_() # Show as a modal dialog

if __name__ == "__main__":
    app = QApplication([])
    window = MainWindow()
    window.show()
    app.exec_()
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @musicamante
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tom Grundy

79794544

Date: 2025-10-20 00:29:45
Score: 0.5
Natty:
Report link

I think what's happening is you might be moving the mouse and clicking at the same time (unbeknownst to you). According to MOUSE_EVENT_RECORD, a MOUSE_MOVED (0x0001) + DOUBLE_CLICK (0x0002) = 0x0003, so it adds up the event codes into pme->dwEventFlags and never goes into your switch case. My suggestion would be to remove your switch and keep just the if ( pme->dwButtonState & FROM_LEFT_1ST_BUTTON_PRESSED ) check.

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

79794531

Date: 2025-10-19 23:26:32
Score: 3.5
Natty:
Report link

I know that this an older question, but in case someone lands here looking for a solution to the same problem, see here:

https://github.com/immich-app/immich/discussions/3118#discussioncomment-11025563

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

79794519

Date: 2025-10-19 23:04:27
Score: 3
Natty:
Report link

Hello Instagram Support Team,

I permanently deleted my Instagram account last year, which contained important personal photos and videos.

I understand it might be difficult, but I would like to know if there is any possibility to recover my deleted account or at least access some of the uploaded content.

Previous account details:

- Username: [bavar.t]

- Email linked to account: [[email protected] &

[email protected]]

- Approximate deletion date: [3&4/24]

Thank you for your help.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): I would like to know
  • Whitelisted phrase (-0.5): Thank you for your help
  • No code block (0.5):
  • Low reputation (1):
Posted by: Behnam Mohammade

79794515

Date: 2025-10-19 22:48:22
Score: 1
Natty:
Report link

You need to add double quote around %1 to get the whole argument if it's a string.

@echo off  
:loop  
echo %1  
shift  
if "%~1" neq "" goto :loop

When you run it you will see the result like this:

D:\2\test2>arg1 abc "abc def"  
abc  
"abc def"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ben Mar

79794508

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

Two command same :

1st:

git checkout -b new-branch-name

2nd:

git switch -c NEW_BRANCH_NAME
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sakhawat Hossain Sohel

79794504

Date: 2025-10-19 21:52:10
Score: 0.5
Natty:
Report link

this is a common issue in deployment. it works for me when I'll update the pip and wheel:

python -m pip install --upgrade pip setuptools wheel

I hope this fix the issue.
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jajoul

79794497

Date: 2025-10-19 21:26:04
Score: 1
Natty:
Report link

You dont need to think about direction, instead of current floor of the elevator you should chose the destination floor.
The order shoud be unocupied > ocupied
if both unocupied choose current.closer
if both at the same floor choose elevator 1 (just a arbitrary because it wont matter)
if both occupied choose destination.closer
if elv1.destination = elv2.destination choose 1.

you could use a counter, once goes elv1, then elv2, then 1, then 2. so both elevators get used more evenly
this logic also lacks if 2 or more people press the button at the same time... anyway good luck

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Samuel Alexandrino de Oliveira

79794496

Date: 2025-10-19 21:20:03
Score: 2.5
Natty:
Report link

Also have a bunch of these. Annoyingly the default slide timer interval is five seconds which is much too long. I did note that in addition to a 24 MHz crystal it has a regular 32.768 kHz one which may be a potential modification eg swap it out for a 450kHz remote crystal.

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

79794492

Date: 2025-10-19 21:12:01
Score: 2
Natty:
Report link

You can not "copy" a media by a bot, but you can forward it removing the sender's name and editing it's description afterwards.
There is also another way to download the media in a data base and upload it manually.

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

79794477

Date: 2025-10-19 20:27:52
Score: 2
Natty:
Report link

if your still interested, it is possible to intercept the:

<script src="http://ajax.aspnetcdn.com/ajax/4.6/1/WebUIValidation.js" type="text/javascript"></script>

With a globalresponsefilter, replacing it with your own.

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

79794463

Date: 2025-10-19 19:54:44
Score: 0.5
Natty:
Report link

In my case the reason was different: it did not show anything until I selected the checkbox "Show standard Jenkins list at the top of the page" in the "Dashboard Portlets" section.

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

79794452

Date: 2025-10-19 19:34:38
Score: 2.5
Natty:
Report link

You can, but need extract private keys generated from the memory ram of the client: Reading Public/Private Key from Memory with OpenSSL

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

79794447

Date: 2025-10-19 19:26:36
Score: 4
Natty:
Report link

I just used PG Admin to create snapshot and restore it in new database in new AWS Lightsail account.enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roman Lauri Tuomisto

79794443

Date: 2025-10-19 19:13:34
Score: 0.5
Natty:
Report link

Selenium can only access a HTML or XML document as a tree structure wherein each node is an object representing a part of the document. PDF does not offer this nor does it work in this way.

The browser has a PDF reader engine that paints the contests to the pdf-viewer element. This renderer draws the PDF onto a canvas (or a shadow DOM internal element) — a painted surface, not HTML. You will need to use a different tool such as a PDF parsing library that is able to piece through this and read its content and unfortunately Selenium was not designed for this.

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

79794437

Date: 2025-10-19 19:00:31
Score: 3
Natty:
Report link

Because React is in bed with cloud providers and Zuckerberg needs more profit$, you cannot have easily built client applications that leverage modern fetching techniques.

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

79794427

Date: 2025-10-19 18:25:23
Score: 4.5
Natty: 7.5
Report link

May God keep you in good health my friend! Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Peter

79794425

Date: 2025-10-19 18:23:22
Score: 3
Natty:
Report link

When using Service Accounts for authentication then the sharing settings for the service account within Google Calendar must be set to at least "Make changes to events" so "See all event details" is not enough to get colorId.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Hans G. Kõljalg

79794406

Date: 2025-10-19 17:48:15
Score: 1
Natty:
Report link

For a Block Blast-style solver, you'll want to balance computation with good heuristic evaluation. A full backtracking search is often too slow for real-time decisions.

A more efficient approach is a beam search that explores only the top N promising placements for your sequence of blocks. You need a strong heuristic function to evaluate board states. Focus on:

By combining these into a weighted score and only deeply exploring the best candidates, you can get near-optimal performance without the computational cost. You can test these kinds of strategies in action using a block blast solver to see how different heuristics play out in real-time.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Karen R. Correa

79794402

Date: 2025-10-19 17:38:13
Score: 1
Natty:
Report link

Looks like the problem is still the script is not included in the blade correctly just push the js to blade directly and debug .

`@push('scripts')
 <script>
   // your JS here
 </script>
@endpush`
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Prabath Abeysinghe

79794398

Date: 2025-10-19 17:26:11
Score: 3
Natty:
Report link

It’s not possible, d3 scaling is a black box

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

79794392

Date: 2025-10-19 17:11:07
Score: 0.5
Natty:
Report link

A bit late to the party, but wrapping then when in a do {} while (false) "loop" gives you a regular break without any label or lambda shenanigans:

do when (transaction.state) {
    Transaction.Type.EXPIRED,
    Transaction.Type.BLOCKED -> {
        break
    }
} while (false)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kiw

79794385

Date: 2025-10-19 17:02:05
Score: 4
Natty: 4
Report link

Editing x32, x64, etc. in the end of the URLs gives better quality icons if needed
https://ssl.gstatic.com/docs/doclist/images/mediatype/icon_1_spreadsheet_x32.png
https://ssl.gstatic.com/docs/doclist/images/mediatype/icon_1_spreadsheet_x64.png

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

79794382

Date: 2025-10-19 16:59:04
Score: 1
Natty:
Report link

Here’s a simple, one-step solution for PowerRename that will work for all your files, keeping the 4-digit file number, sheet number, and revision, and removing everything else in between:

Enable Use Regular Expressions, then use this search:

^(.*?)(\d{4}).*?SHEET-(\d+).*?Rev\.?\.?([A-Za-z0-9]+)

and this replace:

MOD-CR1A-DDT-$2-$3_$4

This will transform filenames like:

MOD-CR1A-DDT-0001-CONCRETE-----SHEET-2-OF-3-CONCRETE-FOUNDATION-PLANS-Rev.4

into:

MOD-CR1A-DDT-0001-2_4
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Praveen Thaksara

79794378

Date: 2025-10-19 16:50:01
Score: 2
Natty:
Report link

Had same issue, stems from using React-Native 0.81 with gradle plugin of 0.82 (in my case was auto-installed due to latent versioning)
Need to either update your react-native to 0.82 (requires react 19.1.1 or up) or downgrade the plugin

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

79794369

Date: 2025-10-19 16:31:57
Score: 0.5
Natty:
Report link

The answer of @BioData41 is working for me, however assert_frame_equal is throwing an exception if the comparison is failing.

For a simple boolean result, I am using this:

test_df1 = df1.reset_index(drop=True)[list(df2.columns)]
test_df2 = df2.reset_index(drop=True)
test_df1.compare(test_df2).empty # Should return True or False
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @BioData41
Posted by: mountrix

79794366

Date: 2025-10-19 16:25:56
Score: 2
Natty:
Report link

Easy solution is Bulk PDF Downloader Chrome Extension. It is free and easy to use extension for downloading multiple PDFs on any website.

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

79794363

Date: 2025-10-19 16:21:55
Score: 2
Natty:
Report link

I'm developing a crash game similar to Aviator and want to implement a provably fair system. I understand the basic concept of using a server seed, client seed, and nonce to generate random outcomes, but I'm struggling with the specific algorithm for crash point calculation.

Most documentation explains provably fair for classic casino games, but crash games have different requirements. The game should:

- Generate a random crash point for each round

- Allow players to verify the result was predetermined

- Prevent manipulation from either side

What's the recommended approach for crash point generation? I've reviewed several implementations but can't find consensus on:

1. What cryptographic hash function to use (SHA-256, HMAC, etc.)

2. How to convert the hash output to a crash multiplier

3. The optimal frequency distribution for crash points

Here's an example of a working implementation I'm trying to understand: Aviator Games

Any code examples or detailed explanations of the mathematics behind crash point calculation would be greatly appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: rrrtutrurttr

79794362

Date: 2025-10-19 16:17:54
Score: 3
Natty:
Report link

It’s an invitation asking users to share the question link with others (via email or social media) to help get more answers.

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

79794352

Date: 2025-10-19 15:35:45
Score: 2
Natty:
Report link

Until a solution is found, I changed all the link components to the videos page from <Link/> to <a/> to force a fresh page load.

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

79794347

Date: 2025-10-19 15:26:43
Score: 2
Natty:
Report link

You can use triple * in your codes for a bold text instead of * or double **

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

79794339

Date: 2025-10-19 15:01:38
Score: 3.5
Natty:
Report link

Use .toolbarTitleDisplayMode(.inlineLarge)

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

79794323

Date: 2025-10-19 14:25:30
Score: 4
Natty:
Report link

I think it's the file name. try removing the space before the dot.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user31716885

79794322

Date: 2025-10-19 14:25:30
Score: 0.5
Natty:
Report link

A better solution is to switch to MMKV from Tencent, the same key-value storage used in WeChat and many production apps.
MMKV is:

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jagdish Ghimire

79794320

Date: 2025-10-19 14:22:29
Score: 2
Natty:
Report link

I can't reproduce your issue cause it looks good on my side

I think the first thing you should do before filtering your dataframe is to make sure your whole row in Time column is cleaned enough (no null, no different format, same dtype)

Next step is then you filter it

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Achmad Naufal W J

79794317

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

It turns out that you can actually nest hooks like this:

before('deploy:cold') do
  before('deploy:migrate', createdb)
end

which answers my question exactly. But keep in mind that you actually want to hook createdb in a different spot rather than at deploy:migrate.

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

79794315

Date: 2025-10-19 14:12:27
Score: 2
Natty:
Report link

print df.columns if dataframe have date column it will printed print(df.columns)

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

79794309

Date: 2025-10-19 14:04:25
Score: 2.5
Natty:
Report link

I wrapped the text in the <td> in a <p> element and it centered instantly!! Sorry for wasting your time haha

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

79794306

Date: 2025-10-19 14:00:24
Score: 1.5
Natty:
Report link

okay, Cognito isn’t built to act as a SAML IdP — it only consumes SAML, it doesn’t issue it. You can connect it to something like Okta or Azure AD as your SAML provider, but you can’t make other apps use Cognito as their SAML source.

If your goal is just to let users log in directly with Cognito, it’s best to stick with OAuth2 or OpenID Connect since that’s what it actually supports.

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

79794303

Date: 2025-10-19 13:54:23
Score: 0.5
Natty:
Report link

theorem is the syntax defined by Lean 4 itself (sometimes referred to as "Lean core").

lemma is an alternative syntax provided by mathlib, which is a library maintained by the community.

If your project has mathlib as a dependency, you can import Mathlib.Tactic.Lemma to gain access to the lemma syntax in your file. If your project does not depend on mathlib, you should use theorem.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): is the
  • Low reputation (0.5):
Posted by: Markus Himmel

79794287

Date: 2025-10-19 13:17:14
Score: 3.5
Natty:
Report link

APPLICATION STATUS KY NAHI DIKHA RAHA HAI

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

79794283

Date: 2025-10-19 13:07:12
Score: 0.5
Natty:
Report link

Yes you can do this

apiVersion: v1
kind: Service
metadata:
  name: hello-world
spec:
  type: NodePort
  selector:
    app: hello-world
  ports:
    - port: 8085
      targetPort: http
      nodePort: 30085
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Marcelo Waisman

79794281

Date: 2025-10-19 13:02:10
Score: 1.5
Natty:
Report link

Turn off the VPN, proxy, antivirus firewall.

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

79794274

Date: 2025-10-19 12:57:09
Score: 1
Natty:
Report link

good, but Cognito isn’t designed to work as a SAML Identity Provider (IdP) for any random service provider. It mainly supports OpenID Connect (OIDC) and OAuth2 standards. While Cognito can connect to a SAML IdP, it can’t directly serve as one itself.

If you need Cognito users to sign in through a SAML-based service, you’ll have to place an identity broker or gateway in between. That gateway can handle the translation between Cognito’s OIDC flow and the SAML flow expected by the service provider. I’ve implemented this setup before using a SAML↔OIDC bridge, and it works well once you configure the metadata correctly. you can take a look at here

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

79794270

Date: 2025-10-19 12:53:08
Score: 1
Natty:
Report link

Use join() on the index:

# Create sample data
import pandas as pd
import numpy as np

data = {'date': pd.to_datetime(['2025-01-01', '2025-01-01', '2025-01-02', '2025-01-02']),
        'Sector': ['Tech', 'Finance', 'Tech', 'Finance'],
        'col5': [10, 20, 15, 25],
        'col6': [100, 200, 150, 250]}
df = pd.DataFrame(data)

# Create the pivot table
pivotdf = pd.pivot_table(df, values=["col5", 'col6'], index=['date'], columns='Sector')

# Merge by setting the index on the original dataframe and using .join()
# This avoids the MultiIndex column issue
df_with_index = df.set_index('date')
merged_df = df_with_index.join(pivotdf, how='left', rsuffix='_bySector_pivot')
merged_df = merged_df.reset_index() # If you want 'date' back as a column

# Print the merged dataframe
print(merged_df)

output:

enter image description here

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

79794269

Date: 2025-10-19 12:48:07
Score: 1
Natty:
Report link

Is there a way (possibly standard) to know inside foo(const int s) if the function is executed at compile time or at runtime?

The standard ways to detect const if a constexpr function is evaluated at compile time at C++20/C++23:

There are non-standard ways under C++14/C++17:

There isn't any standard way in pre-C++20 through.

Test script:

#if __cplusplus >= 202002L || _MSVC_LANG>= 202002L
#include <type_traits>
#endif
bool is_constant_evaluated() {
#if __cpp_if_consteval >= 202106L
    if consteval { return true; }
    // both MSVC (non-comformant __cplusplus) and by-default _MSVC_LANG and other compiles with conformant __cplusplus
#elif __cplusplus >= 202002L || _MSVC_LANG>= 202002L
    if (std::is_constant_evaluated()) return true;
#elif defined(__GNUC__) // defined for both GCC and clang
    if (__builtin_is_constant_evaluated()) return true;
#elif defined(_MSC_VER)
    if (__builtin_is_constant_evaluated()) return true;
#else
#error "NAWH we don't think we can detect compile time in this compiler";
#endif
    return false;
}
int main() {
    return is_constant_evaluated();
}

And it compiles and works properly even if it's MSVC and C++17/C++14. (assembly here)

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (0.5):
Posted by: winapiadmin

79794268

Date: 2025-10-19 12:43:05
Score: 4
Natty: 4.5
Report link

Kindly take a look at my recent blog to learn how this can be achieved.

https://pothiarunmca.blogspot.com/2025/10/reusable-javascript-function-to.html

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

79794265

Date: 2025-10-19 12:41:05
Score: 2.5
Natty:
Report link

the best system design for that problem is while uploading video also you save the metadata in a Redis
for example duration, file type, quality and more

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

79794253

Date: 2025-10-19 12:07:57
Score: 2.5
Natty:
Report link

Realtor.com API Open is New Real Estate API - Fast - Uptime 99%– Comprehensive search for properties, agents, and locations across the United States with fast, structured JSON results ready for apps and web.
try on rapidapi
https://rapidapi.com/moham3iof/api/realtor-com-open

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

79794252

Date: 2025-10-19 12:06:57
Score: 1.5
Natty:
Report link

A materialized view (MV) stores the result of a query on disk, so reads are fast, but the data may be stale between refreshes. (whether it’s eventually consistent or transactionally consistent depends on the database engine)

What you get:

What you trade off:

So I suggest you to use an MV when you prefer read speed and cost predictability over up-to-the-second data.

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

79794245

Date: 2025-10-19 11:38:50
Score: 3
Natty:
Report link

Flutter requires an initialization time while the OS sets up the app's process. Android provides the concept of a launch screen to display a Drawable while the app is initializing https://docs.flutter.dev/platform-integration/android/splash-screen#initializing-the-app

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

79794240

Date: 2025-10-19 11:21:46
Score: 4
Natty:
Report link

hmm, nice. Its working or not? I am curious about it.

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

79794239

Date: 2025-10-19 11:18:45
Score: 0.5
Natty:
Report link

might be very late but as of today ( sun, 19th oct 2025 ) these steps worked for me. I am using electron-builder.

all we have to do is just make a "build/icons" folder and place icons for mac, win and linux.

so

icon.icns - for mac

icon.png - for linux

icon.ico - for window

and run the build command and this will generate the installer icons that you will have on .exe, etc.

thanks

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

79794238

Date: 2025-10-19 11:12:44
Score: 1
Natty:
Report link

You can add { _shard_doc: 'asc' } as a tie breaker, since _id is blocked from using it to sort by.

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