79618790

Date: 2025-05-13 00:27:45
Score: 5.5
Natty: 5
Report link

@Macosso

I have been trying to use the xtsum package you developed. There was no obvious data.frame returned to the RStudio Environment when using the command "xtsum(df, ... return.data.frame=TRUE, ...)" and so there was no "object" to work with subsequently. Is this a known issue? Where else would the summary statistics results end-up?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Macosso
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Va Nee L. Van Vleck

79618785

Date: 2025-05-13 00:22:44
Score: 3
Natty:
Report link

same problem here, I implemented it with scrollflow.js and it worked, because of ContentOverflow which makes this automatic

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (1): same problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: code monster

79618778

Date: 2025-05-13 00:14:42
Score: 1
Natty:
Report link

Your approach rn is totally fine and common for apps with lightweight components or when you want to keep state in each subcomponent alive between views. I use it in most of my smaller React apps. But it's not always ideal, mostly performance wise.

Like in @moonstar-x's example, AnimatePresence is sort of the best of both worlds. Here's a little example of my own:

import { AnimatePresence, motion } from 'framer-motion'
import { ComponentA } from './path/to/ComponentA'

<AnimatePresence mode="wait">
  {currentComponent === 'A' && (
    <motion.div
      key="A"
      initial={{ x: 300, opacity: 0 }}
      animate={{ x: 0, opacity: 1 }}
      exit={{ x: -300, opacity: 0 }}
      transition={{ duration: 0.3 }}
    >
      <ComponentA />
    </motion.div>
  )}
</AnimatePresence>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @moonstar-x's
  • Low reputation (1):
Posted by: displaynameishere

79618773

Date: 2025-05-13 00:07:40
Score: 3
Natty:
Report link

Online Sabong Site                 Welcome Bonus

1. https://myfreebingocards.shop     100% up to ₱25000

2. http://pagcor.life/              100% up to ₱15000

3. https://bingo-baker.com/          Up to ₱2024 free bonus

4. http://quantumcom.xyz/         Up to 200% welcome bonus

5. https://jili7777.bet/              10% cashback bonus

6. https://yaman88.fun/            50 free bonus on live and slot games

7. https://8k8.cool/                100% up to ₱38888

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

79618772

Date: 2025-05-13 00:06:40
Score: 2.5
Natty:
Report link

Why don't you just do
ffmpeg -i index.m3u8 -map 0 -c copy out.mp4
That way you only have the one rendition.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: Adrian

79618765

Date: 2025-05-12 23:56:37
Score: 5
Natty: 5
Report link

I am just writing an article about this topic https://henwib.medium.com/rust-understanding-and-operators-63e571632b6a

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hendro Wibowo

79618763

Date: 2025-05-12 23:52:36
Score: 1.5
Natty:
Report link

401 usually means a credentials issue.

I would suggest recording the page directly, rather than go through the HAR file as a proxy. Record with all headers. You likely have a missing credentials header on the fourth request.

