79615847

Date: 2025-05-10 19:30:49
Score: 0.5
Natty:
Report link

This formula will count the number of blank cells starting in the column that matches the time entered in $B$1 (rounded down to 10-minutes) and moving to the right.

=XMATCH("*",OFFSET(D$1:CX$1,ROW()-1,XMATCH(FLOOR($B$1,"010"),D$1:CX$1)-1),2)-1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bricks96

79615841

Date: 2025-05-10 19:26:47
Score: 9.5 🚩
Natty: 5
Report link

Was this issue resolved? Because I have been facing the same issue

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • RegEx Blacklisted phrase (0.5): Was this issue resolved
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Was this is
  • Low reputation (1):
Posted by: codeGirl

79615840

Date: 2025-05-10 19:25:47
Score: 3.5
Natty:
Report link

You can open in the AWS management console from the Lambda Code Explorer the timeline of the file. This allows you to go back and see the previous file changes.enter image description here

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

79615838

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

You can open in the AWS management console from the Lambda Code Explorer the timeline of the file. This allows you to go back and see the previous file changes.enter image description here

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

79615837

Date: 2025-05-10 19:21:46
Score: 3.5
Natty:
Report link

You can open in the AWS management console from the Lambda Code Explorer the timeline of the file. This allows you to go back and see the previous file changes.enter image description here

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

79615835

Date: 2025-05-10 19:21:46
Score: 2
Natty:
Report link

step 1 . check indentation
step 2 . flutter clean
step 3. check image url again
step 4. flutter run

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

79615824

Date: 2025-05-10 19:07:43
Score: 3
Natty:
Report link

Select a project immediately to the right of Google Cloud in the top left of the screen.

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

79615810

Date: 2025-05-10 18:42:37
Score: 2.5
Natty:
Report link

www.querystreams.com

You can query postgres as well as many other databases. It looks like it's pretty easy to integrate

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

79615809

Date: 2025-05-10 18:38:37
Score: 1
Natty:
Report link
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sandeep Kumar

79615805

Date: 2025-05-10 18:31:35
Score: 1.5
Natty:
Report link

Adjusting Tailwind CSS v4 not to strip utility classes in combination with @apply in CSS Modules, you have to pick up your. css in content array of tailwind. config. js. For performance reasons, Tailwind no longer scans CSS for files by default. By explicitly adding '. /src/*/. css files to be processed by Tailwind on build time. That's important when you use @applying within module CSS files to cover off missing styles like bg-slate-700.

['. /src//*. {js,ts,jsx,tsx}', '. /src//*. css']
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @apply
  • User mentioned (0): @applying
  • Low reputation (1):
Posted by: IRFAN FATHAN M

79615803

Date: 2025-05-10 18:30:34
Score: 1
Natty:
Report link

It is definitely possible to create projects in HTML and CSS only (I actually have done a few paid customer projects like that). Examples are:

JS is anyways not a requirement on a website, nowadays many animations and other functionality can be done in CSS, forms did always work without JS. JS is only needed for advanced functionality on the page.

The other thing that is required to publish a website is a web server that is properly set up and connected to the internet. Or a web space at a hosting provider, where the hosting provider is taking care of the web server.

As @JavierMR already said: The first thing where you need to use a programming language (like PHP, Python or Ruby, etc.) is on the server side, because the website will have reoccurring elements like menus that have to be placed on every page of the website, and you will usually not want to make every change on every page per hand. This can also be achieved by utilizing a pre-built CMS (Content Management System) like WordPress or the likes, which many hosting providers allow you to install on their website. By using a CMS or learning a server-side programming language yourself, you will then also be able to do more complex things, like storing data or user input in a database and retrieving that data again and showing it on the website (If you do that, take a good look at best practices and security guidelines, because as soon as you put something on the internet that takes data input, malicious forces will try to abuse it).

But ultimately you do not need all that to start making websites.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @JavierMR
  • Low reputation (0.5):
Posted by: Michael Scheffenacker

79615794

Date: 2025-05-10 18:22:32
Score: 1
Natty:
Report link

Run
flutter create .

in your project directory

This will create all necessary files (including missing files)

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

79615780

Date: 2025-05-10 18:09:29
Score: 0.5
Natty:
Report link

You’re encountering an issue because you’re trying to use your SoundManager from child views via @Environment, but you’re not injecting it from the parent view. Here’s what you should do to fix and improve the structure:

Since SoundManager is marked as @Observable, you need to pass it down using the .environment(\_:) modifier from your root view (ContentView). Otherwise, the child views won’t be able to access it and might crash at runtime.

.environment(soundManager)

Rather than having SoundManager read from UserDefaults or @AppStorage internally (which can cause timing issues or stale values), it’s more reliable to read the toggle value directly from the view using @AppStorage, and pass it to playSound() as a parameter:

try soundManager.playSound(sound: .confirmTone, soundStatus: soundStatus)

This makes your code more predictable and avoids syncing issues with persistent storage.

import AVKit
import SwiftUI
import Observation

@Observable
final class SoundManager {
  var player: AVAudioPlayer?
  var session: AVAudioSession = .sharedInstance()
  
  enum SoundOption: String {
    case posSound
    case confirmTone
    case positiveTone
  }
  
  // use here your toggle state from @AppStorage and pass as parameter
  func playSound(sound: SoundOption, soundStatus: Bool) throws {
    
    if soundStatus {
      guard let url = Bundle.main.url(forResource: sound.rawValue, withExtension: ".wav") else { return }
      
      do {
        try session.setActive(true)
        try session.setCategory(.playback)
        player = try AVAudioPlayer(contentsOf: url)
        
        try session.setActive(false)
        player?.play()
        
      } catch let error {
        throw error
        
      }
    }
  }
}

struct ContentView: View {
  @Bindable var soundManager: SoundManager
  @AppStorage("toggleStorage") var soundStatus = false
  
