79356471

Date: 2025-01-14 21:50:53
Score: 2
Natty:
Report link

the error with testhost.deps.json is because you need to add the Project Reference from the main project into test project, like this

Project Reference

after this, build your project and you can run your tests

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

79356470

Date: 2025-01-14 21:49:52
Score: 2
Natty:
Report link

This is because there is no way one can rotate Blender XZY into Unity XYZ. Work around: On Blender, apply all transforms, rotate the rig -90 degrees on X axis, apply rotation, rotate back 90 degrees don't apply, export.

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

79356461

Date: 2025-01-14 21:45:50
Score: 5.5
Natty:
Report link

Remember that permissions like pages_messaging are crucial for receiving messages through webhooks. Could you share your project? I can't guess reason.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share your
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Byte Boss

79356458

Date: 2025-01-14 21:44:50
Score: 3
Natty:
Report link

This is the expected behavior for batch runs. For example, if you want to do 8 runs and have 2 instances, then each instance should perform 4 runs. Is this not what you are seeing?

Nick

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
Posted by: Nick Collier

79356448

Date: 2025-01-14 21:40:49
Score: 1.5
Natty:
Report link

To achieve that you need to use ${{ variables.vmImage }} because it is set at compilation time. More info https://learn.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch

jobs:
- job: RunTests
  displayName: 'Run Tests on ${{ variables.vmImage }}'
  timeoutInMinutes: 60
  strategy:
    matrix:
      windows:
        vmImage: 'windows-latest'
      mac:
        vmImage: 'macos-latest'
  pool:
    vmImage: $(vmImage)
  steps:

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

79356436

Date: 2025-01-14 21:38:49
Score: 1
Natty:
Report link
versions_list = ["1.1.2", "1.0.0", "1.3.3", "1.0.12", "1.0.2"]

# Sort using `key` where each version string is split into a tuple of integers

versions_list.sort(key=lambda version: tuple(map(int, version.split('.'))))

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

79356434

Date: 2025-01-14 21:37:49
Score: 2
Natty:
Report link

I had a problem very similar, but what was happening that where called my component was not important the style.

import 'vue-advanced-cropper/dist/style.css'

This solved my problem, because I added directly in my component, if yours is not add and test.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ewerton Siqueira Costa

79356433

Date: 2025-01-14 21:37:49
Score: 2
Natty:
Report link

