79635502

Date: 2025-05-23 12:31:39
Score: 0.5
Natty:
Report link

If you want all properties to have the same value:

@ConditionalOnProperty(value = {"random.property.one", "random.property.two"}, havingValue = "true", matchIfMissing = false)
@Bean
public ConditionalyCreatedBean conditionallyCreateadBean() {
    return new ConditionalyCreatedBean();
}

Maybe more flexible:

@ConditionalOnExpression("#{${random.property.one} and ${random.property.two}")

Note: Compile-time vs Runtime Evaluation

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @ConditionalOnProperty
  • User mentioned (0): @ConditionalOnExpression
  • Low reputation (0.5):
Posted by: Dimitrije Glisic

79635492

Date: 2025-05-23 12:28:37
Score: 0.5
Natty:
Report link
Thanks to the answer from the S. Nick I got an acceptable working version, using the .setStyleSheet() in the main (I don't know why it works exactly like that...)

New code:

    import sys
    from PyQt5.QtWidgets import QApplication, QMainWindow, QComboBox, QVBoxLayout, QWidget
    
    
    class MainWindow(QMainWindow):
        def __init__(self):
            super().__init__()
            self.setWindowTitle("QComboBox Demo")
            self.setGeometry(100, 100, 300, 200)
    
            central_widget = QWidget()
            self.setCentralWidget(central_widget)
            layout = QVBoxLayout(central_widget)
    
            formats = [
                "BMP", "Iris", "PNG", "JPEG", "JPEG 2000", "Targa", "Targa Raw"
            ]
    
            combo_box = QComboBox()
            combo_box.addItems(formats)
            combo_box.setCurrentIndex(-1)
    
            layout.addWidget(combo_box)
            layout.addStretch()
    
    
    if __name__ == "__main__":
        style_sheet = """
                        QWidget {
                            background-color: #404040;
                            color: #e6e6e6;
                            margin: 0px;
                        }
                        QComboBox {
                            background-color: #2c2c2c;
                            border: 1px solid #404040;
                            color: #d0d0d0;
                            padding: 4px 6px;
                            border-radius: 4px;
                            margin: 0px;
                        }
                        QComboBox:disabled {
                            background-color: #323232;
                            color: #8a8a8a;
                        }
                        QComboBox::down-arrow {
                            background-color: #2c2c2c;
                            image: url('images/QComboBox_down_arrow.png');
                        }
                        QComboBox::down-arrow:on {
                            background-color: #5680c2;
                        }
                        QComboBox::drop-down {
                            background-color: #202020;
                            border: none;
                            width: 20px;
                        }
                        QComboBox:on {
                            background-color: #5680c2;
                            color: #f8f9f9;
                        }
                        QComboBox QAbstractItemView {
                            background-color: #232323;
                            border: 1px solid #404040;
                            color: #d0d0d0;
                            border-radius: 4px;
                            margin: 0px;
                            padding: 2px;
                            min-width: 100px;
                            selection-background-color: #5680c2;
                        }
                        """
    
        app = QApplication(sys.argv + ['-platform', 'windows:darkmode=1'])
    
        app.setStyleSheet(style_sheet)
    
        app.setStyle('Fusion')
    
        window = MainWindow()
        window.show()
        sys.exit(app.exec_())
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: nekoshaurman

79635486

Date: 2025-05-23 12:22:35
Score: 1.5
Natty:
Report link

So, after some time of research it seems it depends on the kind of Entra license.
In our not so big company with a minimal Entra license I only get GroupIds and can call Graph to get the names.

At our customer, having an Entra license with more features, we can go to App registrations, open our App, goto Token configuration, open the groups claim and select sAMAccountName.

He then gets the group names instead of the group ids.

When I select this setting nothing changes, I still get the group ids.

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

79635477

Date: 2025-05-23 12:13:33
Score: 2
Natty:
Report link

NB folks, if adding via cfadmin don't miss the leading hyphen in Dave's answer like I did as then cf won't restart and you'll have to go to cfusion\bin\jvm.config and fix your typo.

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

79635474

Date: 2025-05-23 12:12:32
Score: 1.5
Natty:
Report link

how about this

using (Shim shim = Shim.Replace(() => DateTime.Today)
                       .With(() => new DateTime(2019, 07, 20)))
{
   
    var today = DateTime.Today; //  2019-07-20
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): how
  • Low reputation (1):
Posted by: stefan

79635473

Date: 2025-05-23 12:11:32
Score: 3
Natty:
Report link

Thanks Dave, that was a bit scary. I feel like this is going to catch a lot of people unawares!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: happysailingdude

79635471

Date: 2025-05-23 12:10:32
Score: 1
Natty:
Report link

A comment by @heiko-theißen made me realize my error. I have a cron job that tries to update my db every midnight. That is what must have resulted in the database locked error in my program.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @heiko-theißen
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: punkish

79635455

Date: 2025-05-23 11:57:28
Score: 3.5
Natty:
Report link

I tried the solution with the

chrome.scripting.executeScript

part to get some data - which works great, but is there also a solution to write to the local storage of a tab?

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

79635453

Date: 2025-05-23 11:57:27
Score: 7.5 🚩
Natty: 5.5
Report link

do the production and test tables have the same data mass? Have the environment statistics been updated? Could you provide the production and test execution plan with the ddl of the created index and the number of rows in the table?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cesar Carvalho

79635451

Date: 2025-05-23 11:54:26
Score: 2
Natty:
Report link

If I were trying to achieve this, I would've modified the "Legend" in the Query Options in my Time Series visualisation. As you can see, I have only selected 2 labels __name__ and env and put an at-sign in between.

In your case, the "legend should look like: Total {{currency}}

Is this helpful?

name @ env

Reasons:
  • Whitelisted phrase (-1): In your case
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: a_girl

79635450

Date: 2025-05-23 11:53:25
Score: 2.5
Natty:
Report link

the ideal is that you create separate DDL and DML scripts, so that you can have control over the changes. Furthermore, I recommend that the entire pipeline be executed in a homologation and pre-production environment.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: César Carvalho

79635446

Date: 2025-05-23 11:50:25
Score: 5.5
Natty:
Report link

I'm trying a similar thing; I have added accounts.settings to the scopes, however I get an 'unauthorised' response. This is the response I get when sending the auth details to here: POST https://identity.xero.com/connect/token . I am able to access other enpoints, such as timesheets. Any help much appreciated.

  "scope": "openid profile email payroll.employees payroll.timesheets payroll.settings accounting.settings offline_access"
Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help much appreciated
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lee Baz

79635445

Date: 2025-05-23 11:49:24
Score: 4.5
Natty: 6
Report link

midori needs .xpi extension. doesnt accept chrome-based extensions

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30616992

79635439

Date: 2025-05-23 11:45:23
Score: 2
Natty:
Report link

For some reason, using the channel ID that you obtain from sending the following get request:

curl -X GET "https://www.googleapis.com/youtube/v3/channels?part=id&forUsername={USERNAME}&key={API_KEY}" does not work when trying to find an active live broadcast for the channel.

Instead, I stumbled upon a roundabout way by using the "q=" parameter, which essentially searches for any YouTube video that contains the string in the "q=" parameter, to find the live stream via the name of the video live stream itself.

This is when I found out that the ChannelID that gets returned by this request is different from the ChannelID I got from the request above.

Using this channel ID I was able to get the video ID of a youtube live stream assuming that the channel was live.

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

79635437

Date: 2025-05-23 11:41:22
Score: 3.5
Natty:
Report link

Here is a tutorial on how to serve 400M vectors with Qdrant on a 64GB machine. https://qdrant.tech/documentation/database-tutorials/large-scale-search/

For further questions, it is recommended to join Qdrant Discord https://qdrant.to/discord

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

79635434

Date: 2025-05-23 11:41:22
Score: 3
Natty:
Report link

Think of NiFi templates as any other templates, which can be used as building blocks or reusable components. You can build other NiFi flows on top of that and deploy them.

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

79635420

Date: 2025-05-23 11:30:18
Score: 4
Natty:
Report link

I overlooked that the DMA address must be passed "by reference", that is by pointer. Correcting this resolved the problem.

Thanks to @NateEldredge for pointing this out.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @NateEldredge
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Andrey Pro

79635416

Date: 2025-05-23 11:28:18
Score: 2
Natty:
Report link

You can achieve 1) with a width setting like so:

