79522222

Date: 2025-03-20 08:00:05
Score: 6.5 🚩
Natty: 5
Report link

Im facing the same problem but my code works my variable has the stt data but the terminal is filled with this error every time i use it after every while loop

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mukund mv

79522216

Date: 2025-03-20 07:55:03
Score: 6 🚩
Natty:
Report link

I am working on the project of the chat board it's a financial chat board I got a task about the OCR my task is related to extract the data from the PDF of the bank statement(I want to give you example like what type want to extract let's suppose you had 50 transactions last month on bank statement in different areas like Uber like restaurant like grocery in this of categories so I want to abstract all the transactions in Jason from like this:""Deposits and Additions": [ { "date": "01/23", "details": { "company_name": "ORIG", "origin_id": "", "date_description": "CO Entr we havey", "name": "UNKNOWN", "id": "" }, "amount": "$344.27" },"", so I am using a different libraries so it will look like static their will some transaction will miss in the extraction data I don't want to miss any transaction how can I make my power more powerful by OCR please suggest me

Reasons:
  • Blacklisted phrase (0.5): how can I
  • RegEx Blacklisted phrase (2.5): please suggest me
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): I make my power more powerful by OCR please
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Boby Mohit

79522212

Date: 2025-03-20 07:53:03
Score: 0.5
Natty:
Report link

Here is the scripted solution that I used to implement @Sridevi's answer:

$appname = "YourApplication"

### Connect to Graph (to get the service principal
Connect-MgGraph -ShowBanner:$false
$app = Get-MgServicePrincipal -Filter "displayname eq '$appname'"
Disconnect-MgGraph

### Verify there's exactly one app
$appcount = ($app | measure-object).count
if ($appcount -ne 1) {
   throw("$Found $appcount apps with displayname '$appname', this isn't right.")
}

### Connect to IPPS to set everything
Connect-IPPSSession -ShowBanner:$false

$sp = get-serviceprincipal -Identity $app.appid
if (($sp | Measure-Object).count -eq 0) {
    try {
      $sp = New-ServicePrincipal -AppId $app.appid -ObjectId $app.id -Displayname "$appname - Purge"
    } catch {
      throw("Can't generate service principal")
    }
}

$rolemember = Get-RoleGroupMember -Identity "eDiscoveryManager" | Where-Object { $_.exchangeObjectId -eq $app.id }
if (($rolemember | Measure-Object).count -eq 0) {
    Add-RoleGroupMember -Identity "eDiscoveryManager" -Member $app.id
}

$eadmin = Get-eDiscoveryCaseAdmin | Where-Object { $_.exchangeObjectId -eq $app.id }
if (($eadmin | Measure-Object).count -eq 0) {
    Add-eDiscoveryCaseAdmin -User $app.id
}

Disconnect-ExchangeOnline
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Sridevi's
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Haruka Shitou

79522206

Date: 2025-03-20 07:50:02
Score: 1
Natty:
Report link

I suspect one of the prime reasons to be the involvement of all the nested and otherwise invisible borders, I've ran into some similar problems in the past and a viable workaround for me is to use tools stronger in extracting text with positional information like pdfplumber. Extracting tables right away appears to be difficult in this case and having a two-fold approach of extracting (not tabular but still correct and well-spaced) text first and then some additional manual parsing on top via tools like regex or parse could be a good way forward.

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

79522204

Date: 2025-03-20 07:50:02
Score: 1
Natty:
Report link

I now have 2 working solutions, thanks to @rioV8 and @starball:

  1. package.json - add the following contribution to the correct section:
"configurationDefaults": {
            "[ABC]": {
                "editor.minimap.markSectionHeaderRegex": " ... regex goes here ... "
            }
        }
  1. activate() - Additional code within the extension:
const scope: vscode.ConfigurationScope = { languageId: "ABC" };
const inspect = vscode.workspace.getConfiguration("editor", scope).inspect("minimap.markSectionHeaderRegex");
if ( !inspect?.workspaceLanguageValue )
{
    vscode.workspace.getConfiguration("editor", scope).update("minimap.markSectionHeaderRegex", " ... regex goes here ... ", vscode.ConfigurationTarget.Workspace, true);
}

I went for solution 1. as it seems to be the cleaner solution for the extension I'm working on.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @rioV8
  • User mentioned (0): @starball
  • Self-answer (0.5):
Posted by: Eric

79522200

Date: 2025-03-20 07:48:01
Score: 12
Natty: 7.5
Report link

I have the same problem. Did you find a solution?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: An Nguyen Van

79522199

Date: 2025-03-20 07:48:01
Score: 0.5
Natty:
Report link

You need to iterate over the causes of the exception and print that out.

Something like this:

private String getMessage(Exception e) {
        var result = e.getMessage();
        var cause = e.getCause();
        var maxDepth = 3;
        while (cause != null && maxDepth-- > 0) {
            result = cause.getMessage();
            cause = cause.getCause();
        }
        return result;
    }

Replace the 3 with your own logic.

See my exceptionmapper here:

https://github.com/quarkiverse/quarkus-fluentjdbc/blob/main/examples/src/main/java/com/acme/fluentjdbc/config/ExceptionMapper.java

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

79522176

Date: 2025-03-20 07:36:59
Score: 1
Natty:
Report link

I found an article that explain the meaning of the new blocks-manifest.php file

This article

I guess there is presently a bug in the wordpress (or webpack) scripts, the npm start script remove blocks-manifest.php file from the build firectory.

In the meantime if you want to continue to work on your block until the bug is fixed, you can modify the main plugin file and register your blocks one by one in the old way like this:

function create_block_block_toto_block_init() {
    register_block_type( __DIR__ . '/build/toto1' );
    register_block_type( __DIR__ . '/build/toto2' );
}
add_action( 'init', 'create_block_block_toto_block_init' );

