79118130

Date: 2024-10-23 13:35:03
Score: 2
Natty:
Report link

I had to upgrade sentry to 5.33.1 to generate my build after Xcode version got updated to 16 but I started getting this same error when trying to generate android app bundle. Just downgrading the version for generating android build resolved the issue for me.

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

79118129

Date: 2024-10-23 13:35:03
Score: 0.5
Natty:
Report link

Just remove this tags from command:

--search-engine=elasticsearch --elasticsearch-host=localhost --elasticsearch-port=9200
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: ASSILI Taher

79118127

Date: 2024-10-23 13:35:03
Score: 0.5
Natty:
Report link

Looks like maybe you forgot to indent

   with conversion_lock:
       path_to_pdf = convert_file_to_pdf(target_path)
    
       logger.info(f"Path to pdf:{path_to_pdf}")

The last line.

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

79118119

Date: 2024-10-23 13:33:03
Score: 2.5
Natty:
Report link

You can follow these steps:

  1. Click on Transform Data
  2. Locate the table that is not refreshing properly.
  3. Right click on the table name
  4. select Enable Load (Uncheck).
  5. After a while again Right click on the same table and select Enable Load
  6. Close and Apply
  7. Refresh the dataset now
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user27950634

79118118

Date: 2024-10-23 13:33:03
Score: 1.5
Natty:
Report link

You can add the function that verify is data is None like:

Create a PIL image from the NumPy array

image = Image.fromarray(arry)

if image is None:
    pass
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Emile

79118116

Date: 2024-10-23 13:32:03
Score: 1.5
Natty:
Report link

This seems unlikely, but is there a defconfig that gets copied over your modifications to the .config file as one of the first things that happens when you do a "make"?

I haven't done much development for the beaglebone, so I'm not exactly sure which defconfig would be used. Typically the defconfig files live in the arch/<machine> directory, and for most builds you need to explicitly build the defconfig target, but maybe the beagleboneblack does something different.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Robert McLean

79118092

Date: 2024-10-23 13:27:01
Score: 3
Natty:
Report link

I just needed to put a path for the ext folder in the php.ini file like that "C:\xampp\php\ext" by default it was "ext"

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

79118086

Date: 2024-10-23 13:24:01
Score: 3.5
Natty:
Report link

Upgrade your node.js version to 20. The issue is no longer present there.

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

79118079

Date: 2024-10-23 13:23:00
Score: 0.5
Natty:
Report link

Looks like you may need to install and load the DBI package, which supplies the generic dbConnect() (for which odbc provides a method)!

So, replace:

library(odbc)

with:

library(odbc)
library(DBI)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Simon Couch

79118075

Date: 2024-10-23 13:22:00
Score: 2.5
Natty:
Report link

Thank you for answering but I don't know how to make it work. I'll share the code with you:

HTML:

<div class="input-field col-md-5">
        <label for="phonePrefix">{{
          "reservation.labels.prefix" | translate
        }}</label>
        <div class="prefix d-flex">
          <div class="flag-img">
            <img [src]="selectedCountryImage" alt="" class="prefix-flag" />
          </div>
          <input
            type="tel"
            name="phonePrefix"
            id="phonePrefix"
            formControlName="phonePrefix"
            (input)="onInput($event)"
            (keydown)="validateNumber($event)"
            (focus)="onFocus()"
            (blur)="onBlur()"
            pattern="[+0-9]*"
            autocomplete="new-password"
            inputmode="numeric"
          />
        </div>
        <div class="countries-prefix" *ngIf="showDropdown">
          <div class="scrollable-content">
            <ul>
              <li
                *ngFor="let country of filteredCountries"
                (click)="onPrefixSelect(country.dialCodes)"
                [class]="{ 'highlight': i === 0}"
              >
                <img
                  [src]="country.image"
                  alt="Flag"
                  class="country-flag"
                />
                <span class="country-option">
                  {{ country.dialCodes }} {{ country.name }}
                </span>
              </li>
            </ul>
          </div>
        </div>
        <p class="suggestion">
          {{ "reservation.suggestions.prefix" | translate }}
        </p>
      </div>

And this is the .ts:

import { Component, OnInit } from '@angular/core';
import {
  FormsModule,
  FormControl,
  FormGroup,
  ReactiveFormsModule,
} from '@angular/forms';
import { HttpClient } from '@angular/common/http';
import { CommonModule } from '@angular/common';
import { TranslateModule } from '@ngx-translate/core';
import { TranslateService } from '@ngx-translate/core';
import { FaIconComponent } from '@fortawesome/angular-fontawesome';
import { faUser, faEnvelope, faUsers, faMobile, faMapPin, faEuroSign } from '@fortawesome/free-solid-svg-icons';
import { NgbDatepickerModule } from '@ng-bootstrap/ng-bootstrap';

@Component({
  selector: 'app-reservation',
  standalone: true,
  imports: [
    ReactiveFormsModule,
    FaIconComponent,
    CommonModule,
    NgbDatepickerModule,
    FormsModule,
    TranslateModule,
  ],
  templateUrl: './reservation.component.html',
  styleUrls: ['./reservation.component.css'],
})
export class ReservationComponent implements OnInit {
  // REACTIVE FORM
  profileForm = new FormGroup({
    firstName: new FormControl(''),
    lastName: new FormControl(''),
    email: new FormControl(''),
    numberOfPeople: new FormControl(''),
    phonePrefix: new FormControl(''),
    phoneNumber: new FormControl(''),
  });

  // FA-ICONS
  faUser = faUser;
  faEnvelope = faEnvelope;
  faUsers = faUsers;
  faMobile = faMobile;
  faMapPin = faMapPin;
  faEuroSign = faEuroSign;