style: {
        fontSize: "9px",
        width: '300px' // or any other value you thing will work
      },

Wrapping is not recommended here - you could achieve it with useHTML and label formatter, but this will cause problematic overlap - columns positions are not recalculated when you use useHTML for labels.

Btw: wouldn't it be easier to use a bar chart type instead of the inverted column?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Andrzej Bułeczka

79635404

Date: 2025-05-23 11:20:16
Score: 3.5
Natty:
Report link

Ideally, you should create a role with grant VIEW ANY DEFINITION and include all users who need to read SQL Server metadata.

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

79635402

Date: 2025-05-23 11:20:16
Score: 1
Natty:
Report link

I found the answer to the question:

static inline const char *pci_slot_name(const struct pci_slot *slot)

https://elixir.bootlin.com/linux/v6.12/source/include/linux/pci.h#L84

is the function that returns the physical slot number, same as lspci. It can be obtained from a struct pci_devpointer with:

const char *phys_slot_num=pci_slot_name(/*struct pci_dev*/ pdev->slot);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Andrey Pro

79635396

Date: 2025-05-23 11:16:14
Score: 3
Natty:
Report link

in the example I'm using, my linked server is called DSSQL.

SELECT * FROM [DSSQL].[master].[sys].[objects] WHERE TYPE='P';

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

79635392

Date: 2025-05-23 11:12:13
Score: 4.5
Natty:
Report link

There are several ways to delete this type of ghost folder, you can check this: https://youtu.be/VxY_iEqvlSQ

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joynul Abadin Rasel

79635388

Date: 2025-05-23 11:11:12
Score: 0.5
Natty:
Report link

The assignment f=1 has to be moved inside loop:

n = int(input())
s = 0
ld = 0

while n != 0:
    ld = n % 10
    f = 1
    for i in range(1, ld + 1):
        f = f * i
    s = s + f
    n = n // 10

print(s)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: monblu

79635382

Date: 2025-05-23 11:06:11
Score: 1
Natty:
Report link

In my case (v 1.32.0 of ms-mssql.mssql) it helped to remove:

From C:\Users\{username}\.Azure

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

79635377

Date: 2025-05-23 11:04:09
Score: 8 🚩
Natty: 5.5
Report link

could you post the scripts for the partitioned table and the target table with their indexes so I can help you and understand the problem?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you post
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: César Carvalho

79635369

Date: 2025-05-23 11:00:08
Score: 2.5
Natty:
Report link

I misunderstood the scope of the button in the UI.

It's indeed intended to be used to jump to the journal, as explained in https://github.com/codecentric/spring-boot-admin/issues/4286.

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

79635368

Date: 2025-05-23 11:00:08
Score: 1.5
Natty:
Report link

I got the same error when calling api from frontend. The workaround was to call the api (e.g. go to swagger) in the same window as the frontend - and accepting the warning. For me it had to be the same windows because when debugging frontend a separate browser instance is created

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

79635367

Date: 2025-05-23 11:00:08
Score: 1.5
Natty:
Report link

I know, this is an old question, but perhaps this helps someone in a similar situation:

In my case, I wanted to revert an "older" commit, meaning it was already pushed to the repo and already had other commits following it, but still keep its changes to build upon them. The git revert -n <sha> suggested by @WimFeijen didn't really do that.

I basically ended up doing:

git revert <sha>
git cherry-pick --no-commit <sha>
git restore -- .

What does this do? This reverts the commit normally. The cherry-pick of the same commit adds and stages all the changes again without a commit. The following restore unstages all changes so I can stage everything I need myself.

Not as straight-forward as I hoped, but did the trick for me.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @WimFeijen
  • Low reputation (0.5):
Posted by: R. Cocinero

79635359

Date: 2025-05-23 10:53:05
Score: 3.5
Natty:
Report link

The Linux PTP community is working on IEEE802.1AS-2020 support.

The following stacks support IEEE802.1AS-2020 support:

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

79635350

Date: 2025-05-23 10:48:02
Score: 8.5 🚩
Natty: 6.5
Report link

Did you get an answer to this? My comboBox searches 365 users and displayfields and searchfields keep reverting to "City" which is rather unhelpful.

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (3): Did you get an answer to this
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Phil

79635336