I found what was causing the error, I had a set of options coming from database, those options were still not loaded so that error was occurring, it got resolved with a simple {options.length >=1 &&...

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

79356431

Date: 2025-01-14 21:37:48
Score: 5.5
Natty:
Report link

I'm trying to implement a many-to-many relationship similar to what you've done, but I'm encountering a compile error with the schema.

Is it working on your end? If so, would you mind taking a look at my schema and seeing if you notice anything that might be causing the issue?

Thank you in advance for your help!

type User
  @table(name: "Users", singular: "user", plural: "users", key: ["id"]) {
  id: UUID! @col(name: "uid") @default(expr: "uuidV4()")
  username: String! @col(name: "username") @unique
  offices: [Office] 
}


type Office
  @table(name: "offices", singular: "office", plural: "offices", key: ["id"]) {
  id: UUID! @col(name: "office_id")
  name: String! @col(name: "name") @unique
  users: [User]
}

The error is:

On User.offices: Does not support array reference field. For one-to-many relation, define the singular reference field like Office.user: User!Firebase Data Connect: Compiler

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (2): would you mind
  • RegEx Blacklisted phrase (3): Thank you in advance
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: 3ameration

79356415

Date: 2025-01-14 21:27:46
Score: 1
Natty:
Report link

I faced the same problem, I mistakenly created the model classes with Class definition and it will create those files under the hood and it won't expose it to the developers. Then if I try to create them using Manual/None, Xcode will create, but it throws error "Invalid redeclaration",

So deleted the derived data, cleaned the project. Set my models to Manual/None and created those files. Now the issue resolved!

Hope these issues were addressed in new Swift Data framework.

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

79356410

Date: 2025-01-14 21:27:46
Score: 1
Natty:
Report link

Regarding answer 1 above, The option to forget a network printer in the android default print service menu does not exist if there is only one printer. I can't find a way to get the android default print service to reset itself or reload the network printer connection if the connection was initially misconfigured and subsequently corrected. (This happened on a printer shared by MacOs Sequoia shared printer which was initially configured wrong and then corrected. The android default print service still tries to use the initial incorrect configuration)

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

79356408

Date: 2025-01-14 21:26:46
Score: 2.5
Natty:
Report link

For me this was because the file I was using wasn't typescript. i.e file.js instead file.tsx

Once changed to typescript, it should work

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

79356406

Date: 2025-01-14 21:23:45
Score: 1.5
Natty:
Report link

@ihonestlydontKnow, if you change this line to "article", your code will work:

results = soup.find_all("article")

(as furas mentioned in his reply)

**print(results) ....

<article class="product_pod">
<div class="image_container">
<a href="libertarianism-for-beginners_982/index.html"><img alt="Libertarianism for Beginners" class="thumbnail" src="../media/cache/0b/bc/0bbcd0a6f4bcd81ccb1049a52736406e.jpg"/></a>
</div>
<p class="star-rating Two">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</p>
<h3><a href="libertarianism-for-beginners_982/index.html" title="Libertarianism for Beginners">Libertarianism for Beginners</a></h3>
<div class="product_price">
<p class="price_color">£51.33</p>
<p class="instock availability">
<i class="icon-ok"></i>

        In stock

</p>
<form>
<button class="btn btn-primary btn-block" data-loading-text="Adding..." type="submit">Add to basket</button>
</form>
</div>
</article>

****output

£51.77

£53.74
£50.10
£47.82
£54.23
£22.65
£33.34
£17.93

...

(vwebtuan) tng@rack-dff0:~$ cat a.py

from bs4 import BeautifulSoup
import requests
URL = 'http://books.toscrape.com/catalogue/page-1.html'
page = requests.get(URL)
soup = BeautifulSoup(page.content, "html.parser")
results = soup.find_all("article")
#print(results)
for i in results :
    prices = i.find("p", class_ = "price_color")
    print(prices.text.strip())

(vwebtuan) tng@rack-dff0:~$

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @ihonestlydontKnow
  • Low reputation (1):
Posted by: tng

79356405

Date: 2025-01-14 21:23:45
Score: 3.5
Natty:
Report link

This issue is about the Version Control, try to Reimport all!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jesús Joyas Villagraz

79356395

Date: 2025-01-14 21:18:44
Score: 0.5
Natty:
Report link

I was in a similar boat where I couldn't get this figured out. After hours of searching, I found this wonderful human beings page. I dont wanna take any credit from him so I will just post a link to his page. He provides a super easy way to integrate moneris, just need to copy past and change the values in the "Payload" variable.

Hope this helps

https://www.narindersingh.in/moneris-payment-gateway-using-curl-javascript/

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Cameron Kellner

79356392

Date: 2025-01-14 21:16:44
Score: 1.5
Natty:
Report link

Okay so I'm going to build a custom solution for this! It's absurd, really, not to be able to use a single codebase for an application for both web and mobile.

My thinking is to have an Environment variable that checks whether you are exporting for Capacitor or for web hosting, then dynamically choose which router to render based on that environment variable. Then from there, build custom components that wrap links, and a useHybridRouter. WIP!

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

79356381

Date: 2025-01-14 21:14:43
Score: 3
Natty:
Report link

Adding an answer since I am not allowed to comment, and this question is still not answered.

The short answer is that LinearRegression from scikit-learn uses pseudo-inverse. See this answer for detailed description.

Reasons:
  • Blacklisted phrase (1): not allowed to comment
  • Blacklisted phrase (1): to comment
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cagri

79356378

Date: 2025-01-14 21:13:42
Score: 1
Natty:
Report link

As Ajeet Shah already pointed out, you've got a circular dependency, meaning AService depends on BService and vice versa, which doesn't make sense and causes a loop/circle.

If you need some sort of mutual connection, then I'd recommend introducing another CService that handles the "communication" and breaks out of the loop. So AService -> CService and Bservice -> CServiceS

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

79356374

Date: 2025-01-14 21:11:42
Score: 2
Natty:
Report link

You need to weight paint again. Back up the project just in case, go into object mode, select the body mesh, shift select the rig, unparent (alt + p), then parent again with automatic weight paint ( ctrl + p). If clothes get messy, you might want do it with them too.

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

79356362

Date: 2025-01-14 21:05:40
Score: 1.5
Natty:
Report link

str (lower case) is weird in this regard. Sometimes it is allowed in msaccess vba and sometimes it throws a strange error that seems context-oriented. Don't use it. mystr, for example works fine).

BTW, this especially a bugaboo using the Immediate Pane since Option Explicit not enforced in the Immediate Pane (Access 2016 desktop).

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

79356359

Date: 2025-01-14 21:03:40
Score: 0.5
Natty:
Report link

There seems to be nothing wrong here. Let's follow step by step:

  1. The initial state is "hello". Then you click and set it to "hi". (this was the first click.) Parent re-renders as the setState is called, and updates the state. Child also re-renders because the state is changed and i has a different value than before.
  2. You click the button a second time. This time the state is already "hi", and you are setting it to "hi" again. Therefore setState is called, parent re-renders because of the setState, but the state is not changed. So the Child Component doesn't re-render.

React listens to state changes, if the prop value didnot change, re-render is not triggered.

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

79356348

Date: 2025-01-14 20:56:38
Score: 0.5
Natty:
Report link

The solution is here:

What I did: Start Menu -> "credentials" -> scroll and remove ANY credentials related to Git/Github

The reason for this is: I had previously registered credentials for Github for another account...that was years ago, and I had completely forgotten about those. And also, to be honest, I had forgotten about the existence of this "Credential Manager" on Windows.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MrJay42

79356343

Date: 2025-01-14 20:50:37
Score: 1.5
Natty:
Report link

In my case, I believe, I added a footer page instead of a regular page. Though I deleted the footer page and recreated it as a regular page with the same name, it did not show in index.

Finally, I recreated it with a different name as a regular page. Now it shows in wiki index.

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

79356340

Date: 2025-01-14 20:49:37
Score: 3.5
Natty:
Report link

Null/Nan in feature values contribute to the grey color in Shap plot.

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

79356333

Date: 2025-01-14 20:45:36
Score: 1
Natty:
Report link

I had similar kind of usecase while looking at sleepcycles/snorlax and other so many operators. I ended up using a cronJob.

I have added a gist of the cronJob which can be found here. This is currently limited to the current namespace but can be expanded to cluster wide namespaces.

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

79356322

Date: 2025-01-14 20:40:34
Score: 3.5
Natty:
Report link

Thank's a a lot. What I understand from all this (I will explain with an example):

The number 0.20000000000000029 in double precision 0011111111001001100110011001100110011001100110011001100110100100 This is actually the number 0.20000000000000028865798640254070051014423370361328125

In Java( as you explained), this number is 0.2000000000000003. This number is enough to represent. Already in double precision, the number 0.2000000000000003 and the number 0.20000000000000028865798640254070051014423370361328125 is the same(0011111111001001100110011001100110011001100110011001100110100100).

Thus, %.20f will add zero to the number 0.2000000000000003 and print 0.20000000000000030000.

If it were %.15f, it would round the number 0.20000000000000030000 to 15 precision and write 0.200000000000000 on the screen.

If it were %.16f, it would round the number 0.20000000000000030000 to 16 precision and write 0,2000000000000003 on the screen. Right?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Filler text (0.5): 00000000000000
  • Filler text (0): 11111111
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000000
  • Filler text (0): 11111111
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000000
  • Low reputation (0.5):
Posted by: İlker Deveci

79356318

Date: 2025-01-14 20:38:34
Score: 1
Natty:
Report link

You can try below approaches:

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • User mentioned (1): @Column
  • User mentioned (0): @RequestBody
  • Low reputation (1):
Posted by: Syed

79356304

Date: 2025-01-14 20:31:32
Score: 0.5
Natty:
Report link

Alternative: Use esbuild-plugin-copy If you prefer not to manually copy the binary, you can use the esbuild-plugin-copy plugin to automate this process. Install the plugin:

npm install esbuild-plugin-copy --save-dev

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

79356292

Date: 2025-01-14 20:25:31
Score: 1
Natty:
Report link

I know that this is probably bizarre to to do this, but I coulnd't find anywhere else to ask. You managed to install devtools using the normal way, but for some reason, some of my packages (specifically devtools and sf) do not install this way. Why? What in your code allowed all the packages to be installed properly. I have a simple code with just

BootStrap: docker From: r-base:4.3.2

R -e "install.packages('raster')" # worked
R -e "install.packages('devtools')" # worked
R -e "install.packages('sf')" # worked
Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Varvara Vladimirova

79356287

Date: 2025-01-14 20:22:30
Score: 1
Natty:
Report link

The response above is generally correct as long as:

You differentiate the first video packet and the first audio packet. This is important because audio packets generally have the same PTS and DTS (and never use as a start dts a 0 value).

Let me give you a concrete example where this could fail (real example from OBS):

The error that appears in this case is pts (0) < dts (2970) in stream 1

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Emiliano A. Billi

79356283

Date: 2025-01-14 20:20:30
Score: 3.5
Natty:
Report link

As of 2025 this has been working for some time. There are also tools like Rollstack that connect Power BI to PowerPoint.

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

79356276

Date: 2025-01-14 20:18:29
Score: 0.5
Natty:
Report link

The most important first step is to read the documentation for UIImagePickerController provided by Apple displayed prominently.

The UIImagePickerController class supports portrait mode only. This class is intended to be used as-is and doesn’t support subclassing. The view hierarchy for this class is private and must not be modified...

Just because this view might rotate correctly in UIKit does not mean it will be supported in the future or behave as intended.

Camera capture is handled by AVKit and a video/image capture can be created using this framework. Rotation is handled through your implementation.

I also strongly suggest for anyone needing a more immediate or less complex solution look at Mijick Camera. This framework is highly customizable and easy to work with.

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

79356263

Date: 2025-01-14 20:12:28
Score: 0.5
Natty:
Report link
export type TCategoryAnalyzes = Record<string, {
  categoryId: string;
  analyzes: IAnalyzesStorageData[];
}>;

This may also work for your use case. However, the Record utility type may be less flexible than the original answer.

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

79356259

Date: 2025-01-14 20:10:27
Score: 3
Natty:
Report link

use a Case statement as follow:

select Case Field1 is null then null else Field1 end as FieldName, Field2, Field3 From ....

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Patricio Antonio Torres Gil

79356248

Date: 2025-01-14 20:02:25
Score: 2
Natty:
Report link

I was having this issue with Visual Studio 2022. The fast deployment setting was missing from the project properties screen. Had to edit the EmbedAssembliesIntoApk setting to 'true' for the release configuration before archiving.

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

79356247

Date: 2025-01-14 20:02:25
Score: 0.5
Natty:
Report link

Python is one of the most popular and widely used programming languages in the world. Known for its simplicity, readability, and versatility, Python has become a favorite among developers, data scientists, and educators. Its broad applicability and supportive community make it an essential tool in the modern technological landscape.

History and Evolution Python was created in the late 1980s by Guido van Rossum at Centrum Wiskunde & Informatica (CWI) in the Netherlands. It was officially released in 1991. Van Rossum designed Python with an emphasis on code readability and simplicity, which has remained a core feature throughout its evolution. Over the years, Python has undergone significant development, with major versions like Python 2.0 released in 2000 and Python 3.0 in 2008. Python 3.x has since become the standard, bringing many improvements and enhancements over its predecessor.

Key Features of Python Simplicity and Readability: Python's syntax is clean and easy to understand, making it an ideal language for beginners. Its use of indentation for blocks of code enhances readability, allowing developers to focus on problem-solving rather than syntax.

Interpreted Language: Python is an interpreted language, which means code is executed line by line. This allows for quick testing and debugging, making the development process more efficient.

Dynamic Typing: Python is dynamically typed, meaning variables do not need explicit declarations of their data types. This feature makes Python flexible and reduces the amount of boilerplate code.

Extensive Standard Library: Python boasts a comprehensive standard library that provides modules and functions for a wide array of tasks, from file I/O and string manipulation to web development and database interaction.

Cross-Platform Compatibility: Python

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

79356234

Date: 2025-01-14 19:57:24
Score: 3.5
Natty:
Report link

Seems to me that a vector is the same as an array in other languages, like PHP or javascript.

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

79356224

Date: 2025-01-14 19:53:23
Score: 1.5
Natty:
Report link

FWIW, iamkneel's answer from above worked for my. Had an express app that I was using Typescript for and set it up with yarn. Setting nodeLinker: node-modules in the .yarnrc.yml file took care of the compile issue.

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

79356221

Date: 2025-01-14 19:51:21
Score: 12 🚩
Natty:
Report link
This is the css - #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity 0.8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    z-index: 99;
    background-color: #a50808;
    color: #fff;
    transition: background-color 0.5s, color 0.5s;
}
.back-to-top:hover {
    background-color: #0056b3;
    color: #fff;
}
.btn {
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.5s;
}
.btn.btn-primary {
    box-shadow: inset 0 0 0 0 #083be2;
}
.btn.btn-primary:hover {
    box-shadow: inset 200px 0 0 0 #083be2 !important;
    color: #fff !important;
}
.btn.btn-dark {
    box-shadow: inset 0 0 0 0 #083be2;
}
.btn.btn-dark:hover {
    box-shadow: inset 200px 0 0 0 #025e33;
    color: #225202 !important;
}
.navbar .navbar-nav {
    padding: 15px 0;
}
.navbar .navbar-nav .nav-link {
    padding: 15px;
    color: var(--bs-white);
    font-weight: 500;
    font-size: 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    outline: 0;
    transition: 0.5s;
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
    color: #0f4aee;
    transition: 0.5s;
}
@media (max-width: 768px) {
    .navbar-brand img {
        width: 75px;
        height: 75px;
    }
}
.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 5px 12px;
    border: 2px solid #083be2 !important;
}
.carousel-item {
    position: relative;
}
.carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.377);
}
.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}
.carousel-control-prev {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #083be2;
    border-radius: 0 30px 30px 0;
    transition: 0.5s;
    opacity: 1;
}
.carousel-control-next {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: #083be2;
    border-radius: 30px 0 0 30px;
    transition: 0.5s;
    opacity: 1;
}
#carouselId .carousel-indicators li {
    width: 24px;
    height: 24px;
    background: var(--bs-dark);
    border: 2px solid #083be2;
    border-radius: 24px;
    margin: 0 10px 30px 10px;
}
#carouselId .carousel-indicators li.active {
    background: #04ff64 !important;
}
@media (max-width: 768px) {
    .carousel-item {
        width: 100%;
        height: 400px;
    }
    .carousel-item img {
        height: 400px;
    }
    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }
}
.about-img {
    width: 100%;
    height: 70%;
    position: relative;
    padding: 30px;
    overflow: hidden;
}
.about-img::before {
    content: "";
    width: 100%;
    height: 40%;
    background: #2341ec;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 10px;
}
.about-img::after {
    content: "";
    width: 100%;
    height: 70%;
    background: #1f5e37;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 10px;
}
.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}
@keyframes mymove {
    from {
        top: -202px;
    }
    to {
        top: 102%;
    }
}
.about-item h5 {
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    display: inline-block;
}
.about-item h1 {
    margin-bottom: 20px;
}
.about-item p {
    margin-bottom: 20px;
    line-height: 1.6;
}
.about-item .row {
    margin-top: 30px;
}
@media (max-width: 768px) {
    .about-img,
    .about-item {
        text-align: center;
    }
    .about-img img {
        width: 100%;
        height: auto;
    }
    .row {
        display: flex;
        flex-wrap: wrap;
    }
    .row .col-3 {
        flex: 1 1 45%; /* Ajuste a largura conforme necessário */
        margin-bottom: 20px;
    }
}
.contact-link a h5,
.contact-link a i,
.contact-link a.h5 {
    transition: 0.5s;
}
.contact-link a h5:hover,
.contact-link a i:hover,
.contact-link a.h5:hover {
    color: #083be2 !important;
}