  // DATEPICKER
  displayMonths = 2;
  navigation = 'select';
  showWeekNumbers = false;
  outsideDays = 'visible';

  // MANAGE COUNTRIES
  countries: any[] = [];
  filteredCountries: any[] = [];
  selectedCountryImage: string | null = null;
  highlightedCountry: any;
  showDropdown: boolean = false;
  i: any;

  constructor(private http: HttpClient, private translate: TranslateService) {}

  ngOnInit(): void {
    // Get countries
    this.http
      .get<any[]>('./../../../assets/data/countries.json')
      .subscribe((data) => {
        this.countries = data;
        this.filteredCountries = [...this.countries]; // Initialize with all countries
      });

    // Optional: Subscribe to value changes for more dynamic filtering
    this.profileForm.get('phonePrefix')?.valueChanges.subscribe((value) => {
      this.filterCountries(value);
    });
  }

  // DROPDOWN
  onFocus(): void {
    this.showDropdown = true; // Show all countries on focus
  }

  onBlur(): void {
    // Hide dropdown after a short delay to allow clicks
    setTimeout(() => {
      this.showDropdown = false;
    }, 100);
  }

  // FILTER COUNTRIES
  filterCountries(input: string | null): void {
    if (input) {
      const normalizedInput = input.replace(/\D/g, '');
  
      this.filteredCountries = this.countries.filter((country) =>
        country.dialCodes.some((dialCode: string) => dialCode.replace(/\D/g, '').includes(normalizedInput))
      );

      if(this.filterCountries.length > 0) {
        this.highlightedCountry = this.filteredCountries[0];
      }
  
      const selectedCountry = this.filteredCountries.find(
        country => country.dialCodes.some((dialCode: string)=> dialCode.replace(/\D/g, '') === normalizedInput)
      );
      this.selectedCountryImage = selectedCountry ? selectedCountry.image : null; // Set image if found
    } else {
      this.filteredCountries = [...this.countries];
      this.highlightedCountry = null;
    }
  }
  

  // Find country and update flag
  onPrefixSelect(dialCode: string): void {
    this.profileForm.get('phonePrefix')?.setValue(dialCode);
    
    const selectedCountry = this.countries.find(
      (country) => country.dialCodes === dialCode // Use comparison, not assignment
    );
    this.selectedCountryImage = selectedCountry ? selectedCountry.image : null; // Set image if found
    this.showDropdown = false; // Hide dropdown after selection
  }

  onPrefixClear(): void {
    this.selectedCountryImage = null;
  }

  validateNumber(event: KeyboardEvent): void {
    const allowedKeys = ['Backspace', 'ArrowLeft', 'ArrowRight', 'Tab'];
    const isNumberKey = /^[0-9]$/.test(event.key);
    const isPlusKey = event.key === '+';

    if (!isNumberKey && !isPlusKey && !allowedKeys.includes(event.key)) {
      event.preventDefault();
    }
  }

  onInput(event: Event): void {
    const inputValue = (event.target as HTMLInputElement)?.value || "";
    this.filterCountries(inputValue);
  }
}

PS: I apologize if some of this doesn't make sense, I'm a beginner :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2): I'm a beginner
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: sg9

79118074

Date: 2024-10-23 13:22:00
Score: 2
Natty:
Report link

I don't know why but plt.show(block=True) helped for me.

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

79118073

Date: 2024-10-23 13:22:00
Score: 0.5
Natty:
Report link

The scales package added a helper function that can provide SI prefixes and optionally add a unit. From what I can tell, this was introduced in #339 (March 2022) and is documented here (see the scale_cut parameter).

Using the original example:

library(ggplot2)
library(scales)
data.frame(x = LETTERS[1:5], n = c(0, 5000, 10000, 15000, 20000)) |> 
    ggplot(aes(x, n)) + 
    geom_point() +
    scale_y_continuous(labels = label_number(scale_cut = cut_si("")))

graph

By changing the empty quotes inside cut_si(), you can append a unit such as "m" or "g".

Example from the documenation:

demo_log10(
  c(1e-9, 1),
  breaks = log_breaks(10),
  labels = label_number(scale_cut = cut_si("g"))
)

example from scales documentation

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

79118070

Date: 2024-10-23 13:21:00
Score: 1
Natty:
Report link

Yes, you can limit a formula's result using the MIN function in Excel. If your formula results in a number, say in cell A1, and you want to limit it to a maximum of 10, you can use =MIN(A1, 10). This ensures that even if A1 exceeds 10, the formula will only display or use 10 as the maximum value.

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

79118069

Date: 2024-10-23 13:21:00
Score: 1
Natty:
Report link

Turns out that what I needed was to add the API Permission of the App Registration to Application.ReadWrite.All and have my Entra admin apply Global Consent

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: ste-fu

79118068

Date: 2024-10-23 13:19:59
Score: 4
Natty:
Report link

Thanks for the reply and sorry for the delay. Yes, @MertTheGreat is right, the String encoding leads me to an error. My solution was to use the raw data to process it and then write it to a file. Working with bytes in the raw data is easier than working with writing and then reading the file.

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

79118058

Date: 2024-10-23 13:17:59
Score: 0.5
Natty:
Report link

I am sure your actual code has a lot more going on then just this plot, so I've included several modifications that you can pick and choose to use or throw out, depending on what works best for you.

Additionally, this is set up for Shiny. It won't work as is outside of Shiny.

In your ui, you've named the plot renderer radar. This becomes a keyword in the background and is used in the JS code I've added here. If you change that name, you have to change it in the JS, as well.