Date: 2025-05-23 10:42:00
Score: 1.5
Natty:
Report link
class abc
{
   public static void main(String args[])
   {
       String y = "Hello";
       System.out.println(y);
   }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arpita Raj

79635334

Date: 2025-05-23 10:41:00
Score: 1.5
Natty:
Report link

I used a tag to remember the state "Loaded"

Loaded += (s, e) =>
 {
    if (this.Tag == null)
    {
       System.Console.WriteLine("Loaded");
       this.Tag = "Loaded";
    }
 };
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: toyota gercena

79635327

Date: 2025-05-23 10:37:59
Score: 2
Natty:
Report link

I believe you need to verify if the clientId is actually valid ( this.client_id ), and then you need to be sure to add the origin from which you are requesting the embed is included in the oAuth origins that you created in the Figma dashboard.

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

79635306

Date: 2025-05-23 10:16:54
Score: 4.5
Natty: 4.5
Report link

Check out the query-string npm package and react-native-url-polyfill.

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

79635302

Date: 2025-05-23 10:13:52
Score: 4
Natty:
Report link

I tried this approach and still all in vain. Any ideas??

Model.import(
  [:id, :status_id],
  model_objects.map { |model| [model.id, status_id] },
  callbacks: true,
  on_duplicate_key_update: { conflict_target: [:id], columns: [:status_id] }
)
Reasons:
  • Blacklisted phrase (1): Any ideas
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Umar Mahmood

79635291

Date: 2025-05-23 10:06:50
Score: 1
Natty:
Report link

The actual problem was just setting the memory limit too low. I wanted 1024MB, but it ended up being 1024KB, so correctly it was:

def main():        
    resource.setrlimit(resource.RLIMIT_AS, (1024*1024*1024, 1024*1024*1024))
    print(requests.get('https://api.github.com').json())
    print(subprocess.Popen(['which', 'wkhtmltopdf'], stdout=subprocess.PIPE).communicate()[0])
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bálint Balina

79635285

Date: 2025-05-23 09:59:48
Score: 2.5
Natty:
Report link

I totally agree. The errors are same to most. It's really shameful to see poor docs and resources to connect the Electron build app to Transporter to Apple Connect. Electron says do MAS build but then it gives .app folder but Transporter app asks .pkg file ipa files only

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

79635281

Date: 2025-05-23 09:57:48
Score: 0.5
Natty:
Report link

You can use the migration tool to perform the mdc migration (https://v15.material.angular.dev/guide/mdc-migration#2-run-the-migration-tool):

ng generate @angular/material:mdc-migration
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ben5

79635276

Date: 2025-05-23 09:53:47
Score: 4.5
Natty: 4
Report link

A possible implementation of this algorithm using O(m+n) space complexity but it's a bit easy to understand.

https://www.youtube.com/watch?v=hhhDrprn8MU

https://github.com/compilewithpriya/Leetcode-cpp-practice/blob/master/Set-Matrix-zeroes.cpp

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: spriya b

79635272

Date: 2025-05-23 09:49:45
Score: 0.5
Natty:
Report link

I hope this approach helps.

dynamic doSomething(dynamic str) {
  return str is String ? 'did something with $str' : null;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: DevQt

79635271

Date: 2025-05-23 09:49:45
Score: 2.5
Natty:
Report link

You can check Jujutsu—a version control system from the link: https://github.com/jj-vcs/jj
It's written in Rust. It started as a hobby project of one of the Google Devs and now is used within Google as well. And it's open source

Although I can't say it's an complete alternative to Git or Piper, still it has some improvements over some git features. You can also check this short youtube video which gives it's overview: https://www.youtube.com/watch?v=cZqFaMlufDY

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

79635268

Date: 2025-05-23 09:49:45
Score: 2
Natty:
Report link

when genererting CF_API_TOKEN you have to ensure cloudflare pages and workers permissions (Cloudflare Pages:Edit, Workers Scripts:Edit) are selected with Edit permissions.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when
  • Low reputation (0.5):
Posted by: codex

79635260

Date: 2025-05-23 09:44:44
Score: 0.5
Natty:
Report link

Those classes are deprecated.

Use the following import:

from airflow.providers.standard.operators.bash import BashOperator
from airflow.providers.standard.operators.python import PythonOperator
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tigran S.

79635256

Date: 2025-05-23 09:42:43
Score: 2
Natty:
Report link

If you're working with relationships and performance is a key concern (especially in high-volume environments), indexing strategies can help—but they do have limitations when it comes to relationships in Neo4j. If your use case involves vehicle data or auction listings, I suggest taking a look at https://auctionsapi.com — it provides ready-to-use APIs for structured vehicle and auction data, which might save you from having to build complex graph queries from scratch.

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

79635247

Date: 2025-05-23 09:38:42
Score: 0.5
Natty:
Report link
<?php ob_start();?>

<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>Nghe 18 Tầng Địa Ngục - mp3.truyenphatgiao.com - MP3 - Tipitaka - 乾隆大藏经 - Kinh Sách - Phật Pháp - Sutra </title>

   <link rel="stylesheet" type="text/css" href="https://truyenphatgiao.com/font/font-awesome-pro/css/site.min.css">
   <meta property="og:image" content="https://truyenphatgiao.com/images/banh-xe-phap-luan.jpg" />                
     <style>
            :root {
                --mp3-bg-image-nav: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
                --mp3-border-nav: rgba(255,255,255,.3);
                --mp3-color: #fff;
                --mp3-bg: #4c2806;
                --mp3-color-a: #fff;
                --mp3-color-a-hover: #ff9800;
                --mp3-color-btn: #fff;
                --mp3-bg-btn: #3f4143;
                --mp3-color-order: #ff0;
                --mp3-title: #ff9800;
                --mp3-color-pl: #fff;
                --mp3-bg-player: #002f4d;
                --mp3-bg-li-even: #111;
                --mp3-bg-li-hover: #006eb3;
                --mp3-bg-li-current: #00558b;
                --mp3-color-song-title: #b9e3ff;
                --mp3-color-time: #b9e3ff;
                --mp3-bg-vol-val: #00273f;
                --mp3-border-vol-val: #2170a6;
                --mp3-bg-vol: #000;
                --mp3-bg-vol-val-i: #00273f;
                --mp3-border-vol-val-i: #000
            }
        </style>
        <script defer src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/fontawesome.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css" />
        <link rel="stylesheet" href="https://truyenphatgiao.com/font/font-awesome-pro/css/site.min.css?v=lltlnLTqtx9i5xu0PM94qNpJiNEhSMNU8CLVcUdeanI" />
        <!--fontawesome-pro-5.14.0-web-->
          <script defer src="https://truyenphatgiao.com/font/font-awesome-pro/js/combine.min.js?v=mN1do8Wi9tVsXDfFRI2KE_nevalC7nsZAfGtYWWiErE"></script> 
          <script defer src="https://truyenphatgiao.com/font/font-awesome-pro/js/fontawesome.min.js"></script>
             <!--fontawesome-pro-5.14.0-web-->
           <script defer src="https://truyenphatgiao.com/font/font-awesome-pro/js/combine.min.js?v=ia_0Xvm2Hm8XB2LG5VgyrPMNh1_EkOeoU3Tb041B7Bo"></script>
    <link rel="stylesheet" href="https://truyenphatgiao.com/cleanaudioplayer/player.min.css?v=53RkBkHG8U8HZyUEveR6di2Z-2bFJI129nKjnJS27uc" />
    <script defer src="https://sp.zalo.me/plugins/sdk.js"></script>
       
     
 
 <!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-NCTG45T');</script>
<!-- End Google Tag Manager -->
<header> 
<body> 

    </header>


<div class="container">

        <main role="main" class="pb-3">
    
<div class="zalo-share-button" data-href="" data-oaid="579745863508352884" data-layout="2" data-color="blue" data-customize=false></div>

            <style>

    #stickThis.stick {

        margin-top: 0;

        position: fixed;

        top: 0;

        z-index: 9999;

        box-shadow: 0 0 3px rgba(0, 154, 255, 0.7) inset, 1px 2px 3px rgba(0, 154, 255,0.2);

    }



    .page-link:hover {

        /*background-color: hsla(55, 100%, 80%, 1);*/

        background-color: Black;

        color: red;

        box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);

        /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */

    }

</style>
 
<body>

   
      

<?php 
 