  init(soundManager: SoundManager = SoundManager()) {
    self.soundManager = soundManager
  }
  
  var body: some View {
    
    NavigationStack {
      VStack (alignment: .leading) {
        
        List {
          NavigationLink("Buy Tomatoes", destination: Feature1())
          
          NavigationLink("Buy Potatoes", destination: Feature2())
          
          Toggle(isOn: $soundStatus,
                 label: { Text("App Sound Confirmations") }
          )
        }
      }
    }
    .environment(soundManager)  //pass environment from here to your child views
  }
}


struct Feature1: View {
  @Environment(\.dismiss) var dismiss
  @Environment(SoundManager.self) private var soundMgr
  @AppStorage("toggleStorage") var soundStatus = false // Read toggle value directly from AppStorage here
  @State private var error: Error?
  
  var body: some View {
    VStack {
      Text("Feature 1")
        .font(.title)
      
      Button {
        do {
          // Pass soundStatus to the playSound function
          try soundMgr.playSound(sound: .posSound, soundStatus: soundStatus)
        } catch {
          
          self.error = error
        }
        dismiss()
      } label: {
        Text("Purchase Tomatoes?")
      }
    }
  }
}


struct Feature2: View {
  @Environment(\.dismiss) var dismiss
  @Environment(SoundManager.self) private var soundMgr
  @AppStorage("toggleStorage") var soundStatus = false // Read toggle value directly from AppStorage here
  @State private var error: Error?
  