As to removing the redirect, do you have a justification for altering in your script for a page load how the page load will work in production. Temporary redirects can be expensive on a collective basis, simply bypassing this load because it is inconvenient means that the load you are generating does not actually match the load in production, as you are loading the redirect target without the load of the redirect on the system (origin servers, network, client response, ....)

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have a
  • Long answer (-0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: James Pulley

79618756

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

Me.List833.ColumnCount = 3

Me.List833.ColumnWidths = "1 cm;4.8 cm;1 cm"

Me.List833.RowSourceType = "Value List"

Me.List833.AddItem ("1;2;3")

'You can also add items using variables

'Example: Me.List833.AddItem (Ttest1 & "; " & Ttest2 & "; " & Ttest3)

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

79618748

Date: 2025-05-12 23:33:32
Score: 2
Natty:
Report link

The YAML format is crisp, but, unlike JSON, the element structure is not that readable if the reader is not well-versed with the syntax. So, if in doubt, convert to JSON and see. For example, the JSON-YAML equivalents at https://www.bairesdev.com/tools/json2yaml/ makes the YAML syntax clear.

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

79618731

Date: 2025-05-12 23:08:26
Score: 2.5
Natty:
Report link

regex works to find empty field values in influxql as well

select time, my_field, another_field from my_measurement where my_field =~ /^$/

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

79618730

Date: 2025-05-12 23:08:26
Score: 5
Natty: 5
Report link

Dude, looking at your site I think it would look much better with an overlapping approach than snap, have you tried scrollflow.js?

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: code monster

79618728

Date: 2025-05-12 23:07:26
Score: 0.5
Natty:
Report link

If you want the behaviour where undefined instance variable reads raise a NameError, you can use the Ruby gem strict_ivars.

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

79618727

Date: 2025-05-12 23:06:25
Score: 6
Natty: 7
Report link

How do I turn this off? It is taking away apps I used everyday

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Autumn

79618723

Date: 2025-05-12 23:02:24
Score: 2
Natty:
Report link

Column contents can be removed from an rtable during post-processing using the workaround demonstrated in the following example.

For a more precise solution, instead of attaching your table code please provide a fully reproducible example (with output). This can be generated in R using the reprex::reprex() function.

This method of creating empty columns is generally not recommended - it is advised that rtables users create a custom analysis function that does exactly what is needed instead of removing values during post-processing.

library(rtables)

lyt <- basic_table() %>%
    split_cols_by("ARM") %>%
    analyze("AGE", afun = list_wrap_x(summary), format = "xx.xx")

tbl <- build_table(lyt, DM)
tbl
#>           A: Drug X   B: Placebo   C: Combination
#> —————————————————————————————————————————————————
#> Min.        20.00       21.00          22.00     
#> 1st Qu.     29.00       29.00          30.00     
#> Median      33.00       32.00          33.00     
#> Mean        34.91       33.02          34.57     
#> 3rd Qu.     39.00       37.00          38.00     
#> Max.        60.00       55.00          53.00

# empty all rows in columns 1 and 3
for (col in c(1, 3)) {
    for (row in seq_len(nrow(tbl))) {
        tbl[row, col] <- rcell("", format = "xx")
    }
}
tbl
#>           A: Drug X   B: Placebo   C: Combination
#> —————————————————————————————————————————————————
#> Min.                    21.00                    
#> 1st Qu.                 29.00                    
#> Median                  32.00                    
#> Mean                    33.02                    
#> 3rd Qu.                 37.00                    
#> Max.                    55.00
Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: edlr

79618720

Date: 2025-05-12 22:58:23
Score: 4
Natty:
Report link

Get a second opinion. Have another researcher perform a VADER analysis. Or use a web app to calculate.

https://observablehq.com/@chrstnbwnkl/vader-sentiment-playground

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

79618719

Date: 2025-05-12 22:57:22
Score: 1.5
Natty:
Report link

Try sqlcmd ... -F vertical.

Source: https://learn.microsoft.com/en-us/sql/tools/sqlcmd/sqlcmd-utility?view=sql-server-ver16&tabs=go%2Cwindows%2Cwindows-support&pivots=cs1-bash#enhancements

I can't comment on how far back that option goes, but it is working on the version that's currently available these days on MacOS via Homebrew:

brew info sqlcmd
==> sqlcmd: stable 1.8.2 (bottled)
Microsoft SQL Server command-line interface
https://github.com/microsoft/go-sqlcmd
Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Kyle Krull

79618717

Date: 2025-05-12 22:52:21
Score: 2.5
Natty:
Report link

You are on the right track with Jsoup but lets refine the approach to be more dynamic and flexible, your goal is to extract specific sections without hardcoding element structures, so a more generic solution involves using Jsoup's selectors dynamically based on user input.

Approach:

Use Jsoup to parse the HTML
Extract sections dynamically
Handle both text and tables appropriately
Convert extracted content into JSON 

Step-by-Step Solution
1. Parse the HTML using Jsoup
        Document doc = Jsoup.parse(htmlContent);
2. Locate the section dynamically
Instead of hardcoding specific elements, allow users to provide section names:
    Element section = doc.selectFirst("#your-section-id");

3. Extract content dynamically
Since the section may contain both plain text and tables, handle them accordingly:

    String textContent = section.text();
Elements tables = section.select("table");

JSONArray jsonTables = new JSONArray();
for (Element table : tables) {
    JSONArray tableData = new JSONArray();
    for (Element row : table.select("tr")) {
        JSONObject rowData = new JSONObject();
        Elements cells = row.select("td, th");
        for (int i = 0; i < cells.size(); i++) {
            rowData.put("column_" + (i + 1), cells.get(i).text());
        }
        tableData.put(rowData);
    }
    jsonTables.put(tableData);
}

JSONObject result = new JSONObject();
result.put("text", textContent);
result.put("tables", jsonTables);

System.out.println(result.toString(4)); 

Making It a Reusable Library
To integrate this into your application as a Maven dependency:

Wrap it in a class with a method extractSection(String sectionId).

Package it into a JAR and deploy it to Maven.

public class HtmlExtractor {
    public static JSONObject extractSection(String htmlContent, String sectionId) {
        Document doc = Jsoup.parse(htmlContent);
        Element section = doc.selectFirst(sectionId);
        if (section == null) return null;

        String textContent = section.text();
        Elements tables = section.select("table");

        JSONArray jsonTables = new JSONArray();
        for (Element table : tables) {
            JSONArray tableData = new JSONArray();
            for (Element row : table.select("tr")) {
                JSONObject rowData = new JSONObject();
                Elements cells = row.select("td, th");
                for (int i = 0; i < cells.size(); i++) {
                    rowData.put("column_" + (i + 1), cells.get(i).text());
                }
                tableData.put(rowData);
            }
            jsonTables.put(tableData);
        }

        JSONObject result = new JSONObject();
        result.put("text", textContent);
        result.put("tables", jsonTables);

        return result;
    }
}

Next Steps
Test different HTML structures to ensure flexibility.

Enhance error handling to deal with missing sections or empty tables.

Consider XML serialization if needed for integration.
Please let me know above solution fit or not. Thank You !!
Reasons:
  • Blacklisted phrase (0.5): Thank You
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashok Singh

79618706

Date: 2025-05-12 22:25:15
Score: 1.5
Natty:
Report link

I think I might see what’s going on here. You're getting a StaleElementReferenceException, right? That usually happens when the element you’re trying to interact with is no longer attached to the page — maybe because the page has refreshed or the DOM has changed after switching the radio button.

After selecting the "Rooms Wanted" option and submitting the search, are you sure the search_box element is still the same? Could it be that the page reloads or rerenders that part of the DOM when the radio button is changed?

You should try to re-find the search_box element after switching to the second radio button like this:

rent_button = driver.find_element(By.ID, "flatshare_type-offered")

driver.execute_script("arguments[0].checked = true;", rent_button)

search_box = driver.find_element(By.ID, "search_by_location_field")

search_box.send_keys(postcode, Keys.ENTER)

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

79618698

Date: 2025-05-12 22:11:12
Score: 2
Natty:
Report link

If you don't write plain text but html you can select text and use Emmet plugin to wrap part of the text with <strike> tag. There is the ctrl+shift+g shortcut for this.

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

79618697

Date: 2025-05-12 22:09:12
Score: 1
Natty:
Report link

The autoplot method for class 'tbl_ts' (not 'fbl_ts') allows for variable selection. Just cast the fable into a tsibble before autoplot.

cafe_fc |> lift_fc(lift = 2) |> as_tsibble() |> autoplot(.vars = .mean)

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

79618693

Date: 2025-05-12 22:06:11
Score: 2
Natty:
Report link

Answering my own question: AFAIK there is no 'proper' EL9 repo hosting libc++ packages

There is, however, a way to build the RPMs so they can be self hosted. I believe this [1] github repo has basically taken the RPM sources from upstream (Fedora) and made them available to build for EL9. There are also binary packages for x84_64 in the github release section, but it's probably not wise to trust those, and just build the RPMs yourself.

I'd be happy to retract this answer if there was a 'proper' EL9 repo to avoid the self build and host option. I'd also be interested if anyone knows the reason for the fact there is no official EL9 libcxx package.

[1] https://github.com/luscent/libcxx-el9/

Reasons:
  • Blacklisted phrase (1): anyone knows
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Neil Stephens

79618689

Date: 2025-05-12 22:03:09
Score: 5
Natty:
Report link

enter link description herehere is a quick solution while using expo version 53

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

79618677

Date: 2025-05-12 21:51:05
Score: 8 🚩
Natty: 5
Report link

Excuse me were you able to use the exchange microsoft email in Java Mail?

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: malta59

79618674

Date: 2025-05-12 21:50:05
Score: 0.5
Natty:
Report link

Provided you don't need to worry about keeping track of calculated nulls, you can make use of null-ish coalescing assignment (??=).

function memoize(result) {
  const cache = {};

  return function() {
    cache[result] ??= calculate(result);
    return cache[result];
  };
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andy Doyle

79618673

Date: 2025-05-12 21:49:04
Score: 2
Natty:
Report link

It seems that the NumPy maintainers decided it was best to not deprecate these conversions. It was:

Mind you, a warning is still raised, just a UserWarning that datetime64 keeps no datetime information. So, to answer the question:

OK, so how do I avoid the warning? (Without giving up a significant performance factor)

import warnings
import numpy as np

with warnings.catch_warnings():
    warnings.filterwarnings("ignore", category=DeprecationWarning)
    warnings.filterwarnings("ignore", category=UserWarning)
    t = np.datetime64('2022-05-01T00:00:00-07:00')  # np.datetime64 has no tz info
Reasons:
  • Blacklisted phrase (1): how do I
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: gabelepoudre

79618664

Date: 2025-05-12 21:32:01
Score: 1
Natty:
Report link

If anyone is still having trouble with this issue, I found setting the UPdateSource trigger to LostFocus instead of Propertychanged to work:

Text="{Binding NewAccountBalance, UpdateSourceTrigger=LostFocus, StringFormat=C}"

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

79618659

Date: 2025-05-12 21:30:00
Score: 2
Natty:
Report link

The problem is that you have to use "use client" for NextJs components using React Hooks.

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

79618645

Date: 2025-05-12 21:18:57
Score: 1.5
Natty:
Report link

I think I might see what’s going on here. You're getting a StaleElementReferenceException, right? That usually happens when the element you’re trying to interact with is no longer attached to the page — maybe because the page has refreshed or the DOM has changed after switching the radio button.

After selecting the "Rooms Wanted" option and submitting the search, are you sure the search_box element is still the same? Could it be that the page reloads or rerenders that part of the DOM when the radio button is changed?

You should try to re-find the search_box element after switching to the second radio button like this:

rent_button = driver.find_element(By.ID, "flatshare_type-offered")

driver.execute_script("arguments[0].checked = true;", rent_button)

search_box = driver.find_element(By.ID, "search_by_location_field")

search_box.send_keys(postcode, Keys.ENTER)

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

79618633

Date: 2025-05-12 21:09:55
Score: 0.5
Natty:
Report link

In my case, I had to explicitly specify @latest to resolve the issue:

npm install --save-dev @types/node@latest
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @latest
  • High reputation (-1):
Posted by: DedaDev

79618632

Date: 2025-05-12 21:08:55
Score: 1
Natty:
Report link

The old methods may not work anymore. This is what is working for me to toggle copilot completions:

Add this snippet to your keybindings.json (Ctrl + Shift + P >>> Preferences: Open Keyboard Shortcuts)

{
    "key": "ctrl+shift+alt+o",
    "command": "github.copilot.completions.toggle"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Matheus Antunes

79618624

Date: 2025-05-12 20:55:52
Score: 3.5
Natty:
Report link

Ok, so problem was that the redirect url for github must be http://localhost:8080/login/oauth2/code/github by default. After changed it, i can reach /secured (but it wouldn't redirect me there right after login - i need to do it manually)

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: cichyvx

79618619

Date: 2025-05-12 20:53:51
Score: 4
Natty:
Report link

"نزدیکیوں کا فاصلہ"

نومان کے لیے پاکیزہ صرف ایک دوست نہیں تھی، وہ اُس کی زندگی کا وہ حصہ تھی جس کے بغیر سب ادھورا لگتا۔ پاکیزہ ہر بار اُس کی باتوں پر ہنستی، اُس کا خیال رکھتی، ہر دکھ میں ساتھ کھڑی ہوتی — لیکن جب بات محبت کی آتی، تو خاموش ہو جاتی۔

نومان نے کئی بار چاہا کہ وہ اپنے دل کی بات کھل کر کہے، مگر اُس نے کبھی پاکیزہ پر زور نہیں دیا۔
وہ جانتا تھا، محبت دباؤ سے نہیں، احساس سے پروان چڑھتی ہے۔

پاکیزہ کے دل میں بھی کچھ تھا — لیکن وہ ڈرتی تھی…
شاید کسی پر مکمل بھروسہ کرنے سے،
شاید ٹوٹ جانے کے خوف سے،
یا شاید اس لیے کہ نومان اتنا خاص تھا کہ وہ کھونا نہیں چاہتی تھی۔

ایک شام، بارش میں بھیگتے ہوئے دونوں کافی کے کپ ہاتھ میں لیے ایک بنچ پر بیٹھے تھے۔

نومان نے آہستہ سے کہا:
“پاکیزہ، میں تمہیں مکمل طور پر اپنانا چاہتا ہوں… تم جیسی ہو، ویسی۔ نہ بدلی ہوئی، نہ چھپی ہوئی۔”

پاکیزہ نے نظریں جھکا لیں۔ دل جیسے تیز دھڑکنے لگا۔

“میں تم سے دور رہ کر بھی تمہارے قریب محسوس کرتا ہوں، پاکیزہ۔
بس ایک بار، ایک بار کہہ دو کہ تم بھی چاہتی ہو…”

پاکیزہ خاموش رہی۔ لیکن اُس کی آنکھوں میں ایک نمی سی چمک رہی تھی — جو شاید ‘ہاں’ تھی، مگر الفاظ ڈر گئے تھے۔

وہ بولی:
“نومان… میں تمہارے ساتھ بہت خوش رہتی ہوں، تم پر بھروسہ بھی ہے، لیکن… مجھے محبت سے ڈر لگتا ہے۔
اگر کبھی ٹوٹ گئی تو؟
اگر کبھی تم بدل گئے تو؟”

نومان نے مسکرا کر اس کے ہاتھ تھام لیے:

“اگر ٹوٹ گئی، تو میں سنبھالوں گا۔
اگر کبھی بدلا، تو صرف وقت ہوگا… میں نہیں۔”

پاکیزہ نے آنکھیں بند کر لیں — جیسے وقت رک گیا ہو۔

اور وہ جانتی تھی — فاصلہ چاہے کتنا بھی ہو، دل کبھی دور نہیں تھا۔


انجام:
شاید وہ “ہاں” آج نہ آئی ہو، لیکن کبھی کبھی محبتیں مکمل ہونے کے لیے نہیں، بس سچی ہونے کے لیے ہوتی ہیں۔

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Noman khan

79618616

Date: 2025-05-12 20:53:51
Score: 2.5
Natty:
Report link

You can update the package name and keystore in EAS credentials. If you do this and the app is set up correctly, you should be able to update the app on the store

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

79618614

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

u dont need to deleted home/USER/.local/solana/install or something, just delete home/USER/.cache/solana and u can build or test the anchor program

This case occurs because there is a download/extract/build error in the anchor build/test process

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

79618603

Date: 2025-05-12 20:43:49
Score: 1
Natty:
Report link

The project runs okay, it's only a typescript error.

Changed the filename Env.ts -> Env.d.ts and the error went away... enter image description here

enter image description here

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

79618596

Date: 2025-05-12 20:38:47
Score: 5
Natty:
Report link

The guide can be found here:

https://github.com/ScottTunstall/BuildMameWithVS2022/blob/main/README.md

Constructive feedback welcome.

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

79618594

Date: 2025-05-12 20:38:47
Score: 3
Natty:
Report link

Old thread but this other similar question points to a good solution for your problem.
https://superuser.com/questions/1291939/shortcut-to-change-keyboard-layout-in-linux-mint-cinnamon

Best,

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

79618586

Date: 2025-05-12 20:29:44
Score: 6 🚩
Natty:
Report link

having exact same issue :/ following for answer

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): having exact same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Filippo A.

79618578

Date: 2025-05-12 20:19:42
Score: 1
Natty:
Report link

this should return the results you expect

df = (spark.read.option('header', True)
               .option('multiline', True)
               .option('mode', 'PERMISSIVE')
               .option('quote', '"')
               .option('escape', '"')
               .csv('yourpath/CSVFilename.csv'))
display(df)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Syed Amjathullah KM

79618573

Date: 2025-05-12 20:16:41
Score: 0.5
Natty:
Report link

Okay, I ended up just getting the actual URLs by doing this in the Chrome Dev tools


const tds = document.querySelectorAll('table tbody tr td span.DPvwYc.QiuYjb.ERSyJd');
const urls = Array.from(tds, td => td.getAttribute('data-value'));
copy(urls.join('\n'));

but yeah, seems a bit weird to have an export option that doesn't really give you what you need, and you have to create your own way of making an export 🤷‍♂️

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

79618572

Date: 2025-05-12 20:15:41
Score: 3
Natty:
Report link

The error has been not feature scaling the target function / input data set. The algorithm was working fine. Furthermore it helped choosing a different function to model, then the logistic, as its value can differ greatly for small input changes, which made it initially harder.

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

79618571

Date: 2025-05-12 20:14:40
Score: 0.5
Natty:
Report link

my api php code:

<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);

$allowed_origins = [
  "https://fbc.mysite.ir",
  "https://mysite.ir",
  "http://localhost:54992",
  "http://localhost:55687",
  "http://localhost:5173",
  "http://127.0.0.1:5173",
];


$origin = $_SERVER['HTTP_ORIGIN'] ?? '';


if (in_array($origin, $allowed_origins)) {
  header("Access-Control-Allow-Origin: $origin");
  header("Access-Control-Allow-Credentials: true");
}

header("Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE");
header("Access-Control-Allow-Headers: Content-Type, Authorization");

if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
  http_response_code(200);
  exit();
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Javad Mahmoodi

79618566

Date: 2025-05-12 20:09:39
Score: 5.5
Natty:
Report link

This was resolved in the 3.2.4 release https://www.psycopg.org/psycopg3/docs/news.html#psycopg-3-2-4

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

79618564

Date: 2025-05-12 20:07:38
Score: 3
Natty:
Report link

So, dragging your JPG, PNG, or GIF to the folder of the blue file you are working on does work. You need to copy the path and paste it.

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

79618560

Date: 2025-05-12 20:05:37
Score: 3.5
Natty:
Report link

Performance Max Ads use AssetGroups and not AdGroups

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

79618557

Date: 2025-05-12 20:02:36
Score: 1.5
Natty:
Report link

There's a new feature in ingress-nginx 1.12 that allows you to filter annotations by risk using annotations-risk-level. Use annotations-risk-level: Critical to allow allow-snippet-annotations: true.

For further reference you can check this blog and discussion.

Reasons:
  • Blacklisted phrase (1): this blog
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: p_lycs

79618553

Date: 2025-05-12 19:59:35
Score: 4.5
Natty:
Report link
painterResource("drawable/logo.png") is deprecated, which instead?
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eleazar N

79618543

Date: 2025-05-12 19:48:32
Score: 0.5
Natty:
Report link

you must always push new yml into main (default) branch, it is the only way how github can detect new workflow and then you can create modified version in branch abc and test its run with github cli (workflow must contain workflow_dispatch: )

gh workflow run ci.yml -r abc
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: David

79618536

Date: 2025-05-12 19:40:29
Score: 10 🚩
Natty: 6.5
Report link

Hey have you found the solution? I am facing the same problem

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (2.5): have you found the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SmoshWed

79618535

Date: 2025-05-12 19:38:28
Score: 2.5
Natty:
Report link

I changed to using self.eid.followUps.splice(0) and it worked. Using a suggestion from this post (Clearing an array content and reactivity issues using Vue.js)

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dvn

79618534

Date: 2025-05-12 19:37:27
Score: 18.5 🚩
Natty: 6
Report link

Did you get any solution about this, can you share me if so? I have the same issues and I have no idea how to fix this 😥

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (2.5): can you share me
  • RegEx Blacklisted phrase (3): Did you get any solution
  • RegEx Blacklisted phrase (2): no idea how to fix
  • RegEx Blacklisted phrase (2): any solution about this, can you share me if so?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Sai Zaw Myint

79618532

Date: 2025-05-12 19:32:25
Score: 4
Natty:
Report link

I made PR and a jira issue:

https://issues.redhat.com/projects/UNDERTOW/issues/UNDERTOW-2552

Perhaps in next version.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: László Tóth

79618519

Date: 2025-05-12 19:17:22
Score: 2
Natty:
Report link

well solved this issue by giving BYPASSRLS and CREATDB . I don't know which one solved.

one more thing i want to add is that while trying to resolve it i managed to get rid of above error and got connection error I think the the changing of role resolved the connection issue but i still fully don't understand what resolved the vector problem because db already had superuser role.

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: khanzala

79618518

Date: 2025-05-12 19:17:22
Score: 1
Natty:
Report link

To query and sort events by their next upcoming date from an array of dates in Elasticsearch, you need to combine a range filter with a custom script-based sort. Here's how to achieve this:

Filtering Future Events

Use a range query to include events with at least one date in the future:

json

"query": { "bool": { "filter": { "range": { "OccursOn": { "gte": "now" } } } } }

This ensures only events with dates occurring now or later are included134.

Sorting by Next Occurrence

Use a Painless script in the sort to find the earliest future date in the OccursOn array:

json

"sort": [ { "_script": { "type": "number", "script": { "lang": "painless", "source": """ long now = new Date().getTime(); long nextDate = Long.MAX_VALUE; for (def date : doc['OccursOn']) { long timestamp = date.toInstant().toEpochMilli(); if (timestamp >= now && timestamp < nextDate) { nextDate = timestamp; } } return nextDate; """ }, "order": "asc" } } ]

This script24:

  1. Gets the current timestamp

  2. Iterates through all event dates

  3. Identifies the earliest date that hasn't occurred yet

  4. Sorts events ascending by this calculated next date

Complete Example

json

{ "query": { "bool": { "filter": { "range": { "OccursOn": { "gte": "now" } } } } }, "sort": [ { "_script": { "type": "number", "script": { "lang": "painless", "source": """ long now = new Date().getTime(); long nextDate = Long.MAX_VALUE; for (def date : doc['OccursOn']) { long timestamp = date.toInstant().toEpochMilli(); if (timestamp >= now && timestamp < nextDate) { nextDate = timestamp; } } return nextDate; """ }, "order": "asc" } } ] }

Key Considerations

This solution filters events with future dates and sorts them by their earliest upcoming occurrence using Elasticsearch's script sorting capabilities

Reasons:
  • Blacklisted phrase (1): how to achieve
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Lois

79618511

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

I think you are asking two different questions:

  1. How can I specify host(s) without an inventory? The answer to this is to use "-i tomcat-webApp, tomcat-all,". You must include the trailing comma after the last hostname.

       ansible-playbook DeployWar.yml \
       -i tomcat-webApp,tomcat-all,
    

    Reference: Run Ansible playbook without inventory

  2. How can I pass multiple extra-vars from command line?

    • Option 2a: specify multiple extra-vars
    ansible-playbook DeployWar.yml \
    --extra-vars="testvar1=testing1" --extra-vars="testvar2=testing2"
    
    • Option 2b: pass one var and split it inside your playbook:
    ansible-playbook DeployWar.yml \
    --extra-vars="servers=tomcast-webApp tomcast-all"
    

    Then inside your playbook: {{ servers | split }}

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Peter

79618503

Date: 2025-05-12 19:08:19
Score: 0.5
Natty:
Report link

Here is what we have configured in our Helm Chart ingress-nginx-4.12.1 to enable config snippets.

 proxySetHeaders:
    allow-snippet-annotations: "true" 
podAnnotations:
    ingressclass.kubernetes.io/is-default-class: "true"
    allow-snippet-annotations: "true"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: old_newb

79618487

Date: 2025-05-12 18:56:16
Score: 2
Natty:
Report link

I had the same problem. In my case it was caused by the fact that there was no data to send to the PDF. So there was already an earlier error that caused the same error-message.

Wrong page number on setPage() function: 0

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

79618486

Date: 2025-05-12 18:54:15
Score: 1
Natty:
Report link

The fix is to use literal instead of null:

criteriaQuery.set(root.get(MyEntity_.tag), criteriaBuilder.nullLiteral<Tag>(Tag::class.java))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: viktor

79618484

Date: 2025-05-12 18:54:15
Score: 0.5
Natty:
Report link

The application expected MediaType.APPLICATION_JSON_VALUE as you defined in the controller, but you sent extra ;charset=UTF-8 in the Content-Type header. It is not expected from the Spring to have appropriate mapping.

Either remove extra fragment from the header, or add it to the controller mapping.

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

79618479

Date: 2025-05-12 18:50:14
Score: 1
Natty:
Report link

The documentation of read_sql_query says the following:

params : list, tuple or mapping, optional, default: None

    List of parameters to pass to execute method. The syntax used to pass parameters is database driver dependent. Check your database driver documentation for which of the five syntax styles, described in PEP 249’s paramstyle, is supported. Eg. for psycopg2, uses %(name)s so use params={‘name’ : ‘value’}.

Since you use the psycopg2 driver the parameters should be noted as @JonSG has mentioned. It should be:

select *
FROM public.bq_results br 
WHERE cast("eventDate" as date) between 
  TO_DATE(%(test_start_date)s, 'YYYYMMDD') AND TO_DATE(%(test_end_date)s, 'YYYYMMDD')
limit 10000

Hope this works.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @JonSG
  • Low reputation (1):
Posted by: sk8 118

79618474

Date: 2025-05-12 18:47:13
Score: 2.5
Natty:
Report link

I ran into this issue too. To make it easier for others to figure out if they're affected, I created a common reliability enumeration (CRE). You can preview the rule here or run it against your logs here.

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

79618472

Date: 2025-05-12 18:45:13
Score: 2.5
Natty:
Report link

For me what was happening is that I had duplicate values in the "valueField"--I was passing in all 0's for this value, so I think it naturally went to the first item on the list. I'm using ngModel in Angular so just set the valueField="" and that solved the issue.

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

79618469

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

(1).

Bitmap bitmap = ((BitmapDrawable) holder.newsImage.getDrawable()).getBitmap();
  SecondActivity.bitMap = bitmap; 

(2).

public static Bitmap bitmap = null;
if (bitmap!=null){
    tvImage.setImageBitmap(bitmap);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Shakil Adnan

79618455

Date: 2025-05-12 18:30:09
Score: 2
Natty:
Report link

As Reza mentioned, this is a similar question: List Tiles out of container when scrolling. This behavior is not caused by the ReorderableListView, but by the ListTiles. Wrapping them with a Card widget fixed the issue.

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

79618447

Date: 2025-05-12 18:26:08
Score: 2
Natty:
Report link

We’ve implemented a Twilio-based WhatsApp integration using .NET Core 6 and deployed the application on IIS running on a Windows Server 2022 machine (client's environment). Outbound messages from our application to Twilio are working correctly.

However, incoming messages from Twilio are not reaching our server/application. We’ve already asked the client to allow traffic from *.twilio.com subdomains, but that doesn’t seem to resolve the issue.

Given that this is a production environment and the client is concerned about security, we cannot request them to open all inbound traffic.

My questions:

What specific IP addresses or subdomains should be whitelisted to allow Twilio's webhook requests (WhatsApp messages) to reach the server?

Are there any additional IIS or firewall configurations we should check to ensure that incoming HTTP requests from Twilio are accepted and routed correctly?

Any guidance on how to properly configure the client's firewall or server to receive these requests securely would be highly appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: NITHEESH

79618446

Date: 2025-05-12 18:24:06
Score: 6.5 🚩
Natty: 4.5
Report link

@Elchanan shuky Shukrun

Can you provider an example how you got it to work in a pipeline? If I define a string parameter 'payload' it stays empty when using the gitea plug-in.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Elchanan
  • Low reputation (1):
Posted by: user30517886

79618442

Date: 2025-05-12 18:21:05
Score: 3.5
Natty:
Report link

So I found answer to my problem by searching for a solution a different problem I was running into. Apparently "delete module-info.java at your Project Explorer tab" is what I needed to do. Sorry for bothering everyone.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: shodai

79618433

Date: 2025-05-12 18:11:03
Score: 0.5
Natty:
Report link

Not quite what you asked as this just does the current folder, but it is a simple method using basic scripting which you can learn from and build on:

#! /bin/bash

# Create an array of MKV files to process
# Assumes current folder, lists files and feeds them into a variable

files=$(ls *.mkv)

# Loop through the filenames

for filename in ${files[@]}

    do
        echo $filename
        mkvpropedit $filename -d title -t all:

    done

The mkvpropedit command featured removes the title and all tags which is what research suggests many people wish to achieve.

The function that feeds the array of files could include paths so would be:

files=$(ls */*.mkv)

Not sure this would handle files or folders with spaces in the names though.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Andy

79618429

Date: 2025-05-12 18:10:03
Score: 2
Natty:
Report link

As stated in the documentation:

An easy-to-use web interface

Looker Studio is designed to be intuitive and easy to use. The report editor features simple drag-and-drop objects with fully custom property panels and a snap-to-grid canvas.

An alternative to your approach could be using Custom Queries.

See also:

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

79618423

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

here is below fixed badge

<img alt="Static Badge" src="https://img.shields.io/badge/Language-Japanese-red?style=flat-square&link=https%3A%2F%2Fgithub.com%2FTokynBlast%2FpyTGM%2Fblob%2Fmain%2FREADME.jp.md">

Shields.io needs this format: https://img.shields.io/badge/<label>-<message>-<color> Without all parts, it shows a broken image.

now you can display your badge

enter image description here

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

79618420

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

document.querySelector(".clickedelement").addEventListener("click", function (e) {
  setTimeout(function(){
  if(document.querySelector(".my-div-class").style.border !== "none"){
      document.querySelector(".my-div-class").style.border = "none";
  }else{
    document.querySelector(".my-div-class").style.border = "1px solid black";
  }
  },1000);
});
div {
  width: 100px;
  height: 100px;
  background-color: yellow;
  border-radius: 50%;
}
<p class="clickedelement">when this is <b>clicked</b> i want border added and removed (after 1s) on div below</p>
<div class="my-div-class"></div>

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Miguel Henrique Pereira

79618413

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

You can do it with css.

document.querySelector(".clickedelement").addEventListener("click", function (e) {
  // add and remove border on div
});
div {
  width: 100px;
  height: 100px;
  background-color: yellow;
  border-radius: 50%;
  border: 2px solid #ff000000;
  transition: border 2s ease-out;
}

.clickedelement:active~div{
  border: 2px solid #ff0000;
  transition: border 100ms ease-out;
}
<p class="clickedelement">when this is clicked i want border added and removed (after 1s) on div below</p>
<div class=""></div>

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sergey Soltanov

79618407

Date: 2025-05-12 17:57:59
Score: 3.5
Natty:
Report link

Not directly related, but anyone facing a similar issue now:

snowflake.connector.errors.OperationalError: 254007: The certificate is revoked or could not be validated: hostname=xxxxxxxxx

Upgrading snowflake-python-connector to 3.15.0 helped me resolve it.

Reference: https://github.com/orgs/community/discussions/157821#discussioncomment-12977833

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing a similar issue
Posted by: akhilsp

79618406

Date: 2025-05-12 17:56:58
Score: 10 🚩
Natty: 4.5
Report link

Did you ever figure this out? I'm having the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure this out
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Gatsby0121

79618395

Date: 2025-05-12 17:50:56
Score: 1
Natty:
Report link

you should use the same session of your DF:

df.sparkSession.sql("select count(*) from test_table limit 100")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Reculos Gerbi Neto

79618380

Date: 2025-05-12 17:37:52
Score: 3
Natty:
Report link

After removing docker desktop. restart your computer and wsl will revert back to the docker ce version

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

79618374

Date: 2025-05-12 17:36:52
Score: 2
Natty:
Report link

It seems that I can't comment, so I have to leave another answer.

@rzwitserloot - I like you're very thorough answer about why using existing "stuff" is confusing and difficult to implement.

I like to through out a suggestion though. On the simpler annotations that only generate one thing (NoArgs, AllArgs, and etc.) don't reuse existing annotations. Add a new parameter @NoArgsConstructor( javadoc=" My meaningful Description - blah, blah, blah, \n new line of more blah \n @Author Me \n @Version( 1.1.1)")

This would generate (literally, exactly the text provide except the comment code)

/** 
 * My meaningful Description - blah, blah, blah,
 * new line of more blah 
 * @Author Me
 * @Version( 1.1.1)
*/

Use only minimal interpretation, in my example only the "\n" for a new line and maybe add the tab "\t".

Another option would be to only allow actual Tabs and NewLines inside the quotes and then the only 'processing' would be to add the comment characters.

My justification for this answer is that JavaDoc seems to produce a lot of messages as WARNINGS. It is very easy to miss more obvious problems because they are lost in WARNINGS. I make an effort to clear out warnings so that I don't miss problems.

I understand this may be more difficult than I am making it out, but my goal is to get rid of the warnings so that I don't miss other important messages.

Thanks!

I haven't looked deeply into Lombok code, but this seems like a reasonable solution.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): can't comment
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @NoArgsConstructor
  • User mentioned (0): @Author
  • User mentioned (0): @Version
  • Low reputation (1):
Posted by: user3228876

79618363

Date: 2025-05-12 17:31:50
Score: 1
Natty:
Report link

Nice solution. (no new answer. I modified the original question)?

%macro create_table();
PROC SQL;
    CREATE TABLE TEST AS
    SELECT DATE, NAME,
           %DO i = 1 %to 3;
             0 AS A&i.,
           %END;
           1 as B
    FROM SOURCE;
QUIT;

%mend create_table;

%create_table();

Can this be expanded to allow a let evaluation within the loop (or something else that will hold a new macro-var)?

I have a large number of columns that in my case look over 13qtr of data, and within each bucket of 40 or so columns 13(40) there are a good number that look back for year ago data.

Thus I need something like:

let iPY = %eval(&i. +4)

but would love to avoid the +4 calc for each needed column in a qtr.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: KMJ

79618362

Date: 2025-05-12 17:31:50
Score: 3
Natty:
Report link

Upgrading to Python 3.13 solved the issue, so the explanation is probably a version incompatibility with Windows 10 and Python 3.12 for this particular case.

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

79618361

Date: 2025-05-12 17:31:50
Score: 3
Natty:
Report link
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Is there any
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Sandeep Kumar

79618360

Date: 2025-05-12 17:29:49
Score: 3.5
Natty:
Report link

Is there a work around for direct query? You cannot use unpivot in direct query from what I have found.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (0.5):
Posted by: Chris Singleton

79618358

Date: 2025-05-12 17:28:49
Score: 3
Natty:
Report link

You can create a new Service Account and generate new keys

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

79618353

Date: 2025-05-12 17:26:49
Score: 2.5
Natty:
Report link

from dotenv import load_dotenv

import os

load_dotenv()

api_key = os.getenv("BYBIT_API_KEY")

api_secret = os.getenv("BYBIT_API_SECRET")

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Йосип Zag

79618343

Date: 2025-05-12 17:21:47
Score: 5
Natty: 5
Report link

this works for 1 time series but how would it work for a multiobject set?

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

79618321

Date: 2025-05-12 17:08:44
Score: 3.5
Natty:
Report link

We just went just went through the process of trying to get premium data access from Google with no success - it seems that they are extremely strict about which use-cases they give access to. I am building the reputation platform ReviewKite and we eventually decided to use the BrightLocal API under the hood to scrape reviews from Google. It's expensive, but worth it for easy of use.

Reasons:
  • RegEx Blacklisted phrase (1.5): the reputation
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ajepprecht

79618320

Date: 2025-05-12 17:06:43
Score: 0.5
Natty:
Report link

I got it. The main reason why, after each row, I was getting the null rows was because of hidden characters in the CSV file

  1. Windows ends lines with Carriage Return + Line Feed (\r\n)

  2. Unix/Linux uses just Line Feed (\n)

If a file created on Windows is read on a Unix/Linux system (like Hadoop/Hive), the \r character can:

  1. Show up as "invisible junk" (like ^M or CR)

  2. Break parsers or formatters (like Hive or awk), resulting in:

    • Extra blank rows

    • All NULL columns

    • Malformed data

So that's the reason why I was getting empty null rows after each valid data row,

Sol: I used dos2unix, which converts our files to Linux format, and I got the expected result.

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

79618306

Date: 2025-05-12 16:57:41
Score: 3.5
Natty:
Report link

import 'package:firebase_auth/firebase_auth.dart';

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Shahed Oali Noor

79618305

Date: 2025-05-12 16:57:41
Score: 2
Natty:
Report link

I've been stuck on that for a while now, and I've been carrying the fix you mentioned on different version of yocto, I wasn't proud because nobody else did that except me, so the problem was not yocto and was probably coming from elsewhere. When moving to scarthgap this fix was not doing his job anymore, so I had to find the root cause.

I was building my libraries with a Makefile like so:

lib:
    $(CC) -fPIC -c  $(LDFLAGS) $(CFLAGS) $(CFILES)
    $(CC) $(LDFLAGS) -shared -o libwhatever.so.1 $(OFILES)
    ln -sf libwhatever.so.1 libwhatever.so

What was missing is that I needed to add:

LDFLAGS += -Wl,-soname,libwhatever.so.1

so that yocto QA thingy is able to actually find the proper names directly inside the .so files.

If you want to verify if that fix is for you, you can check the SONAME like so:

readelf -d  tmp/work/<machine>/libwhatever/<PV>/image/usr/lib/libwhatever.so* | grep SONAME
 0x000000000000000e (SONAME)             Library soname: [libwhatever.so.1]

If you haven't anything from this command then you have the same issue I had and the above fix will work for you.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same issue
  • Low reputation (0.5):
Posted by: YCN-

79618303

Date: 2025-05-12 16:55:40
Score: 2.5
Natty:
Report link

In flutter iOS, after setup signing and other things from xcode, go back to android studio and run clean and run ios from android studio as first run.

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

79618301

Date: 2025-05-12 16:53:40
Score: 1
Natty:
Report link

Check dir and change dir accordingly or enter full path from the location of main php file.

echo '<br>'.__DIR__;
echo getcwd();
chdir(__DIR__);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hakan

79618292

Date: 2025-05-12 16:43:37
Score: 5
Natty:
Report link

here are more images to illustrate the problem. Below is for regex.h

enter image description here

enter image description here

Below is for "myconio.h"

enter image description here

enter image description here

enter image description here

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

79618289

Date: 2025-05-12 16:41:36
Score: 1.5
Natty:
Report link

I have handled a similar use case with a 'Bot' in AppSheet that listens for a 'Success' or 'Error' value returned from the API call and then branches on the value of that returned data to send an in-app notification to the user and a message to the app administrator that an API call has failed or to do nothing and proceed with the next step. Example automation setup below. I can post more details if that seems like something that would work in your situation.

enter image description here

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

79618285

Date: 2025-05-12 16:39:36
Score: 5.5
Natty:
Report link

i don't know i kniot idns wgich is you i am from austrialla and you ?

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

79618284

Date: 2025-05-12 16:38:35
Score: 1
Natty:
Report link

I have my controller with the tips you said but the borders are still not corrected. When I go to initialize my panel to set the background the command:

yourPane.setBackground(new Background(new BackgroundFill(Color.TRANSPARENT, CornerRadii.EMPTY, Insets.EMPTY)));

I get error in Insets.EMPTY, I tried to fix it like this but I still don't see the borders corrected.

void initialize() { confirmDialog.setBackground(new Background(new BackgroundFill(Color.TRANSPARENT, CornerRadii.EMPTY, new Insets(0)))); }

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

79618281

Date: 2025-05-12 16:36:35
Score: 3.5
Natty:
Report link

Ah, I found the answer on Reddit. Doing SUM(Visited)/Sum(Total)*100 seems to have worked

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

79618278

Date: 2025-05-12 16:35:34
Score: 2
Natty:
Report link

There is a bug in Sidekiq 8, see this. https://github.com/sidekiq/sidekiq/issues/6695

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

79618274

Date: 2025-05-12 16:28:33
Score: 2
Natty:
Report link

I had the same problem, updating tensorflow to the latest version (2.19) solved everything

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: eduardo.bolognini

79618273

Date: 2025-05-12 16:28:33
Score: 0.5
Natty:
Report link

For those who with older project settings without Gradle version catalogs

define your copose_compiler_version = '2.0.0' in the project gradle file

buildscript {
  ext {
    compose_compiler_version = '2.0.0'

add plugins to the project gradle file

plugins {
    id("org.jetbrains.kotlin.plugin.compose") version "$compose_compiler_version" // this version matches your Kotlin version
}

------------------------

add plugins to the module gradle file

plugins {
    id "org.jetbrains.kotlin.plugin.compose"
}

update your module gradle file dependencies

replace old androidx.compose.compiler:compiler to new org.jetbrains.kotlin:kotlin-compose-compiler-plugin-embeddable

dependencies {
  implementation "org.jetbrains.kotlin:kotlin-compose-compiler-plugin-embeddable:$compose_compiler_version" 

if you have composeOptions in your module gradle file, also update the version

composeOptions {
  kotlinCompilerExtensiionVerion compose_compiler_version
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Filler text (0.5): ------------------------
  • Low reputation (1):
Posted by: Musheng Wu

79618269

Date: 2025-05-12 16:24:31
Score: 1.5
Natty:
Report link

This usually means your app isn’t able to connect to the SMTP server. It might seem like a PHPMailer issue, but most of the time it’s a network problem on the server.

If your app is hosted somewhere that has support, I recommend reaching out to them. Ask them to check and make sure that port 465 is open for sending emails using SMTP with SSL.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eldar G.

79618268

Date: 2025-05-12 16:23:31
Score: 5.5
Natty: 5
Report link

So the problem I continuously have with subprocess.run is that it opens a subshell whereas os.system runs in my current shell. This has bitten me several times. Is there a way in subprocess to execute without actually creating the subshell?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roger Barker