79413667

Date: 2025-02-05 04:51:22
Score: 1
Natty:
Report link

I found how to do it using the internal method ipysheet

ipysheet.easy._assign(sheet.cells[my_cell_idx], new_cell_value)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vladimir

79413664

Date: 2025-02-05 04:43:20
Score: 2.5
Natty:
Report link

doesn't work for key, name in webcolors.CSS3_NAMES_TO_HEX.items(): r_c, g_c, b_c = webcolors.hex_to_rgb(name)

&&&

for name, hex_value in webcolors.names(css3): r_c, g_c, b_c = webcolors.name_to_rgb(name)

both not working 4 me

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

79413662

Date: 2025-02-05 04:42:20
Score: 2.5
Natty:
Report link

Neural networks are eager learning methods because they generalize during training rather than deferring learning until prediction time.

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

79413650

Date: 2025-02-05 04:36:19
Score: 1.5
Natty:
Report link

Just run this command

watchman watch-del-all

Now run the project

npx react-native run-ios
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shishir Jha

79413647

Date: 2025-02-05 04:31:17
Score: 2
Natty:
Report link

If anyone's still searching, we built an open source tool at my company for this since we also couldn't find an existing tool out there.

You can check out https://www.npmjs.com/package/@svengroup/openapi-to-pdf

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

79413646

Date: 2025-02-05 04:30:17
Score: 1
Natty:
Report link

If you're still searching, we built an open source tool at my company for this since we also couldn't find an existing tool out there.

You can check out https://www.npmjs.com/package/@svengroup/openapi-to-pdf

It doesn't make it into word but you can customize the markdown content and PDF formatting so you can add custom sections, etc.

It includes a table of contents section, cover page and more.

Let us know what you think!

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

79413644

Date: 2025-02-05 04:30:17
Score: 1
Natty:
Report link

This approach may help:

  1. BeautifulSoup library can be used for the static websites; snscrape for Twitter; LinkedIn API for scraping LinkedIn.
  2. Do code for filtering the links that aren't needed using keyword filtering / regex.
  3. Store the extracted data in Google Sheets (as it is free). Access it using Google Cloud Console - Google Sheets API.
  4. Automate this using task scheduler in windows.
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Swati

79413642

Date: 2025-02-05 04:29:15
Score: 6 đŸš©
Natty:
Report link

I am facing the same issue today. Copilot extension is messing up somehow.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nay Zaw Min Naing

79413639

Date: 2025-02-05 04:27:14
Score: 2
Natty:
Report link

If anyone's still searching, we built an open source tool at my company for this since we also couldn't find an existing tool out there.

You can check out https://www.npmjs.com/package/@svengroup/openapi-to-pdf

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

79413636

Date: 2025-02-05 04:26:13
Score: 2
Natty:
Report link

If you're considering a headless CMS for storing and updating the sequence of bot messages, I recommend checking out this article on Headless CMS: Future, Benefits, and Flexibility. It explains how headless CMS platforms can help manage dynamic content and deliver it to different channels like websites, apps, and bots.

For your use case, headless CMS systems like Strapi, Contentful, or Sanity might be great options, allowing you to store structured messages and easily update them without redeveloping the website. You can combine them with Firebase for handling real-time updates if needed.

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mueed Hasan Sifat

79413613

Date: 2025-02-05 04:05:09
Score: 1.5
Natty:
Report link

The question was thankfully reopened, so I can now give an answer to potentially help others. Xavier led to the correct answer - the issue was with a setting on the hosting provider. The provider had a firewall setting that was preventing the “WebResource.axd” file not being able to be found. These also created a third error related to “WebForm_SaveScrollPositionSubmit” which coincidentally is named similar to what my exact issue is.

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

79413598

Date: 2025-02-05 03:50:06
Score: 1
Natty:
Report link
export const dynamic = "force-dynamic";
export const revalidate = 10;

async function fetchPersonData(id: string): Promise<any> {
  // Fetch person data using the ID
  const res = await fetch(
    `https://jsonplaceholder.typicode.com/todos/1`,
    {
      cache: "no-store",
    }
  );

  if (!res.ok) {
    throw new Error("Failed to fetch person data");
  }
  return res.json();
}

const Person = async ({
  params,
  searchParams,
}: {
  params: { name: string };
  searchParams: { id?: string };
}) => {

  // const id = searchParams.id;
  const id = "1";
  if (!id) {
    throw new Error("Missing person ID");
  }

  const personData = await fetchPersonData(id);
  console.log("The person data we got: ", personData)

  return (
    <div className="flex flex-col">
    
      <section className="flex flex-col h-screen w-screen p-32">
        <h2 className="font-medium text-2xl">{personData.bio?.title || ""}</h2>
        <h1 className="font-bold text-4xl pt-4">
          {personData.name || ""}{" "}
          <span className="abo-thar">this is title {personData.title || ""}</span>
        </h1>
        <div className="flex w-full justify-between">
          <p className="w-5/12 pt-12 text-justif[enter image description here][1]y">
            {personData.bio?.text || ""}
          </p>
          {personData.imageUrl && (
            <img
              src={personData.imageUrl}
              alt={personData.name || ""}
              className="max-w-96 p-6"
            />
          )}
        </div>
      </section>
     
    </div>
  );
};

export default Person;

enter image description here

Hi there, i've tried your code but with https://jsonplaceholder.typicode.com/todos/1 get api and looks like i'm able to fetch and display data with serverside component, maybe can you check your api or try with diffrent api the problem might be on that side