It will work, blocks-manifest.php will be ignored

Reasons:
  • Blacklisted phrase (1): This article
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: lionel-dev-fr

79522171

Date: 2025-03-20 07:34:59
Score: 2.5
Natty:
Report link

If you are attempting to use an AMI from another region, this error happens. The current marked answer saved me a lot of time in figuring out what the root cause was for me.

if you are using a data source to lookup AMI's you will need to create a data source for each region you need to lookup AMIs. If you are using a static list from a table, you will need to make sure your lookup has the AMIs for all possible regions and factors in the region in the lookup.

Hopefully that will be helpful context for someone. I do not have the reputation to add comments to the current answer or I would have.

Reasons:
  • RegEx Blacklisted phrase (1.5): I do not have the reputation
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeremy Hopf

79522168

Date: 2025-03-20 07:31:58
Score: 2.5
Natty:
Report link

These plugins can help automate the conversion of Figma designs into React components with Tailwind classes:

  1. Figma to Code (by Anima)

Anima is a powerful plugin that converts Figma designs into React code (JSX) with Tailwind CSS support. It generates responsive and pixel-perfect code, including spacing, typography, and layout.

  1. Figma Tailwind

This plugin generates Tailwind CSS classes directly from Figma designs. It helps you quickly apply Tailwind utility classes to your components.

Reasons:
  • Blacklisted phrase (1): This plugin
  • No code block (0.5):
  • Low reputation (1):
Posted by: dyooreen

79522161

Date: 2025-03-20 07:29:57
Score: 2.5
Natty:
Report link

$password = 'JohnDoe';

$hashedPassword = Hash::make($password);

echo $hashedPassword; // $2y$10$jSAr/RwmjhwioDlJErOk9OQEO7huLz9O6Iuf/udyGbHPiTNuB3Iuy

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

79522158

Date: 2025-03-20 07:28:57
Score: 0.5
Natty:
Report link

MariaDB natively support VARBINARY: https://mariadb.com/kb/en/varbinary/

You would simply have to set the size value large enough to match your existing data (i.e. to cover for the 'max' provision).

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Roel Van de Paar

79522147

Date: 2025-03-20 07:20:56
Score: 1
Natty:
Report link

Directly install from GitHub

pip install git+https://github.com/allenai/allennlp.git

This may also create a conflict with the numpy package, so downgrade them

pip install numpy<2.0.0

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

79522142

Date: 2025-03-20 07:17:55
Score: 2.5
Natty:
Report link

For me what worked was to use the right path when I was calling the web socket from the front. Something like "wss://a1d5-83-39-106-145.ngrok-free.app/ws/frontend". The "/ws/frontend is very important.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jose Ramón Bohopo Binohari

79522138

Date: 2025-03-20 07:15:54
Score: 1.5
Natty:
Report link

In my case, after updating XCode and the Simulator, I started encountering the error:

“Framework ‘Toast’ not found”

For me, the issue was resolved by downgrading the fluttertoast version from:

fluttertoast: ^8.2.12 → fluttertoast: 8.2.8

After changing the fluttertoast version to 8.2.8, the error disappeared, and the build was successful.

I’m not sure about sqflite, but you might want to give it a try.

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

79522135

Date: 2025-03-20 07:15:54
Score: 0.5
Natty:
Report link

Recruitment SOP

1. Purpose

The purpose is to establish a clear and consistent process for recruiting employees to ensure that the organization attracts, hires, and retains the best talent.

2. Scope

This SOP applies to all positions within the organization and covers all stages of the recruitment process, from job requisition to final offer acceptance & On boarding

3. Roles and Responsibilities

4. Recruitment Process Steps

Step 1: Job Requisition

Step 2: MRF Approvals

·         The Hiring manager or department head submits a formal request for new manpower or replacement of an existing employee.

Step 3: Job Advertisement

Step 4: Resume Screening

Step 4: Initial Interview

Step 5: Assessment/Skill Tests (if applicable)

Step 6: Final Interview

Step 6: Salary Fixation & Negotiation

Step 7: Reference and Documentation Checks

Step 8: Appointment Clearance

Step 8: Job Offer

Step 9: Offer Acceptance and On boarding

Step 9: Background Verification

·         Background verification is typically initiated after the candidate has successfully passed the interview process and has been selected for the role, but before the final appointment or offer letter is issued.

5. Documentation and Record-Keeping

7. Continuous Improvement

8. Appendices

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

79522130

Date: 2025-03-20 07:11:53
Score: 3
Natty:
Report link

I have explained all the steps with screenshots, see if it help

https://github.com/CMS365-PTY-LTD/EbaySharp?tab=readme-ov-file#access-and-security

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

79522128

Date: 2025-03-20 07:10:53
Score: 1.5
Natty:
Report link

My answer is not very scientific but in my case the reason was messing with the diagnostics options!

the uploaded image is currently working fine!

enter image description here

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

79522127

Date: 2025-03-20 07:09:53
Score: 1
Natty:
Report link

Firstly, thank you to @Alexander Zeitler. I am posting a complete example here of what worked for me. Alexander's code did not work for me out of the box as I had to adjust the form data to suit my purposes.