In the plot, I've added the options axisNameGap and center.

I added a JS script added to the header via the ui. In this code, there are 2 functions for resizing: one to resize the plot labels' font size and one to resize the legend text. There is also a timeout function that initially resizes the plot so that the width to height ratio is 3/2.

The timeout function includes one last function It creates an event that is triggered whenever the window is resized. This calls for font size and plot size adjustments, based on the width of the window. (Where the window is the browser window.)

If you have any questions, please let me know.

library(shiny)
library(bslib)
library(echarts4r)

ui <- page_navbar(
  tags$head(
    tags$script(HTML(
      "radarFontSize = () => {    /* for plot labels */
        let width = document.getElementById('radar').offsetWidth;
        let nfs = Math.max(Math.round(width / 45), 6);                  /* never less than 6 */
        return nfs;
      }
      
      legFontSize = () => {    /* for legend labels */
        let width = document.getElementById('radar').offsetWidth; /* width determins font size*/
        let nfs = Math.max(Math.round(width / 50), 6);                  /* never less than 6 */
        return nfs
      }

      setTimeout(function() {
             /* 'radar' here is from the name assigned in echarts4rOutput in the UI */
        e = echarts.getInstanceById(radar.getAttribute('_echarts_instance_'));
        w = document.getElementById('radar').offsetWidth * .9;
        e.resize({width: w, height: Math.round(w * 3/5)});             /* resize on render */
      
        window.onresize = () => {                                      /* resize on resize */
          w = document.getElementById('radar').offsetWidth * .9;
          e.resize({width: w, height: Math.round(w * .65)});           /* fit in your hole */
          e.setOption({radar: {axisName: {fontSize: radarFontSize()}}, /* adjust plot to window */
                       textStyle: {fontSize: legFontSize()} });
        }
      }, 300)") # give me a minute to load...
    )
  ),
  sidebar = sidebar(),
  nav_panel(
    title = "Chart",
    echarts4rOutput("radar")
  )
)

server <- function(input, output, session) {
  output$radar <- renderEcharts4r({
    df <- data.frame(
      x = c("Openness", "Conscientiousness", "Extroversion", "Agreeableness", "Neuroticism"),
      y = runif(5, 1, 5),
      z = runif(5, 3, 7)
    )
    
    df |>
      e_charts(x) |>
      e_radar(y, max = 7) |>
      e_radar(z) |>
      e_tooltip(trigger = "item") |> 
      e_radar_opts(
        center = c('52.5%', '60%'),   # <-------- I'm new!
        axisNameGap = 5,              # <-------- I'm new!
        axisName = list(
          color = "black",
          fontFamily = "Libre Franklin",
          fontSize = 18
        )
      )
  })
}

shinyApp(ui, server)

scaled plot size

scaled plot 2

plot 3

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: Kat

79118054

Date: 2024-10-23 13:16:58
Score: 3
Natty:
Report link

Maybe your card had been already used for Google Workspace trial or Google Cloud before.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: T. Al Rashid

79118050

Date: 2024-10-23 13:15:58
Score: 0.5
Natty:
Report link

But also, it seems you're using env on a git action ( notice the lower a ), in this case composite.. So, I would say you need to add something like

CLIENTE_ID=${{env.CLIENT_ID}} CLIENT_SECRET=${{env.CLIENT_SECRET}} envsubst < mdm.xml.template > mdm.xml
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gonçalo

79118047

Date: 2024-10-23 13:14:58
Score: 1.5
Natty:
Report link

Trend visualizations should be used for datasets that have a sequential, numeric X that is not time.

Trend assumes that you are not using a timescale (or at least not linked to the time range you select in the dashboard), otherwise you would use a time series panel. Example: horsepower per rpm.

Zoom-in like you described is to change the time range ("I am seeing a month, I want to see a specific week" -> instead of manually choosing it in the time picker, select range on graph). The trend panel doesn't implement this behaviour as it's not using the time range.

I do see a case of setting a min-max X in Trend with it. I do encourage you to evaluate if doable and propose a Pull Request on the source code.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Clément Duveau

79118042

Date: 2024-10-23 13:13:57
Score: 1.5
Natty:
Report link

For me, none of the solutions above worked, including the linked answer in @dmytro response. However, I got it solved in the following way:

  1. Uninstall react-native-reanimated. You can also remove react-native-reanimated from package.json and run npm update.
  2. Then use expo to install react-native-reanimated. Simply run expo install react-native-reanimated.
  3. Restart your project.

I got these clues from this github link

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @dmytro
  • Low reputation (1):
Posted by: engr.ukairo

79118038

Date: 2024-10-23 13:12:57
Score: 3
Natty:
Report link

There is an app called jellyfish which I think gives some info about the PRs.

another way is to use the API for bitbucket cloud and create a script/program to retrieve the information: https://developer.atlassian.com/server/bitbucket/rest/v805/api-group-pull-requests/#api-api-latest-projects-projectkey-repos-repositoryslug-pull-requests-pullrequestid-blocker-comments-get

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

79118037

Date: 2024-10-23 13:12:57
Score: 1.5
Natty:
Report link

Setting the storage class to apply in the environment as given in your question should work when you additionally pass the --preserve argument.

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

79118035

Date: 2024-10-23 13:12:57
Score: 2.5
Natty:
Report link

For anyone in future. I tried all different solutions and it didn't work. It appears that VS code was the issue for me.Running the code directly from shell works. Found the solution hidden in this post.

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

79118034

Date: 2024-10-23 13:11:57
Score: 2
Natty:
Report link