Reasons:
  • Blacklisted phrase (0.5): Hi there
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Piyawat Mahattanasawat

79413586

Date: 2025-02-05 03:39:04
Score: 0.5
Natty:
Report link

You need to pass LinkedIn-Version header as per below example:

# Before
headers: {
  "Content-Type": "application/json",
  Authorization: `Bearer ${req.body.accessToken}`,
},

# Now
headers: {
  "Content-Type": "application/json",
  Authorization: `Bearer ${req.body.accessToken}`,
  "LinkedIn-Version": "202401",
},

How to get LinkedIn-Version from LinkedIn?

Go to https://www.linkedin.com/developers/apps/<appid>/products/share-on-linkedin/endpoints where you need to replace <appid> with you application id provided by linkedin which should look like 224036728.

Then you will get Product version: as per below screenshot which you need to pass while calling api. Product Version

source: https://developers.knowivate.com/@kheersagar/a-version-must-be-present-please-specify-a-version-by-adding-the-linkedin-version-header

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

79413582

Date: 2025-02-05 03:34:03
Score: 1.5
Natty:
Report link

tl;dr: Follow this guide for your editor (has instructions for NeoVim, VSCode, Sublime Text, Helix Code): https://github.com/bazel-contrib/rules_go/wiki/Editor-setup

This solution does not require adding additional rules to your Bazel project. As long as you've loaded the @rules_go repository (which you presumably have to work with Go files), all you need to do is add a shell script somewhere for the language server to call into.

Notes

Also spent a lot of time digging around for this. It's annoying and surprisingly hard to find the solution! Thankfully it also annoyed other people: https://github.com/bazel-contrib/rules_go/issues/512

That Github solution explains that the Go tooling team has built up tooling for this a while ago. Basically any editor that uses the gopls language server can use this solution. The gopls editor is setup such that the binary it calls into for package resolution can be modified to point at a custom user script. The Go Bazel rules expose a target which will resolve Bazel built Go packages appropriately.

Sources

Reasons:
  • Blacklisted phrase (1): this guide
  • Blacklisted phrase (1): This link
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tenzin

79413573

Date: 2025-02-05 03:25:01
Score: 2.5
Natty:
Report link

Load the data from the first sheet

df = pd.read_excel(xls, sheet_name="Sheet1")

Display the first few rows to understand the structure

df.head()

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

79413572

Date: 2025-02-05 03:25:01
Score: 1.5
Natty:
Report link

Are you trying to shade a portion of the area based on a threshold? If so, this is likely because an area is a single rendered element, unlike bars, which are separate and, therefore, more straightforward to encode conditionally.

I've solved this challenge previously using three different areas (positive, negative, and intersection) to mask the parts of the chart and give the effect I think you're looking for, and I've written this up in detail here.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Daniel Marsh-Patrick

79413554

Date: 2025-02-05 03:07:57
Score: 0.5
Natty:
Report link

For sure u cant find it, the WhatsApp Business API does not allow you to initiate conversations with users unless they have contacted your business first. This is a core principle of the WhatsApp platform to prevent spam and ensure user privacy. Your current code is the correct way to respond after a user initiates contact.

There's no way to bypass this restriction using the standard WhatsApp Business API. Any method claiming to do so is likely violating WhatsApp's terms of service and could lead to your account being banned.

The only ways to start a conversation with a user on WhatsApp are:

1. User initiates the conversation: The user sends the first message to your business. This is the most common and compliant way.

2. Using pre-approved message templates (within 24 hours of last user interaction): You can send pre-approved message templates for specific use cases (e.g., order updates, shipping notifications) only if the user has interacted with your business within the last 24 hours. Even with templates, you cannot use them for marketing or promotional messages. After 24 hours, you must wait for the user to contact you again.

Template Example (using your code as a base):

const sendMessage = async (phoneNumber, templateName, languageCode, components) => {
    const response = await axios.post(
        "https://graph.facebook.com/v17.0/YOUR_PHONE_NUMBER_ID/messages",
        {
            messaging_product: "whatsapp",
            to: phoneNumber,
            type: "template",
            template: {
                name: templateName, // The name of your approved template
                language: {
                    code: languageCode // e.g., "en_US"
                },
                components: components // Array of components for placeholders in the template
            }
        },
        {
            headers: {
                "Authorization": `Bearer YOUR_ACCESS_TOKEN`,
                "Content-Type": "application/json"
            }
        }
    );

    console.log(response.data);
};

// Example usage (within 24 hours of user interaction):
sendMessage("CUSTOMER_PHONE_NUMBER", "order_update", "en_US", [
    {
        type: "body",
        text: "Your order (#12345) has shipped!"
    }
]);

3. Click-to-WhatsApp Ads: These are Facebook ads that have a "Send Message" button that opens a WhatsApp conversation with your business. This is a paid advertising option.

4. WhatsApp Links (wa.me links) and QR Codes: These tools make it easy for users to initiate conversations with your business. You can share these links and QR codes on your website, social media, and other marketing channels. This is a best practice to encourage users to contact you.

Reasons:
  • Blacklisted phrase (1): these links
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Favo Perdana

79413553

Date: 2025-02-05 03:06:57
Score: 0.5
Natty:
Report link

I was running into the same issue on an Apple Silicon MacBook, and after a lot of trial and error, I finally got it working by passing both --platform linux/amd64 and --provenance=false. Hope this helps anyone else stuck on this!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: faisal

79413551