internal async Task PostIt()
{

    var username = "<Your username here>";
    
    var password = "<Your password here>";
    
    var baseAddress = new Uri("<Your POST Url here>");
    
    var cookieContainer = new CookieContainer();
    
    using (var handler = new HttpClientHandler() { CookieContainer = cookieContainer, AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate })
    using (var client = new HttpClient(handler) { BaseAddress = baseAddress })
    {
        client.DefaultRequestHeaders.Add("accept-encoding", "deflate");
        client.DefaultRequestHeaders.Add("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36");
        client.DefaultRequestHeaders.Add("Origin","<Origin URL here>");
        client.DefaultRequestHeaders.Referrer = new Uri("<Referrer URL here>");
        client.DefaultRequestHeaders.Add("connection", "keep-alive");
        client.Timeout = TimeSpan.FromMilliseconds(5000);
        // Add authorization headers here...
        var byteArray = new UTF8Encoding().GetBytes($"{username}:{password}");
        client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(byteArray));
        
        /*
            Next comes the form data. I had to customize this to meet the requirements of the <baseAddress> server.
            
            Example: A Http debugger showed me when I was logging into <baseAddress>, the 'content' posted was as such:
            
            "login_username=<username here>&login_password=<password here>&redirect_url=<redirect URL here>&site=www"
            
            @Alexander Zeitler's code has thus been modified below.....
        
        */
    
        var formData = new List<KeyValuePair<string, string>>();
        formData.Add(new KeyValuePair<string, string>("login_username", username));
        formData.Add(new KeyValuePair<string, string>("login_password", password));
        formData.Add(new KeyValuePair<string, string>("redirect_url", "<redirect URL here>"));
        formData.Add(new KeyValuePair<string, string>("site", "www"));
    
        var request = new HttpRequestMessage(HttpMethod.Post, baseAddress);
    
        request.Content = new FormUrlEncodedContent(formData);
    
        var response = await client.SendAsync(request);
    
        if (response.IsSuccessStatusCode)
        {
        //do whatever........
        }
        else
        {
        
        }
    }
}
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): worked for me
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Alexander
  • Low reputation (1):
Posted by: Seven7

79522100

Date: 2025-03-20 06:54:49
Score: 4
Natty:
Report link

Have you seen this article about working with the soft keyboard input mode on Android in .NET MAUI? https://learn.microsoft.com/en-us/dotnet/maui/android/platform-specifics/soft-keyboard-input-mode?view=net-maui-9.0

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Stephen Quan

79522096

Date: 2025-03-20 06:52:49
Score: 2
Natty:
Report link

Deploying with Azure CLI, I found that I got an the:

'The parameter WEBSITE_CONTENTSHARE has an invalid value.'

error because my function app --name flag had an underscore in it.

For anyone else with this error - try removing the underscores.

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

79522089

Date: 2025-03-20 06:49:48
Score: 4
Natty: 4.5
Report link

This Restrict Emoji Input and Enforce Character Length in Swift (with UITextField & UITextView)

https://dreamcooder.medium.com/how-to-restrict-emoji-input-and-enforce-character-length-in-swift-with-uitextfield-uitextview-0f584dfa2388

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: AMIT SAH

79522084

Date: 2025-03-20 06:46:47
Score: 0.5
Natty:
Report link

It is therefore possible to limit writes as mentioned above. However, it is still impossible to limit reads, especially on public data.

The solution I'm thinking of implementing is to create a NestJS API (or similar) that takes a Firebase Query as input and executes it.
This also requires taking into account real time reads with websockets and update/create/delete operation.

This is a real shame, as the promise of firebase is to dispense with the need for an API. But with this system, it could be easy to implement external tools like CloudFlare or Google Cloud Armor to protect against DDOS.

The solution isn't ideal, however; if a security rule made this possible, it would be better.

You can vote for this feature and post comments to ask the Firebase team to speed up development on it.

https://firebase.uservoice.com/forums/948424-general/suggestions/46561738-implement-rate-limiting-for-read-and-write-operati

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

79522076

Date: 2025-03-20 06:39:46
Score: 5.5
Natty:
Report link

I have same issue; I found that the read operation is blocked by Trellix Endpoint Security for Linux Threat Prevention (mfetpd).

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yang WC

79522075

Date: 2025-03-20 06:38:45
Score: 6.5 🚩
Natty: 2.5
Report link

....................... It's resolved now .......................

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (2):
  • Filler text (0.5): .......................
  • Filler text (0): .......................
  • Low entropy (1):
  • Low reputation (1):
Posted by: Mehul Bhanderi

79522067

Date: 2025-03-20 06:32:43
Score: 0.5
Natty:
Report link

One thing you can do is combine the specs into a single "batch".

If you make a spec file called, for instance, home-about.spec.js that imports the home spec and about spec

import './home-page-test.spec.js'
import './about-page-test.spec.js'

The command yarn cypress run --spec cypress/e2e/home-about.spec.js produces the following results

enter image description here


That method might be a bit simplistic, depending on what your npm run home-page-test, npm run about-page-test, etc commands are doing.

It might be better to create a NodeJs script and running the Cypress API Module, where you can add various options and also process results and errors.

// e2e-run-tests.js
const cypress = require('cypress')

cypress
  .run({
    spec: [
      './cypress/e2e/home-page-test.spec.js',
      './cypress/e2e/about-page-test.spec.js',
    ]
  })

Run it with the command node e2e-run-tests.js

enter image description here

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

79522064

Date: 2025-03-20 06:31:43
Score: 3
Natty:
Report link

I also face the same issue ,it resolve when you have put the correct path in your config file for base :

 const viteConfig = {
  plugins: [react(), svgr()],
  base: "./", 
  server: {
    port: 3000,
    open: true,
  },
  build: {
    target: "esnext",
    outDir: "dist",
    sourcemap: true,
    rollupOptions: {
      output: {
        manualChunks: {
          vendor: ["react", "react-dom"],
        },
      },
    },
  },
};

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): I also face the same issue
  • Low reputation (1):
Posted by: Sagar Samanta

79522061

Date: 2025-03-20 06:31:43
Score: 3
Natty:
Report link

According to the flink-kubernetes-operator documentation (See: https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-main/docs/operations/configuration/)

With job.autoscaler.vertex.min-parallelism you can set the minimum parallelism of your pipeline.

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

79522038