.footer {
    background: linear-gradient(rgba(3, 67, 110, 0.945), rgba(0, 14, 8, 0.7)), url(https://zedacalmacalçadas.pt/img/fotoprincipal.webp) center center no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6rem;
}


.footer-item,
.footer-item a {
    color: rgba(255, 255, 255, 0.7);
    text-transform: capitalize;
}
.copyright .copyright-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright .copyright-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-icon {
    background-color: #25d366;
    color: #fff;
}
.whatsapp-icon:hover {
    background-color: #0b682d;
    color: #fff;
}
.email-icon {
    color: #007bff;
    background-color: transparent;
}
.email-icon:hover {
    color: #0056b3;
}
.back-to-top {
    background-color: #a50808;
    color: #fff;
}
.back-to-top:hover {
    background-color: #0056b3;
    color: #fff;
}
.navbar-bg {
    background-color: #a76e58;
}
.email-icon {
    font-size: 1.5em;
    background-color: transparent;
}
.email-container {
    margin-top: 1px;
}
.email-text {
    margin-left: 15px;
}
.copyright .text-md-end small {
    font-size: 0.6em;
}
.about-item h5 {
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    display: inline-block;
}
.about-item h1 {
    margin-bottom: 20px;
}
.about-item p {
    margin-bottom: 20px;
    line-height: 1.6;
}
.about-item .row {
    margin-top: 30px;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-solid-900.woff2') format('woff2'),
       url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-solid-900.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'FontAwesomeBrands';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-brands-400.woff2') format('woff2'),
       url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-brands-400.woff') format('woff');
  font-display: swap;
}

.animated {
    animation-fill-mode: both;
}

.footer {
    position: relative;
    z-index: 1;
}

One of the pages html - <!DOCTYPE html>
<html lang="pt">
<head>
    <meta charset="utf-8">
    <title>x</title>
    <meta content="width=device-width, initial-scale=1.0" name="viewport">
    <meta name="keywords" content="x">
    <meta name="description" content="x">
    <link rel="canonical" href="https://x" />
    <!-- Open Graph Meta Tags -->
    <meta property="og:title" content="x">
    <meta property="og:type" content="website">
    <meta property="og:image" content="x/img/logotipofinalv2.png">
    <meta property="og:url" content="x/index.html">
    <meta property="og:description" content="x">
    
    <!-- Google Web Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    
    <!-- Icon Font Stylesheet -->
    <link rel="stylesheet" href="css/all.min.css">
    <link rel="stylesheet" href="css/bootstrap-icons.min.css">
    
    <!-- Libraries Stylesheet -->
   <link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet">
    <link href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" rel="stylesheet">
    <link href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css" rel="stylesheet">

    <!-- Customized Bootstrap Stylesheet -->
    <link href="css/bootstrap.min.css" rel="stylesheet">

    <!-- Template Stylesheet -->
    <link href="css/style.css" rel="stylesheet">
    
    <!-- Schema.org JSON-LD -->
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "LocalBusiness",
      "name": "x",
      "image": "https://x/img/logotipofinalv2.png",
      "@id": "https://x/index.html",
      "url": "https://x",
      "telephone": "+x",
      "description": "x"
    }
    </script>
    
       <style>
        .navbar-brand img {
            width: 75px;
            height: auto;
        }

        @media (max-width: 768px) {
            .navbar-brand img {
                width: 75px;
                height: auto;
            }
        }

         .footer-item img {
            width: 175px;
            height: auto;
        }

        @media (max-width: 768px) {
            .footer-item img {
                width: 100%;
                height: auto;
            }
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
    </style>
    </head>

    <body>
        <!-- Spinner Start -->
        <div id="spinner" class="show w-100 vh-100 bg-white position-fixed translate-middle top-50 start-50 d-flex align-items-center justify-content-center">
            <div class="spinner-grow text-primary" role="status"></div>
        </div>
        <!-- Spinner End -->


<!-- Navbar Start -->
<div class="container-fluid navbar-bg">
    <div class="container">
        <nav class="navbar navbar-dark navbar-expand-lg py-lg-0">
            <a href="index.html" class="navbar-brand">
              <img 
    src="img/logotipofinalv2.webp" alt="Logotipo da Empresa" width="75" height="75"  style="height: auto;" srcset="img/logotipofinalv2.webp 1x, img/[email protected] 2x, img/[email protected] 3x">
            </a>  
           
            <button class="navbar-toggler bg-primary" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-label="Toggle navigation">
                <span class="fa fa-bars text-dark"></span>
            </button>
            <div class="collapse navbar-collapse" id="navbarCollapse">
                <div class="navbar-nav mx-auto">
                    <a href="index.html" class="nav-item nav-link">Home</a>
                    <a href="about.html" class="nav-item nav-link">Acerca</a>
                    <a href="service.html" class="nav-item nav-link">Serviços</a>
                    <a href="contact.html" class="nav-item nav-link">Contatos</a>
                </div>
            </div>
        </nav>
    </div>
</div>
<!-- Navbar End -->

        <!-- Carousel Start -->
<div class="container-fluid carousel px-0 mb-5 pb-5">
        <div id="carouselId" class="carousel slide" data-bs-ride="carousel">
            <ol class="carousel-indicators">
                <li data-bs-target="#carouselId" data-bs-slide-to="0" class="active" aria-current="true" aria-label="First slide"></li>
                <li data-bs-target="#carouselId" data-bs-slide-to="1" aria-label="Second slide"></li>
                <li data-bs-target="#carouselId" data-bs-slide-to="2" aria-label="Third slide"></li>

            </ol>
            <div class="carousel-inner" role="region" aria-label="Carrossel de Imagens">
                <div class="carousel-item active">
                    <img src="img/fotos33.webp" class="img-fluid w-100 lozad" alt="First slide" width="719" height="512" loading="lazy" >
                    <div class="carousel-caption">
                        <div class="container carousel-content">
                            <h1 class="text-white display-1 mb-4 animated slideInDown">Transformando ruas em passarelas</h1>
                            <a href="service.html" class="me-2"><button type="button" class="px-5 py-3 btn btn-primary border-2 rounded-pill animated slideInDown">Saiba mais..</button></a>
                        </div>
                    </div>
                </div>
                <div class="carousel-item">
                    <img src="img/foto21.webp" class="img-fluid w-100 lozad" alt="Second slide" width="719" height="512" loading="lazy">
                    <div class="carousel-caption">
                        <div class="container carousel-content">
                            <h2 class="text-white mb-4 animated slideInDown">x</h2>
                            <h3 class="text-white display-1 mb-4 animated slideInDown">Porque até o chão merece um upgrade!</h3>
                            <a href="service.html" class="me-2"><button type="button" class="px-5 py-3 btn btn-primary border-2 rounded-pill animated slideInDown">Saiba mais..</button></a>
                        </div>
                    </div>
                </div>
                <div class="carousel-item">
                    <img src="img/fotos44.webp" class="img-fluid w-100 lozad" alt="Third slide" width="719" height="512" loading="lazy">
                    <div class="carousel-caption">
                        <div class="container carousel-content">
                            <h2 class="text-white mb-4 animated slideInDown">x</h2>
                            <h3 class="text-white display-1 mb-4 animated slideInDown">x</h3>
                            <a href="service.html" class="me-2"><button type="button" class="px-5 py-3 btn btn-primary border-2 rounded-pill animated slideInDown">Saiba mais..</button></a>
                        </div>
                    </div>
                </div>
               
        </div>
        <button class="carousel-control-prev btn border border-2 border-start-0" type="button" data-bs-target="#carouselId" data-bs-slide="prev" aria-label="Previous Slide">
            <span class="carousel-control-prev-icon" aria-hidden="true"></span>
            <span class="visually-hidden">Previous</span>
        </button>
        <button class="carousel-control-next btn border border-2 border-end-0" type="button" data-bs-target="#carouselId" data-bs-slide="next" aria-label="Next Slide">
            <span class="carousel-control-next-icon" aria-hidden="true"></span>
            <span class="visually-hidden">Next</span>
        </button>
    </div>
</div>
        <!-- Carousel End -->

    <div id="error-message" style="display: none;"></div>
   <!-- Footer Start -->
<div class="container-fluid footer py-5">
    <div class="container py-5">
        <div class="row g-4 footer-inner justify-content-center text-center">
            <div class="col-lg-3 col-md-6">
                <div class="footer-item">
                    <a href="index.html">
                        
<img src="img/logotipofinalv2.webp" alt="Logotipo da Empresa"  width="175" height="175" style="height: auto;" srcset="img/logotipofinalv2.webp 1x, img/[email protected] 2x, img/[email protected] 3x">
                    </a>
                    <p></p>
                    <p>Cada pedra é cortada com dedicação e precisão.</p>
                </div>
            </div>
                <div class="col-lg-3 col-md-6">
                    <div class="footer-item">
                        <h4 class="text-white fw-bold mb-4">Links úteis</h4>
                        <div class="d-flex flex-column align-items-center">
                            <a class="btn btn-link ps-0" href="about.html"><i class="fa fa-check me-2"></i>Acerca</a>
                            <a class="btn btn-link ps-0" href="contact.html"><i class="fa fa-check me-2"></i>Contatos</a>
                            <a class="btn btn-link ps-0" href="service.html"><i class="fa fa-check me-2"></i>Serviços</a>
                        </div>
                    </div>
                </div>
                <div class="col-lg-3 col-md-6">
    <div class="footer-item">
        <h4 class="text-white fw-bold mb-4">Contate-me</h4>
        <div class="d-flex align-items-center mb-3">
          <a class="btn rounded-circle me-3 whatsapp-icon" href="https://wa.me/11" target="_blank" rel="noopener">
    <i class="fab fa-whatsapp"></i>
        </a>
            <span>+111</span>
        </div>
        <div class="d-flex align-items-center email-container">
        <a href="mailto:11" class="text-white">
            <i class="fa fa-envelope email-icon me-3"></i>
        </a>
        <span class="email-text">x</span>
        </div>
    </div>
</div>
            </div>
        </div>
    </div>
  <!-- Footer end -->
<div class="container-fluid copyright py-3" style="background-color: #D2691E;">
    <div class="container">
        <div class="row">
            <div class="col-md-4 text-center text-md-start mb-3 mb-md-0">
                <a href="#" class="text-white mb-0 display-6">Zé da Calma <i class="fas fa-cube text-white ms-3"></i></a>
            </div>
            <div class="col-md-4 copyright-btn text-center text-md-start mb-3 mb-md-0 flex-shrink-0">
            </div>
            <div class="col-md-4 my-auto text-center text-md-end text-white">
                <small>Designed By <a class="border-bottom" href="https://htmlcodex.com">HTML Codex</a><br>Distributed By <a class="border-bottom" href="https://themewagon.com">ThemeWagon</a></small>
            </div>
        </div>
    </div>
</div>


<!-- Modal HTML -->
<div class="modal fade" id="whatsappModal" tabindex="-1" aria-labelledby="whatsappModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <h5 class="modal-title" id="whatsappModalLabel">WhatsApp Modal</h5>
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <div class="modal-body">
                Conteúdo do modal.
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Fechar</button>
            </div>
        </div>
    </div>
</div>

<!-- Back to Top -->
<a href="#" class="btn rounded-circle border-3 back-to-top"><i class="fa fa-arrow-up"></i></a>
        
        <!-- JavaScript Libraries -->
        <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/lozad.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
        <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" defer></script>
     <script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
        <script src="lib/easing/easing.min.js" defer></script>
        <script src="lib/waypoints/waypoints.min.js" defer></script>
        <script src="lib/owlcarousel/owl.carousel.min.js" defer></script>
         <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/lozad.min.js"></script>   
        <!-- Template Javascript -->
<script src="js/main.js"></script>
    </body>

</html> and for ending the Javascript - (function ($) {
    "use strict";

    // Spinner
    var spinner = function () {
        setTimeout(function () {
            if ($('#spinner').length > 0) {
                $('#spinner').removeClass('show');
            }
        }, 1);
    };
    spinner();

    // Back to top button
    $(window).scroll(function () {
        if ($(this).scrollTop() > 300) {
            $('.back-to-top').fadeIn('slow');
        } else {
            $('.back-to-top').fadeOut('slow');
        }
    });
    $('.back-to-top').click(function () {
        $('html, body').animate({scrollTop: 0}, 300, 'easeInOutExpo');
        return false;
    });

    new WOW().init();

    // Código adicional
    document.addEventListener('DOMContentLoaded', function() {
        const servicosContainer = document.getElementById('servicos');
        const servicoSelect = document.getElementById('servico-select');
        const tipoMetrosSelect = document.getElementById('tipo-metros');
        const metrosInput = document.getElementById('metros');
        const calcularButton = document.getElementById('calcular');
        const resultado = document.getElementById('resultado');

        if (servicosContainer && servicoSelect && tipoMetrosSelect && metrosInput && calcularButton && resultado) {
            const fatoresDeConversao = {
                'Vidraço 4x4': 17,
                'Vidraço 5x7': 12,
                'Vidraço 10x11': 9 // Adicione o fator de conversão para o novo serviço
            };

            const atualizarServicos = () => {
                servicoSelect.innerHTML = Array.from(servicosContainer.querySelectorAll('.servico'))
                    .map(servico => {
                        const titulo = servico.querySelector('.card-title').textContent;
                        return `<option value="${titulo}">${titulo}</option>`;
                    }).join('');
            };

            const calcularPreco = () => {
                const servicoSelecionado = servicoSelect.value;
                const tipoMetrosSelecionado = tipoMetrosSelect.value;
                const metros = parseFloat(metrosInput.value);
                if (isNaN(metros) || metros <= 0) {
                    resultado.textContent = 'Por favor, insira um valor válido para metros.';
                    return;
                }

                const servico = Array.from(servicosContainer.querySelectorAll('.servico'))
                    .find(servico => servico.querySelector('.card-title').textContent === servicoSelecionado);

                if (servico) {
                    let precoPorMetro = parseFloat(servico.querySelector('.preco').textContent);
                    const unidadePreco = servico.querySelector('.card-text').textContent.includes('m²') ? 'm2' : 'm3';
                    const fatorDeConversao = fatoresDeConversao[servicoSelecionado];
                    let total;

                    if (tipoMetrosSelecionado === 'm3') {
                        if (unidadePreco === 'm2') {
                            precoPorMetro = precoPorMetro * fatorDeConversao;
                        }
                        total = metros * precoPorMetro;
                    } else if (tipoMetrosSelecionado === 'm2') {
                        if (unidadePreco === 'm3') {
                            precoPorMetro = precoPorMetro / fatorDeConversao;
                        }
                        total = metros * precoPorMetro;
                    }

                    resultado.textContent = `Total: ${total.toFixed(2)}€`;
                }
            };

            atualizarServicos();
            calcularButton.addEventListener('click', calcularPreco);
        }

        // Código para exibir a mensagem de erro 404
        if (document.title === '404') {
            var errorMessage = document.getElementById('error-message');
            if (errorMessage) {
                errorMessage.style.display = 'block';
                errorMessage.innerHTML = '<h1>Oops! Página não encontrada.</h1><p>Desculpe, mas a página que você está procurando não existe. <a href="/">Voltar para a página inicial</a></p>';
            }
        }
    });

    const contactForm = document.getElementById('contactForm');
    if (contactForm) {
        contactForm.addEventListener('submit', function(event) {
            event.preventDefault();

            var formData = new FormData(this);

            fetch('contact.php', {
                method: 'POST',
                body: formData
            })
            .then(response => response.text())
            .then(data => {
                document.getElementById('formMessage').innerHTML = data;
            })
            .catch(error => {
                console.error('Error:', error);
            });
        });
    }

    document.addEventListener('DOMContentLoaded', () => {
        const whatsappLink = document.getElementById('whatsapp-link');
        const whatsappModal = new bootstrap.Modal(document.getElementById('whatsappModal'));

        if (whatsappLink && whatsappModal) {
            whatsappLink.addEventListener('click', (event) => {
                event.preventDefault();
                whatsappModal.show();
            });
        }
    });

    document.addEventListener('DOMContentLoaded', () => {
        try {
            const shareButton = document.querySelector('.tui-image-editor-main-container .tui-image-editor-download-btn');
            if (shareButton) {
                shareButton.addEventListener('click', (event) => {
                    // Código do evento
                });
            } else {
                console.warn('Elemento não encontrado: .tui-image-editor-main-container .tui-image-editor-download-btn');
            }
        } catch (error) {
            console.error('Erro ao adicionar evento:', error);
        }
    });

    document.addEventListener("DOMContentLoaded", function() {
        const observer = lozad(); // lazy loads elements with default selector as '.lozad'
        observer.observe();
    });

})(jQuery);
Reasons:
  • Blacklisted phrase (3): você
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): Porque
  • Blacklisted phrase (1): não
  • Blacklisted phrase (2): Código
  • RegEx Blacklisted phrase (2): encontrada
  • RegEx Blacklisted phrase (2): encontrado
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: DeidaraBotBo