   $dirname = "../MP3 folder/";



   //read files in folder

   $files = scandir($dirname);

   //ignore hidden files

   $ignore = Array(".", "..");



   //if file selected

   if(isset($_GET['file'])){



    //get selected file

    $file = $_GET['file'];



    //player pass in the path to the file

     //echo '<div class="text-center my-2">

     //<object type="application/x-shockwave-flash" data="https://truyenphatgiao.com/cleanaudioplayer/dewplayer.swf" id="dewplayer" name="dewplayer" autoplay>

   // <param name="movie" value="https://truyenphatgiao.com/cleanaudioplayer/dewplayer.swf"/>

   //<param name="flashvars" value="mp3='.$dirname.$file.'"/>

   // <param name="wmode" value="transparent"/>

      // </object>';

      //  echo '<br></div>';

         echo '<div class="text-center my-2">

    <video width="450" height="100" controls autoplay>

  <source src="'.$dirname.$file.'" type="video/mp4">
 <source src="'.$dirname.$file.'" type="audio/mp3">

  Your browser does not support the video tag.

</video><== Download - Nhấp chuột vào dấu 3 chấm bên trái này chọn tải xuống để tải file mp3';

 echo '<br></div>';

  

    //create donload link

     // echo '<a href="?download='.$file.'"> Hoặc nhấp vào đây đổi đuôi file thành .mp3 ở phía cuối đối với file tiếng việt có dấu để nghe được trên pc hoặc điện thoại </a>

      //';



   }  



  //if download link pressed then download the file.

  if(isset($_GET['download'])){



       $file = $dirname.$_GET['download'];

       header ("Content-type: octet/stream");

       header ("Content-disposition: attachment; filename=".$file.";.mp3");

       header("Content-Length: ".filesize($file));

       readfile($file);

       exit; 

  }

   //loop through all files

   foreach($files as $curfile){



       //if not in ignore list create a link

       if(!in_array($curfile, $ignore)) {

           echo "<li><a href='?file=".$curfile."'>$curfile</a></li>\n ";

       }

   }

echo '<br>Chú ý: Các file .php, .rar, .7zip, .zip và tên thư mục không phải tên bài pháp có dạng tên file .mp3 người nghe không nhấp chuột vào đường dẫn này, nó sẽ không chạy được những link thư mục đó. Mong rằng mọi người hiểu được cách thức hoạt động của web media scan tự động file mp3 bên trong thư mục này nó chỉ chạy được file .mp3 thôi ạ để tránh mất thời gian cho việc chọn bài!';   

?>

  </main>

  <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-54706b201f2eede7"></script>
 
<!-- Go to www.addthis.com/dashboard to customize your tools --> <div class="addthis_native_toolbox"></div>

    </div>

   

        <script>

            function sticktothetop() {

                var window_top = $(window).scrollTop();

                var top = $('#stick-here').offset().top;

                if (window_top > top) {

                    $('#stickThis').addClass('stick');

                    $('#stick-here').height($('#stickThis').outerHeight());

                    $('#stickThis').width($('#stick-here').width());

                } else {

                    $('#stickThis').removeClass('stick');

                    $('#stick-here').height(0);

                }

            }



            $(function () {

                $(window).scroll(sticktothetop);

                sticktothetop();

            });

        </script>

    <script>window.onscroll = function () { scrollFunction() };</script>

    <button class="btn-circle" onclick="topFunction()" id="myBtn" title="Top"><i class="fas fa-arrow-alt-up"></i></button>



 
<footer class="border-top footer text-muted">
        <div class="container">
             <a href="https://www.youtube.com/channel/UC9XAmjnB4qxRtpDQJd_1CIQ?sub_confirmation=1"><i class="fab fa-youtube mr-1"></i> Diệu Âm Channel </a> <a href="https://truyenphatgiao.com"><i class="fal fa-home"></i> TruyenPhatGiao.Com</a></footer>
        </div>
     


 <button class="btn-circle" onclick="topFunction()" id="myBtn" title="Top"><i class="fas fa-arrow-alt-up"></i></button>  
 <button class="btn btn-circle bg-transparent" id="myBtn" onclick="topFunction()" title="Lên đầu trang"><i class="fal fa-chevron-up"></i></button>

 <!-- Google Tag Manager (noscript) -->

<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NCTG45T"

height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>

<!-- End Google Tag Manager (noscript) -->
<script>
    copyUrlToClipboard();
</script>
     

    <script>

        (function (i, s, o, g, r, a, m) {

            i['GoogleAnalyticsObject'] = r;

            i[r] = i[r] ||

                function () {

                    (i[r].q = i[r].q || []).push(arguments)

                }, i[r].l = 1 * new Date();

            a = s.createElement(o),

                m = s.getElementsByTagName(o)[0];

            a.async = 1;

            a.src = g;

            m.parentNode.insertBefore(a, m)

        })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');

        ga('create', 'UA-139328345-1', 'auto'); //truyenphatgiao.com

        ga('send', 'pageview');