Date: 2025-03-20 06:15:40
Score: 4.5
Natty:
Report link

Everyone! I'm new to the forum and would like to help, as I ran into the same issue. A picture is worth a thousand words, ergo...

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jacob Gamet Jlexx

79522036

Date: 2025-03-20 06:11:39
Score: 3
Natty:
Report link

I know this is old, but I basically use abstract as if I am telling Google what the article is about in 1 long descriptive sentence.

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

79522021

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

I have found the solution for my problem in the stackoverflow

<button mat-flat-button class="tertiary-button">Tertiary</button>
.tertiary-button {
  @include mat.button-color($light-theme, $color-variant: tertiary);
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Karthik Senniyappan

79522008

Date: 2025-03-20 05:55:36
Score: 2.5
Natty:
Report link

The issue I was having was due to having the Kestrel configuration in appsettings.json as well as program.cs. For some reason, it was adding another Kestrel (instance?) to the one already configured in the program.cs code. The Kestrel config and https cert loaded in program.cs had already been working with the same Dockerfile and compose.yml. I only noticed it when the same error got triggered at App.run in program.cs while previously it triggered at the certificate loading code also in program.cs

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

79522004

Date: 2025-03-20 05:53:35
Score: 4
Natty:
Report link

This actually works
navigator ap: https://jira/rest/zapi/latest/execution/navigator/{{execid}}?zql=fixVersion = 'API'
or

https://jira/rest/zapi/latest/execution/navigator/{{execid}}?zql=fixVersion = 'API'&offset=0&maxrecords=0&expand=executionStatus,checksteps&_=1416925447577

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vighnesh Prabhu

79522003

Date: 2025-03-20 05:53:35
Score: 5
Natty: 4.5
Report link

opengl在不同的显卡驱动下的版本的API与QT的适配性不是很好,目前来说Intel的显卡可能遇到一些问题使用QT6没问题,但是当切换到AMD的显卡时会导致Qt6Gui.dll发生崩溃,不同的控件可能对于opengl的版本要求也是不同的,

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: 牛金慧

79521998

Date: 2025-03-20 05:51:34
Score: 1
Natty:
Report link

Apply CSS to Remove Margins and Set Height

html, body {
    margin: 0;
    padding: 0;
    height: 100%; 
    background-color: #1976d2; 
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Milan Gohel

79521994

Date: 2025-03-20 05:47:33
Score: 1.5
Natty:
Report link

Add box-sizing for Consistency

{
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #1976d2;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sagar Vaghela

79521990

Date: 2025-03-20 05:45:33
Score: 4.5
Natty:
Report link

I only use it on vscode and have just started using it for less than a month. Is this your value-added fee related to the content of the following picture?

Copilot pro

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

79521988

Date: 2025-03-20 05:43:32
Score: 3
Natty:
Report link

bro use customer delimiter like these | to avoid any special character, if this works then tell here...

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

79521977

Date: 2025-03-20 05:36:31
Score: 2
Natty:
Report link

The problem has been solved (thanks to dai on discord). The issue is input_precision is tf32 by default for dot product, which has 10bits mantissa - leading to trailing digit loss. The problem was very pronounced with V = torch.arange(4096, 4096 + 2048, device = 'cuda', dtype = torch.float32), where the output was [6080., 6080., 6080., 6080., 6084., 6084., 6084., 6084., 6088.,...] . Switching to "ieee" input precision tl.dot(x,y, input_precision = "ieee") solved the issue.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Div

79521972

Date: 2025-03-20 05:33:30
Score: 3
Natty:
Report link

in xcode 15.4 it's control + `

you can find the short cut in navigator tab

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

79521968

Date: 2025-03-20 05:32:29
Score: 6 🚩
Natty:
Report link

I'm also facing the same issue it was working earlier today.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ritik Saini

79521960

Date: 2025-03-20 05:30:29
Score: 5
Natty: 5
Report link

How to Use Progressive web app in IOS

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

79521956

Date: 2025-03-20 05:27:28
Score: 5
Natty:
Report link

Facing same issue, I have checked the network access is allowed to all, added prisma generate in the postinstall script, runs fine in development mode but on build or on vercel deployment it's not getting responses from database

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): Facing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Baidar Gul

79521954

Date: 2025-03-20 05:25:27
Score: 1
Natty:
Report link

I have had luck with this modern (using TEXTJOIN and TEXTSPLIT) but basic Excel formula where RegexExtract, VBA, or SQL where not available or optimal alternatives.

If cell A1 contains a text string with a 10-digit phone number, this formula will look for the last occurrence of the number 10 billion, or smaller, and format it as a phone number with dashes.

=IFERROR(
  TEXT(
    LOOKUP(
      10^10 , MID(
        TEXTJOIN(
          "" , 1 , TEXTSPLIT(
            A1 , { "(" , ")" , "-" , " " , "." } , , 1
            )
          ),
        ROW(
          INDIRECT(
            "1:" & LEN(
              TEXTJOIN(
                "" , 1 , TEXTSPLIT(
                  A1 , { "(" , ")" , "-" , " " , "." } , , 1
                  )
                )
              )
            -9 )
          ),
        10 )
      +0 ),
    "???-???-????" ),
  "-" )

LOOKUP in the array syntax requires that the dataset be sorted. This wasn't a significant issue for my use case as the text strings that I ran through this formula typically contained only one 10-digit phone number.

The TEXTJOIN and TEXTSPLIT functions scrub all common phone number punctuation by converting the parentheses, dashes, and spaces into column separators, then rejoining the reduced string.

INDIRECT is used to determine the string length after all punctuation has been scrubbed. We subtract 9 from this length because a 10-digit string cannot start less than 10-characters from the end of the string. ROW provides MID with potential starting points for the 10-digit string within the full, scrubbed and re-joined text string.

TEXT formats the resultant string as a phone number with area code, segmented with hyphens.

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: XCTC

79521949

Date: 2025-03-20 05:19:26
Score: 1.5
Natty:
Report link

Try

<style>
    .skiptranslate {
        display: none !important;
    }
</style>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kite

79521948

Date: 2025-03-20 05:17:25
Score: 5.5
Natty:
Report link

A follow up question: Do you might possibly know the coordiantes of those mileposts in the original study from P. Vickery ?

Reasons:
  • 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: user29995482

79521944

Date: 2025-03-20 05:15:25
Score: 0.5
Natty:
Report link

The main issue is that you probably still want the user to wait for the result before they can take the next step. So you are trying to not freeze the UI while the user is waiting but at the same time you probably don't want the user to click on something else.

If the delay is minor you can disable the UI and possibly display a "please wait" message, make sure those visible changes take place and then call your function normally.

Your UI is not freezing because of CPU processing so you should not use Task.Run. You are waiting for I/O to complete so you should be using async IO operations. See link below.

https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/async-scenarios

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

79521943

Date: 2025-03-20 05:15:25
Score: 0.5
Natty:
Report link

Bootstrap Grid System and many other responsive CSS frameworks used media query to detect the screen size. Media query is calculating the screen size based on its resolution, how much pixels available on the screen, not the actual size of the screen IRL.

If you are just downsizing the window without using the device toggle, you don't know exactly how much pixels are there in the window.

So what I suggest is to use the device toggle and adjust the pixel size based on your need if the device is not available in the option.

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

79521942

Date: 2025-03-20 05:15:24
Score: 8 🚩
Natty: 5.5
Report link

Did you solve that challenge to migrate to Watson? If no, please contact me:

+55 11 94581-7571 (Brazil)

Reasons:
  • Blacklisted phrase (0.5): contact me
  • Blacklisted phrase (1): please contact me
  • RegEx Blacklisted phrase (3): Did you solve that
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you solve that
  • Low reputation (1):
Posted by: Sergio Gama GAMA

79521938

Date: 2025-03-20 05:12:24
Score: 2.5
Natty:
Report link

UPLOAD KARTU TANDA PESERTA UTBK-SNBT 2025

SPM ULYA TARBIYATUL MUALLIMIN AL-ISLAMIYAH BAITUL QUR`AN CIRATA

[email protected] Switch account

Draft saved

The name, email, and photo associated with your Google account will be recorded when you upload files and submit this form

* Indicates required question

Nama Lengkap Santri*

Aqelania sofia yasir

Jenis Kelamin*

Perempuan

Lokasi UTBK Di Kartu Peserta*

UNIVERSITAS PENDIDIKAN INDONESIA - PURWAKARTA

Jadwal UTBK Di Kartu Peserta*

Date : 04-26-2025

Time : 12:30-16:15

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: aqelania sofia yasir

79521935

Date: 2025-03-20 05:11:22
Score: 7 🚩
Natty: 4.5
Report link

Having issue WIth MultiTenant for each User with jwt in spring boot

i am also trying to create multitenant with jwt but i am having issues if anyone can help it would means alot

Reasons:
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md Op

79521933

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

The solution was to add a log handler to the MLContext object as follows:

public void handler(object sender, LoggingEventArgs args)
{
    this.Invoke(() =>
    {
        textBoxLog.AppendText(args.Message.ToString()+"\\n");
    });
}

...

var mlContext = new MLContext();
textBoxLog.Text = "";
mlContext.Log += new EventHandler<Microsoft.ML.LoggingEventArgs>(handler);

...

var model = pipeline.Fit(data);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ant

79521917

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

run

npm i @nestjs/core @nestjs/common @nestjs/platform-fastify

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: abdelrahman aboneda

79521908

Date: 2025-03-20 04:45:17
Score: 4
Natty:
Report link

Lubab Ahmed

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lubab Ahmed

79521906

Date: 2025-03-20 04:42:17
Score: 3.5
Natty:
Report link

use Prettier extension to automate the indentations once save. less hassle in my opinion

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

79521889

Date: 2025-03-20 04:26:14
Score: 1
Natty:
Report link

Looks like you copied a line of code and didn't finish. Correct code should be this:

Dim numDaysLeft As Integer = Convert.ToString(reader("numDaysLeft"))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FJones

79521885

Date: 2025-03-20 04:23:13
Score: 0.5
Natty:
Report link
For a file (like .txt .db) use
adb shell rm sdcard/your_file.txt
For a directory use :
adb shell rm -r sdcard/your_directory_name
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: oyeraghib

79521884

Date: 2025-03-20 04:22:13
Score: 2
Natty:
Report link

i observed 2 things.

  1. in your Sub Page_Load , you are assigning value of 'EmpEmail' to 'numDaysLeft'.

  2. you have only 2 arguments for String.format 'body', however your 'body' consume {0} and {2} . you should use {1} instead of {2} for the numDaysLeft.

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

79521883

Date: 2025-03-20 04:22:13
Score: 2
Natty:
Report link

applying this code in my mainactivity create mtehod() is very helpful to me and work perfectly thanks to simrkey for this help


bottomNavigationView.setOnApplyWindowInsetsListener(null)
bottomNavigationView.setPadding(0,0,0,0)
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: vaibhav

79521873

Date: 2025-03-20 04:06:09
Score: 7 🚩
Natty: 4.5
Report link

it's not working for me
https://stockonfire.com/product/honeywell-fsl100-sm21-swivel-mount-2/

i used all codes i found on internet and chatgpt with no change!

Reasons:
  • RegEx Blacklisted phrase (3): not working for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Laila Mamilly

79521868

Date: 2025-03-20 04:02:08
Score: 3
Natty:
Report link

I already fixed this problem. It's due to my tables relationship between TimeRecord[Date] and Datetable[Date] (Many to one). This relationship cross-filter direction was "Single". So i managed relationship in the tables and change this to "Both-way". Then my table back to normal as i expected.

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

79521863

Date: 2025-03-20 03:54:07
Score: 1.5
Natty:
Report link

I've finally determined the issue, that is some library doesn't support for older chrome version and modern css syntax as well, as in this case is chrome 83 If you are struggling with the same problem, the first thing you do is to check where libraries that you've installed support the old version or not for example:
with antd => https://ant.design/docs/react/compatible-style with tanstack-query => https://tanstack.com/query/latest/docs/framework/react/installation

and css as well, in my case svh was be used in my css so it just only support for at least 108 version
=> i use "postcss-viewport-unit-fallback" to solve this so whenever using modern css you need to considering check "can i use" page to check this out

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

79521856

Date: 2025-03-20 03:49:06
Score: 3
Natty:
Report link

I am having the same issue. My paths are often non-standard in my projects. I thought that might be why I'm having this issue. So I did the following to be as simple as possible, and to let PyCharm choose what it wants for me.

I created an empty folder, then created a virtual environment (I use pyenv).

Then I ran pip install pytest-bdd

I opened this folder in PyCharm, set the project interpreter to the one in the virtual environment I created, and confirmed that pytest-bdd and its dependencies are installed. I have previously installed the JetBrains Gherkin plugin.

I then created a folder named features in which I added the following:

# some_feature.feature

Feature: Can run executable specifications
  As a developer
  I want to run a feature and/or scenario from this page
  So that I can demonstrate with confidence the system behaves as expected

  Scenario: A simple scenario
    Given I have a scenario
    When I click the play button in this file
    Then the step definitions are executed

I then moved my cursor to the Given clause, hit Alt+Enter, and selected "Create all step definitions". I accepted the defaults when prompted to "Create new step definition file". This created a file named some_feature.py as a peer to the .feature file itself (i.e. in the features folder.

I edited this file to look like this:

# some_feature.py

from pytest_bdd import scenario, given, when, then

@scenario('some_feature.feature', 'A simple scenario')
def test_some_feature():
    pass

@given("I have a scenario")
def step_impl():
    raise NotImplementedError(u'STEP: Given I have a scenario')


@when("I click the play button in this file")
def step_impl():
    raise NotImplementedError(u'STEP: When I click the play button in this file')


@then("the step definitions are executed")
def step_impl():
    raise NotImplementedError(u'STEP: Then the step definitions are executed')

Here is what I expected:

  1. I can run the test by clicking the gutter "Play" icon beside the test_some_function() function in the .py file
  2. I can run the test by clicking either the gutter "Play" icon that appears beside Feature: or beside Scenario: in the .feature file. (there is only one scenario so both should do the same in this case)

What I see is:

  1. The test DOES run when I click "Play" in the .py file
  2. The test DOES NOT run when I click either "Play" in the .feature file. Instead of the usual context menu in which I can select Run or Debug among other options, I get a context menu with one option only: "Nothing here"

What configuration detail am I missing to replace "Nothing here" with the ability to run the tests directly from the features file - as I can from WebStorm, even with exotic/complex paths?

enter image description here

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the same issue
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: biscuit314

79521851

Date: 2025-03-20 03:46:06
Score: 1.5
Natty:
Report link
select *, row Cum sum (fixedLengthArrayVector(av1, av2, av3)) as cav from t
header 1 header 2
cell 1 cell 2
cell 3 cell 4
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29994747

79521849

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

First I had to build my code using go build. Only this was the program was able to recognize to recognize the mesa dll.

Second of all only the opengl32.dll file was needed from the mesa download. I put this next to the exe build. But when I run like this I get the error above.

To fix this I created a run.bat file and inserted the following code which worked.


@echo off
set MESA_LOADER_DRIVER_OVERRIDE=llvmpipe
set GALLIUM_DRIVER=llvmpipe
set MESA_GL_VERSION_OVERRIDE=4.5
set FYNE_RENDER=software
Main.exe
pause
Reasons:
  • RegEx Blacklisted phrase (1): I get the error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ahmed Zaidan

79521838

Date: 2025-03-20 03:38:04
Score: 2.5
Natty:
Report link

I can confirm this happens when you accidentally bring up varying versions of elasticsearch with docker and then index things and then go back down a version.... it gets confused the only way to fix it is to purge the volumes with the data maybe (did not try) re-index the specific documents or something

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

79521837

Date: 2025-03-20 03:37:04
Score: 3.5
Natty:
Report link

Copy + Paste, then adjust the indentation.

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

79521825

Date: 2025-03-20 03:30:02
Score: 2
Natty:
Report link

well, if you meant that, you want to set your custom action view from your own module,
you can set it up yourself according to the user as follows:

1. Go to "Settings" app / module
2. On navbar, click "Users & Companies"
3. From the dropdown, click "Users"
4. Click the "Preferences" tab
5. Set the "Home Action" to the module relevant to you

(reference)

here in my example, I changed the initial home action to open Employees instead of Discuss (default):
odoo user form

odoo employee kanban

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

79521824

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

Python313 bug:

Python3.13 All functions fail to send: IndentationError: unexpected indent https://github.com/microsoft/vscode-python/issues/24256

Use python 3.12

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Minxin Yu - MSFT

79521809

Date: 2025-03-20 03:16:00
Score: 0.5
Natty:
Report link

In seaborn 0.13.2, you can overwrite the col/row names after FacetGrid creation, then regenerate titles with set_titles.

import seaborn as sns

att = sns.load_dataset("attention")
g = sns.FacetGrid(att, col="subject", col_wrap=5, height=1.5)
g = g.map(plt.plot, "solutions", "score", marker=".")
g.col_names = ["just", "put", "anything", "you", "want", "here",
                "A", "B", "C", "D", "E", "F", "G", "H", "I" ,"J", "K", "L", "M", "N"]
# g.row_names = ["the", "same", "as", "above"]
g.set_titles(row_template="{row_name}", col_template="{col_name}")
plt.show()

result

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

79521804

Date: 2025-03-20 03:14:58
Score: 7 🚩
Natty: 5
Report link

We at Clavaa are looking into integrating our customer loyalty app with Google and apple wallet too. Is it possible to add in our payment wallet as another payment method?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Clavaa

79521800

Date: 2025-03-20 03:10:57
Score: 3
Natty:
Report link

In my case, I just removed a custom domain name that was forgotten in my Api Gateway, and after about 2 minutes I was able to delete the certificate.

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

79521798

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

Suhas C V's answer worked for me. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MoHaKh

79521791

Date: 2025-03-20 03:04:56
Score: 5
Natty:
Report link

Without a code example, it's hard to see exactly what you've attempted, which parameters you've given, etc.

However, a quick google search gave me this tutorial, which gave verbose=1 as one of the parameters for the model.fit() function. Perhaps this is what you are looking for?

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: FloopyBeep

79521789

Date: 2025-03-20 03:02:55
Score: 2
Natty:
Report link

يبدو أنك تواجه مشكلة في إدخال البيانات المستخرجة إلى قاعدة بيانات MySQL باستخدام JDBC، رغم أن استخراج البيانات يتم بنجاح. تأكد من النقاط التالية لحل المشكلة:

  1. التحقق من اتصال قاعدة البيانات: تأكد من أن اتصالك بقاعدة البيانات صحيح ولم يحدث أي خطأ أثناء الاتصال.

  2. استخدام جمل SQL صحيحة: تأكد من أن جملة INSERT INTO صحيحة ومتوافقة مع أسماء الأعمدة والجدول.

  3. إغلاق الموارد بعد الاستخدام: تأكد من إغلاق PreparedStatement وConnection بشكل صحيح بعد تنفيذ العملية.

  4. تفعيل الـ Auto-commit أو تنفيذ commit(): إذا كنت تستخدم setAutoCommit(false), فتأكد من تنفيذ conn.commit(); بعد عملية الإدراج.

  5. التحقق من الأخطاء (Exceptions): قم بطباعة أي استثناءات (SQLException) لمعرفة سبب المشكلة.

إذا كنت تحتاج إلى دعم قطع غيار هوندا أو أي استفسار آخر متعلق بالكود، يمكنك مشاركة الكود المستخدم لنساعدك بشكل أدق!

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: محمد فوزي

79521783

Date: 2025-03-20 02:56:54
Score: 3.5
Natty:
Report link

sorry ,it is because the ck's timezone is Asia/Shanghai ,and i don't specify the timezone ,so i use the default UTC ,so it convert incorrectly.

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

79521782

Date: 2025-03-20 02:55:54
Score: 1
Natty:
Report link

Please make sure you have the following resource

agentId="NNVBJK5YNE"

in your region.

And also check if you assign the same region for the bedrock_runtime_client.

bedrock_runtime_client = boto3.client('bedrock-agent-runtime', region_name = 'your region')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Colby Chang

79521780

Date: 2025-03-20 02:54:54
Score: 3
Natty:
Report link

Maybe you can try to check and enable the 3D acceleration.

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

79521779

Date: 2025-03-20 02:52:53
Score: 1
Natty:
Report link

In TablePlus you can do it visually as well, I couldn't drag the fields tho I just changed the number in the # column and hit cmd+s to save

Screenshot of TablePlus' Table Structure view

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

79521771

Date: 2025-03-20 02:46:52
Score: 3
Natty:
Report link

In case someone will look for Autocomplete plugin, here is snippet for Autocomplete with HTML Support:

https://uikit.plus/snippets/autocomplete-with-html-support-67db6ec9d7b531f2738c0e72

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

79521769

Date: 2025-03-20 02:40:51
Score: 5
Natty:
Report link

I have a multipage streamlit app. To add pages, i use:

st.set_page_config(page_title="Admin Overview", page_icon="🌎",layout="wide")

However, the fontcolor of the page title in my sidebar is black, eventhough I want it white. I cannot change the colour since the css styling for sidebar only occurs for texts in sidebar and not the page title. Please help!

Screenshot of streamlit webapp sidebar

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sek Yi Chin

79521757

Date: 2025-03-20 02:32:49
Score: 4
Natty:
Report link

Found answer here: https://stackoverflow.com/a/76462352/26635937

Issue with ~/.zshrc file and PATH within that file.

Had to reinstall cocoa pods with a specific path and then put that path into the .zshrc file

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kurtis

79521754

Date: 2025-03-20 02:31:48
Score: 2.5
Natty:
Report link

Yes, Gemini GenerativeModel has a native async API implementation - generate_content_async. You can easily wrap it under async client framework such as Python asyncio.

This blog from Paul Balm went in detail with sample code on how to prompting Gemini async natively.

Reasons:
  • Blacklisted phrase (1): This blog
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gang Chen

79521749

Date: 2025-03-20 02:26:47
Score: 1.5
Natty:
Report link

Following the @Intu answer. You need a background service, otherwise spring will fail. Adding a simple nginx worked to me.

services:
  example:
    image: nginx
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Intu
Posted by: Nakamoto

79521748

Date: 2025-03-20 02:23:47
Score: 0.5
Natty:
Report link

I use for-loop to interate all events of graph

def stream_graph_updates(user_input: str):
    for event in graph.stream({"messages": [{"role": "user", "content": user_input}]}, subgraphs=True):
        for value in event:
            print("Assistant:", value)
            print("----")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: happy

79521731

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

I guess I was wrong asking on stackoverflow in the first place

anyway, if somebody has the same problem as me and stumble this post. you can try running this on the terminal, I have no more crash so far after using it

defaults write com.apple.dt.Xcode DVTDisableAutocomplete -bool YES
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: hakim apg

79521722

Date: 2025-03-20 01:56:42
Score: 4
Natty: 4.5
Report link

I'll have to get back to you on that one.

do you like my app

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: jacob kowalski

79521720

Date: 2025-03-20 01:55:42
Score: 2.5
Natty:
Report link

First, rename the workbook.names something like this: filteredname.name="x"

Then filteredname.Delete

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

79521709

Date: 2025-03-20 01:40:39
Score: 1.5
Natty:
Report link

One way to achieve this with Java Optional type:

public void f() {
    final int a = Optional.<Integer>empty().orElseGet(() -> {
        try {
          return operationCanThrow();
        } catch(final Exception e) {
          return 42;
        }
    });
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alex Diaz

79521702

Date: 2025-03-20 01:32:38
Score: 2
Natty:
Report link

export const config = {
  matcher: [
    '/((?!api|_next/static|_next/image|favicon.ico).*)',
  ]
}

This peace of code in middleware helped me

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

79521694

Date: 2025-03-20 01:26:37
Score: 0.5
Natty:
Report link

I found a way to achieve this despite there be no official "official" way to do it (and no roadmap to add this feature by Microsoft).

Done on Microsoft Visual Studio Professional 2019 Version 16.11.41

  1. First, open the diff from the Git Changes window.

enter image description here

1.b It is important to actually Keep the tab open (click the Keep Tab Open button.

enter image description here

  1. Keep the view mode on Side by side on the Compare files toolbar

enter image description here

  1. Right click on the file again in the Git Changes window, and select Compare with Unmodified...

enter image description here

  1. Place your newly opened window on the bottom (or top) by dragging the tab so it allow you to place it at the bottom half of the screen. Now you have two split screens.

enter image description here

  1. Now just drag the windows in each split screen aside to show what you want to see in each.

enter image description here

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

79521691

Date: 2025-03-20 01:23:36
Score: 1
Natty:
Report link

The NodeMouseClick event can be called from the BeforeExpand event, passing the latter's sender object and a TreeNodeMouseClickEventArgs constructed from BeforeExpand's Event Args, well mostly. If the X and Y args aren't needed, pass nulls. Otherwise these values, which differ by a few pixels from the X,Y values passed to NodeMouseClick, may be cached during the MouseDown event preceding BeforeExpand, then used in the latter. Calling NodeMouseClick this way results in no double firing apparently because the call is flagged internally and can only fire once until such flag is reset, which would be at least following the AfterExpand event. However, a blocking bool could be set in NodeMouseClick and cleared in AfterExpand or MouseUp if one were concerned about it. Anyway, the NodeMouseClick can be forced to happen for the last node in the tree at the current level, which would not happen in the normal usage unless there is sufficient clearance between the last node and the lower edge of the Treeview window, and this seems to be a design bug.

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

79521689

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

It might not be the most ideal way, but I have cracked half the challenge by creating an identical table (history) with an Append step to add the rows from the table (staging) with the main query. Now when I edit the staging table query to just get the data from the date it was last run (manually entered), it them adds result to the history table.

Next step would be to figure out if there is a way to automatically update the date to the last time it was run.

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

79521688

Date: 2025-03-20 01:19:35
Score: 2
Natty:
Report link

try to set steps in predict function

model.predict(test_dataset_sim, steps=steps)

and the steps is the length of your test_dataset_sim / test_batch_sz

thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mydeimos

79521671

Date: 2025-03-20 01:01:31
Score: 4
Natty:
Report link

"false on immediate error, true if bonding will begin"

https://developer.android.com/reference/android/bluetooth/BluetoothDevice#createBond()

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

79521661

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

lamblichus's suggestion worked perfectly

I switched to Desktop app from Web Application and it seemed to work no problem

Only thing I had to do was to add my email as a test user

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

79521657

Date: 2025-03-20 00:52:30
Score: 1
Natty:
Report link

For anyone new to this error, I had this issue but it was due to using a conda environment that didn't have it installed. The fix I used was running this in a jupyter notebook!

%conda install statsmodels
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: julia

79521655

Date: 2025-03-20 00:50:29
Score: 3.5
Natty:
Report link

Using the code below in cmd worked, of course you have to install ffmpeg, Thank you @rogerdpack for posting the link of the other stack, where I found solution link of the alexa docs https://developer.amazon.com/de-DE/docs/alexa/custom-skills/speech-synthesis-markup-language-ssml-reference.html#h3_converting_mp3

ffmpeg -i <input-file> -ac 2 -codec:a libmp3lame -b:a 48k -ar 24000 -write_xing 0 <output-file>

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @rogerdpack
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Boban BoBo Banjevic

79521648

Date: 2025-03-20 00:40:27
Score: 3
Natty:
Report link

Finally, after testing a lot, I found that by changing Deploy to Heroku Git and then changing Settings. Automatically Deploy move to Github Connected, preserving the new values for env var you modified.

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

79521645

Date: 2025-03-20 00:35:26
Score: 0.5
Natty:
Report link

This is clearly a Factory pattern. The class is dynamically choosing between different objects based on input, which is the essence of the Factory design—creating different instances on demand. The Strategy pattern, on the other hand, is about varying behavior, not creating objects. So, no doubt, this is Factory all the way.

But wait a second. Maybe it is a Strategy pattern, just a slightly twisted one. What if those objects—singletonA and singletonB—represent different strategies for handling some sort of operation? If the input is deciding which algorithm (or strategy) to use based on context, maybe this is the Strategy pattern, albeit through a bizarre object instantiation lens.

I have no idea

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