79356188

Date: 2025-01-14 19:38:18
Score: 3.5
Natty:
Report link

Delete the extra ones, then reopen the project in IDEA.

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

79356183

Date: 2025-01-14 19:37:18
Score: 2.5
Natty:
Report link

Disable / remove unchecked LaunchDaemons. Duck your plist scripts if you had them. Take out your trash. Uninstall temporarily. Reboot. Get on with it.

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

79356180

Date: 2025-01-14 19:36:18
Score: 2.5
Natty:
Report link

If you have changed your build settings or build phases be sure to define the Excluded Architectures. Also clean your build folder once you make these changes

Screenshot of Build Settings from Xcode

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

79356176

Date: 2025-01-14 19:34:17
Score: 2
Natty:
Report link

This is an open issue for flutter drive test runner. Issue has been opened in 2022 and with flutter 3.24.X it is still there. File imports does not work when compiling and running tests for flutter drive.

https://github.com/flutter/flutter/issues/102469

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

79356160

Date: 2025-01-14 19:28:16
Score: 3.5
Natty:
Report link

Select the "Add or Remove Buttons" button at the very far right of the Tool bar, then make your selection.

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

79356149

Date: 2025-01-14 19:25:14
Score: 5
Natty:
Report link

I remove PHP Intelephense extension is will be okay. enter image description here

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