    </script>
    
    
    <div class="center">
    
<div class="ctv-footer-menu">
<button class="btn btn-circle bg-transparent" id="myBtn" onclick="topFunction()" title="Lên đầu trang"><svg class="svg-inline--fa fa-chevron-up fa-w-14" aria-hidden="true" focusable="false" data-prefix="fal" data-icon="chevron-up" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" data-fa-i2svg=""><path fill="currentColor" d="M4.465 366.475l7.07 7.071c4.686 4.686 12.284 4.686 16.971 0L224 178.053l195.494 195.493c4.686 4.686 12.284 4.686 16.971 0l7.07-7.071c4.686-4.686 4.686-12.284 0-16.97l-211.05-211.051c-4.686-4.686-12.284-4.686-16.971 0L4.465 349.505c-4.687 4.686-4.687 12.284 0 16.97z"></path></svg><!-- <i class="fal fa-chevron-up"></i> --></button>
 
<div class="container">
<iframe src="https://mp3.truyenphatgiao.com/footer.htm"  style="height:400px;width:650px;"  style="border:0;" title="Iframe footer"></iframe>
    <div class="center">  
<a href="https://info.flagcounter.com/mqJG"><img src="https://s01.flagcounter.com/count2/mqJG/bg_FFFFFF/txt_000000/border_CCCCCC/columns_8/maxflags_250/viewers_0/labels_1/pageviews_1/flags_0/percent_0/" alt="Flag Counter" border="0"></a>
</div>

</body>
</html> 

<?php ob_flush(); ?>
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tùng Thanh

79635231

Date: 2025-05-23 09:31:39
Score: 0.5
Natty:
Report link

The following code can be used to implement the calculation of the Alpha 147 factor:

// 1. Simulate data  
tmp_table = table(  
    concatDateTime(take(2023.12.12, 4802000), (rand((09:30:00.000+0..2400*3*1000) join (13:00:00.000+0..2400*3*1000), 4802000).sort())) as dt,  
    rand(string(1001..1200), 4802000) as symbol,   
    rand(100.0, 4802000) as price,   
    rand(100, 4802000) as vol);  

// 2. Alpha 147 implementation  
defg olss(x) : ols(x, 1..12)[1]
def alpha147SQL(vector) : moving(olss, mavg(vector, 12), 12)
alpha147DDBSql = select alpha147SQL(price) 
    from loadTable("dfs://ohlc_test", "ohlc_test") 
    where date(ts) = 2023.12.12 
    context by symbol;  

Test Data: 4.3GB (4,802,000 rows)

Implementation Performance

Method Time
Single-threaded in-memory computation 6.8s
Distributed multi-threaded computation 2s
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Huang WeiFeng

79635227

Date: 2025-05-23 09:30:38
Score: 6 🚩
Natty:
Report link

Can you paste the html output of the card element ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Clément DELORD

79635226

Date: 2025-05-23 09:29:38
Score: 2
Natty:
Report link
### Make the Bearer token available
< {%
    const token = execSync('cat /path/to/token.jwt', { encoding: 'utf8' }).trim();
    client.global.set('auth_token', token);
    client.log("token: " + client.global.get('auth_token'));
%}

GET https://my.server/api/info
Authorization: Bearer {{auth_token}}

see https://www.jetbrains.com/help/idea/javascript-api-supported-by-http-client.html#exec-methods

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

79635224

Date: 2025-05-23 09:28:37
Score: 1
Natty:
Report link

Both approaches you mentioned for creating the model are valid, depending on your goals:

  1. Starting from the problem domain (conceptual schema) means you focus on the real-world concepts and design your Java classes to represent those directly. This approach keeps your model clean and focused on the business logic, which is great for maintainability and clarity.

  2. Starting from the restructured database schema means your Java model closely reflects the database tables and columns, ignoring any extra surrogate keys you added. This can make data handling more straightforward but might couple your model tightly to the database structure.

In many projects, a mix of both is used: design your model based on the problem domain for clarity, then map it to the database schema via DAO implementations for data access. This helps keep the code organized and flexible.

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

79635213

Date: 2025-05-23 09:24:36
Score: 1.5
Natty:
Report link

More trivial solution i used :

library(data.table)

your_df[, lapply(.SD, function(x){
  ifelse(is.na(x), 0, x)
}), .SDcols = is.numeric]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DevDataLover

79635199

Date: 2025-05-23 09:15:33
Score: 1
Natty:
Report link

I found this SO question while debugging a similar issue in my own project. It was very useful but it did not provide the full solution for me. I would like to add the following Cypress documentation page explains how Cypress.on() and cy.on() work: https://docs.cypress.io/api/cypress-api/catalog-of-events. This page starts by listing names of events, information I did not need. When I read on however, I saw the heading: "Binding to Events". The difference between Cypress.on() and cy.on() is explained there. This difference has to do with the amount of test code for which exceptions have to be ignored.

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

79635193

Date: 2025-05-23 09:10:32
Score: 1.5
Natty:
Report link

You can use a std library extention function on String `uppercase()`

val foo = "foo"
val foo2 = foo.uppercase() // FOO

https://kotlinlang.org/api/core/kotlin-stdlib/kotlin.text/uppercase.html

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

79635186

Date: 2025-05-23 09:04:30
Score: 2.5
Natty:
Report link

your description of a problem is pretty incoherent. what does it mean for a linear equation system to be 3d? can't you just reshape the arrays to be A (n, m), X (n, m), B (m,) where m = n*d? (eg A2d = A3d.reshape((n, n*d))) then the np.linalg.solve or np.linalg.lstsq will do the job.

also, what kind of process produces such a task?

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

79635181

Date: 2025-05-23 09:01:29
Score: 0.5
Natty:
Report link

if (!text || text .length < 2 || !/^[a-zA-Z\s]+$/.test(text)) { }

This regex ensures:

The input consists only of letters (both uppercase and lowercase) and spaces.

The minimum length is 2 characters.

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

79635180

Date: 2025-05-23 09:01:29
Score: 3
Natty:
Report link

With VS 2022, in my case it was the project.csproj.user that contained a path that did not exist any more from which i debugged once.

For some unknown reasons, VS was not displaying that correctly in the project properties as in the screenshot of @Deano

Deleting the project.csproj.user file did the job.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Deano
  • Low reputation (1):
Posted by: Michele

79635173

Date: 2025-05-23 08:58:28
Score: 1.5
Natty:
Report link

No, you can't cleanly commit a file inside a submodule (`B/`) to the parent repo (`A`) only. Git treats submodules as isolated repositories.

Workarounds:

Subtrees are the cleanest solution for this use case.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: S.Raj

79635166

Date: 2025-05-23 08:53:27
Score: 0.5
Natty:
Report link

Basically the browser (at least Edge/Chrome) verifies the request the same it does when connecting to the requested URL.

So I usually make sure the service as well accepts a "GET" to which I forward the user (as in window.open(), prompt to click a link, or similar) when I detect that the connection fails. With that, the user can run through the usual "accept" process for the certificate.

After this, also the XHR works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Andreas Beck

79635159

Date: 2025-05-23 08:49:26
Score: 0.5
Natty:
Report link

Follow the below commands:

git commit --amend -m "New commit message"

Then you need to force push the new commit:

 git push --force
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Hamed Moghadasi

79635158

Date: 2025-05-23 08:48:25
Score: 1.5
Natty:
Report link

I was wondering if there is a way to find out the number of rows or number of files for tables registered in Unity Catalog. Is there a system table or a built-in function that provides this information more reliably?

You can try to Check for Empty Tables or Tables with No Files in Unity Catalog .
Unity Catalog doesn't have a built-in system table that directly shows the number of rows or files in each table. But you can write a notebook or script to get that information by combining metadata from system.information_schema.tables with details pulled using the DESCRIBE DETAIL command.

Below is the PySpark script that filters and prints only the tables that have either Zero records or zero fileSize:

I have created three tables, one with records and other two keeping empty to test the python code.

from pyspark.sql.functions import col
from delta.tables import DeltaTable

catalog = "my_catalog"
schema = "my_schema"

tables_df = spark.sql(f"""
  SELECT table_name 
  FROM {catalog}.information_schema.tables
  WHERE table_schema = '{schema}'
""")

tables = [row["table_name"] for row in tables_df.collect()]

for table in tables:
    full_name = f"{catalog}.{schema}.{table}"
    detail = spark.sql(f"DESCRIBE DETAIL {full_name}").collect()[0]
    num_files = detail['numFiles']
    size_bytes = detail['sizeInBytes']
    if (num_files == 0 or num_files == 0):
        print(f"{full_name}: numFiles={num_files}, sizeInBytes={size_bytes}")

So this code does the following:

-It lists all tables in a specified Unity Catalog catalog (my_catalog) and schema (my_schema) by querying the information_schema.tables view.

-For each table, it runs DESCRIBE DETAIL to retrieve metadata, specifically looking at the number of files (numFiles) and the total size on disk (sizeInBytes).

-It prints the table name and size details only if the table has zero files (numFiles == 0), which typically indicates that the table has no data stored.

enter image description here

Output:

enter image description here

Reasons:
  • Blacklisted phrase (2): was wondering
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Pritam

79635152

Date: 2025-05-23 08:45:24
Score: 2.5
Natty:
Report link

Ok, I have figured out what was wrong.

In most scenarios, we use Givens/Jacobi rotations Q_{i,j} acting on rows/columns i and j and want to zero out an element A(i,j), for example, in computing QR decomposition or using Jacobi rotations to compute eigenvalues for symmetric matrices. But here we do not want that, and instead we want to use Q_{i,j} and zero out an element A(i, j-1).

Why?

When we use Q_{i,j} from both sides we create linear combinations of i-th and j-th row/column and for element A(i,j) we add both the other column and row, which makes it harder to keep track of what we are doing.

But if we want to zero out the element A(i, j-1), we only create the linear combination with the row j, which is easier to keep track of. Essentially, what we are doing is using A(j,j-1) to zero out elements A(j+1, j-1), A(j+2, j-1), ..., A(n,j-1) for the column j-1.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ldro

79635147

Date: 2025-05-23 08:42:23
Score: 2
Natty:
Report link

For completeness, I asked my question at community.intel.com Force error on warning and in intel compiler versions after 2025.1.1, throwing an error on unused variable will be supported. Apparently the unused variable message is classified as a "remark", and does not error in other versions of intel compiler, but the option to error on remarks will be supported in future versions.

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

79635145

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

Thanks to this hint i could resolve my situation from

public class DateiHandling : IDateiHandling
  {
    /// <inheritdoc/>
    public string DateiInhalt(in string ganzerName)
    {
      return File.ReadAllText(ganzerName);//Methode with exceptions i want to convey
    }
  }
public interface IDateiHandling
  {

    /// <summary>
    /// Liest den Inhalt der Datei auf der Festpaltte aus.
    /// </summary>
    /// <param name="ganzerName">Absoluter Pfad zur Datei.</param>
    /// <returns>Inhalt der Datei, als String.</returns>
    /// <inheritdoc cref="File.ReadAllText(string)"/>  //Here the linkage to the original method
    public string DateiInhalt(in string ganzerName);
  }

This Perfectly resulted in me getting all the exceptions info from the Methode File.ReadAllText(string) conveniently displayed in the interface wrapper.

Shows the IntelliSense description with the linked Exceptions

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): i want
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FlorianD

79635129

Date: 2025-05-23 08:32:20
Score: 2
Natty:
Report link
<dependency>
    <groupId>jakarta.validation</groupId>
    <artifactId>jakarta.validation-api</artifactId>
    <version>3.0.2</version>
</dependency>

import jakarta.validation.constraints.NotNull;
@NotNull will work fine with this.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @NotNull
  • Low reputation (1):
Posted by: Alby_Noah

79635086

Date: 2025-05-23 08:09:13
Score: 3.5
Natty:
Report link

i think you should try to upgrade both versions of spring boot & openApi...

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

79635080

Date: 2025-05-23 08:05:12
Score: 1.5
Natty:
Report link

According to your two problems:

  1. performing spell checks does not give entire string as an output

  2. sometimes repeats the phrases of the given review

I think you can adjust two arguments ( max_length, no_repeat_ngram_size ) for model.generate() to improve two problems:

  1. Enlarge max_length size to solve problem-1.

  2. Add no_repeat_ngram_size argument to reduce problem-2 error.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jung-Yi Tsai

79635077

Date: 2025-05-23 08:02:11
Score: 2
Natty:
Report link

I don't know of any way to do this in Chromium-based browsers and it's something I'm missing as well. Just wanted to mention that Firefox can do this, in case it's a hard requirement.

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

79635069

Date: 2025-05-23 07:59:10
Score: 3.5
Natty:
Report link

You can find just the Inspext.exe from below link

https://github.com/blackrosezy/gui-inspect-tool/blob/master/Inspect.exe

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

79635068

Date: 2025-05-23 07:58:10
Score: 3.5
Natty:
Report link

Ok, so the answer is: wait!