  var body: some View {
    VStack {
      Text("Feature 2")
        .font(.title)
      
      Button {
        do {
          // Pass soundStatus to the playSound function
          try soundMgr.playSound(sound: .posSound, soundStatus: soundStatus)
        } catch {
          
          self.error = error
        }
        dismiss()
      } label: {
        Text("Purchase Potatoes?")
      }
    }
  }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Environment
  • User mentioned (0): @AppStorage
  • User mentioned (0): @AppStorage
  • Low reputation (1):
Posted by: Tornike Despotashvili

79615775

Date: 2025-05-10 18:07:28
Score: 3
Natty:
Report link

Querystreams.com

It does quite a few other databases as well

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

79615773

Date: 2025-05-10 18:04:27
Score: 1.5
Natty:
Report link

Put this in the top of your CSS. I tried all the other hacks, but this worked:

p {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

https://developer.mozilla.org/en-US/docs/Web/CSS/text-size-adjust

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: Colin R. Turner

79615765

Date: 2025-05-10 18:01:26
Score: 1
Natty:
Report link

You definitely can build a web page with html and css. Although if you want to perform some kind of logic (client or server side) it would be a little bit more complex than that.

If you are a beginner in web development, first of all try languages like js or python to do basic stuff (scripting, basic web page logic) and try to identify what do you like more, and go for it, at the end on web development you will have like front and backend specialist and after some time you can become a full stack. You should definitely start with the stuff that calls you into action.

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

79615751

Date: 2025-05-10 17:42:21
Score: 1.5
Natty:
Report link

Thanks for the answer.

I will try this workaround tomorrow, but I would prefer not to change the module (to make it possible to upgrade to future versions of the module without sideeffects.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jørgen Lindskov Knudsen

79615746

Date: 2025-05-10 17:36:19
Score: 3
Natty:
Report link

My stupid mistake was renaming the json file "credentials.json" in windows when it already had the .json extension. So quickstart.py could not find my "credentials.json.json" file. Try listing the contents of your directory to make sure you have the name right.

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

79615737

Date: 2025-05-10 17:30:17
Score: 5
Natty:
Report link

This error has issue github.com/david-lev/pywa/issues/115 The fix for this issue github.com/seboraid/pywa

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

79615734

Date: 2025-05-10 17:26:16
Score: 2.5
Natty:
Report link

I am in a coding bootcamp I have a tutor that insists that [`$events'] will work in the code but have not found fix. I know you discuss ['$events'] as not being adequate is there anywhere else in the code that can be changed to make this work? //Copy reason why stringify (idea where they coming from) Why Stringify? Why use ${allLocations} and not just allLocations? Well, it’s important to always avoid directly putting complex data-type variables into useEffect’s dependency array.

This is because such variables have memory references stored in them that point somewhere else in the memory to where the array values are.

This is in contrast to primitive data-type variables, such as strings.

Take a look at the following illustrations to get a better idea:

Diagram demonstrating potential memory reference difference when using complex data type variables

Figure 4. Memory reference #6441AFFF doesn't equal memory reference #FCC3177A. As a result, useEffect() will think the state has been changed, despite both pointing to arrays that have the same values. The useEffect() callback will be executed, which isn't supposed to happen.

Now let’s look at a situation where useEffect()'s dependency array contains primitive values, such as strings. In this case, the variable stores the actual value rather than a reference to the value. Let’s assume that you have a string dependency, name, where both the old and new values are "test":

Diagram showing variable storing actual value, rather than a reference to the value

Figure 5. "test" does equal "test". As a result, useEffect() will think the state hasn't been changed, and the callback won't be executed, which is the expected behavior.

This is why you would use ${allLocations} to compare the lists after they’re converted to a string (you could also use JSON.stringify(allLocations) to convert it to a string). useEffect() will compare string representations of the arrays, not their memory references.

Keep in mind this is one of many ways that you can compare arrays or objects. In fact, this is one of the more inefficient options, but since it’s so simple, it’s easy to use here.

For a more advanced approach, you could use React hooks like useCallback and useMemo.

Reasons:
  • Blacklisted phrase (1): is there any
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Matthew Monti

79615733

Date: 2025-05-10 17:24:16
Score: 2
Natty:
Report link

Had a similar problem with gcc-15
i installed a fresh msys Environment and downloaded below packages from https://repo.msys2.org/mingw/
pacman -U mingw-w64-i686-gcc-libs-14.2.0-3-any.pkg.tar.zst
pacman -U mingw-w64-i686-gcc-14.2.0-3-any.pkg.tar.zst
pacman -Ss base-devel

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

79615732

Date: 2025-05-10 17:22:15
Score: 2.5
Natty:
Report link

Granting employment notice /

1502515/27/02/2025

Programming date: 23/06/2025

16:10

Print

It's personal data

Name

Khatri

Sex

F

Citizenship

NEPAL

detachment notice

Home address

Bardiya

Nunme previous

First name

Renu

Civil status

Unmarried/a

Home

NEPAL

Date of birth

27/10/2001

Previous first name

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

79615729

Date: 2025-05-10 17:18:14
Score: 0.5
Natty:
Report link

Sass has a NPM Package available to help with migration: sass-migrator.

I recently used it on a large codebase and while it didn't do the complete migration, it did a big part of it.

You have here the link to the npm package and you can install it with npm i --save-dev sass-migrator.

Once you install it run sass-migrator <migration> <entrypoint.scss...> on the CLI.

According to the documentation:

The Sass migrator automatically updates your Sass files to help you move on to the latest and greatest version of the language. Each of its commands migrates a single feature, to give you as much control as possible over what you update and when.

--migrate-deps

This option (abbreviated -d) tells the migrator to change not just the stylesheets that are explicitly passed on the command line, but also any stylesheets that they depend on using the @use rule, @forward rule, or @import rule.

--load-path

This option (abbreviated -I) tells the migrator a load path where it should look for stylesheets. It can be passed multiple times to provide multiple load paths.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @use
  • User mentioned (0): @forward
  • User mentioned (0): @import
  • Low reputation (1):
Posted by: JoaoFCarvalho

79615728

Date: 2025-05-10 17:14:13
Score: 2.5
Natty:
Report link

This comando "rm -r ~/ .eclipse/" delete all archives of Ubunt, without "Ctrl+Z".

I lost all my files. Good luck to whoever posted this here.

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

79615726

Date: 2025-05-10 17:11:12
Score: 3.5
Natty:
Report link

You should migrate to Nextjs if possible (i'm not a front end dev)

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

79615722

Date: 2025-05-10 17:08:11
Score: 2.5
Natty:
Report link

En las versiones de Teradata posteriores a 16.20 se tiene que calcular por el espacio CDS:

Select SUM(CurPermCDS) from DBC.CDSTableSizeV;

Es necesario tenerlo bien definido, si alguna BBDD no es correcta o no se considera como espacio CDS se tendrá que excluir con las macros de SystemFE. El tamaño total será en bytes

SystemFE.CDS_AddExclusion('BBDD','*');----------> Excluir todos los objetos de la BBDD en CDS

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Filler text (0.5): ----------
  • Low reputation (1):
Posted by: Aldeabaran

79615719

Date: 2025-05-10 17:07:10
Score: 10 🚩
Natty: 6
Report link

do you have any solutions for this ?

i got the same problem using the module federation ( in modernjs)

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): i got the same problem
  • RegEx Blacklisted phrase (2.5): do you have any
  • RegEx Blacklisted phrase (2): any solutions for this ?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: karlie liu

79615717

Date: 2025-05-10 17:05:10
Score: 3.5
Natty:
Report link

There might be a problem with the cell numbering changing at run so that the current cell has a larger index than the ones below.

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

79615715

Date: 2025-05-10 17:02:09
Score: 0.5
Natty:
Report link

nginx expects a datagram socket, not a stream socket. you can create a datagram socket like this:

use std::os::unix::net::UnixDatagram;

fn main() -> std::io::Result<()> {
    let socket_path = format!(
        "{}/logtool.sock",
        std::env::var("XDG_RUNTIME_DIR").unwrap_or("/tmp".to_string())
    );
    let _ = std::fs::remove_file(&socket_path);
    let listener = UnixDatagram::bind(socket_path)?;

    loop {
        let mut buf = vec![0; 1_024];
        let read = listener.recv(&mut buf)?;
        let buf = &buf[..read];
        dbg!(buf);
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: tauon

79615714

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

serverComponentsExternalPackages is depreciated and no more supported. Here is a screenshot from their official site

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

79615705

Date: 2025-05-10 16:48:05
Score: 4
Natty:
Report link

This is an interesting and ambitious idea! Tokenizing research contributions could indeed provide more incentives for innovation and transparency. It might also empower individual researchers by giving them ownership over their work. However, I wonder how challenges like quality control, peer review, and preventing misuse would be handled in such a decentralized setup. Also, would there be a standard way to evaluate the value of each tokenized contribution?

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

79615704

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

You can try groupby() along with sum() to group the data by the 'date' column and calculate the total sales per day.


result = df.groupby('date')['sales'].sum().reset_index()

If you'd like to keep date as the index, you can remove .reset_index().

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

79615703

Date: 2025-05-10 16:45:05
Score: 1.5
Natty:
Report link

For flutter iOS I did the first step that mentioned by Sai Prashanth in the appDelegate.swift file AND

I added the Encoded app ID in the URL schemes [check image]. you can find the Encoded app ID in your firebase project settings in the area where you download the GoogleService-Info.plist file enter image description here

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

79615702

Date: 2025-05-10 16:45:05
Score: 1.5
Natty:
Report link

My test shows: yes.


not important:

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Nor.Z

79615696

Date: 2025-05-10 16:41:03
Score: 3
Natty:
Report link
header 1 header 2
cell 3 cell 1
cell 4 cell 2
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md Obaidur Md Obaidur

79615694

Date: 2025-05-10 16:40:03
Score: 2
Natty:
Report link

For those who searched here, do check if your extension is missing win_delay_load_hook.c.

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

79615692

Date: 2025-05-10 16:37:01
Score: 13 🚩
Natty: 6.5
Report link

@zarzou did you find any solution? I am facing the same issue.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • User mentioned (1): @zarzou
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: TechTurtle

79615690

Date: 2025-05-10 16:31:00
Score: 1
Natty:
Report link

Use these two commands:

$ adb kill-server
$ adb start-server

Also go to your mobile "Developer Options" and then close and open the "USB Debugging" option.

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

79615683

Date: 2025-05-10 16:17:57
Score: 2.5
Natty:
Report link

I seem to be having the same problem. Making the repository in GitHub didn't help.

? For which GitHub repository would you like to set up a GitHub workflow? (format: user/repository)

!  The provided authorization cannot be used with this repository. If this repository is in an organization, did you remember to grant access?

i  Action required: Visit this URL to ensure access has been granted to the appropriate organization(s) for the Firebase CLI GitHub OAuth App:
https://github.com/settings/connections/applications/89cf50f02ac6aaed3484

√ For which GitHub repository would you like to set up a GitHub workflow? (format: user/repository)
kellywr10/repository1

Error: Request to https://api.github.com/repos/undefined had HTTP Error: 404, Not Found

I tried to "ensure access has been granted to the appropriate organizations" but a) I'm not sure who the appropriate organization is, and b) I'm not sure how to grant access (should I make it publicly visible? add collaborators? something else?).

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kellywr

79615679

Date: 2025-05-10 16:15:57
Score: 1
Natty:
Report link

To achieve GROUP BY with pagination in Spring Data JPA, you need to use the Criteria API within a custom repository implementation. You'll construct a query with groupBy() and having() to filter by department, and then apply pagination using setFirstResult() and setMaxResults(). A separate count query is needed for the total number of groups for pagination metadata. The result will be a Page<Employee>, where each Employee represents one department group

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

79615672

Date: 2025-05-10 16:04:54
Score: 4
Natty:
Report link

You must have the contacts app installed to make changes to an existing contact.

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

79615659

Date: 2025-05-10 15:47:50
Score: 3
Natty:
Report link

The AWS OpsWorks Stacks service reached end of life on May 26, 2024 and has been disabled for both new and existing customers.

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

79615657

Date: 2025-05-10 15:43:49
Score: 3.5
Natty:
Report link

With the alternate approach after the statefulset recreated, the downstream pods(which was orphan) will get restarted simultaneously. This will create a downtime.

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

79615642

Date: 2025-05-10 15:31:46
Score: 3.5
Natty:
Report link

Do you need 100% Finance? I can service your financial need with less payback problem that is why we fund you for just 2%. Whatever your circumstances, self employed, retired, have a poor credit rating, we could help. Flexible repayment over 1 to 30 yea .Contact us at:[email protected]

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: phillip Brooks

79615640

Date: 2025-05-10 15:28:45
Score: 2
Natty:
Report link

The option options.update_state_every_iteration = true; enables to get updated solutions in callback

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

79615620

Date: 2025-05-10 15:08:40
Score: 1.5
Natty:
Report link

CSS will not apply a transition effect to the mobile navbar element when you use display: none; in the .closed style rule. Remove or comment out this rule setting.

In addition, remove right: -200; from your sample and add the following:

.navbaritensmobile {
    left: 100%;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
 }

This places the left edge of the mobile navbar element off-screen at the right side.

When you display the mobile navbar element, use a transform that transitions the mobile navbar element to the left by the width of the navbar (200px in your sample).

.navbaritensmobile.open {
    transform: translateX(-200px);
}

Here's a working sample with minimal changes to your sample code. It includes the modifications listed above.

function injectNavbar() {
    const navbarHTML = `
    <nav class="navigationbar">
      <div class="navbarcontainer">
        <div class="navbaritens navbaritens1">
          <a href="/" class="navbarlogo"><img src="images/RMLevel.png" alt="Navigation Bar Logo"></a>
        </div>
        <button class="navbaritens navbaritens2 navbarmenuhamburger" onclick="toggleMobileMenu()">
          <span class="lines line1"></span>
          <span class="lines line2"></span>
          <span class="lines line3"></span>
        </button>
        <div class="navbaritens navbaritens3">
          <a href="/" class="navbaritem">Início</a>
          <a href="/comprar.html" class="navbaritem">Comprar</a>
          <a href="/empresas.html" class="navbaritem">Empresas</a>
          <a href="/eventos.html" class="navbaritem">Eventos</a>
          <a href="/manutencao.html" class="navbaritem">Manutenção</a>
          <a href="/contato.html" class="navbaritem">Contato</a>
        </div>
      </div>
    </nav>

    <div class="navbaritensmobile closed">
      <a href="/" class="navbaritem mobile-item">Início</a>
      <a href="/comprar.html" class="navbaritem mobile-item">Comprar</a>
      <a href="/empresas.html" class="navbaritem mobile-item">Empresas</a>
      <a href="/eventos.html" class="navbaritem mobile-item">Eventos</a>
      <a href="/manutencao.html" class="navbaritem mobile-item">Manutenção</a>
      <a href="/contato.html" class="navbaritem mobile-item">Contato</a>
    </div>
  `;

    document.querySelectorAll('.navbarplaceholder').forEach(placeholder => {
        placeholder.insertAdjacentHTML('beforeend', navbarHTML);
    });
}

document.addEventListener('DOMContentLoaded', injectNavbar());

function toggleMobileMenu() {
    const navbarItensMobile = document.querySelector(".navbaritensmobile");
    const hamburgerButton = document.querySelector(".navbarmenuhamburger");

    if (navbarItensMobile.classList.contains("closed")) { //Abre o menu
        navbarItensMobile.classList.add('open');
        navbarItensMobile.classList.remove('closed');
        hamburgerButton.classList.add('xshape'); // Add 'open' to the button
        hamburgerButton.classList.remove('regularshape'); // Ensure 'closed' is removed from button
    }
    else if (navbarItensMobile.classList.contains("open")) {  //Fecha o menu
        navbarItensMobile.classList.add('closed');
        navbarItensMobile.classList.remove('open');
        hamburgerButton.classList.add('normalshape'); // Add 'open' to the button
        hamburgerButton.classList.remove('xshape'); // Ensure 'closed' is removed from button
    }
    else { //Caso o menu não tenha sido aberto ou fechado, adiciona a classe closed
        navbarItensMobile.classList.add('closed');
        navbarItensMobile.classList.remove('open');
        console.error("Elemento '.navbaritensmobile' não encontrado!");
    }

    hamburgerButton.classList.toggle("change");
}
.navbaritensmobile {
    position: fixed;
    top: 64px;
    height: calc(100% - 64px);
    border-radius: 5% 0 0 5%;
    width: 200px;
    left: 100%;
    display: grid;
    grid-template-rows: auto;
    background-color: #242738;
    padding: 20px 0;
    padding-top: 64px;
    box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.2);
    z-index: 8888;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}

    .navbaritensmobile.open {
        opacity: 1;
        transform: translateX(-200px);
    }

@media (max-width: 960px) {
    .navbarmenuhamburger {
        display: block;
        /* Show on smaller screens */
    }

    .closed {
        /*display: none;*/
        /* Hide the menu items on smaller screens */
    }

    .open {
        display: grid;
        /* Show the menu items on smaller screens */
    }

    .navbaritens2.open {
        display: flex;
        /* Show the menu when the 'open' class is applied */
    }

    .navbaritens3 {
        display: none;
        /* Hide the original menu items on smaller screens */
    }
}

/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_menu_icon_js */
.navbarmenuhamburger {
    display: inline-block;
    cursor: pointer;
}

.line1, .line2, .line3 {
    display: block;
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.change .line1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .line2 {
    opacity: 0;
}

.change .line3 {
    transform: translate(0, -11px) rotate(45deg);
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Home</title>
</head>
<body>
    <header class="navbarplaceholder"></header>
    <div class="container">
        <main role="main" class="pb-3">
            <h1>Home</h1>
        </main>
    </div>
</body>
</html>

Reasons:
  • Blacklisted phrase (1): não
  • RegEx Blacklisted phrase (2): encontrado
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: Dave B

79615608

Date: 2025-05-10 14:58:37
Score: 3
Natty:
Report link

Just an update went ubto kivy school website and followed the kivy wsl install instructions which sorted it out snd a kot of sh, ndk, adb probs , i would reccomend follwing their set up

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

79615603

Date: 2025-05-10 14:53:36
Score: 0.5
Natty:
Report link
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="id", insertable = false, updatable = false)
private Long id;

Add @Column annotation to your id field so that hibernate will not include id column when generating insert queries.

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

79615602

Date: 2025-05-10 14:53:36
Score: 2
Natty:
Report link

html{
  background-attachment: fixed; 
  background-size: cover; 
  }

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

79615601

Date: 2025-05-10 14:52:35
Score: 2
Natty:
Report link

Currently FVM does not auto detect which Flutter version to run a project with except you specify using

fvm use <flutter_version>

Also, you can read more on FVM from pub.dev

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

79615590

Date: 2025-05-10 14:42:33
Score: 1
Natty:
Report link

I'm not 100% if I understand your question, but I think you want to remove the /category/ base? Go to Settings > Permalinks > Choose Custom Structure and choose /%postname%/ (which is your /subsub/ example). Then to remove the base (your /sub/), add a . to the Category Base field near the bottom under Optional.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ECP

79615581

Date: 2025-05-10 14:34:31
Score: 2
Natty:
Report link

In addition @ReDragon said:

""" Plugins -------------------------------
set matchit

""" Plugin settings -------------------------
let b:match_words = '<:>,<tag>:</tag>'

And it should be good

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @ReDragon
  • Low reputation (1):
Posted by: Volodymyr Mykhaliouk

79615569

Date: 2025-05-10 14:25:29
Score: 3.5
Natty:
Report link

For anyone still having this problem. Use Zod V4.. That one fixes this issue...

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

79615566

Date: 2025-05-10 14:22:28
Score: 5
Natty:
Report link

I have taken your code and tried to show the stock status of product instead, but something is off cause it gets stuck in loading, do you have any idea?


// Add new column
function filter_woocommerce_admin_order_preview_line_item_columns( $columns, $order ) { 
    // Add a new column
    $new_column['stock'] = __( 'Stock', 'woocommerce' );

    // Return new column as first
    return $new_column + $columns;
}
add_filter( 'woocommerce_admin_order_preview_line_item_columns', 'filter_woocommerce_admin_order_preview_line_item_columns', 10, 2 );

function filter_woocommerce_admin_order_preview_line_item_column_stock( $html, $item, $item_id, $order ) {
    // Get product object
    $product_object = is_callable( array( $item, 'get_product' ) ) ? $item->get_product() : null;
    
$product = $item->get_product();
  // if product is on backorder and backorder is allowed (adjust accordingly to your shop setup)
  if ( $product->is_on_backorder( $item['quantity'] ) ) {
    echo '<p style="color:#eaa600; font-size:18px;">Διαθέσιμο 4 Έως 10 Ημέρες</p>';
  }
  // else do this
  else {
    echo '<p style="color:#83b735; font-size:18px;">Άμεσα Διαθέσιμο</p>';
  
}
add_filter( 'woocommerce_admin_order_preview_line_item_column_stock', 'filter_woocommerce_admin_order_preview_line_item_column_stock', 10, 4 );

// CSS style
function add_order_notes_column_style() {
    $css = '.wc-order-preview .wc-order-preview-table td, .wc-order-preview .wc-order-preview-table th { text-align: left; }';
    wp_add_inline_style( 'woocommerce_admin_styles', $css );
}
add_action( 'admin_print_styles', 'add_order_notes_column_style' );

Reasons:
  • Blacklisted phrase (1): any idea?
  • RegEx Blacklisted phrase (2.5): do you have any
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: DjD3moxOfficial

79615559

Date: 2025-05-10 14:17:27
Score: 3
Natty:
Report link

Sorry for my english. Open shortcuts, go to "endLine". Right click -> add shortcut -> press ctrl ". Control + pinky click click - convenience.

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

79615552

Date: 2025-05-10 14:11:25
Score: 3.5
Natty:
Report link

i have no idea what this is, can someone please simplifi this for a total noob

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

79615547

Date: 2025-05-10 14:07:24
Score: 1
Natty:
Report link

Here is the solution in Javascript

const str='I am 25 years and 10 months old';
let count=0;
let sum=0;
for(let i=0; i<str.length; i++){
  if(str[i]!=' ' && !isNaN(str[i])){
    sum+=str[i]-0;
    count++;
  }
}

console.log(`sum: ${sum}, Avg: ${sum/count}`);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nitesh Kumar Sharma

79615541

Date: 2025-05-10 13:59:22
Score: 4
Natty: 5
Report link

added provideHttpClient() in my angular 18 project to the app.config.ts providers and.... it still doesnt work

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Martien

79615540

Date: 2025-05-10 13:58:21
Score: 3
Natty:
Report link

This annotation means 'ignore it' for all code style, test coverage and bug finding tools such Jacoco.

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

79615535

Date: 2025-05-10 13:50:20
Score: 1
Natty:
Report link

In my case, I had to add the feature constraint

#SBATCH --gres=gpu

in my SLURM script for the supercomputer I am using, so that the node the job gets assigned to, is guaranteed to have an NVIDIA GPU.

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

79615534

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

To solve my problem, I used diskpart :

"Select disk $USB`nclean`nconvert MBR`nexit"|diskpart

($USB is the disk number)

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

79615530

Date: 2025-05-10 13:43:17
Score: 10
Natty: 8
Report link

Was this ever resolved???? I am trying to do the same

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (1): trying to do the same
  • RegEx Blacklisted phrase (1.5): resolved????
  • RegEx Blacklisted phrase (0.5): Was this ever resolved
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Was this
  • Low reputation (1):
Posted by: user30500129

79615529

Date: 2025-05-10 13:43:17
Score: 1.5
Natty:
Report link

This hasn't always been the case Doug, as the OP stated:

I have successfully deployed this function to australia-southeast1 multiple times

It seems there has been a regression GCP/Firebase Functions; code that was working/deploying previously, no longer deploys - despite being V1 and node 22.

Firebase function failed to deploy at other region

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

79615523

Date: 2025-05-10 13:38:16
Score: 0.5
Natty:
Report link

The issue was fixed by removing files key from the root tsconfig.json. This is however different than what docs recommend to do.

Another good practice is to have a “solution” tsconfig.json file that simply has references to all of your leaf-node projects and sets files to an empty array (otherwise the solution file will cause double compilation of files). Note that starting with 3.0, it is no longer an error to have an empty files array if you have at least one reference in a tsconfig.json file.

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

79615518

Date: 2025-05-10 13:32:15
Score: 4.5
Natty: 4.5
Report link

Google.Pay⚙️ℹ️🌐з 2013року по 2025рік офіційно каса паю гугл.заблокіровано по технічним безопасностям баз даних пользувателейі і Государствинех баз з СССР і СРСР і різних баз даних івропи Гітлера кансиля.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: YRA urecgerasim

79615510

Date: 2025-05-10 13:27:13
Score: 2.5
Natty:
Report link

\>>INFO | Critical: Failed to load opengl32sw

This is normal info even if the emulator works.

Try re-creating the device

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Максим Федорук

79615496

Date: 2025-05-10 13:04:08
Score: 0.5
Natty:
Report link

hay pall i have problem in my ajax, if i have data 1000 or bigger in 1000, my data is loading

this is my code, can you'll bring solution, thank you

$query = PMB_T_MAHASISWA::query()
        ->with(['jalur_pendaftaran', 'program_studi', 'program_studi_2', 'program_studi_3'])
        ->withCount([
            'document as total_document',
            'document as uploaded_document' => function ($q) {
                $q->where('C_DOCUMENT_STATUS', 1);
            },
            // Tambahan: khusus dokumen pembayaran yang sudah status = 1
            'document as uploaded_pembayaran_document' => function ($q) {
                $q->where('C_DOCUMENT_TYPE', 'PEMBAYARAN')
                  ->where('C_DOCUMENT_STATUS', 1);
            },
            // Dokumen formulir yang sudah status = 1
            'document as uploaded_formulir_document' => function ($q) {
                $q->where('C_DOCUMENT_TYPE', 'FORMULIR')
                  ->where('C_DOCUMENT_STATUS', 1);
            }
        ]);
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Soni Hidayatulloh

79615495

Date: 2025-05-10 13:02:08
Score: 0.5
Natty:
Report link

In your SecurityFilterChain bean try setting the session management to stateless, update it like this

 @Bean
    public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
        
        http.csrf().disable()
                .authorizeHttpRequests((authorize)->{
                    authorize.requestMatchers("/v1/open","/v1/open/**").permitAll();
                    authorize.anyRequest().authenticated();
                }).httpBasic(Customizer.withDefaults())
.sessionManagement(sessionManagement ->sessionManagement.sessionCreationPolicy(SessionCreationPolicy.STATELESS));
        return http.build();
    }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Zero764

79615494

Date: 2025-05-10 13:01:07
Score: 3
Natty:
Report link

i have faced same issue with sklearn and scikeras, i changed hyper parameter tunning method with keras_tuner library.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Murat Gümüş

79615486

Date: 2025-05-10 12:44:04
Score: 0.5
Natty:
Report link

I landed here because I was not aware that CSS white-space: pre-wrap existed. If you are trying to use $nbsp; to preserve multiple whitespaces, use normal whitespace and CSS rule white-space: pre-wrap instead. This will also break lines at spaces correctly if there is overflow.

MDN Docs on CSS white-space

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

79615485

Date: 2025-05-10 12:43:03
Score: 3
Natty:
Report link

doc_path = "/mnt/data/Saudi_Aramco_Community_Awareness_Program_Element10.docx"

doc.save(doc_path)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Syed Sadaef

79615483

Date: 2025-05-10 12:43:03
Score: 1
Natty:
Report link

I have found the answer by looking at the code!

The PhoneNumberInput component has a countries option, which can be used to restrict the list of countries.

For instance:

<PhoneInput
   placeholder="Phone #"
   value={phone}
   countries={["US","CA","IE","GB"]}
   defaultCountry="US"
   onChange={keyChangeHandler}/>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gabriela

79615482

Date: 2025-05-10 12:42:03
Score: 3
Natty:
Report link

Make sure your variable parameter is on the right side of the equation of the operation.

For example use this

select * from temp_table where temp_1 = @arg1;

instead of this

select * from temp_table where @arg1 = temp1;

The second or bottom select statement will produce the @p0 error in the program environment, however, if running in ISQL and replacing the @arg1 with an actual value, it will work just fine.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @arg1
  • User mentioned (0): @arg1
  • User mentioned (0): @arg1
  • Low reputation (1):
Posted by: Theresa

79615477

Date: 2025-05-10 12:37:02
Score: 1.5
Natty:
Report link

do you use a reverse-proxy like nginx? for nginx, you can set up a proxy like this:

location /xmind {
    proxy_pass http://xmind.app/insert-path-here...;
}

i do not know if this works for xmind (i have never used that program before) but it should work for proxying things in general when you use nginx

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: tauon

79615475

Date: 2025-05-10 12:34:00
Score: 3
Natty:
Report link
  1. The Unicode character "U+2026" represents the horizontal ellipsis, commonly known as "...". It's a punctuation mark indicating an omission or continuation of thought, speech, or text. In HTML, it can be represented as "…". [1, 2, 3]

AI responses may include mistakes.

[1] https://www.compart.com/en/unicode/U+2026\[2\] https://unicodeplus.com/U+2026\[3\] https://www.grammarly.com/blog/punctuation-capitalization/ellipsis/

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

79615468

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

As suggested by Tim, a cumsum of the event grouped by id is sufficient, in addition to replacing NA with 0s.

df %>% group_by(ID) %>% mutate(target=cumsum(replace_na(event, 0)))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Yacine Hajji

79615467

Date: 2025-05-10 12:23:57
Score: 4.5
Natty: 5
Report link

This installations and configurations helped me quickly - https://tailwindcss.com/docs/installation/using-vite

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

79615459

Date: 2025-05-10 12:15:55
Score: 0.5
Natty:
Report link

Use cornerRadius

<v-image
  :config="{
  x: 50,
  y: 50,
  image: image,
  cornerRadius: 5
  }"
/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Andriod

79615458

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

U can try to use: sudo nvim <file_name> . I was in the same situation and this worked for me.

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ikabord

79615457

Date: 2025-05-10 12:11:55
Score: 2.5
Natty:
Report link

you should specify data type in dtype argument of addWeighted method.

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

79615453

Date: 2025-05-10 12:07:54
Score: 2.5
Natty:
Report link

I've found that if you use copy and paste functions in your macro, it ties up the ability to use the spreadsheet. I'm guessing select functions would do the same. But if you are instead saying one cell equals a value in another cell or a formula rather than copy/paste you can still move around and even edit the spreadsheet while the macro is running.

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

79615450

Date: 2025-05-10 12:04:53
Score: 5.5
Natty:
Report link

i m also facing same problem for react native android code

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): also facing same problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sheetal Shinde

79615446

Date: 2025-05-10 12:01:52
Score: 1
Natty:
Report link

For what it's worth, in the past (2021-2024) I was using a localhost webdev app (laragon) for just that, localhost webdev. I made backups to a dedicated drive, and pretty much forgot about those backups. There was also one backup on the C:\ of windows.

Did a Malwarebytes scan of all drives on that workstation and that scan reported three issues, all ngrok, listed each time as "Riskware.Ngrok", type "Malware".

Could be nothing give the time lag. But thought it worth mentioning so those of you more knowledgeable could comment.

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

79615418

Date: 2025-05-10 11:17:42
Score: 0.5
Natty:
Report link

using Get-AzMetric with -Dimension

Using -MetricFilter and checking the dimension values with Get-AzMetricDefinition, I retrieved Availability metrics by ApiName and filtered the result to only show timestamps where Availability was 100 just like how it works in the Azure Portal when filtering by API operations.

$results = Get-AzMetric -ResourceId $resourceId `
  -MetricName "Availability" `
  -Dimension "ApiName" `
  -TimeGrain ([TimeSpan]::FromHours(1)) `
  -StartTime (Get-Date).AddDays(-7) `
  -EndTime (Get-Date)
foreach ($ts in $results.Timeseries) {
    $apiName = $ts.Metadatavalues[0].Value
    $filteredData = $ts.Data | Where-Object { $_.Average -eq 100 }
    if ($filteredData) {
        Write-Host "`n--- API: $apiName ---`n"
        foreach ($dp in $filteredData) {
            Write-Host "Time: $($dp.TimeStamp) | Availability: $($dp.Average)"
        }
    }
}

Output:

enter image description here

enter image description here

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

79615414

Date: 2025-05-10 11:10:40
Score: 3
Natty:
Report link

One thing I've got to say -- this is telling me the previous ex-dividend date, not the next scheduled one.

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

79615411

Date: 2025-05-10 11:05:39
Score: 2
Natty:
Report link

You can force centering your text between two \hfill:
\hfill \text{and} \hfill\\

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Servet Can Gürsel

79615410

Date: 2025-05-10 11:04:38
Score: 1
Natty:
Report link

I couldn't get the Google tool to work on the Wayback Machine as after entering my values to test with and pressing Sign nothing happened although it does seem to work if you press Sign when no default values are changed.

I found an alternative tool here which did the job and enabled me to work out where I was going wrong with the OAuth1 and it's quite useful that it describes the process it goes through:

https://lti.tools/oauth/

In my case the issue was the URL encoded parameters needed to be uppercase not lowercase.

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

79615398

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

If you are getting the variable from execute_command output, you can do the same with OUTPUT_STRIP_TRAILING_WHITESPACE:

execute_process(
    COMMAND git describe --tags
    OUTPUT_VARIABLE VERSION
    OUTPUT_STRIP_TRAILING_WHITESPACE
)
add_compile_definitions(VERSION="${VERSION}")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel G

79615389

Date: 2025-05-10 10:35:31
Score: 5.5
Natty:
Report link

You can find the solution for both Android and iOS in this video. https://www.youtube.com/watch?v=1d5Dtc1UL1c

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: sumeyyeyeg

79615388

Date: 2025-05-10 10:35:31
Score: 2.5
Natty:
Report link

/y : Suppresses prompting to confirm you want to overwrite an existing destination file.
This works in Windows 10 CMD also.

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

79615360

Date: 2025-05-10 10:06:24
Score: 0.5
Natty:
Report link

To add :hover and :active styles to dynamically injected buttons in your Tampermonkey script, you need to inject CSS into the page, because element.style only supports inline styles and does not support pseudo-classes like :hover or :active.

Here’s how you can inject a tag into the page using JavaScript, and define your button styles there:

Add a unique class to your buttons, e.g. .my-tampermonkey-button. Inject a block with CSS rules, including :hover and :active.

https://code.livegap.com/?st=a50pc81142l

This way, your buttons will respond to :hover and :active, and you still get per-button styling via element.style if needed.

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

79615352

Date: 2025-05-10 09:53:22
Score: 3
Natty:
Report link

reinstall, if the problem persists and there is no tmp folder in data folder, create it (it helped me with mariadb)

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

79615342

Date: 2025-05-10 09:40:18
Score: 3.5
Natty:
Report link

Same problem here. I had a folder named queue and for some reason py-nats was importing it. Rename queue to queues and the problem was gone. Thanks Абдурахмон!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ricardo Lenzi

79615339

Date: 2025-05-10 09:32:16
Score: 2
Natty:
Report link

(Ivan) The problem does not occur when using .net framework 4.8 & .net framework 6. It fails using .net 8 & .net 9.

(Charles) I am using Linux Mint 22.1 Cinnamon version 6.4.8. Bottles version 51.21.

(Ralf) I am relatively new to Linux & Bottles and so I will have to look into the logging facility you mentioned.

Thank's for your replies.

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

79615336

Date: 2025-05-10 09:31:16
Score: 3
Natty:
Report link

Check This https://rnfirebase.io/auth/usage

yarn add @react-native-firebase/app

yarn add @react-native-firebase/auth

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

79615335

Date: 2025-05-10 09:31:16
Score: 1
Natty:
Report link

Number of variables: 20

Number of clauses: 93

Initial assignments: [ True False True False True False False True False True False False False True False False True False False True]

Initial energy (unsatisfied clauses): 28

Iteration 1, Energy: 25

Iteration 201, Energy: 8

Iteration 401, Energy: 2

Iteration 601, Energy: 0

Solution found!

Final assignments: [ True False False True False False False True False False False True False False False True False False False True]

Final energy (unsatisfied clauses): 0

Schedule:

Course C1 at Time T1 in Room R1

Course C2 at Time T2 in Room R1

Course C3 at Time T1 in Room R2

Course C4 at Time T2 in Room R2

Course C5 at Time T2 in Room R2

Solution verified: Valid schedule!

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

79615332

Date: 2025-05-10 09:30:16
Score: 1.5
Natty:
Report link

To create a social media strategy that works, start by setting clear, measurable goals aligned with your business objectives. Know your target audience—understand their demographics, interests, and preferred platforms. Choose the right social media channels based on where your audience is most active. Develop a content plan with a mix of engaging, valuable, and brand-aligned posts. Schedule content consistently using a content calendar. Monitor performance with analytics tools to track engagement, reach, and conversions. Adjust your strategy based on data insights and feedback. Engage with your audience regularly to build relationships and trust. Stay updated on trends to remain relevant.

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

79615331

Date: 2025-05-10 09:29:15
Score: 1
Natty:
Report link
sudo ethtool --offload eth0 rx off tx off
Cannot get device udp-fragmentation-offload settings: Operation not supported
Cannot get device udp-fragmentation-offload settings: Operation not supported
Actual changes:
rx-checksumming: off
tx-checksumming: off
    tx-checksum-ip-generic: off
tcp-segmentation-offload: off
    tx-tcp-segmentation: off [requested on]
    tx-tcp6-segmentation: off [requested on]
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30498722

79615330

Date: 2025-05-10 09:28:15
Score: 0.5
Natty:
Report link

Pandas warns during concat because it's changing how it handles object columns containing only True and False values they were previously treated as booleans automatically, but this is being deprecated. You can fix this by either using df.infer_objects() which won't handle NaN values well or explicitly converting with df[col].astype('boolean') (better when you have True, False, and NaN). For non-numeric data like image thumbnails, size mainly impacts memory usage rather than operation performance.

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

79615294

Date: 2025-05-10 08:27:03
Score: 2
Natty:
Report link

High-income earners often face more complex tax obligations, such as additional rate taxes, dividend income, and investment reporting. At Tax4UK, we specialize in helping professionals earning over £100,000 manage their SA100 Self Assessment tax returns. Our expert advisors will identify all applicable reliefs and deductions while ensuring your return is 100% compliant. We also advise on payments on account and how to plan for next year’s liability.

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