For those using electron by itself with a package.json file. make sure to include the path to the png with the "icon" key.

example:

{

"name": "app",

"version": "1.0.0",

"description": "generic description",

"main": "main.js",

"type": "module",

"icon": "./path/to/icon.png",

}

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

79118018

Date: 2024-10-23 13:06:56
Score: 3
Natty:
Report link

From first glance it looks like InstallInstructionsorBanner needs to be reworked to include the isMobile variable within it's logic. If everything else is working that should do the trick, if not I would look over the service worker, verify that everything is setup correctly, if you're still having trouble feel free to debug through and give me some feedback and ill get back to you with an answer.

const InstallInstructionsOrBanner = () => {
  const userAgent = window.navigator.userAgent;
  const isIosDevice = /iPad|iPhone|iPod/.test(userAgent) && 
!window.MSStream;

if (isIosDevice) {
  return <IosInstallInstructions />;
} else {
  return <InstallBanner />;
}
};

you should simply be able to rework the if statement

Reasons:
  • Blacklisted phrase (3): give me some
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zack

79118017

Date: 2024-10-23 13:06:56
Score: 2.5
Natty:
Report link

This is not an answer. The above answers above do not seem to work in .Net8 hence my request for help.

I have upgraded to .NET 8. Have also upgraded Serilog.AspNetCore(8.0.3) Serilog.Extensions.Hosting (8.0.0) But I get the error described above.

'IWebHostBuilder' does not contain a definition for 'UseSerilog' 

my code: " webBuilder.UseStartup() .UseConfiguration(Configuration) .UseSerilog();"

Reasons:
  • Blacklisted phrase (1): not an answer
  • RegEx Blacklisted phrase (1): I get the error
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alan Murray

79118015

Date: 2024-10-23 13:06:56
Score: 1.5
Natty:
Report link

No need to use anaconda, just a python virtual environment

First of all check your Python version.

Then go to this link to download the TA-LIB library that corresponds to your Python version: https://github.com/cgohlke/talib-build/releases

Then install Git Bash.

Then, in the directory where you downloaded the TA-Lib library, right-click, select Git Bash, which will open a terminal in that same directory. On the terminal, use pip install targetting the TA-Lib library (the full file name with extension). For example:

pip install TA_Lib-0.4.32-cp311-cp311-win_amd64.whl

I am using

3.11.7 version Python 64-bit Windows TA_Lib-0.4.32-cp311-cp311-win_amd64.whl

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: eminsk

79118012

Date: 2024-10-23 13:05:56
Score: 1.5
Natty:
Report link

Running:

flutter clean

Solved for mine.

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

79118005

Date: 2024-10-23 13:02:54
Score: 4
Natty:
Report link

For future searchers: This answer does work:

Set margin/padding for each page to print (html/css)?

It uses table < thead > to free up space on each print page.

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

79118004

Date: 2024-10-23 13:02:54
Score: 0.5
Natty:
Report link

I discovered that the issue was related to the antivirus on the server and it corrupted some JRE files inside webspehere java folder.

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

79118002

Date: 2024-10-23 13:01:54
Score: 1.5
Natty:
Report link
const response = await fetch(csvFile);

The posted code is not fetching the csv file correctly (it is passed csvText which has not yet been defined).

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

79117998

Date: 2024-10-23 13:00:54
Score: 1
Natty:
Report link

I have reviewed your C++ code. The issue lies in the fact that your code does not utilize cv::split to separate the channels of the input image for the tensor data. It is necessary to split the channels and employ a buffer that is sufficiently large to rearrange the data into the following format: [r0, r1, r2, ..., rn], [g0, g1, g2, ..., gn], [b0, b1, b2, ..., bn]. Additionally, for the output tensor data, you should apply the reverse process and use cv::merge to reassemble the channels back into an RGB image.

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

79117991

Date: 2024-10-23 12:58:54
Score: 3
Natty:
Report link

Holiday or not, history is supposed to get last 5 trading days data. It is a bug in yahoo finance API.

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

79117990

Date: 2024-10-23 12:58:54
Score: 1.5
Natty:
Report link

I think your question is similar to Add one additional bean to "@WebMvcTest".

There are multiple ways to add your bean into slice test context. You can use @Import, @ComponentScan, @TestConfiguration (and create your bean by yourself with new operator).

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Import
  • User mentioned (0): @ComponentScan
  • User mentioned (0): @TestConfiguration
  • Low reputation (1):
Posted by: snej0keee

79117988

Date: 2024-10-23 12:57:53
Score: 3.5
Natty:
Report link

you can remove FIREBASE_TOKEN from environment variable to

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

79117987

Date: 2024-10-23 12:57:53
Score: 2
Natty:
Report link

You can also check the upload_tmp_dir extension in php.ini and uncomment if commented.

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

79117985

Date: 2024-10-23 12:57:53
Score: 1
Natty:
Report link

Using snachmsm's Play Store link approach, Google Meet is com.google.android.apps.tachyon on Android today.

It came preinstalled on a 2021 Samsung tablet (Android 11) and I confirmed this package name with adb: pm list packages -f tachyon to search for "tachyon" in package names.

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

79117984

Date: 2024-10-23 12:56:53
Score: 5.5
Natty:
Report link

I have the same problem. If I plug the ESP to USB and the I open the port it works.

If I reload the app and connect again it gives BufferOverrunError.

So I provisionally solved the problem by unplugging/pluggin the usb plug and opening the port with web serial api

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Stefano Titotto

79117981

Date: 2024-10-23 12:55:53
Score: 1.5
Natty:
Report link