After more or less 7 days from the moment I put the video link in my app (the link was a youtu.be link, but I'm not sure it's needed) the vertical and fullscreen preview magically appeared. So well, just wait.

Reasons:
  • Blacklisted phrase (1): video link
  • Blacklisted phrase (1): youtu.be
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: m.i.n.a.r.

79635058

Date: 2025-05-23 07:53:08
Score: 4.5
Natty:
Report link

This happens from time to time when the installation is actually successful. Can you check in Windows -> Services if the sql server is already running?

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

79635053

Date: 2025-05-23 07:45:07
Score: 2.5
Natty:
Report link

$ git push -u origin master

error: src refspec master does not match any

error: failed to push some refs to 'https://github.com/Bhoomika-shekar/Java-fullstack.git'

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

79635051

Date: 2025-05-23 07:43:06
Score: 1
Natty:
Report link

In 2025, you can still use RSS to get commit notifications. It is not visible in UI, but you can add commits.atom to URL then subscribe to this feed with your RSS reader.

https://github.com/:owner/:repo/commits.atom
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lukasz D.

79635045

Date: 2025-05-23 07:39:05
Score: 2
Natty:
Report link

If you're searching to filter all blank rows, you can do it with multiple filters easily.
I used this formula (watch out the locale):
=ARRAYFORMULA(FILTER(Sheet1!A2:A;Sheet1!C2:C="mysearch";Sheet1!B2:B<>""))

enter image description here

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

79635041

Date: 2025-05-23 07:35:04
Score: 3
Natty:
Report link

For me this arises occasionally with Firefox. Changing to Chrome solved the issue.

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

79635040

Date: 2025-05-23 07:34:03
Score: 1
Natty:
Report link

I only needed to add a 1px to get it to work apparently! Posting here if someone has the same question :)

onLoadStop: (controller, url) async {
    await injectJavascript(controller);
    await Future.delayed(Duration(milliseconds: 300));

    await _webViewController?.evaluateJavascript(
     source: '''
     document.documentElement.style.height = document.documentElement.clientHeight + 1 + 'px';
      ''',
  );
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Clara

79635031

Date: 2025-05-23 07:28:01
Score: 2
Natty:
Report link

According to https://discourse.hibernate.org/t/criteriabuilder-cast-function-example/6631/4 there is a solution using cast instead of as:

var cast = ((JpaExpression) from.get("uuid")).cast(String.class);
cb.like(cast, "%" + stringValue + "%");
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kio21

79635026

Date: 2025-05-23 07:26:01
Score: 1
Natty:
Report link

To at least partially answer the Question, this is what I found out so far

1.) locale support in MinGW seems broken

2.) when retrieving a path with std::filesystem it is correct internally

3.) ofstrem and ifstream can take filesystem ::path, so if you retrieved an path with umlauts, you can load and save data with this path utilizing ofstrem and ifstream

4.) as soon you want to manipulate the path - need of conversion to a string and back to filesystem ::path - things go wrong. So e.g. if you replace the extension without touchning the part of the path with the umlauts, thats fine. If you replace the filename, even if you just retrieved the filename and appended some string, it goes wrong

as of today these are my findings with no solution to point 4

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

79635023

Date: 2025-05-23 07:24:59
Score: 13.5 🚩
Natty: 6
Report link

Did you found the solution? Im facing the same issue ... Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (3): Did you found the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Miroslav

79635010

Date: 2025-05-23 07:15:57
Score: 1
Natty:
Report link

You're encountering this error because the method CriteriaBuilder.isFalse() expects a parameter of type Expression<Boolean>, but you're passing a mock of type Path<Object>. Although Path<Boolean> is a subtype of Expression<Boolean>, your mock is declared as Path<Object>, and that's why the compiler complains.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 洪紹恩

79635007

Date: 2025-05-23 07:14:56
Score: 1.5
Natty:
Report link

You can add a value after nameSingleItem with an example
SingleItemCategoryModel(nameSingleItem: "VVIP", vaalue '15-1')
//example value:15-1. 15 is the camp id, 1 is the room type id

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

79634996

Date: 2025-05-23 07:03:54
Score: 0.5
Natty:
Report link

I ended up fixing it by changing the grid structure.

If before was:

<Grid>
   <Row>
   <Row *>
   <Column *>
   <Column *>
   <Column *>
   <Column>

   <Content>

   <TreeItems Row:1 Colum:0-3>
</Grid>
<TreeItems>
   <Grid>
      <Column *>
      <Column *>
      <Column *>
   
      <Content>

   </Grid>
</TreeItems>

By separating the main grid into two:

<Grid>
   <Row>
   <Row *>

   <Grid Row:0> <!--The header now has its own grid -->
      <Column *>
      <Column *>
      <Column *>
      <Column>

      <HeaderContent>
   </Grid>

   <Content>

   <TreeItems Row:1> <!-- Note that now there is only one column so I don't need to declare it -->
</Grid>
<TreeItems>
   <Grid>
      <Column *>
      <Column *>
      <Column *>
   
      <Content>

   </Grid>
</TreeItems>

I still don't understand whats happening on the first option and my main take away is try not to declare a grid with columns and rows at the same time.

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

79634992

Date: 2025-05-23 06:59:51
Score: 8 🚩
Natty:
Report link

I am also facing the same issue, please put your solution here if you get it

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • RegEx Blacklisted phrase (1): I am also facing the same issue, please
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sai Kiran

79634985

Date: 2025-05-23 06:57:51
Score: 2
Natty:
Report link

The reason in the workmanager itself. I just replaced it with compute and it doesn't cause freezes anymore.

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

79634982

Date: 2025-05-23 06:56:51
Score: 0.5
Natty:
Report link

Here you go, I had to solve a similar problem... Credit to @andrew-coleman for the initial example