Date: 2025-02-05 03:04:56
Score: 8 đŸš©
Natty: 6
Report link

did you find an alternative solution? I am struggling with the huge performance loss with stacked cameras.

Reasons:
  • Blacklisted phrase (1): I am struggling
  • RegEx Blacklisted phrase (3): did you find an
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find an
  • Low reputation (1):
Posted by: Tracy Du

79413550

Date: 2025-02-05 03:03:53
Score: 6 đŸš©
Natty:
Report link

I currently have the same problem, even if I initially pass a false to the unit activity, it enters the cycle and never stopsenter image description here enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: ALEXANDER GRAJALES VANEGAS

79413548

Date: 2025-02-05 03:02:53
Score: 2
Natty:
Report link

There is an option available to choose between alphabetic and length sorting style (File | Settings | Editor | Code Style | PHP > Code Conversion > "Sort Use Statements").

enter image description here

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

79413547

Date: 2025-02-05 03:01:52
Score: 2
Natty:
Report link

Firefox is also opening new tab when you use noopener or noreferrer rel attribute, or with a window.open noopener or noreferrer features.

Doesn't seem to be the case for Chrome (version 132)

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

79413546

Date: 2025-02-05 03:00:52
Score: 2
Natty:
Report link

In my case, in Windows 11, sqlite3.exe process that started by VSCode 'stuck', as im using VSCode plugin to browse sqlite db, since overwriting the locked file is not possible, Android Studio hang(showing 'calculating...' message forever) when downloading the file at same location, after killing this process(sqlite3.exe), everything works fine

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

79413545

Date: 2025-02-05 02:59:52
Score: 2
Natty:
Report link

Assuming that city you are attempting to target is within the US, you have overlapping locations (and hence the error message is correct). If you're targeting the whole of the US, you should remove the city. If you want to just target the one city, remove US.

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

79413541

Date: 2025-02-05 02:57:51
Score: 3.5
Natty:
Report link

OMG, found the reason! I had a different firmware loaded on the ESP32 before and turns out once you connect a device and it's BONDED in the nRF app, the properties information is cached! I'm new to BLE and not sure how it works, but seems it's cached on the OS level, so it didn't work in Chrome as well. Once I removed BOND and re-scanned and re-connected, it started working perfectly. The GUIDs are now showing up on the phone in the same exact way as on the laptop.

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vadim

79413539

Date: 2025-02-05 02:55:51
Score: 1
Natty:
Report link

Vue.js does not have direct access to runtime environment variables because they are baked into the app during the build process. Instead of trying to access process.env in Vue components, a better approach is to dynamically inject environment variables into a config.js file that the app can load at runtime.

Here are the steps I used to resolve this:

I believe this tutorial provides a complete step-by-step guide on implementing this solution effectively: https://www.baeldung.com/ops/vuejs-pass-environment-variables-runtime

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: David Chibueze Ndubuisi

79413519

Date: 2025-02-05 02:38:46
Score: 4
Natty:
Report link

You should take a look at this graalvm Document

https://www.graalvm.org/latest/reference-manual/native-image/optimizations-and-performance/MemoryManagement/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Qeir Mr.钟

79413518

Date: 2025-02-05 02:38:46
Score: 3
Natty:
Report link

Alternatively if your using SceneBuilder, you can also increase the width of the label and go to properties->Node->Alignnment:center; see

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

79413513

Date: 2025-02-05 02:35:45
Score: 2
Natty:
Report link

IOS only accept tracking location when foreground and background we can't do anything when app kill. Android, we can use service foreground when kill app. You can find so many example for this

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Thịnh PháșĄm

79413508

Date: 2025-02-05 02:32:44
Score: 0.5
Natty:
Report link

Just these two lines are enough to be understood.

Loose coupling between services. High cohesion within each service.

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

79413505

Date: 2025-02-05 02:30:43
Score: 5
Natty: 5
Report link

For Approach #1, the response from Search Sheet will not contain rowId which is a required parameter in issuing a Get Row request. I wonder how you are getting rowId in this case?

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

79413493

Date: 2025-02-05 02:12:39
Score: 2.5
Natty:
Report link

did some digging around and wrote this code that now works for my project. thanks to all that helped!

const dob = "{{user.dob}}"; const localDob = new Date(dob); 
const formattedDob = localDob.toLocaleDateString();
document.getElementById('dobDisplay').textContent = formattedDob
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): did some
  • Low reputation (1):
Posted by: raven

79413492

Date: 2025-02-05 02:12:39
Score: 1
Natty:
Report link

I managed to fix it, I just invoked the original functions inside the test, then mocked genSalt and hash with the results.

const genSaltOriginal = (await vi.importActual<any>("bcryptjs")).genSalt;
const hashOriginal = (await vi.importActual<any>("bcryptjs")).hash;

const salt = await genSaltOriginal(10);
const hashedPassword = await hashOriginal(password, salt);

(genSalt as Mock).mockResolvedValueOnce(salt);
(hash as Mock).mockResolvedValueOnce(hashedPassword);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: funnyVariable

79413486

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

Yes, you can create a Dev Container for a .NET Framework 4.8 application, After few months I found a way to do this. But there are some limitations because Dev Containers in VS Code primarily support Linux-based containers. However, Windows containers can still be used with some workarounds.

This Detailed guide on containerizing legacy .NET Framework applications with Docker, which covers simplifying IIS setup, enabling HTTPS, and debugging inside a container. You might find it helpful:

https://medium.com/@kavinduxyz/plug-and-play-net-legacy-apps-with-docker-no-more-iis-configs-for-new-joiners-fb5c3321895e

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user3732708

79413483

Date: 2025-02-05 02:05:37
Score: 3.5
Natty:
Report link

As said by @JonSG and @Chris, I needed to create a route method before the

app.run()

to make the code work. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @JonSG
  • User mentioned (0): @Chris
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Shree_ML

79413482

Date: 2025-02-05 02:05:37
Score: 0.5
Natty:
Report link

When you call PUT api, you only pass name in the body, but the request User type, so Spring will understand that your body is:

{
  "id": null,
  "name": "your_input_name",
  "date_created": null
}

And in your update method, you only copy object with id => the dateCreated still null. That why when it save to db, the date_created column is null

You can first query the object in db with id, change name field then save it back.

Or you can add updatable = false to make sure date_created will not be updated.

@Column(name= "date_created", updatable = false)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Kezlo

79413477

Date: 2025-02-05 02:01:37
Score: 3
Natty:
Report link

First, thanks for the help.

The issue revolve around the version of PowerShell.

The documentation stated: PowerShell 7.4.5 64-bit or higher.

It turned out, it will only run in PowerShell 7.4.5.

Once I downgraded, everything worked as expected.

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

79413467

Date: 2025-02-05 01:51:34
Score: 0.5
Natty:
Report link

Just check if it IS it's own BE/LE field.

def is_big_endian(t:type[ctypes._SimpleCData]):
    return t is t.__ctype_be__ # type: ignore

def is_little_endian(t:type[ctypes._SimpleCData]):
    return t is t.__ctype_le__ # type: ignore
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Not Saying

79413464

Date: 2025-02-05 01:46:33
Score: 1
Natty:
Report link

Solved my problem. It seems for this phone, it cannot support both recording and image capture surfaces at the same time, it works if I remove either captureReader?.surface?.let { surface -> surfaceList.add(surface) } or recorderSurface?.let { surface -> surfaceList.add(surface) }

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

79413455

Date: 2025-02-05 01:39:32
Score: 1
Natty:
Report link

Welcome to Visual Studio Code!

I suggest looking into the extensions regarding live servers, for example the extension "Live Server (Five Server)". This extension will allow you to update your browser immediately while typing on your keyboard and keeping you on the page where you're working on.

Enjoy and have fun.

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

79413447

Date: 2025-02-05 01:28:29
Score: 9
Natty: 7.5
Report link

Did you manage to publish? Is it possible in 2025?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Mauricio Alves Pereira Junior

79413445

Date: 2025-02-05 01:27:28
Score: 0.5
Natty:
Report link

Just to complete @Miroslav's answer in case if you are using Version Catalog

Project Level libs.versions.toml:

[versions]
kotlin = "2.0.21"
kotlin-ksp = "2.0.21-1.0.28" // Has to be compatible with the used Kotlin
hilt = "2.51.1"

[libraries]
dagger-hilt = { group= "com.google.dagger", name = "hilt-android", version.ref = "hilt"}
dagger-hilt-compiler = { group= "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt"}

[plugins]
kotlin-ksp = { id = "com.google.devtools.ksp", version.ref = "kotlin-ksp" }
hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }

Project Level build.gradle:

plugins {
    alias(libs.plugins.hilt.android) apply false
    alias(libs.plugins.kotlin.ksp) apply false
}

Module level build.gradle:

plugins {
    alias(libs.plugins.hilt.android)
    alias(libs.plugins.kotlin.ksp)
}
dependencies {
    implementation(libs.dagger.hilt)
    ksp(libs.dagger.hilt.compiler)
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Miroslav's
  • Low reputation (0.5):
Posted by: Hassan TBT

79413443

Date: 2025-02-05 01:26:28
Score: 2
Natty:
Report link

This is a very old question now, but the answer is that the emscripten object you're getting is not a Javascript array, it's a special kind of vector object and you need to use get() to access the elements.

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

79413442

Date: 2025-02-05 01:25:28
Score: 2
Natty:
Report link

As outlined in this document on Billing FAQs - Azure DevOps | Microsoft Learn,

Q: Can I move between resource groups?

A: No, the organization resource is created in its own resource group with a predefined naming convention.

Reasons:
  • Blacklisted phrase (1): this document
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Alvin Zhao - MSFT

79413437

Date: 2025-02-05 01:22:27
Score: 0.5
Natty:
Report link

I know this question is pretty old but I think its still relivant with Angular 19

I have a library that uses $localize I currently import @angular/localize/init in my libraries entry file

This works fine, however, when I serve an application that uses my library, I get the following warning

â–Č [WARNING] Direct import of '@angular/localize/init' detected. This may lead to undefined behavior. [plugin angular-localize-init-warning]

    libs/aspect/ui/src/index.ts:4:7:
      4 │ import '@angular/localize/init';

There must be an official way to do this but I cant find it :(

For context, I am using an nx monorepo.

Reasons:
  • Blacklisted phrase (1): :(
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lightweight

79413432

Date: 2025-02-05 01:20:27
Score: 1
Natty:
Report link

this is the current working repo for FFMPEG:

implementation 'com.arthenica:ffmpeg-kit-min:6.0.LTS'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eldo Martadjaya

79413421

Date: 2025-02-05 01:09:25
Score: 1
Natty:
Report link

so ...

essentially you want to create half of your random indexes then repeat it.

it won't matter how many times an index is entered cause once you repeat the list, all quantities will be even.

if you need more guidance or a firm example, just ask. but for starters you'll need the first list doubled then maybe randomize that list so it's not just a doubled pattern.

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

79413420

Date: 2025-02-05 01:08:24
Score: 5.5
Natty: 5.5
Report link

write please which version of pycryptodome did you use?

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

79413413

Date: 2025-02-05 01:02:22
Score: 1
Natty:
Report link

As Henk pointed out the results are AliasedValues but what the Microsoft documentation for LinkEntity and all their examples don’t show is how the LinkEntity items are returned.

I stumbled across the answer. The results appear in your main entity results in the Attributes field. They use the entityAlias and field name as the key, so if your entityAlias is ‘leAlias’ and your column include Name then the attribute key will be ‘leAlias.name’.

Additionally be careful to specify filter criteria or you can end up with duplicate entities with varying attributes.

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

79413410

Date: 2025-02-05 01:00:21
Score: 2.5
Natty:
Report link

After testing, I found that adding .padding(.horizontal, 5) to both TextField and TextEditor effectively left-aligns the text. This method is simple and solved the issue I was facing.

.padding(.horizontal, 5)

enter image description here

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

79413408

Date: 2025-02-05 01:00:21
Score: 1.5
Natty:
Report link

for flutter and other android dev you see this : distributionUrl=https://services.gradle.org/distributions/gradle-8.9-bin.zip in the folder of :android/gradle/wrapper/gradle-wrapper.properties

now change this to this :distributionUrl=https://services.gradle.org/distributions/gradle-7.6-bin.zip

if the problem still presist then: Invalidate cache and restart if issue still presist you need to install Java 17

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muhammad Hamza Naeem

79413406

Date: 2025-02-05 00:59:21
Score: 3
Natty:
Report link

After I installed Visual Studio 2022 (Version 17.12.4) the Visual Studio 2019 issue described above was fixed.

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

79413405

Date: 2025-02-05 00:58:21
Score: 1
Natty:
Report link

rowwise() + c_across() is generally super slow. You could use pmap() in combination with across() for a faster option that is still tidyverse friendly:

library(tidyverse)
mtcars %>% 
  mutate(maxval = pmap(across(one_of(c("drat", "wt"))), ~max(c(...))))

Though probably still slower than the invoke() / exec() based approach by @akrun...

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @akrun
  • Low reputation (0.5):
Posted by: Bryan Shalloway

79413388

Date: 2025-02-05 00:45:19
Score: 1
Natty:
Report link

I'm using replace(yourText,base64ToString('DQ=='),yourValue) to replace CR (\r) so perhaps concat(yourvalue1,base64ToString('DQ=='),yourvalue2)?

LF (\n) is base64ToString('Cg==')

CRLF (\r\n) is base64ToString('DQo=')

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

79413386

Date: 2025-02-05 00:43:18
Score: 2.5
Natty:
Report link

the request returns 200 with body = "search=| inputlookup custom.csv&output_mode=json"

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

79413380

Date: 2025-02-05 00:41:18
Score: 2
Natty:
Report link

Just use the cellspacing attribute.

<div style="width:750px;">
  <table style="width:30%;" border="0" cellspacing="0">
    <tr>
      <td style="width:40%; background-color: red; height:150px;"></td>
      <td style="width:60%; background-color: yellow; height:150px;"></td>
    </tr>
  </table>
</div>

First result in google in this similar question: https://stackoverflow.com/a/2279510/22492703

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lubomyr Pryt

79413377

Date: 2025-02-05 00:37:17
Score: 0.5
Natty:
Report link

You can export a function marked as inline from a module, and the compiler is going to make both the function declaration and its implementation available to those who import the module. The compiler can then choose to inline the function, much as it would if you had loaded the function via an #include statement instead of an import statement.

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

79413369

Date: 2025-02-05 00:33:16
Score: 0.5
Natty:
Report link

https://typescript-eslint.io/getting-started/typed-linting/

import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

export default tseslint.config(
  eslint.configs.recommended,
  tseslint.configs.recommendedTypeChecked,
  {
    languageOptions: {
      parserOptions: {
        projectService: true,
        tsconfigRootDir: import.meta.dirname,
      },
    },
  },
);
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: ceferrari

79413362

Date: 2025-02-05 00:30:15
Score: 2.5
Natty:
Report link

select Score,(select count(distinct Score) from Scores where Score >= s.Score) as Rank from Scores as s order by Score desc;

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

79413335

Date: 2025-02-05 00:14:12
Score: 0.5
Natty:
Report link

It looks to me like a hardware issue except for "load of value 40 is not valid value for type '_Bool'" looks like it is software related. Because bool is short for boolean which can only be true or false anything else would cause an error.

I would start by testing the ram with memtest, test the hdd, disconnect any hardware thats not critical to run and see if you can replicate the results. Also update all the software you can. Otherwise you have to investigate each individual error until you find the culprit and sometimes one error can trigger a chain of errors. Linux is great until something breaks right.

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

79413331

Date: 2025-02-05 00:07:11
Score: 1
Natty:
Report link

I think the issue here is that you are extending the scene session but trying to access property from global session.

In telegraf global session and scene session are different.

examId will be available under ctx.scene.session.examId

Here are some useful examples of different scenes with sessions.

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

79413325

Date: 2025-02-05 00:01:10
Score: 1.5
Natty:
Report link

What seems to be working for me is:find -type f -name "logins.json" -exec cp --target-directory=/mnt/ramdisk/FX_Test --parents -a -u -v "{}" \;

'find' finds the files, then copies with a tree-path ("--parents"). -a saves the dates, -u updates only if newer source file exists.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Barry Martin

79413320

Date: 2025-02-04 23:59:09
Score: 2.5
Natty:
Report link

Doesn’t matter what you do. Internet will tell you one thing and boom you’ve removed critical dependencies. Then you go back to the Internet for help and boom the problem is even worse. Just talk to your TA/professor/manager if you’re in school/working. If not I suggest anything other than the stuff you’ll find online. Even a newspaper would be of more help as you would be still at the same spot, rather than an even worse situation

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

79413318

Date: 2025-02-04 23:56:09
Score: 1.5
Natty:
Report link

I have queries which unpivot billions of rows on ONLY 2 columns. I have refactored to NOT use unpivot. This has reduced processing time from 27 minutes to 9 minutes.

I did this by just using UNION ALL (the old fashioned way) instead of unpivot.

Based on my experience, I would not recommend using unpivot (ever) if you care about performance

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

79413309

Date: 2025-02-04 23:49:07
Score: 0.5
Natty:
Report link

Answer

This error occurs when the Serverless Framework (or an integrated tool like AWS SAM) cannot resolve a CloudFormation stack name. Here’s how to fix it:


1. Ensure service and stage Are Properly Configured

Add stage under the provider in serverless.yml. The stack name is auto-generated as ${service}-${stage}:

service: py-events
provider:
  name: aws
  stage: dev  # 👈 Required for stack name resolution
  region: us-east-1  # Optional but recommended

2. Explicitly Define the Stack Name (Optional)

Override the default stack name in serverless.yml:

provider:
  name: aws
  stackName: py-events-${sls:stage}  # e.g., "py-events-dev"

3. Remove Conflicting SAM Files (If Not Using SAM)

If you’re not using AWS SAM:

The Serverless Framework will then use its own stack naming logic.


4. If Using AWS SAM

If you are using SAM (e.g., for other resources):

  1. Create/update samconfig.toml in your project root:
    version = 0.1
    [default.deploy.parameters]
    stack_name = "py-events-dev"
    region = "us-east-1"
    
  2. Deploy with SAM instead of sls:
    sam deploy --config-file samconfig.toml
    

Why Did This Happen Suddenly?


Final Fix (Serverless Framework Only)

  1. Ensure serverless.yml has service, stage, and region:
    service: py-events
    provider:
      name: aws
      stage: dev
      region: us-east-1
    
  2. Remove SAM-related files (template.yaml, samconfig.toml).
  3. Deploy:
    sls deploy --stage dev
    

This resolves the stack name ambiguity by forcing the Serverless Framework to use its internal naming convention.


Verify the Fix

After applying the solution, check the AWS CloudFormation console for a stack.


References:


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

79413307

Date: 2025-02-04 23:49:07
Score: 1.5
Natty:
Report link

Alternatively with REDUCE and LAMBDA.

=DROP(REDUCE("",B2:B4,LAMBDA(u,v,
VSTACK(u,VSTACK(v,FILTER(A7:A11,B7:B11=v),
FILTER(A14:A18,ISNUMBER(XMATCH(B14:B18,FILTER(A7:A11,B7:B11=v)))))))),1)

items

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

79413280

Date: 2025-02-04 23:29:03
Score: 0.5
Natty:
Report link

You're likely referencing the wrong namespace. In your package, update your service bindings from App\Services\UserService to the correct package namespace (e.g., Vendor\Package\Services\UserService), adjust your composer.json autoload settings accordingly, and run composer dump-autoload.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: A. El-zahaby

79413270

Date: 2025-02-04 23:24:01
Score: 2
Natty:
Report link

As of 2025, most of the time, when all the scripts are properly made, this error can still happen due to macOS security, and can be fixed by authorizing the proper programs, (i.e. for example zsh, mysqldump in my case) in in system settings->security and confidentiality->complete disk access.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Fabien Auréjac

79413260

Date: 2025-02-04 23:18:00
Score: 2.5
Natty:
Report link

It's a bit embarrassing, but in my case, I accidentally removed the '.yml' extension from the workflow file when I first created it. As a result, 'the workflow' wasn't listed under 'All workflows' because it was just a plain text file.

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

79413258

Date: 2025-02-04 23:16:00
Score: 1
Natty:
Report link

For expo SDK 52:

import * as Constants from "expo-constants";

console.log(Constants.default.expoConfig?.version);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Giga Meta

79413253

Date: 2025-02-04 23:08:58
Score: 0.5
Natty:
Report link

What I assume is you are trying to pass the getFeaturedPosts to the component FeaturedPosts, the issues lies here:

export async function getStaticProps() {
  console.log("getStaticProps called"); 
  const featuredPosts = getFeaturedPosts();
  console.log("Featured posts in getStaticProps:", featuredPosts); // Debugging line

  return {
    props: {
      posts: featuredPosts,
    },
    revalidate: 1800,
  };
}

pass the function to the component instead

 <FeaturedPosts posts={featuredPosts} />

the other issue could be related to folder structure it should be like app/posts/page.tsx

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I as
  • Low reputation (1):
Posted by: Laeeqthedev

79413240

Date: 2025-02-04 22:58:55
Score: 1
Natty:
Report link

I don't know why but for me the problem was solved by assigning the content charset of the HttpRequestMessage to null:

request.Content.Headers.ContentType!.CharSet = null;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bamdad

79413239

Date: 2025-02-04 22:58:55
Score: 3.5
Natty:
Report link

try adding this to your balls.

add this code.

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

79413218

Date: 2025-02-04 22:45:52
Score: 1.5
Natty:
Report link

This may be way off base, but we also have a number of old systems still kicking around from the .NET 4.X era and have inherited solutions that "have history" ...

Most of the time we have run into this kind of problem, it was cause by a non-standard page declaration. (someone changed the code file to point elsewhere at some point in time, but didn't clean up the old files)

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CourseReport.aspx.cs" Inherits="CourseReport" %>

Was change to something like:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="/code/CourseReport2001.aspx.cs" Inherits="CourseReport" %>

and we find ourselves making changes to the file CourseReport.aspx.cs ... still located in the same directory as the ASPX file, expecting to to work like all the other pages in the solution.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jim C

79413209

Date: 2025-02-04 22:41:51
Score: 1.5
Natty:
Report link

Remove any <PackageReference> to Microsoft.AspNetCore.App from your .csproj. Use <Project Sdk="Microsoft.NET.Sdk.Web"> and update <TargetFramework>net6.0</TargetFramework>. If you need AspNetCore features without the Web SDK, add <FrameworkReference Include="Microsoft.AspNetCore.App" />.

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

79413206

Date: 2025-02-04 22:40:50
Score: 2
Natty:
Report link

I'm not an IBM MQ .NET expert but some things don't look right.

Environment.SetEnvironmentVariable("NMQ_MQ_LIB", @"C:\Program Files\IBM\WebSphere MQ\bin\mqic.dll");

  1. That path is for an older release of IBM MQ (aka WebSphere MQ). Why aren't you using the latest release IBM MQ v9.4?
  2. That path is pointing to the 32-bit release of the MQ client library. So, your application is 32-bit and not 64-bit?

Environment.SetEnvironmentVariable("MQCHLLIB", @"C:\Program Files\IBM\WebSphere MQ\ssl");

You put the CCDT (TAB) file in the "ssl" directory? That's a strange place for it.

Environment.SetEnvironmentVariable("MQSSLKEYR", @"C:\Program Files\IBM\WebSphere MQ\ssl\cert");

Aren't you supposed to put the path plus cert name (without the ".kdb") in the environment variable?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Roger

79413202

Date: 2025-02-04 22:39:50
Score: 3.5
Natty:
Report link

Ended up just removing the Repo 1 folder with a new clone of the repo.

git clone REPO1 .

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

79413195

Date: 2025-02-04 22:35:49
Score: 1.5
Natty:
Report link

Since C++17 filesystem library is available and you should use this library. It provides std::filesystem::exists() call. This call is based on path logic and it could be absolute and relative from the required directory. It works if you process has enough rights to perform those operation, in other words file might exist, but you process could lack of rights to check it

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

79413192

Date: 2025-02-04 22:34:48
Score: 5
Natty: 7
Report link

[enter image description here][1]

[1]: https://i.sstatic.net/AWwuIp8J.png google

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: Jabril Elkins

79413185

Date: 2025-02-04 22:31:47
Score: 1.5
Natty:
Report link

This works:

Changes credit/debit button behavior to "old" version

onShippingChange: function(data,actions){
  //if not needed do nothing..
  return actions.resolve();
},
      
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Paul Flahr

79413181

Date: 2025-02-04 22:30:47
Score: 2
Natty:
Report link

As of 2025, several methods to set up a custom domain for a Cloud Run service - including Cloud Run functions which were previously called Google Cloud Functions - are described in Mapping custom domains guide from Google.

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

79413172

Date: 2025-02-04 22:25:46
Score: 3
Natty:
Report link

You need to get the user_id field from

/me?fields=user_id,name,username?access_token=

and save in DB.

While receiving webhook call, match the recipient id with user_id

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jawad Maqbool

79413171

Date: 2025-02-04 22:25:46
Score: 1
Natty:
Report link

In my case npm install was crashing because I was missing Python for what I was trying to install. The way I debugged it was to run npm install PACKAGE --dd which gave me some clues as to what was actually happening.

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

79413169

Date: 2025-02-04 22:25:46
Score: 0.5
Natty:
Report link

I have implementation of Banker's Round from cpython which match exactly to python3 round() function. Original source

float pythonRound(float x) {
    float rounded = std::round(x);
    if (std::fabs(x - rounded) == 0.5f) {
        return (2.0f * std::round(x / 2.0f));
    }
    return rounded;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Aleksandr Serov

79413164

Date: 2025-02-04 22:22:45
Score: 1.5
Natty:
Report link

That sounds like a possible conflict with the Firebase Dynamic Links SDK. Firebase Dynamic Links will be deprecated later this year. So if you are including the SDK, you might as well remove it and see if that resolves the issue.

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

79413153

Date: 2025-02-04 22:15:43
Score: 3
Natty:
Report link

To resolve this error in React and ASP NET. Core just configure startup projects (Server as first).

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

79413142

Date: 2025-02-04 22:07:41
Score: 1
Natty:
Report link

As I mentioned in the comments, you are running the function programmatically with Custom Menu that is why it's not appearing at the upper right execution log.

Here's a simple explanation about it:

If you run the function manually, you can access the execution log in the upper right of the App Script.

Execution at the upper right

Since you are running the function programmatically using Custom Menu, the execution log history can be accessed on the left side of the App Script.

Execution2

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

79413140

Date: 2025-02-04 22:05:41
Score: 2.5
Natty:
Report link

yourmom = []
values= int(input()) for n in range (values): numbers = int(input()) yourmom.append(numbers)

threshold = int(input())

for i in yourmom: if i <= threshold: print(i, end=",")

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

79413130

Date: 2025-02-04 22:01:40
Score: 1.5
Natty:
Report link

I don't know why, but it seems to happen only on the Chrome browser, and indeed, if you have the dev tools open. From the Sources tab, try to toggle the breakpoints button off (honestly I don't know if it means on or off), but it should look like this:

Chrome dev tools, Sources tab selected, breakpoint button off

Otherwise, the turnstile will fail:

Chrome dev tools, Sources tab selected, breakpoint button on

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

79413126

Date: 2025-02-04 21:59:39
Score: 2
Natty:
Report link

There is a bug in eclipse that when the file on stdin goes EOF, it switches to the keyboard, so if you type ^Z to the console on a Windows machine when the app hangs at EOF, the app proceeds to normal termination. Testing from the command prompt does not have this defect.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: David G. Pickett

79413125

Date: 2025-02-04 21:58:38
Score: 0.5
Natty:
Report link

It seems that the library is using libphonenumber-js's national formatting which adds the leading zero to your phone number. You can play with the demo here: https://catamphetamine.github.io/libphonenumber-js/?parseCountry=IN&parseValue=1234567890

You may want to use international formatting instead (see the demo above)

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

79413124

Date: 2025-02-04 21:58:38
Score: 5
Natty: 5
Report link

That was long ago, but I am curious what the correct values for "MTTF upper" and "MTTF lower" are supposed to be?

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

79413122

Date: 2025-02-04 21:57:37
Score: 2.5
Natty:
Report link

Oddly enough, the onnxruntime package doesn't have any packageconfig, or package that specifies -dbg -dev or any other related package. This was thoroughly checked using various bitbake commands and other methods to try and disable these non-exsistent packages.

I've come to an odd solution. I'm posting it here in case anyone else needs to forcibly remove a specific directory for a package.

# This removes the python library added by the package
PACKAGECONFIG:remove = "python"
# Needed for forcing the installation of this package even though it doesn't use what it compiles

INSANE_SKIP:${PN} += "installed-vs-shipped"
ALLOW_EMPTY:${PN} = "1"

ROOTFS_POSTPROCESS_COMMAND += "remove_debug_dir;"
remove_debug_dir() {
    rm -rf ${IMAGE_ROOTFS}/usr/bin/${PN}
}

do_install:append() {
    rm -rf ${D}${bindir}/${BP}
}

rm_debug() {
    rm -rf ${D}/usr/bin/${PN}
}
do_package_qa[postfuncs] += "rm_debug"

If there is a better way of doing this, please let me know and I'll be happy to try it.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: aoeu

79413118

Date: 2025-02-04 21:54:37
Score: 3
Natty:
Report link

It appears this issue is fixed with the latest version (which is not yet on CRAN). See github issue Incorrect password when quickly pressing enter: https://github.com/datastorm-open/shinymanager/issues/195

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

79413105

Date: 2025-02-04 21:48:35
Score: 1
Natty:
Report link

CodeDeploy is a permissions mess. Just use the arn:aws:iam::aws:policy/AWSCodeDeployRoleForECS role for the code deployment group.

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

79413102

Date: 2025-02-04 21:46:35
Score: 1.5
Natty:
Report link

Resend (retry) works only if you have connection to the Broker and something happened during sending a message.

So, if your Broker is dead, there is no any reason to send message at all - no connection. And that is an exception about.

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

79413090

Date: 2025-02-04 21:41:33
Score: 2
Natty:
Report link

From the SC: "...unless the auto-updating is part of an activity where it is essential." In other words, if the timer is essential to the page, then you don't need to provide a way to stop it. For the example you describe above, I would say a time out indicator could be considered essential.

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

79413088

Date: 2025-02-04 21:40:32
Score: 5
Natty: 5
Report link

I am a bit worried cause I have seen that every time a job with my Login Name get performed, SQL Server logs an error kind of 18456 "password did not match that for the login provided", is it normal error? your processs solve this kind of issue? thanks a lot

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fer

79413087

Date: 2025-02-04 21:40:32
Score: 1
Natty:
Report link

I just spent over an hour to find out why this is happening. The solution is very simple. You just need to install the Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore package. That's it. I have no idea why Microsoft didn't add that to the Identity package. It's weird but it is what it is. Hope you find this helpful. :)

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kristiyan

79413071

Date: 2025-02-04 21:32:30
Score: 1
Natty:
Report link

In the parameters array of objects, you're missing the parameter_name, you are just sending type and text but it should be like this according to the documentation:

"parameters": [ { "type": "text", "paramter_name": "customer_name", "text": "John" }, { "type": "text", "parameter_name": "order_id", "text": "9128312831" }
]

Also, if your parameter type is text, then make sure your text is double quoted, like this:

"parameters": [ { "type": "text", "parameter_name": "name_of_your_parameter_in_the_template", "text": "John Doe" // Replace with user's first name }, { "type": "text", "parameter_name": "name_of_your_parameter_in_the_template", "text": "9999" // Replace with order ID }, { "type": "text", "parameter_name": "name_of_your_parameter_in_the_template", "text": "Confirmed" // Replace with order status }, { "type": "text", "text": "199" // Replace with order amount } ]

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Miguel GarcĂ­a