Unfortunately Looker studio does not currently support automatic email or notification triggers based on specific thresholds, all is not lost because other tools do. You best bet is to get a paid for tool like Zapier that will have the capability built in. If you are looking for a cheaper option Google sheets with the aid of Apps Script should be able to do it.

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

79117965

Date: 2024-10-23 12:51:52
Score: 1.5
Natty:
Report link

FYI, for anyone using Apple Silicon, this was the path of the homebrew Cellar for me:

export PATH=$PATH:/opt/homebrew/Cellar/gettext/0.22.5/bin

and not

usr/local/homebrew
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mvoellmy

79117963

Date: 2024-10-23 12:51:52
Score: 2
Natty:
Report link

An uninformative error message indeed. Apparenlty, replace_with() takes variable length argument (*args), rather than a list of elements, so when given a list it attempts to insert that as if it were an element. Passing the list unpacked:

replace_with(*data)

is the way to go.

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

79117959

Date: 2024-10-23 12:50:51
Score: 2
Natty:
Report link

One use case is in observability/metrics:

https://docs.micrometer.io/micrometer/reference/concepts/gauges.html

All of the different forms of creating a gauge maintain only a weak reference to the object being observed, so as not to prevent garbage collection of the object.

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

79117944

Date: 2024-10-23 12:46:50
Score: 1.5
Natty:
Report link

The filename must include openapi or swagger and the extension must be yaml, yml, or json.

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

79117933

Date: 2024-10-23 12:43:50
Score: 0.5
Natty:
Report link

Python 3.8 is inconsistent and buggy on this issue. I didn't test with higher versions

Python itself REQUIRES the correct indentation even for lines without content. For example try this (you need to define the @MyAnnotation but it does not do anything)

class ....
 @MyAnnotation
 '''
 some comment
 '''

 def f(...):
   ...

Note the blank line has no whitespaces so 0 indentation. Python will give a syntax error on that line. You must add a whitespace on that line.

However, PIP thinks otherwise. If you make a package of this to create the.tar.gz file, and you pip install the.tar.gz file, all lines with only whitespace will be replaced with just a blank empty line. And then python gives the syntax error.

Reasons:
  • Whitelisted phrase (-1): try this
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @MyAnnotation
  • Low reputation (1):
Posted by: ujd8i2

79117931

Date: 2024-10-23 12:42:49
Score: 1.5
Natty:
Report link

To resolve this issue, add the following CSS:

.carousel-item{
    transition: transform .6s ease !important;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dilip Kevat

79117923

Date: 2024-10-23 12:41:49
Score: 3.5
Natty:
Report link

this didnt solve my problem..the search continues

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

79117919

Date: 2024-10-23 12:40:49
Score: 2
Natty:
Report link

The new way to do this is, as mentioned here

<iframe … allow="fullscreen=(self)">
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sahil gujar

79117918

Date: 2024-10-23 12:39:48
Score: 2
Natty:
Report link

I faced the same issue . I was using @Provides annotaion from import com.google.android.datatransport.runtime.dagger.Provides

fix was to change it to import dagger.Provides

Hope it helps someone still facing this issue .

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Provides
  • Low reputation (1):
Posted by: amith upadhya

79117917

Date: 2024-10-23 12:39:48
Score: 3.5
Natty:
Report link

The year is 2024 and Googlebot crawl rate tool in Search Console is going away. The tool is going away on January 8, 2024 because Google says it is no longer useful.

Read this article: https://searchengineland.com/googlebot-crawl-rate-tool-in-search-console-is-going-away-435012

Here is the "NEW" way to limit Googlebot using response headers: https://developers.google.com/search/docs/crawling-indexing/reduce-crawl-rate

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: radioSPARKS

79117915

Date: 2024-10-23 12:38:48
Score: 3
Natty:
Report link

Yes, agree with @jasper. you have to mentioned the controller code so we can idenitfy the issue.

But i think after delete you should have to refresh the livewire component.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @jasper
  • Low reputation (0.5):
Posted by: Vishal Ribdiya

79117907

Date: 2024-10-23 12:36:46
Score: 10.5 🚩
Natty:
Report link

Were you able to resolve this issue?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chetan Bhavsar

79117893

Date: 2024-10-23 12:32:45
Score: 3.5
Natty:
Report link

You have to explicitly enable "dynamic requests": https://www.tradingview.com/pine-script-docs/concepts/other-timeframes-and-data/#dynamic-requests

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

79117891

Date: 2024-10-23 12:31:45
Score: 3
Natty:
Report link

I just found this OpenCV Build for MinGW - which I think is more suitable for my MinGW setup - and my project is now compiling and linking successfully.

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

79117880

Date: 2024-10-23 12:29:44
Score: 3.5
Natty:
Report link

It turned out to be a bug in dynalink module of jdk. This issue - https://github.com/szegedi/dynalink/issues/15 was the root cause of my problem.

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

79117870

Date: 2024-10-23 12:26:43
Score: 3.5
Natty:
Report link

I have been stupid enough to create a google.py file as my main file.LOL

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

79117863

Date: 2024-10-23 12:24:43
Score: 1
Natty:
Report link

It sounds like you're missing the CUDA Toolkit. Here's how to install it:

Visit NVIDIA's CUDA Toolkit download page, on google:

  1. For the latest version search for: CUDA Toolkit Downloads For specific versions (e.g. CUDA 12.1): CUDA Toolkit 12.1 Archive
  2. Select your configuration (OS, architecture, version) For Linux users, I recommend choosing the runfile (local) installation method as it's straightforward.

Important Installation Notes:

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

79117857

Date: 2024-10-23 12:23:40
Score: 6 🚩
Natty:
Report link

Even me to have same problem even if i create new flutter i am getting the same error.even if with new MainActivity.java i gets same error. if i copy the same MainActivity.java i gets the same error but no errors all over the project...

Reasons:
  • RegEx Blacklisted phrase (1): i am getting the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have same problem
  • Me too answer (0): i am getting the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Deepak Developer

79117851

Date: 2024-10-23 12:21:39
Score: 3.5
Natty:
Report link

A bit late response, but this should do the work:
https://developer.atlassian.com/cloud/bitbucket/rest/api-group-pullrequests/#api-pullrequests-selected-user-get

However it is marked as deprecated. If you still need help, write a comment and I will try to answer it.

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

79117847

Date: 2024-10-23 12:20:39
Score: 1
Natty:
Report link

Solved

I changed the way Xcode runs my program, it was just executing ./a.out instead of executing something like mpiexec a.out

  1. Edit Scheme -> Run -> Info -> Executable -> Other... -> </path/to/mpiexec>
  2. Edit Scheme -> Run -> Arguments -> Arguments Passed on Launch -> -np 4 "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_NAME)"
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: FueledByPizza

79117841

Date: 2024-10-23 12:18:38
Score: 3.5
Natty:
Report link

Since 2021 this is now possible in Onedrive for Business

Refer - https://developer.microsoft.com/en-us/graph/changelog/?search=6f3dd177-b9b4-45c0-8893-c65196a2e502

The url should be in the following format: https://graph.microsoft.com/v1.0/drives/{drive_id}/root:/{path_to_directory}:/delta

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

79117840

Date: 2024-10-23 12:18:38
Score: 1
Natty:
Report link

The problem is within your code you haven't mentioned the mode for wifi before initiating.

WiFi.softAP("ESP");

use this instead:

WiFi.mode(WIFI_AP);
WiFi.softAP("ESP", "password123");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: abdullah-1307

79117830

Date: 2024-10-23 12:14:38
Score: 1
Natty:
Report link

You should update VisualCode to the last version and follow the steps explained here (very simple): https://readmedium.com/fix-nodejs-debugger-vscode-401277e2e9be

This worked for me and now my debugger is getting attached with no problem :)

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Frank