(
    $dotsToUnderscores := $each(?, function($v, $k) {
        { 
            $replace($k, '.', '_'): $type($v) = 'object' ? $dotsToUnderscores($v) : 
                                    $type($v) = 'array'  ? $map($v, function($vv) { $dotsToUnderscores($vv) } : 
                                    $v
        }
    }) ~> $merge;
    $dotsToUnderscores($)
)
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @andrew-coleman
Posted by: NeilC

79634979

Date: 2025-05-23 06:54:50
Score: 1
Natty:
Report link

Instead of specifying any specific browser we can use below line to use default browser set by user in the system to open the link.

Start-Process "https://www.google.com"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mansi Mishra

79634976

Date: 2025-05-23 06:52:49
Score: 1.5
Natty:
Report link

SetWindowTheme(hWnd, L" ", L" ");

Gives the Win95 look. Works with controls too.

Back to normal: SetWindowTheme(hWnd, NULL, NULL);

In UsbTreeView and other tools I use that to switch the theme on and off for the controls at runtime without any problem (Options -> Windows Theme).

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

79634966

Date: 2025-05-23 06:45:47
Score: 2.5
Natty:
Report link

Try this free Chrome extension it can maintain your collections on GitHub, its very simple and lightweight

https://chromewebstore.google.com/detail/github-postman-sync/daelpeneghnjcdhgmfiocjemdpblnofl

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saurabh Fodekar

79634964

Date: 2025-05-23 06:44:47
Score: 1
Natty:
Report link

Firstly, remove package-lock.json and node_modules folder. In the package.json folder, write :

  "overrides": {
  "rollup": "npm:@rollup/wasm-node" }

Then, do npm i, and it should work.

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

79634958

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

🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 I’ve created a WhatsApp community for Laraclassified users — where I personally provide free support for

⚙ Bug fixes

🛠 Error solutions

🚀 Growth tips & tricks to scale your classified site faster

No fees. No fluff. Just real help to get the most out of your Laraclassified script.

If you’re using this script, you’ll want to be in this group.

Join here: https://chat.whatsapp.com/KdeGfl3PULF76ZVTD29I1y

Reasons:
  • No code block (0.5):
  • Filler text (0.5): 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
  • Low reputation (1):
Posted by: Talha Sahi

79634957

Date: 2025-05-23 06:41:45
Score: 3
Natty:
Report link

Google tech usability is a complete joke.

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

79634949

Date: 2025-05-23 06:28:42
Score: 2.5
Natty:
Report link

I have fixed issue by calling script outside of IIS. I created script using my application and created event scheduler that call script & generate stl file. This way script start using GPU.

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

79634948

Date: 2025-05-23 06:28:42
Score: 2.5
Natty:
Report link

This question seems to be Missing data version in tablet replicas. Check replica versions with show tablet and show partitions. Use admin repair or mark bad replicas with admin set replica status for automatic repair.

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

79634946

Date: 2025-05-23 06:26:41
Score: 1
Natty:
Report link

This might not be the answer you are looking for, but it is the only way I can get it to show multiple columns on one X-value; by adding each point to a separate Series.

chart1.Series.Add("series1");
chart1.Series["series1"].Points.AddXY("31.5 Hz", 52);
chart1.Series.Add("series2");
chart1.Series["series2"].Points.AddXY("31.5 Hz", 58);
chart1.Series.Add("series3");
chart1.Series["series3"].Points.AddXY("31.5 Hz", 67);

enter image description here

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

79634941

Date: 2025-05-23 06:19:39
Score: 1.5
Natty:
Report link

Try tflite.setWasmPath('https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/');, it still tried to load locally, and then did a fallback to this URL.

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

79634932

Date: 2025-05-23 06:16:38
Score: 3.5
Natty:
Report link

https://workspace.google.com/marketplace/app/chat_viewer_for_whatsapp/627542094284

You can upload your .txt file here and Select Primary Author.
Click on start replay.
Done.

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

79634911

Date: 2025-05-23 05:55:32
Score: 1
Natty:
Report link

I managed to get rind of this error and get the project adding msql, by installing version 7.3.5 of the mssql package.

npm install [email protected]

I have yet to actually try any of the mssql functions, but now I can require the mssql and not have the project crash.

const sql = require("mssql");

With other versions of mssql I got the errors and could not try anything with the SQL server connection. I am still not sure why I get the errors with later versions of mssql which should be compatible with the version of nodejs I am susing, all I can think is that some of the other packages perhaps interfered with finding the module 'node:events'.

Reasons:
  • RegEx Blacklisted phrase (1): I get the error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Barry Andrews

79634909

Date: 2025-05-23 05:54:32
Score: 4.5
Natty: 4.5
Report link

What does it mean? Please enter 10-digit mobile number starting with 6,7,8, or 9 only

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What do
  • Low reputation (1):
Posted by: Muhammad

79634899

Date: 2025-05-23 05:45:29
Score: 0.5
Natty:
Report link

# DPI-aware Tkinter + Matplotlib (Consistent Across IDEs and Standalone)

I tried the suggested one, did not work in some cases. Below is slightly heavy but works in every situation and has fine control over every element.

Get DPI and Screen Info


def get_display_context():
import tkinter as tk
root = tk.Tk()
root.withdraw()
root.update_idletasks()
root.state('zoomed')
root.update()
dpi = root.winfo_fpixels("1i")
width, height = root.winfo_width(), root.winfo_height()
root.destroy()
return {
"dpi": dpi,
"screen_width_pixel": width,
"screen_height_pixel": height
}

Define Font Helpers

**Tkinter:**

def font_ui_tk(size_pt, ctx, font="Segoe UI", bold=False):
scale = ctx["dpi"] / 96
return (font, int(size_pt * scale), "bold" if bold else "normal")

**Matplotlib:**

def font_ui_mpl(size_pt, ctx, font="Segoe UI", bold=False):
scale = ctx["dpi"] / 96
return {
"fontsize": int(size_pt * scale),
"fontweight": "bold" if bold else "normal",
"family": font
}

### Step 3: Apply in Your App

**Tkinter Example:**

ctx = get_display_context()
label = tk.Label(root, text="Run", font=font_ui_tk(11, ctx))

**Matplotlib Example:**

ax.set_title("Plot Title", **font_ui_mpl(12, ctx))

**Legend/Ticks:**

ax.legend(fontsize=font_ui_mpl(9, ctx)["fontsize"])
ax.tick_params(labelsize=font_ui_mpl(9, ctx)["fontsize"])

This method removes the need for `tk scaling` or `ctypes.windll.shcore.SetProcessDpiAwareness`.

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahabir Prasad

79634895

Date: 2025-05-23 05:40:28
Score: 5
Natty: 5
Report link

HRM software development company in New York

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Best UI Designers in UAE

79634891

Date: 2025-05-23 05:33:26
Score: 3.5
Natty:
Report link

may I know how to keep the same number of observations for the dataset as the number present in the shapefile?
Suppose there are 2 period of panel data of 20 regions meanwhile the shpfile only have 20 regions, how to make them the same? Does it mean you split the 2 periods and attach the weight for each period?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Akira Fuji

79634890

Date: 2025-05-23 05:33:26
Score: 4.5
Natty:
Report link

How about

grouped.groups.pop(group_name)

?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Has no white space (0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: Confounded