79356142

Date: 2025-01-14 19:21:12
Score: 10.5 🚩
Natty:
Report link

Even I am facing same issue, can someone help also let me know if you tried by restarting the router and did it work.

Reasons:
  • RegEx Blacklisted phrase (3): can someone help
  • RegEx Blacklisted phrase (2): Even I am
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Satvik Verma

79356140

Date: 2025-01-14 19:21:12
Score: 0.5
Natty:
Report link

I have developed an app that does exactly that. Took several months to develop it, it's definitely feasible and I use it on a daily basis whenever I listen to music. You can try:

https://play.google.com/store/apps/details?id=net.festinger.autovolumefree

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

79356139

Date: 2025-01-14 19:19:11
Score: 6.5 🚩
Natty:
Report link

https://stackoverflow.com/a/74658329/29182925[This Was the fix! If anyone else is having this issue, Use This Solution!][1]

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Was the fix
  • Low reputation (1):
Posted by: Nikolai van den Hoven

79356137

Date: 2025-01-14 19:19:10
Score: 5
Natty: 5
Report link

Are you still having this issue? What application or code are you using to attempt an API call that returns this response?

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

79356134

Date: 2025-01-14 19:18:10
Score: 1
Natty:
Report link
just pass this prop it will solve the issue:

 <Accordion
        expanded={isAccordionOpen}
        disableGutters> 
 <AccordionSummary
         sx={{
            "& .MuiAccordionSummary-content": {
                  margin: 0,
                },
             }}
        >
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ch. Krishna