79117829

Date: 2024-10-23 12:14:38
Score: 1
Natty:
Report link

@JZL003 solution is great, but parentFolder is not actually used, so code could be simplified further, such as:

function recurseFolder(myFolder) {
  var childfolders = myFolder.getFolders();   // get the list of sub folders in the root of that folder
  while (childfolders.hasNext()) {            // count the sub folders
    recurseFolder(childfolders.next());
  }
  var hasFile = myFolder.getFiles().hasNext();      // get the list of files in the root of that folder
  var hasFolder = myFolder.getFolders().hasNext();  // get the list of files in the root of that folder
  if (!hasFile && !hasFolder) {            
    myFolder.setTrashed(true);
  }             
}
Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @JZL003
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Tony Broadbent

79117826

Date: 2024-10-23 12:13:37
Score: 1
Natty:
Report link

UPDATE 2024

You can now use select:has( option[value=""]:checked ) to eg. style select with default empty value as a placeholder with grey color, etc...

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

79117817

Date: 2024-10-23 12:12:37
Score: 3
Natty:
Report link

mpesa does not allow the use of tunnelling tools such as ngrok for security reasons... try deploying your functions on cloud platforms such as netlify or vercel and get your callback url from there.

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

79117816

Date: 2024-10-23 12:12:37
Score: 2.5
Natty:
Report link

The issue with this one was that MSAL requires to use different authentication for the sharepoint so I had to use graph api acces to get the files not the REST sharepoint and removing these permission.

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

79117811

Date: 2024-10-23 12:09:34
Score: 8.5 🚩
Natty:
Report link

I am encountering the same problem but nothing seems to be working out can someone help me out

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can someone help me
  • RegEx Blacklisted phrase (2): help me out
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dobby lost his sock

79117806

Date: 2024-10-23 12:08:33
Score: 3.5
Natty:
Report link

It looks to me you have a findOrFail inside your AccountMediumController

This will throw an model not found exception resulting in a 404

Could you add your controller code as well?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Jasper Helmich

79117798

Date: 2024-10-23 12:05:33
Score: 2.5
Natty:
Report link

I used sql login and got same error while creating ODBC dsn, then i cleared the cookies and browsing data, worked for me at the client machine

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: THARVES MYDHEEN M MOHAMEDKASIM

79117797

Date: 2024-10-23 12:04:32
Score: 3
Natty:
Report link

The error is: you try to add different username as your Raspberry pi (system) username (you can check in your folder struct root/home/username/folders). If you try your system username it will be work.

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

79117795

Date: 2024-10-23 12:03:32
Score: 1.5
Natty:
Report link

you can this code: @Bean public LockProvider lockProvider(DataSource dataSource) { return new JdbcTemplateLockProvider( JdbcTemplateLockProvider.Configuration.builder() .withJdbcTemplate(new JdbcTemplate(dataSource)) .withTimeZone(TimeZone.getTimeZone("GMT+4:30")) .withTableName("schemaName.shedlock") .build() );

}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Bean
  • Low reputation (1):
Posted by: Mahdi Shirinabadi

79117791

Date: 2024-10-23 12:01:31
Score: 2.5
Natty:
Report link

Is that what you meant?

Output:

I am first apple
I am second cherry
I am third banana
I am first apple
I am second cherry
I am third banana
I am first apple
I am second cherry
I am third banana

Code:

def main_func():
fruits = ["apple", "cherry", "banana"]

for index, fruit in enumerate(fruits):
    def first():
        print("I am first", fruit)

    def second():
        print("I am second", fruit)

    def third():
        print("I am third", fruit)
    
    if index == 0:
        first()
    elif index == 1:
        second()
    else:
        third()

for i in range(3):
    main_func()
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is that
  • Low reputation (1):
Posted by: Kempeter

79117785

Date: 2024-10-23 11:55:30
Score: 2.5
Natty:
Report link

As suggested by Kevin Ball on Stack Overflow:

import os

os.environ['TF_ENABLE_ONEDNN_OPTS'] = '0'

import keras
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: BsAxUbx5KoQDEpCAqSffwGy554PSah

79117781

Date: 2024-10-23 11:55:30
Score: 2.5
Natty:
Report link

Yes as per Chris's answer we need to reference valid logical resource for !Ref to work

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

79117777

Date: 2024-10-23 11:54:30
Score: 0.5
Natty:
Report link

I also faced a similar issue for Apache Directory Studio. Tried almost all of the solutions listed here, but nothing worked for me. I'm using a macOS M3 pro which is on aarch64 architecture. In my case, only solution was to clone and build the directory-studio from the source (You can find the built artifacts in the "product/target/products/" directory).

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Has code block (-0.5):
Posted by: Thamindu DJ

79117776

Date: 2024-10-23 11:54:30
Score: 2
Natty:
Report link

I needed to do this:

$conn = $app['db']->getConnection()->setSchemaGrammar(new \Illuminate\Database\Schema\Grammars\MySqlGrammar());
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: youdsmedia

79117773

Date: 2024-10-23 11:53:29
Score: 0.5
Natty:
Report link

I found a workaround, maybe someone will have something more elegant then this:

private void webView21_CoreWebView2InitializationCompleted(object sender, Microsoft.Web.WebView2.Core.CoreWebView2InitializationCompletedEventArgs e)
{
    webView21.CoreWebView2.SaveAsUIShowing += CoreWebView2_SaveAsUIShowing;
}

private void webView21_NavigationCompleted(object sender, Microsoft.Web.WebView2.Core.CoreWebView2NavigationCompletedEventArgs e)
{
    webView21.CoreWebView2.ShowSaveAsUIAsync();
}
private void CoreWebView2_SaveAsUIShowing(object sender, CoreWebView2SaveAsUIShowingEventArgs e)
{ 
    e.AllowReplace = true;
    e.SuppressDefaultDialog = true;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gabriel-Joy

79117769

Date: 2024-10-23 11:51:06
Score: 0.5
Natty:
Report link

I also faced a similar issue for Apache Directory Studio. Tried almost all of the solutions listed here, but nothing worked for me. I'm using a macOS M3 pro which is on aarch64 architecture. In my case, only solution was to clone and build the directory-studio from the source (You can find the built artifacts in the "product/target/products/" directory).

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Has code block (-0.5):
Posted by: Thamindu DJ

79117768

Date: 2024-10-23 11:51:06
Score: 1.5
Natty:
Report link

If you are using Chrome driver you could try to disable pop-up in options

ChromeOptions options  = new ChromeOptions();
options.addArguments("--disable-popup-blocking");
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Simon Ilrayionau

79117766

Date: 2024-10-23 11:49:05
Score: 2.5
Natty:
Report link

To those having a headache, you should never add the domain.com or subdomain.domain.com. Instead, use domain or subdomain but without the .com for the TXT and same for the CNAME (delete plovm.com if subdomain or .com)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maria Angeles Jimenez Sigstad

79117753

Date: 2024-10-23 11:47:05
Score: 1.5
Natty:
Report link

May be you can try with OpenLens- if you want to see the cluster telemetry but is important to tell us, what cloud service provider you use. Becouse you have equivalents for every cloud service. Azure -> Appliction insight. AWS -> CloudWatch, etc. And in other hand, you have to tell us, what you want to monitor.

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

79117752

Date: 2024-10-23 11:47:05
Score: 2.5
Natty:
Report link

In your code in for loop you are using numbers from 0 to 20 so it create rows from 0 to 20. To need rows from 1500 to 1999 you should change numbers in for loop that is it should start with 1500 and end with <2000 then it will give rows from 1500 to 1999.

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

79117740

Date: 2024-10-23 11:40:03
Score: 1.5
Natty:
Report link

you can use bootstrap modal via javascript with boostrap scripts as here, but be careful, you can instantiate the modal once in javascript as put here.

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

79117738

Date: 2024-10-23 11:40:03
Score: 1
Natty:
Report link

Double-check your report SQL Server datasource connection, namely make sure you are targetting the proper:

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

79117735

Date: 2024-10-23 11:39:03
Score: 0.5
Natty:
Report link

You can suppress any unwanted output by adding [void] to the offending command like this:

function Calculate
{
   [void](echo "Calculate")
   return 11
}

$result = Calculate

Please treat echo as a generic example.

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

79117731

Date: 2024-10-23 11:38:03
Score: 3.5
Natty:
Report link

I finally registered here to upvote your question, but I didn't have this ability due to reputations limitation (as well as comment), that's why I'll try to provide somewhat useful answer.

According to my digging in documentation UndefinedVar is Build Check.

According to docs:

Build checks are supported in: Buildx version 0.15.0 and later

According to changelog:

0.15.0 2024-06-11 The full release note for this release is available on GitHub.

New --call option allows setting evaluation method for a build, replacing the previous experimental --print flag. docker/buildx#2498, docker/buildx#2487, docker/buildx#2513

In addition to the default build method, the following methods are implemented by Dockerfile frontend:

--call=check: Run validation routines for your build configuration. For more information about build checks, see Build checks

So this is a relatively new addition and doesn't have a lot of feedback.

Of course, you can turn it off with check=skip skip-checks

But I cannot find proper way about fixing it neither in docs nor here and related (old) question doesn't have these problems. I've created my own issue.

In our case, we are using PYTHONPATH variable:

PYTHONPATH="$SOFT/Stranger-${STRANGER_VERSION}/local/lib/python3.10/dist-packages:$PYTHONPATH"

And we got same warning: UndefinedVar: Usage of undefined variable '$PYTHONPATH' (line 72)

I've tried

PYTHONPATH="$SOFT/Stranger-${STRANGER_VERSION}/local/lib/python3.10/dist-packages:${PYTHONPATH:-''}"

Doesn't help.

Reasons:
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Grammatikati Konstantin

79117714

Date: 2024-10-23 11:33:01
Score: 1
Natty:
Report link

UPDATE 2024

You can now use select:has( option[value=""]:checked ) to eg. style select with default empty value as a placeholder with grey color, etc...

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

79117705

Date: 2024-10-23 11:29:58
Score: 8.5 🚩
Natty: 4
Report link

I am also facing exact same issue with using multiple Elasticsearch index as data source while layering. I am just curios to know whether you found a solution for this. It would be really helpful if you could update the current status of this issue. Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing exact same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anandhu R

79117697

Date: 2024-10-23 11:27:57
Score: 3
Natty:
Report link

Arunkumar is veary nice boy than any thing valude tha jkjscjdnbkjdfghjjsxsnib cjnddcauieucuiccj oicjoijeuuiiuicnjjnjqncjncjjncjn

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

79117692

Date: 2024-10-23 11:26:57
Score: 0.5
Natty:
Report link

You must try enabling appstream repo.

sudo yum --disablerepo=* --enablerepo=appstream install php-fpm
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Shahid Hussain

79117691

Date: 2024-10-23 11:26:57
Score: 1
Natty:
Report link

I just came here looking for the same thing. It seems if you set the parameter search_parent_directories=True of git.Repo() you do not need to specify the root folder of the repo but can use any subdirectory, e.g. if you use os.path.dirname(os.path.realpath(__file__)) for some file deeper within the folder structure

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

79117687

Date: 2024-10-23 11:24:56
Score: 1
Natty:
Report link

Just check if you are in the correct folder. For me, when I had the same error, I was not in the same directory as the package.json file. Hence, my npm was not able to find it.

Once i had changed the directory. the issue got solved.

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

79117681

Date: 2024-10-23 11:23:56
Score: 0.5
Natty:
Report link

I upgraded Microsoft.SqlServer.DacFx to version 162.4.92, which resolved the issue. I was previously on version 162.3.566.1.

I can only assume there was a bug in the previous version.

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

79117679

Date: 2024-10-23 11:23:56
Score: 3.5
Natty:
Report link

It seems my 'hack' in my original post is the actual answer.

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

79117676

Date: 2024-10-23 11:21:55
Score: 0.5
Natty:
Report link

You need to write the SQL query in the correct syntax. Remove the parentheses and add as follows and the problem will be solved.

SELECT  *  FROM  Document  LEFT JOIN DocType ON  DocType.ID = Document.DocType;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mustafa

79117669

Date: 2024-10-23 11:19:55
Score: 1.5
Natty:
Report link

I use Workspace Add-On for my programmatic SEO from docgpt.ai They support GPT, DALLE, Perplexity, Mistral, Gemini and integration with any API in Google Sheets.

Also helps with image generation using integration with Replicate (AI image models) service for pSEO strategy.

Here is the link: https://docgpt.ai/

Other features:

Reasons:
  • Blacklisted phrase (1): Here is the link
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: yaroslav.mykhailov

79117668

Date: 2024-10-23 11:19:55
Score: 1.5
Natty:
Report link

Check you have correctly imported and set up Ziggy in your React component. Beacuse Ziggy provides a route() function. Follow these examples:

  1. Import the Hook:

    import React from 'react'; import { InertiaLink, usePage } from '@inertiajs/inertia-react';

  2. Access the Current Route:

    const { url } = usePage();

  3. Conditionally Render Your Link Component

    const isActive = (path) => url === path;

    return (<InertiaLink href={route('home')} className={isActive('/about') ? 'text-blue' : 'text-green'} >Home);

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Nilesh

79117648

Date: 2024-10-23 11:11:51
Score: 8.5 🚩
Natty: 5.5
Report link

enter image description here

Can you helm me for thí sim box have a same chip ???

Reasons:
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Hiếu Nguyễn văn

79117627

Date: 2024-10-23 11:03:48
Score: 1
Natty:
Report link

There is a github action step for setting config settings

https://github.com/Azure/appservice-settings

- uses: azure/login@v1
  with:
    creds: '${{ secrets.AZURE_CREDENTIALS }}'


- name: Azure App Service Settings
  uses: Azure/appservice-settings@v1
  with:
    app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
    app-settings-json: |
    [
       {
          "name": "appSetting1",
          "value": "${{ vars.APP_SETTING_1 }}"",
          "slotSetting": false
        }
    ]
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Simon H

79117623

Date: 2024-10-23 11:02:48
Score: 2.5
Natty:
Report link

you are not doing anything wrong. It just does not work at the moment. There is a plan to have this case supported and it is currently being implemented. I can't promise you a specific date when you will be able to use it, but I would be surprised if it would take more then 2 months from now.

Regards, Michal

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Michal Hradil