79356124

Date: 2025-01-14 19:15:09
Score: 1
Natty:
Report link

Create an alert response instead of an incident response - the incident response is expecting an incident to be passed to the "for each incident update" (as in each thing that updates the incident that you're alerting on). An alert response will simply alert on the KQL query and run the playbook, without bothering with passing the non-existent incident info through the flow.

Recreated my playbooks to send emails on alerts instead of incidents and they run just fine when "user added" and "device added" are found. No need to create incidents for those, just email records that new users or devices were added.

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

79356122

Date: 2025-01-14 19:13:09
Score: 1
Natty:
Report link

I had the same issue. I tried the check_model() demo namely: m <- lm(mpg ~ wt + cyl + gear + disp, data = mtcars) check_model(m)

and that broke too. My document failed to render to a hthml page. I am working with Quarto (version 1.637) run in RStudio (Version 2024.12.0+467).

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

79356121

Date: 2025-01-14 19:13:09
Score: 2
Natty:
Report link

This may be as a result of either your existing theme overlays your Elementor or your Wordpress version doesn't support it.

Alternatively, check your Multiphp version from your hosting.

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

79356116

Date: 2025-01-14 19:11:08
Score: 1
Natty:
Report link

It is removed probably as part of optimisation process. In production version, console.log is removed and in next optimisation pass arguments are removed because they are unused.

Also this could be useful https://github.com/vitejs/vite/discussions/7920

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Đorđe Zeljić

79356115

Date: 2025-01-14 19:10:08
Score: 2.5
Natty:
Report link

I made an account just to reply in hopes to help those of you who were stuck on the same CORS rejection error like me (for days...).

Error: CORS ERROR: Response to preflight request doesn't pass access control check: It does not have HTTP ok status.

Yes, I had the vercel.json config file include all the right headers as seen above. But I kept getting the same error.

My backend solution was astoundingly simple. I added:

if (req.method === 'OPTIONS') {
    // Handle the preflight request
    res.setHeader('Access-Control-Allow-Origin', '*'); // Allow all origins or specify specific origins
    res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
    res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization'); // Allow specific headers
    res.status(200).end(); // Respond with 200 OK and terminate the response
  } else {
    // Your serverless function here
  }

Not sure why explicitly stating the headers like this worked.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the same error
  • Low reputation (1):
Posted by: Ray_31

79356112

Date: 2025-01-14 19:09:08
Score: 3.5
Natty:
Report link

We still don't have a correct answer. I have email forms coming for my website from "[email protected] on behalf of [email protected]", as en example.

When you manually click within Outlook to reply, it correctly identifies the correct recipient, ie the Gmail address and NOT [email protected].

Now, how to reproduce this with a a VB Macro in Outlook as I have a few job application reply templates I want to choose from (ie job rejection, or more info etc), and I everything else works and displays correctly, just NOT the correct recipient email address.

I have this:

Sub RejectionEmail()

Dim origEmail As MailItem
Dim replyEmail As MailItem


Set origEmail = Application.ActiveWindow.Selection.Item(1)
Set replyEmail = Application.CreateItemFromTemplate("C:\Users\Daniel\AppData\Roaming\Microsoft\Templates\Rejection.oft")

replyEmail.To = origEmail.Sender    
replyEmail.CC = origEmail.CC


replyEmail.HTMLBody = replyEmail.HTMLBody & origEmail.Reply.HTMLBody
replyEmail.Display

End Sub

I have tried "replyEmail.To = origEmail.SenderEmailAddress" also, no go.

What is the ORIGINAL script Outlook uses to make this work I wonder?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: OffshoreAdvice

79356093

Date: 2025-01-14 19:02:06
Score: 1
Natty:
Report link
function custom_homepage_product_query( $query ) {
if ( ! is_admin() && $query->is_main_query() && is_front_page() ) {
$query->set( 'orderby', 'date' );
$query->set( 'order', 'DESC' );
}
}
add_action( 'pre_get_posts', 'custom_homepage_product_query' );

I tried adding the following code to the end of functions.php, but it doesn't work.

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

79356090

Date: 2025-01-14 19:01:06
Score: 3.5
Natty:
Report link

You may not have shared the database with your integration:

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

79356084

Date: 2025-01-14 18:58:05
Score: 0.5
Natty:
Report link

At least for 14.0.2, issue seems can be connected to a new project creation. Just close and restart QtCreator. It worked for me.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Angelo Dureghello

79356083

Date: 2025-01-14 18:58:05
Score: 2
Natty:
Report link

On Ubuntu w/snap this fixed the remote connection issue for me:

1:

snap connect mysql-workbench-community:password-manager-service

2:

snap connect mysql-workbench-community:ssh-keys

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

79356079

Date: 2025-01-14 18:57:05
Score: 0.5
Natty:
Report link

Bad vibes just means that the HDF5 interface is touchy. If the rename worked but the command (the re-append) failed then maybe there is an NCO issue. You would then need to submit a complete minimal working example as an NCO issue.

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

79356078

Date: 2025-01-14 18:57:05
Score: 1.5
Natty:
Report link

I managed to find where the problem was. One of the services snatched port 80, before traefik. To find the thief, I used this command: kubectl get pods -A -o jsonpath='{range .items[*]}{.metadata.namespace}{" "}{.metadata.name}{" "}{.spec.containers[*].ports[*].hostPort}{"\n"}{end}' | grep -E ' 80| 443'

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

79356077

Date: 2025-01-14 18:57:05
Score: 1.5
Natty:
Report link

When you convert RVT and DWG the 2d views can be generated in the PDF format as long as you use the advanced option 2dviews: pdf

Please refer to this blog

For different file formats you might take advantage of Design Automation:

You can also always generate screenshots with the Viewer

Reasons:
  • Blacklisted phrase (1): this blog
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: João Martins

79356076

Date: 2025-01-14 18:57:04
Score: 5
Natty: 5
Report link

after i use sudo scons, I don't see or have a python directory to cd into so i cant finish the instructions is python directory somewhere else on the filesystem?

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

79356074

Date: 2025-01-14 18:56:04
Score: 3.5
Natty:
Report link

"useNewParser : true" in mongoose.connect(URI , {useNewParser:true}) worked in my case , as i just followed every option given in mongoose document of mongoose connection .

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

79356060

Date: 2025-01-14 18:48:02
Score: 1.5
Natty:
Report link

if requirement is to validate only "This will be the address", changing assertion from equals to contains will be apt . Because there some special characters which sometimes gets treated different on Windows Vs linux especially square symbol

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

79356058

Date: 2025-01-14 18:47:02
Score: 2.5
Natty:
Report link

for macOS, you should be able to use option+z

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

79356053

Date: 2025-01-14 18:45:01
Score: 0.5
Natty:
Report link

For anyone with a similar issue in the future, I figured out the problem!

The task involved copying files to a directory, but the target directory was also accidentally apart of the watch list. Basically, every time the task ran, it would trigger itself again, causing an error.

Reasons:
  • Whitelisted phrase (-2): I figured out
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Palm

79356051

Date: 2025-01-14 18:45:01
Score: 3
Natty:
Report link

Thank you for the help everybody, I think I just figured out the problem. Although my VPS had ports 8000 and 5432 manually opened, my computer itself has all ports closed. Right now i'm "googling" how to open my ports to my Hostinger/VPS only.

I figured my own computers ports were closed using this website: https://www.yougetsignal.com/tools/open-ports/

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

79356049

Date: 2025-01-14 18:44:01
Score: 0.5
Natty:
Report link

I found out that this error is actually a problem with IDE or project structure (I'm not really sure). I found out that the ResolutionStrategy constructor is only available in Java Classes, so I can use it like this:

public class CameraUtils {

    public static ResolutionStrategy createStrategy(Size deviceSize) {

        return new ResolutionStrategy(deviceSize, ResolutionStrategy.FALLBACK_RULE_CLOSEST_HIGHER_THEN_LOWER);
    }
    public static ResolutionSelector createSelector(Size deviceSize) {
        return new ResolutionSelector.Builder().setResolutionStrategy(createStrategy(deviceSize)).build();
    }
}

And then call the helper class from my Kotlin code:

val camera = LifecycleCameraController(this)
camera.imageAnalysisBackpressureStrategy = ImageAnalysis.STRATEGY_KEEP_ONLY_LATEST
camera.imageAnalysisResolutionSelector = CameraUtils.createSelector(Size(width, height))
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Proteus

79356040

Date: 2025-01-14 18:41:00
Score: 3.5
Natty:
Report link

This was a symptom of a larger problem, I had to downgrade cert-manager to v1.13.1 as that is the latest version of cert-manager compatible with Rancher.

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

79356033

Date: 2025-01-14 18:36:59
Score: 2
Natty:
Report link

was making too complicated. this is what worked: "Birth Year": $.Date_of_Birth__c as Date as String {format: "yyyy"} default "",

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

79356032

Date: 2025-01-14 18:36:59
Score: 14
Natty: 7.5
Report link

I have the same problem. Has anyone found a solution?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): Has anyone found
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Doma Ricardi

79356025

Date: 2025-01-14 18:35:58
Score: 2
Natty:
Report link

Yes, you can have another project P2 with VPCSC perimeter_2 under Folder F1 while Project P1 has VPCSC perimeter_1. The folder itself does not impose constraints on the VPCSC configuration of the projects it contains. Each project is independent in terms of its VPCSC perimeter.

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

79356021

Date: 2025-01-14 18:32:57
Score: 4.5
Natty:
Report link

Have you tried putting your data into a supervised learning format?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lucca Mota

79356017

Date: 2025-01-14 18:30:56
Score: 0.5
Natty:
Report link

I have tested all of the solutions here, none of them worked. Even adb connect ip:port didn't work because of authentication not accepted by mobile devices.

If you are facing this right after making a new project, just close the android studio and re-open it. It worked for you like it did for me. Let me know in comment if you're still facing problem.

Reasons:
  • Whitelisted phrase (-1): It worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Huzaifa Iftikhar

79356016

Date: 2025-01-14 18:30:56
Score: 1.5
Natty:
Report link
var obj = {
    "a": 1,
    "b": 2
};
var ret = o2a(obj);
// ret = [ [1, "a"], [2, "b"]]
function o2a(obj) {
    const arr = []
    for (const key in obj) {
        arr.push([obj[key],key])
    }
    console.log(arr);
    return arr
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rouge

79356014

Date: 2025-01-14 18:30:56
Score: 1
Natty:
Report link

No. Unfortunately, Virtual Space has been a long-requested implementation:

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: rozsazoltan

79356011

Date: 2025-01-14 18:29:56
Score: 1
Natty:
Report link

In the original code, this fixes the issue:

int inetPtonReturnValue { inet_pton(AF_INET, IPAddress.c_str(), &structSockAddr.sa_data[2]) };

The first 2 bytes of sa_data are for the port.

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

79355995

Date: 2025-01-14 18:22:54
Score: 1
Natty:
Report link

I have a class library and I fixed the same issue by installing the Microsoft.AspNetCore.Authentication.JwtBearer v9.0.0

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manolo Martinez

79355977

Date: 2025-01-14 18:18:53
Score: 2.5
Natty:
Report link

I'm in the same boat. I just found a reddit post that said Manim supports up to python 3.12. I have version 3.13 and got the same error you got. Not sure what to do lol.

https://www.reddit.com/r/manim/comments/1hgtwqf/help_installing_manim/

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

79355960

Date: 2025-01-14 18:12:51
Score: 3
Natty:
Report link

Also, once when the default runs once, then you can now trigger the workflow_dispatch on other branches. You just need to run it once on the main branch.

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

79355947

Date: 2025-01-14 18:05:50
Score: 1.5
Natty:
Report link
export type TCategoryAnalyzes = {
  [region: string]: {
    categoryId: string;
    analyzes: IAnalyzesStorageData[];
  };
};

this his how you can achieve it.

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

79355945

Date: 2025-01-14 18:05:50
Score: 3.5
Natty:
Report link

In your assert functions, use only strings, not numbers.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alejandro Fernández

79355943

Date: 2025-01-14 18:04:49
Score: 1
Natty:
Report link

Thanks very much Szymon, I want to update my interim solution for this, cause neither .parallelProcessing nor newSingleThreadExecutor nor synchrnous() is working without multithreading.

So what works is:

 .aggregate(constant(true), new GroupedBodyAggregationStrategy())
                    .completionSize(ELASTICSEARCH_BULK_SIZE)
                    .completionPredicate(someDataCache.getEndOfPostfilePredicate())
                    .process(this::processBulkRequest)
                    .end();

with

private final AtomicInteger bulkRequestCount = new AtomicInteger(0);

 private void processBulkRequest(Exchange exchange) {
        CompletableFuture<Void> future = CompletableFuture.runAsync(() -> {
            bulkRequestCount.incrementAndGet();
            exchange.getContext().createProducerTemplate().send("elasticsearch://elasticsearch?operation=Bulk&hostAddresses=#elasticsearchHostAddressess", exchange);
        });

        try {
            future.get();
            int totalBulkRequestsNeeded = someDataCache.getEndOfFilePredicate().getDocumentCount() / ELASTICSEARCH_BULK_SIZE;
            if (bulkRequestCount.get() > totalBulkRequestsNeeded) {
                logger.info("Bulk request completed. Updating alias");
                exchange.getContext().createProducerTemplate().send("direct:updateAlias", exchange);
            }
        } catch (Exception e) {
            logger.error("Error while processing bulk request", e);
        }
    }

in this case its guranteed that the alias will be created after the bulk upload.

But still would be great to know why this is not working as expected with Camel 4 and Java 21.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Splioo

79355936

Date: 2025-01-14 18:01:49
Score: 2
Natty:
Report link

try closing and reopening the vs code. back up necessary files if necessary. that is what worked for me

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

79355931

Date: 2025-01-14 17:58:48
Score: 3
Natty:
Report link

Update to latest version from react-native-video worked for mine. Latest version: ^6.9.1

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

79355929

Date: 2025-01-14 17:57:47
Score: 1
Natty:
Report link

Many years later, in Visual Studio 2022, I've just had the same problem.

It occurred when I copied aspx files from one project to another within the same solution.

The namespaces in the new aspx, aspx.cs and aspx.designer.cs files still contained the name of the project from where they were copied, so I changed these to use the new project name. The code behind file still didn't recognise the names of the controls on the aspx page.

Then I noticed that the aspx.designer files hadn't been added to the project. They were in the correct location, but needed to be added manually by right clicking on them and selecting "Include in Project".

That fixed it.

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

79355927

Date: 2025-01-14 17:57:47
Score: 0.5
Natty:
Report link

What about spark sql only?

Well other way to solve it could be by spark sql and using window functions and group by.

df.registerTempTable('dfTable')
spark.sql("""
    with grp_cte as (
        select 
            id,
            time - row_number() over (partition by id order by time) as grp
        from dfTable           
    ),
    final as (
        select 
            id, count(grp) cnt
        from grp_cte
        group by id, grp
    )
    select 
        id, max(cnt) time
    from final
    group by id
""").show()
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Sr Jefers

79355923

Date: 2025-01-14 17:55:47
Score: 2
Natty:
Report link

Change the Secure Boot template from "Microsoft Windows" to "Microsoft UEFI Certificate Authority" as per this screenshot

Screenshot of Secure Boot options

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

79355914

Date: 2025-01-14 17:53:46
Score: 1.5
Natty:
Report link

const Userdata = await axios.post('YOUR_URL',{ email : YOUR_EMAIL, password : YOUR_PASSWORD } );

EXAMPLE_YOUR_URL : http://localhost:3000/signup EXAMPLE_YOUR_EMAIL : [email protected] EXAMPLE_YOUR_PASSWORD : 123456

After then you will get back { status, data ..} In the data filed you will recieve all your data send by your backend and you can access by Userdata.data

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

79355905

Date: 2025-01-14 17:50:45
Score: 3
Natty:
Report link

The answer was a combination of comments from Tim Williams and BigBen. What was being searched for was a part number and there are descriptions for each part, one of which included mention of the part causing the issue. Using LookAt:=xWhole to look for cells containing exactly and only the search string solved the problem. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Josh Carr

79355889

Date: 2025-01-14 17:47:44
Score: 0.5
Natty:
Report link

Untested but something like this:

from sqlalchemy import inspect
old_to_new = {c.name: k for k, c in inspect(TableName).columns.items()}

https://docs.sqlalchemy.org/en/20/orm/mapping_api.html#sqlalchemy.orm.Mapper.columns

https://docs.sqlalchemy.org/en/20/orm/mapping_styles.html#inspection-of-mapper-objects

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

79355887

Date: 2025-01-14 17:46:44
Score: 1
Natty:
Report link

I have edited function by add setTimeout and clearTimeout. Now program is working properly even with small time(500ms). For smooth play video I use more period and I will try implement function of download data ahead of proper time displaying descriptions.

async function checkVerset(zone) {  
let zoneRes;
console.log('fetch: ');
const timer = setTimeout( function(){ 
    player.pause(); 
    console.log('pause');
}, 500);
await connectFetch('./info.php', zone ).then(resolve =>{
    clearTimeout(timer);
    console.log('clearTimeout');
    zoneRes = resolve;
    console.log(zoneRes);   
}).catch(error => console.log( 'Error of details: ', error));
if(player.pause){
    player.play();
    console.log('play');
}
return zoneRes; 
}   

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kam

79355885

Date: 2025-01-14 17:45:44
Score: 1
Natty:
Report link

I figured out what I did wrong. I was downloading the javadoc.jar file, it needs to be the file without the javadoc in the file name: liquibase-databricks-1.4.0.jar

Reasons:
  • Whitelisted phrase (-2): I figured out
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user6866797

79355883

Date: 2025-01-14 17:45:44
Score: 2
Natty:
Report link

Test the below code

  <div>
</div> 
<style>
Div{ 
%4(
  width,
  height,
  max-height, 
  max-width
  [: 100px;]
  )
  %2(
Border:, 
Outline:
[ 2px solid navy;])
}
</style>
<script  src="https://winiss.tiiny.site/scripts/fscssv3.1m.js"></script>
<script src="https://winiss.tiiny.site/scripts/m.js"></script>

see more about this style type

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

79355863

Date: 2025-01-14 17:35:40
Score: 7 🚩
Natty:
Report link

Yes, I am new here and maybe first question or support I need from here. For example, social media. Anyone can login into my website as a social media visit. every social media will embed into the browser and they can browsing on there. It's not a social media website which is www.shanerhat.com . It's a multiple purpose website but at this time it's presenting as a news blog on there but have more 2 parts on there. One is Marketplace and another one is training. Whatever, I will happy if anyone can make my ideas to apply in real to my website. Anyone there?

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1.5): I am new here
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Shuvo

79355856

Date: 2025-01-14 17:34:40
Score: 1
Natty:
Report link

You are correct that a row for Vidhya Stationary will not appear in the output because S_ID=GP02 does not exist as a S_ID in the Stationery table.

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

79355853

Date: 2025-01-14 17:34:40
Score: 2
Natty:
Report link

If we use the include tag for our header file inside our c file; then we don't need to compile the header file again. In fact, the command: gcc hello.c hello.h might cause a problem of bloating since there is a chance of compiling the header file twice if it's already included in hello.c file. So, we just need to use #include "hello.h" at the top of our hello.c file, then run the command: gcc hello.c.

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

79355848

Date: 2025-01-14 17:30:39
Score: 2
Natty:
Report link

It's not clear what is your goal. Let me share what I am understanding. Correct me If I am wrong.

  1. Users will open your website from their browser to open another browser inside of it? Why anyone will do that?

  2. If you have developed your own browser, you need provide installation link for it.

  3. When you said, you want to share your browser with people. It is similar to sharing screen. You usually share screen on meetings. Why you need to share screen with a news website? I think you are not clear with your goals.

  4. List item

Reasons:
  • Blacklisted phrase (1): what is your
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: anuj tyagi