79562192

Date: 2025-04-08 13:38:21
Score: 1
Natty:
Report link

In my case the class used as a std::vector element had member of type std::thread, but std::thread is not CopyConstructible or CopyAssignable.

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

79562185

Date: 2025-04-08 13:36:20
Score: 0.5
Natty:
Report link

Found my mistake. setIncomingAndReceive() returns the size of the transferred array (10 bytes in my case), i.e. instead of if ( ( numBytes != PayloadSize ) || (byteRead != 1) ) there should be if ( ( numBytes != PayloadSize ) || (byteRead != PayloadSize) ). And in addition, I also specified the offset inside the buffer incorrectly (should be Util.arrayCopy(buf, ISO7816.OFFSET_CDATA, data, (short) 0, PayloadSize)).

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Alan Kazbekov

79562177

Date: 2025-04-08 13:31:18
Score: 3.5
Natty:
Report link

This is a useful complement of the documentation of Mermaid. Thank you for sharing your discovery!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pascal

79562176

Date: 2025-04-08 13:30:18
Score: 0.5
Natty:
Report link

So I've found a way. Basically this is the work of iot-gateway. It's just a small tweak from getting started guide: https://thingsboard.io/docs/iot-gateway/getting-started/#step-3-add-new-connector.

Scroll down to “Data conversion” section:

For “Device” subsection use the following options/values:

In the “Name” row, select “Constant” in the “Source” dropdown field, fill in the “Value / Expression” field with the “Device Demo” value.

In the “Profile name” row, select “Constant” in the “Source” dropdown field, fill in the “Value / Expression” field with the “default” value.

One just need to extract the name of the device from the message payload (or from path if applicable)

So just specify the device id like this in the connector configuration

"deviceInfo": {
      "deviceNameExpression": "Node ${your_id}",
      "deviceNameExpressionSource": "message",
      "deviceProfileExpressionSource": "constant",
      "deviceProfileExpression": "default"
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: trya2l

79562173

Date: 2025-04-08 13:29:18
Score: 2
Natty:
Report link

After enabling debug logging I found that the issue isn't with LDAP, rather that the OSS version of JFrog doesn't support JFrog groups:

Search Ldap groups only supported for Pro license

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

79562170

Date: 2025-04-08 13:29:18
Score: 1
Natty:
Report link
delete from some_table where some_column = :someValue and (some_other_column is null or some_other_column = :someOtherValue)

should work

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

79562167

Date: 2025-04-08 13:28:17
Score: 4.5
Natty: 4
Report link

I am experiencing the same problem!

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

79562160

Date: 2025-04-08 13:25:16
Score: 1.5
Natty:
Report link

I had same error, and the reason was that I didn't have sentencepiece package installed.

So

pip install sentencepiece

solved the problem

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

79562157

Date: 2025-04-08 13:24:16
Score: 0.5
Natty:
Report link

Thanks to @musicamante, I realized I had to supply my own html template to export_html. That was not immediately clear to me as its named a bit weird. Not only was I injecting entire HTML pages into the TextEdit, but also the <pre> tags that are used by default cause the spacing issues, so i used <div> instead.

I also set the QTextEdit to use the monospace font that would normally be selected in the HTML stylesheet.

This is what ended up working:

class QTextEditLogger(QTextEdit, Handler):
    """A QTextEdit logger that uses RichHandler to format log messages."""
    def __init__(self, parent=None, level=NOTSET):
        QTextEdit.__init__(self, parent)
        Handler.__init__(self,level=level)
        self.console = Console(file=open(os.devnull, "wt"), record=True)
        self.rich_handler = RichHandler(show_time=False, show_path=False, show_level=True, markup=True, console=self.console, level=self.level)
        self.rich_handler.setLevel(self.level)
        self.setWordWrapMode(QTextOption.WrapMode.WordWrap)
        self.setAcceptRichText(True)
        self.setReadOnly(True)
        font = QFont(['Menlo','DejaVu Sans Mono','consolas','Courier New','monospace'], 10, self.font().weight())
        font.setStyleHint(QFont.StyleHint.TypeWriter)
        self.setFont(font)


    def emit(self, record) -> None:
        """Override the emit method to handle log records."""
        self.rich_handler.emit(record)
        html_template = '<div style="background-color: {background}; color: {foreground};><code style="font-family:inherit">{code}</code><br/></div>'
        html = self.console.export_html(clear=True, code_format=html_template, inline_styles=True)
        self.insertHtml(html)
        self.verticalScrollBar().setSliderPosition(self.verticalScrollBar().maximum())  
        c = self.textCursor()
        c.movePosition(QTextCursor.End)
        self.setTextCursor(c)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @musicamante
  • Self-answer (0.5):
Posted by: Raphael

79562156

Date: 2025-04-08 13:24:16
Score: 0.5
Natty:
Report link

The formula in A9

=LET(a,GROUPBY(A2:A6,HSTACK(B2:B6,C2:C6),SUM),
b,CHOOSECOLS(a,2)/CHOOSECOLS(a,3),
HSTACK(a,b))

enter image description here

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

79562155

Date: 2025-04-08 13:23:15
Score: 3.5
Natty:
Report link

provisioned administration rights to the service account (credentials stored in AAP) authenticating to remote windows server and error was resolved

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

79562154

Date: 2025-04-08 13:23:15
Score: 1.5
Natty:
Report link
if ! grep -q '^[[:space:]]*rotate 1' /etc/logrotate.d/httpd; then
  sed -i -r '/^([[:space:]]*)missingok/ {
    s//\1missingok\
\1rotate 1\
\1size 1k/
  }' /etc/logrotate.d/httpd
fi
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ribbear

79562150

Date: 2025-04-08 13:20:14
Score: 5.5
Natty: 5
Report link

can´t make it work. ive tried other options but they never put qty, just one product. yours just come with error and i cant see de qty field. any sugestions?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): can
  • Low reputation (1):
Posted by: Arde Babilonia

79562149

Date: 2025-04-08 13:20:14
Score: 3.5
Natty:
Report link

On june 2024, Google introduced conditional access to Bigquery tables based on tags. This would be the best way to provide such privileges to a certain group of users.

Sources:
https://medium.com/codex/you-can-now-use-tags-for-bigquery-access-5b5c50fcf349
https://cloud.google.com/bigquery/docs/release-notes

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: heron J

79562147

Date: 2025-04-08 13:19:13
Score: 7.5 🚩
Natty: 4.5
Report link

It is also not working for me!
Maybe a mistake in the hook?

Reasons:
  • RegEx Blacklisted phrase (3): not working for me
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Marcel Kraan

79562144

Date: 2025-04-08 13:18:13
Score: 0.5
Natty:
Report link
  1. Make a Grid: Get all the x-coordinates from the vertical sides of your rectangles, and the start/end points x-coord. Same for y-coordinates: get all y's from horizontal sides and start/end points y-coord. Sort these x's and y's. These lines make up a grid over your area. The shortest path gonna turn only on these grid lines, right?

  2. Find Valid Spots (Nodes): Look at every point where your grid lines cross (x, y). Is that point inside the area made by combining all your rectangles? If yes, this point is a node for a graph we're building.

  3. Connect the Spots (Edges): Now, look at two nodes that are right next to each other on the grid (directly left/right or up/down). Draw a line segment between them. Is this entire line segment also inside your combined rectangle area? If yes, add an edge between these two nodes in your graph. The 'weight' or cost of this edge is just the distance between the points (like abs(x1-x2) + abs(y1-y2) cause its orthogonal).

  4. Add Start/End: Make sure your start and end points are nodes too. You gotta connect them to the grid graph. Find the grid nodes they can reach with a straight horizontal or vertical line without leaving the rectangle area, and add edges for those connections.

  5. Find Path: Now you got a graph. Just use a standard algorithm like Dijkstra's or A* search to find the path with the lowest total edge weight from your start node to your end node. [3]

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

79562143

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

I have worked out a method to achieve what I want. I am using two divs, the first one is my data entry div which can be setup to best allow entry and scale to the appropriate device.

The second div is a hidden div (display='none') which is basically just a table so I can align data nicely and create a neat and tidy pdf.

        <div id="contentsheet2" class="contentgrid" style="display:none">

Then when the download PDF button is clicked, I locate the hidden div, populate its cells with data from the input elements and generate a PDF.

            function generatePDF() {
            const compname = document.getElementById('compname').value;
            const hiddenDiv = document.getElementById('contentsheet2').innerHTML;
            var opt = {
                  margin: [4, 0, 4, 0], //top, left, bottom, right
                  filename: 'FREEProgram.pdf',
                  image: { type: 'jpeg', quality: 0.95 },
                  html2canvas: {
                    dpi: 300,
                    scale:2,
                    letterRendering: true,
                    useCORS: true,
                    scrollX: 0, 
                    scrollY: 0
                  },
                  jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' }
                };              // Choose the element and save the PDF for your user.
            opt.filename = 'FREEProgramContentSheet-' + compname + '.pdf';
            html2pdf().set(opt).from(hiddenDiv).save();
        }

The gives me the ability to have both layouts independent of each other and make the user experience better whilst still getting a neatly generated PDF. The PDF is nicer than I had before because it doesn't have the constraints applied by the input elements.

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

79562138

Date: 2025-04-08 13:16:12
Score: 1.5
Natty:
Report link

Try to give both

advertised.listeners and listeners as:

PLAINTEXT://20.244.40.80:9092
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bünyamin Şentürk

79562133

Date: 2025-04-08 13:14:11
Score: 3
Natty:
Report link

You can now, with serverless, either disable the auto-pause or set it to a higher time limit. This is in the compute+storage slot setting for the sql db.

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

79562129

Date: 2025-04-08 13:13:11
Score: 3.5
Natty:
Report link

okey, just to have commands for every version of EF in one place, for EF6 it is:

update-database -TargetMigration <full migration name including id>

(origin: https://learn.microsoft.com/en-us/ef/ef6/modeling/code-first/migrations/#migrate-to-a-specific-version-including-downgrade )

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

79562127

Date: 2025-04-08 13:13:10
Score: 6.5 🚩
Natty:
Report link

I faced a similar problem earlier. Try to see the solution in this question: How to stretch the DropdownMenu width to the full width of the screen?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eugene Dark

79562118

Date: 2025-04-08 13:10:09
Score: 1
Natty:
Report link

Since 2023, we can use the NodeSwift module, available both as an npm package and SwiftPM, to let them talk together bidirectionally: https://github.com/kabiroberai/node-swift

It should be better for performance than JavaScriptCore.

In some cases, if you use Node as a main runtime (e.g. Electron app), you can also create a CLI binary (with Swift, C++, or Objective-C), bundle it within the Electron app, and just call this binary as CLI inside the Electron app. An example for ScreenCaptureKit can be found here: https://github.com/mukeshsoni/screencapturekit-node

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

79562111

Date: 2025-04-08 13:06:09
Score: 1
Natty:
Report link
Math.round((amount + 0.000000000001) * 100) / 100

this one is equals to php's round with precision of two

round(amount,2);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Harris

79562106

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

Answer to question 1: Yes, there is a permission
<uses-permission android:name="android.permission.INJECT_EVENTS" />

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Brent K.

79562097

Date: 2025-04-08 13:01:07
Score: 2.5
Natty:
Report link

This is because you redirect every route to a LandingPage here: <Route path="*" element={} /> correct its path which you need landing page route

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Syed Ali Daniyal Naqvi

79562094

Date: 2025-04-08 13:01:07
Score: 3.5
Natty:
Report link

It seem like this is not possible in TYPO3 13 anymore.

See: https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/13.0/Breaking-102970-NoDatabaseRelationsInFlexFormSectionContainers.html

It throws an error:

Invalid flex form data structure on field name "overlay" with element "settings.infoPoints" in section container "container_infoPoints": Nesting elements that have database relations in flex form sections is not allowed.

Has anyone fond a solution yet?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Daniel Kurzweg

79562085

Date: 2025-04-08 12:55:05
Score: 3
Natty:
Report link

jus adding node_modules/ in .gitignore worked for me

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

79562081

Date: 2025-04-08 12:53:05
Score: 2.5
Natty:
Report link

I know I'm almost 4 years late, a few days ago I published a package which tackles this problem like a champ, here, have a look

https://www.npmjs.com/package/react-ios-scroll-lock

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

79562079

Date: 2025-04-08 12:52:04
Score: 0.5
Natty:
Report link

The new Informix JDBC driver 15.0.0.0 is not compatible with older Informix databases. It works with 14.10, 15.0, but does not work with 11.50.

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

79562075

Date: 2025-04-08 12:51:04
Score: 0.5
Natty:
Report link

TRY echo '<script> cleartext(); </script>'; at bottom of page before html body close..

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

79562067

Date: 2025-04-08 12:46:02
Score: 3.5
Natty:
Report link

There is a package uipasteboard on pub.dev focuses on providing iOS UIPasteboard access in the Flutter context.

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

79562066

Date: 2025-04-08 12:46:02
Score: 2.5
Natty:
Report link

SOLVED

The problem was, that my exec resource type had the parameter "cwd => /etc/facter/facts.d" which was also managed by my module "facts".
So, it lead to a dependency cycle.

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

79562058

Date: 2025-04-08 12:42:01
Score: 8 🚩
Natty: 4.5
Report link

@Raja Talha Do you find the Solution to this

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you find the
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Raja
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jijith Jayakumar

79562053

Date: 2025-04-08 12:41:00
Score: 1.5
Natty:
Report link

Running into DB connection issues between PowerBuilder and OCI can be tricky—usually it's a config mismatch, missing drivers, or network/firewall restrictions. Double-check your connection string, ensure the Oracle client is properly set up, and that any required DLLs are accessible to PowerBuilder.

Honestly, debugging this feels like optimizing a build in Path of Building—so many dependencies and one wrong setting can throw everything off. Once it's all wired correctly though, it runs smooth.

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

79562052

Date: 2025-04-08 12:41:00
Score: 3.5
Natty:
Report link

Just try to use function for your decimal field in your view: COALESCE(NULLIF(your_view.your_decimal_value, ''), 0)

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

79562048

Date: 2025-04-08 12:37:59
Score: 1
Natty:
Report link

You are correct, regular REST API's can be accessed from the public endpoint stage URL or a custom domain name. A private REST API is deployed within a VPC using an interface VPC endpoint.

In both cases, regardless of the endpoint being public or private, there are still measures to control and manage access to the API. These may include resource policies, IAM permissions, and others.

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

79562040

Date: 2025-04-08 12:35:58
Score: 4
Natty: 4
Report link

it works just fine and gave me my exact location good job!

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

79562038

Date: 2025-04-08 12:34:58
Score: 2.5
Natty:
Report link

If your site uses authentication cookies or stored credentials, check:

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

79562037

Date: 2025-04-08 12:34:58
Score: 0.5
Natty:
Report link

check this out next docs

in your Home, try:


type SearchParams = { [key: string]: string | string[] | undefined }

export default async function Home({
  searchParams,
}: {
  searchParams: SearchParams
}) {
// ...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Erik Metz

79562031

Date: 2025-04-08 12:31:57
Score: 4.5
Natty: 4
Report link

Can someone please guide me on how to convert a PyTorch .ckpt model to a Hugging Face-supported format so that I can use it with pre-trained models?

The model I'm trying to convert was trained using PyTorch Lightning, and you can find it here:
🔗 hydroxai/pii_model_longtransfomer_version

I need to use this model with the following GitHub repository for testing:
🔗 HydroXai/pii-masker

I tried using Hugging Face Spaces to convert the model to .safetensors format. However, the resulting model produces poor results and triggers several warnings.

These are the warnings I'm seeing:



Some weights of the model checkpoint at /content/pii-masker/pii-masker/output_model/deberta3base_1024 were not used when initializing DebertaV2ForTokenClassification: ['deberta.head.lstm.bias_hh_l0', 'deberta.head.lstm.bias_hh_l0_reverse', 'deberta.head.lstm.bias_ih_l0', 'deberta.head.lstm.bias_ih_l0_reverse', 'deberta.head.lstm.weight_hh_l0', 'deberta.head.lstm.weight_hh_l0_reverse', 'deberta.head.lstm.weight_ih_l0', 'deberta.head.lstm.weight_ih_l0_reverse', 'deberta.output.bias', 'deberta.output.weight', 'deberta.transformers_model.embeddings.LayerNorm.bias', 'deberta.transformers_model.embeddings.LayerNorm.weight', 'deberta.transformers_model.embeddings.token_type_embeddings.weight', 'deberta.transformers_model.embeddings.word_embeddings.weight', 'deberta.transformers_model.encoder.layer.0.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.0.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.0.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.0.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.0.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.0.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.0.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.0.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.0.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.0.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.0.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.0.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.0.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.0.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.0.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.0.attention.self.value_global.weight', 'deberta.transformers_model.encoder.layer.0.intermediate.dense.bias', 'deberta.transformers_model.encoder.layer.0.intermediate.dense.weight', 'deberta.transformers_model.encoder.layer.0.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.0.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.0.output.dense.bias', 'deberta.transformers_model.encoder.layer.0.output.dense.weight', 'deberta.transformers_model.encoder.layer.1.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.1.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.1.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.1.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.1.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.1.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.1.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.1.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.1.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.1.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.1.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.1.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.1.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.1.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.1.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.1.attention.self.value_global.weight', 'deberta.transformers_model.encoder.layer.1.intermediate.dense.bias', 'deberta.transformers_model.encoder.layer.1.intermediate.dense.weight', 'deberta.transformers_model.encoder.layer.1.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.1.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.1.output.dense.bias', 'deberta.transformers_model.encoder.layer.1.output.dense.weight', 'deberta.transformers_model.encoder.layer.10.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.10.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.10.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.10.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.10.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.10.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.10.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.10.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.10.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.10.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.10.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.10.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.10.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.10.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.10.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.10.attention.self.value_global.weight', 'deberta.transformers_model.encoder.layer.10.intermediate.dense.bias', 'deberta.transformers_model.encoder.layer.10.intermediate.dense.weight', 'deberta.transformers_model.encoder.layer.10.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.10.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.10.output.dense.bias', 'deberta.transformers_model.encoder.layer.10.output.dense.weight', 'deberta.transformers_model.encoder.layer.11.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.11.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.11.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.11.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.11.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.11.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.11.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.11.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.11.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.11.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.11.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.11.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.11.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.11.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.11.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.11.attention.self.value_global.weight', 'deberta.transformers_model.encoder.layer.11.intermediate.dense.bias', 'deberta.transformers_model.encoder.layer.11.intermediate.dense.weight', 'deberta.transformers_model.encoder.layer.11.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.11.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.11.output.dense.bias', 'deberta.transformers_model.encoder.layer.11.output.dense.weight', 'deberta.transformers_model.encoder.layer.2.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.2.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.2.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.2.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.2.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.2.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.2.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.2.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.2.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.2.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.2.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.2.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.2.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.2.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.2.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.2.attention.self.value_global.weight', 'deberta.transformers_model.encoder.layer.2.intermediate.dense.bias', 'deberta.transformers_model.encoder.layer.2.intermediate.dense.weight', 'deberta.transformers_model.encoder.layer.2.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.2.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.2.output.dense.bias', 'deberta.transformers_model.encoder.layer.2.output.dense.weight', 'deberta.transformers_model.encoder.layer.3.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.3.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.3.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.3.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.3.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.3.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.3.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.3.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.3.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.3.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.3.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.3.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.3.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.3.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.3.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.3.attention.self.value_global.weight', 'deberta.transformers_model.encoder.layer.3.intermediate.dense.bias', 'deberta.transformers_model.encoder.layer.3.intermediate.dense.weight', 'deberta.transformers_model.encoder.layer.3.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.3.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.3.output.dense.bias', 'deberta.transformers_model.encoder.layer.3.output.dense.weight', 'deberta.transformers_model.encoder.layer.4.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.4.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.4.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.4.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.4.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.4.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.4.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.4.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.4.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.4.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.4.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.4.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.4.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.4.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.4.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.4.attention.self.value_global.weight', 'deberta.transformers_model.encoder.layer.4.intermediate.dense.bias', 'deberta.transformers_model.encoder.layer.4.intermediate.dense.weight', 'deberta.transformers_model.encoder.layer.4.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.4.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.4.output.dense.bias', 'deberta.transformers_model.encoder.layer.4.output.dense.weight', 'deberta.transformers_model.encoder.layer.5.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.5.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.5.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.5.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.5.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.5.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.5.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.5.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.5.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.5.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.5.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.5.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.5.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.5.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.5.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.5.attention.self.value_global.weight', 'deberta.transformers_model.encoder.layer.5.intermediate.dense.bias', 'deberta.transformers_model.encoder.layer.5.intermediate.dense.weight', 'deberta.transformers_model.encoder.layer.5.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.5.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.5.output.dense.bias', 'deberta.transformers_model.encoder.layer.5.output.dense.weight', 'deberta.transformers_model.encoder.layer.6.attention.output.LayerNorm.bias', 'deberta.transformers_model.encoder.layer.6.attention.output.LayerNorm.weight', 'deberta.transformers_model.encoder.layer.6.attention.output.dense.bias', 'deberta.transformers_model.encoder.layer.6.attention.output.dense.weight', 'deberta.transformers_model.encoder.layer.6.attention.self.key.bias', 'deberta.transformers_model.encoder.layer.6.attention.self.key.weight', 'deberta.transformers_model.encoder.layer.6.attention.self.key_global.bias', 'deberta.transformers_model.encoder.layer.6.attention.self.key_global.weight', 'deberta.transformers_model.encoder.layer.6.attention.self.query.bias', 'deberta.transformers_model.encoder.layer.6.attention.self.query.weight', 'deberta.transformers_model.encoder.layer.6.attention.self.query_global.bias', 'deberta.transformers_model.encoder.layer.6.attention.self.query_global.weight', 'deberta.transformers_model.encoder.layer.6.attention.self.value.bias', 'deberta.transformers_model.encoder.layer.6.attention.self.value.weight', 'deberta.transformers_model.encoder.layer.6.attention.self.value_global.bias', 'deberta.transformers_model.encoder.layer.6.attention.self.............'deberta.encoder.layer.9.output.dense.bias', 'deberta.encoder.layer.9.output.dense.weight', 'deberta.encoder.rel_embeddings.weight']
You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.
Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Can someone please guide me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can someone please
  • Low reputation (1):
Posted by: Mahnoor Syeda

79562028

Date: 2025-04-08 12:30:56
Score: 0.5
Natty:
Report link

I also encountered this problem, after many hours of troubleshooting, found that by commenting out the line proxy_set_header X-Forwarded-Proto $scheme; , problem solved.

Perhaps the jenkins itself build the 302 redirect url with header X-Forwarded-Proto if it exists

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

79562025

Date: 2025-04-08 12:28:56
Score: 1
Natty:
Report link

My approach is get rid of the numbers between the two characters '.' and '+' first by replacing those numbers to _.

import re

input_string = "manual__2025-04-08T11:37:13.757109+00:00"
result = re.sub(r'\.(\d+)\+', r'_', input_string)
result = result.replace(':', '_').replace('+', '_')

print(result)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Continuous Improvement

79562016

Date: 2025-04-08 12:26:55
Score: 2.5
Natty:
Report link

see next docs

  cacheHandler: path.resolve(__dirname, "./lib/cache-handler.js"),
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Erik Metz

79562008

Date: 2025-04-08 12:25:55
Score: 1
Natty:
Report link

One-liner:

s = re.sub(r'\.\d+(?=\+)', '', 'manual__2025-04-08T11:37:13.757109+00:00').replace(':', '_').replace('+', '_')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: D4LI3N

79561995

Date: 2025-04-08 12:22:54
Score: 3
Natty:
Report link

I know I'm almost 5 years late, but a few days ago I published a small package that tackles this problem, check it out

https://www.npmjs.com/package/react-ios-scroll-lock

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Arsen Mkrtchyan

79561981

Date: 2025-04-08 12:15:52
Score: 3
Natty:
Report link

In April 2025

Setting budget to $1 for Actions Product allowed me to continue the build.

I also set the Artifacts and Logs retention to 1 day, as I don't need more than that.

enter image description here

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

79561974

Date: 2025-04-08 12:12:51
Score: 3
Natty:
Report link

I have been trying to do the same but experimenting instead with the greater flexibility provided by xelatex on the use of fonts. The following code produces a fine result but I am not sure if changing the sans-serif font won't mess with scanned elements.

exams2nops(questions, n = 2, dir = "nops_pdf", name = "test",
           usepackage = c("unicode-math"),
           header="\\setmainfont{TeX Gyre Pagella}\\setmathfont{TeX Gyre Pagella Math}\\setsansfont{Roboto}",
           texengine="xelatex")

Can you comment, please?

Reasons:
  • Blacklisted phrase (1): trying to do the same
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Paulo Soares

79561962

Date: 2025-04-08 12:08:50
Score: 2.5
Natty:
Report link

No one added an important piece of information. When you're connecting to github such an error may occur when using RSA algorithm for private key generation. Try switching to ECDSA.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mikołaj Wróblewski

79561961

Date: 2025-04-08 12:08:50
Score: 0.5
Natty:
Report link

I had the same issue when try to build apk with android studio

i am using ionic-cordova to build android application. this is happen to me because i used JDK 21 instead of JDK 17, so just modify JDK version fixed my issue.

enter image description here

Hope it will help ):

Reasons:
  • Whitelisted phrase (-1): Hope it will help
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: starterProgrammer

79561956

Date: 2025-04-08 12:06:49
Score: 0.5
Natty:
Report link

The following worked on the default Ubuntu (24.04.1) terminal using bash as the shell interpreter.

The Ctrl-V solution

This is the "what you see is what you get" (WYSIWYG) solution that I think you're looking for since you mentioned trying "shift+return, alt+return, ctrl+return.. etc".

Just try Ctrl+V followed by Ctrl+J to get a new line on your terminal.

This should place the cursor on your terminal at the beginning of a new line allowing you to continue introducing text inside your double quoting just like your example shows (an actual multiline block of text as if you're inside a text editor). That combination will pass the equivalent of a line feed character ('\n') to the command.

$ echo "line1
line2
line3" >multiline_from_ctrlvj
$ cat multiline_from_ctrlvj 
line1
line2
line3
$

Related to this, entering Ctrl+V followed by TAB will "print" a tabulation on your terminal and send a '\t' character to the shell

$ echo "one    two     three   four"
one two three   four
$

Entering Ctrl+V followed by ENTER will print a '^M' on your terminal but will send a carriage return to the shell":

$ echo "this will be overwritten by^MTHIS"
THIS will be overwritten by
$

The ANSI C quoting solution

(already pointed out by @KamilCuk)

If you don't care about how your terminal looks like while typing but just want to insert the newline as part of the argument string, you can always use the ANSI C quoting style as an alternative to the double quoting. The ANSI C quoting style requires a leading $ sign and simple quotes:

$'any text including ANSI C special characters such as '\n' or others'

$ echo $'line1\nline2' >multiline_from_ANSI_C_quoting
$ cat multiline_from_ANSI_C_quoting 
line1
line2
$

Notice that the $'...' quoting must be used instead double quoting "...", since something like this won't work as desired (double quoting removes the special meaning of the $ sign for the shell):

$ echo "line1$'\n'line2"
line1$'\n'line2
$

The command substitution solution

(already pointed out by @KamilCuk)

Whatever you put inside $(...) gets executed in a subshell and its output (not exactly but irrelevant here) is used to replace the entire $(...)construction. That is why this is also an option:

git commit -m "$(printf "%s\n" "message" "" "description")"

Notice that any double quoting inside $(...) doesn't affect the outer double quoting.

PD: The recommended way to commit

A well documented commit should have a title (single short line) and a body (multiline block). When you use the git commit -m "brief title of the commit" you're just attaching a title to the commit while leaving its body empty. As pointed out by @KamilCuk, you should have your git configured to use a text editor (such as vim). If that's the case, entering just git commit will open the text editor where you must: 1) enter the first line as the commit title; 2) leave the second line empty; 3) start your commit detailed multiline description from the third line; 4) save and quit the text editor; then the commit will be done.

Check your .gitconfig file for something like this to confirm if you have an associated text editor for git:

[core]
    editor = vim

Execute something like this to configure a text editor for git:

$ git config --global core.editor "vim"
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @KamilCuk
  • User mentioned (0): @KamilCuk
  • User mentioned (0): @KamilCuk
  • Low reputation (1):
Posted by: Luis Luque

79561947

Date: 2025-04-08 12:02:48
Score: 1
Natty:
Report link

I handled it in C# :

var fileChooser = await page.RunAndWaitForFileChooserAsync(async () =>
{
    await page.GetByText("Upload file").ClickAsync();
});
await fileChooser.SetFilesAsync("temp.txt");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: syed imad

79561940

Date: 2025-04-08 11:58:47
Score: 1
Natty:
Report link

I received a similar error and I use AWS Amplify. I added the AmplifySSRLoggingRole IAM role to Amplify -> App Settings -> IAM Roles -> Service role, and it worked.

enter image description here

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Serhan C.

79561939

Date: 2025-04-08 11:58:47
Score: 6.5
Natty: 7.5
Report link

if you struggle to resolve the problem with python libs. Check this article. it helped me a lot. https://aws.plainenglish.io/easiest-way-to-create-lambda-layers-with-the-required-python-version-d205f59d51f6

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1): helped me a lot
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MechitarX

79561933

Date: 2025-04-08 11:54:45
Score: 0.5
Natty:
Report link

DateTime.parse has a second argument, which uses UTC for the conversion.

print(widget.asset.purchaseDate);
DateTime temp = DateTime.parse(widget.asset.purchaseDate, true);
print(temp.toLocal());
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Simon Fry

79561926

Date: 2025-04-08 11:52:44
Score: 1
Natty:
Report link
{
            "autoUpdateMode": "AUTO_UPDATE_HIGH_PRIORITY", 
            "packageName": "com.samsung.android.knox.kpu", 
            "defaultPermissionPolicy": "GRANT", 
            "installType": "FORCE_INSTALLED", 
            "managedConfigurationTemplate": {
                "templateId": mcmId
            }
        }, 

for me this was not working.

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

79561922

Date: 2025-04-08 11:51:44
Score: 3.5
Natty:
Report link

try „Clear-Host“ as you are using PowerShell

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

79561914

Date: 2025-04-08 11:46:43
Score: 1
Natty:
Report link

There were two main reasons for the problem. 1. Reason

When I manually received, my bindings were failing. I added the endpoints directly in the context as shown in the documentation. cfg.ConfigureEndpoints(context);

2. Reason

There were old exchanges with the same name and queues connected to them. During the tests, it was not enough to just delete the queue. There are exchanges that the queue is connected to. Since the same exchange already exists, it is not recreated. Since the exchange was not recreated, it could not reconnect while connecting the relevant queue. Clearing all exchanges and running the tests from scratch solved my problem.

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

79561912

Date: 2025-04-08 11:43:42
Score: 2
Natty:
Report link

Turns out Entra Groups are not supported.

https://learn.microsoft.com/en-us/azure/azure-sql/database/authentication-azure-ad-logins?view=azuresql#microsoft-entra-group-server-principal-limitations

enter image description here

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

79561908

Date: 2025-04-08 11:41:42
Score: 1
Natty:
Report link

When someone leaves the job, updating the EMPLOYEES table on status column (like True or False values) will do the trick for you. You can request developers to set up such a table structure.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When someone
  • High reputation (-1):
Posted by: abaci

79561897

Date: 2025-04-08 11:35:40
Score: 1.5
Natty:
Report link

I used 2 Facebook profiles that were connected. The first page shared it's link on the second profiles page and the same the other way. The first would be able to go back and forth freely. After the link was open both profiles could forward the 1 profile page. However it only works 1 way. It took a while to create the link for the second profile. Even after I had deleted the first profile. But I think I have a way for both profiles to jump from there page to any other page. And the second has the way to get back. It's an infinity jumping link lol

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

79561890

Date: 2025-04-08 11:28:38
Score: 0.5
Natty:
Report link
depends_on:
      eureka:
        condition: service_healthy
      customerapp:
        condition: service_healthy
      cardapp:
        condition: service_healthy
      loanapp:
        condition: service_healthy
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pratik Gaurav

79561888

Date: 2025-04-08 11:27:38
Score: 5
Natty: 5.5
Report link

how can i make noreply mail.Is it enough for me ?

data['h:Reply-To']="" 
Reasons:
  • Blacklisted phrase (0.5): how can i
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): how can i
  • Low reputation (1):
Posted by: BCHA

79561882

Date: 2025-04-08 11:24:37
Score: 3
Natty:
Report link

Go through this link https://github.com/rvm/rvm/issues/5507

curl -sSL https://github.com/ruby/ruby/commit/1dfe75b0beb7171b8154ff0856d5149be0207724.patch -o ruby-307-fix.patch && rvm install 3.0.7 --patch ruby-307-fix.patch --with-openssl-dir=$(brew --prefix [email protected]) && rm ruby-307-fix.patch;

The above command worked for me.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rajat Bansal

79561880

Date: 2025-04-08 11:22:36
Score: 4
Natty: 4
Report link

Add the folder in which you stored the "my-project-env" to the VSCode workspace.

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

79561876

Date: 2025-04-08 11:20:35
Score: 0.5
Natty:
Report link

For anyone searching for how to draw labels on top of the bars:

in options > scales > x or y > ticks you add z: 1.
z property changes the layer, above 0 is above the bars.

Here's the documentation:
https://www.chartjs.org/docs/latest/axes/_common_ticks.html

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

79561874

Date: 2025-04-08 11:18:35
Score: 1
Natty:
Report link
This package is working okay if you use "Intervention\Image\Laravel\Facades\Image" v2.x version. but if you use your version 3.* or grater then you need to update blow code.

use Intervention\Image\ImageManager;
use Intervention\Image\Drivers\Gd\Driver;

// create image manager with desired driver
$manager = new ImageManager(new Driver());

// read image from file system
$image = $manager->read('images/example.jpg');

// resize image proportionally to 300px width
$image->scale(width: 300);

// insert watermark
$image->place('images/watermark.png');

// save modified image in new format 
$image->toPng()->save('images/foo.png');

Reference : https://image.intervention.io/v3

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

79561873

Date: 2025-04-08 11:18:34
Score: 6.5 🚩
Natty:
Report link

I have the same problem. I couldn't install the solution. I think the problem may not be in the code. If you find the solution, I would be very happy if you share it.

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

79561870

Date: 2025-04-08 11:17:34
Score: 1.5
Natty:
Report link

Yeah, so short version: after 4.2, the old getContent hack just stopped working because WordPress rewrote how MCE views work. You can’t just override the template anymore without re-registering the whole gallery view. There’s no clean hook, no magical filter, no partial override, you either unregister and rebuild it like you did, or you live with the default. Everything else like extending or patching after init is a no-go. It's messy, but that’s the only way it actually works now.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kisded Szabi - CodeRevolution

79561853

Date: 2025-04-08 11:09:31
Score: 1
Natty:
Report link

Go to:
Android Studio > Preferences (or Settings)
Keymap
→ Search: Show Context Actions

Make sure it's mapped to:

If it’s not mapped, right-click and "Add Keyboard Shortcut", then set it manually.

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

79561841

Date: 2025-04-08 11:04:29
Score: 2
Natty:
Report link

I think I finally found the answer. It is implied by the first comment of this bug description:
https://github.com/docker/compose/issues/3415#issue-153068282

When we recreate a container we start by renaming the old container by adding the container short id as a prefix. If the start or create fails, the container is left with that prefixed name.

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

79561840

Date: 2025-04-08 11:03:29
Score: 1.5
Natty:
Report link

You want to get the path of the executable at runtime, it would be like this:

string projectPath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);

After I ran it the result was this:

C:\\Users\\<user>\\source\\repos\\App7\\App7\\bin\\x64\\Debug\\net8.0-windows10.0.19041.0\\win-x64\\AppX

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

79561836

Date: 2025-04-08 11:01:28
Score: 3
Natty:
Report link

Thanks, everyone. At the end, I went to sleep and came back to this problem today, and solved with the strum and strum_macros crates. I marked my enum with #[derive(EnumDiscriminants, EnumString, AsRefStr)] and #[strum_discriminants(derive(EnumString, AsRefStr))], which gives me a new enum called ErrorDiscriminant that contains all the same variants but without extra data, as well as a method ErrorDiscriminant::from(&Error) that I can use to map each Error variant to an ErrorDiscriminant variant. From there, I can just do <error-discriminant> as i32 and the problem is solved.

As I'm new to Rust and this is the solution I just found, I cannot guarantee it is correct, but it's working for me so far and it makes sense.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kaisa Azaria

79561826

Date: 2025-04-08 10:55:26
Score: 2.5
Natty:
Report link

I think GeometryReader dynamicIsland is not working as expected. That's why the image might not look the way you want it to.

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

79561822

Date: 2025-04-08 10:54:26
Score: 2
Natty:
Report link

Initially, I misunderstood the communication pattern and confused CSMS and CS roles. I thought that CS is a server and CSMS is a client. But actually, the things are exactly the opposite. To get data from the CS one should implement CSMS as a server and setup CS to connect with this CSMS. Hope that it will be useful for someone.

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

79561813

Date: 2025-04-08 10:51:25
Score: 0.5
Natty:
Report link

I battled with this problem for days. I am working on a JavaEE project running on Wildfly 26.1.3 with Java 11 and Hibernate 5.6.15.Final. Adding the following property to my persitence.xml file fixed the problem for me:

 <property name="org.hibernate.flushMode" value="COMMIT" />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Louis

79561802

Date: 2025-04-08 10:45:24
Score: 2.5
Natty:
Report link

Yes this was an airflow version issue.

Thank you @Kombajn zbożowy for testing the code in airflow 2.10.5

I have since upgraded from 2.10.3 --> 2.10.5 and get the desired task outputs. This issue is probably the one highlighted on github here.

Despite attempts using version 2.10.3 to ensure trigger_rule='all_success' in the @task decorator args this bug was only fixed with upgrading.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • User mentioned (1): @Kombajn
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: GazYah

79561798

Date: 2025-04-08 10:44:23
Score: 0.5
Natty:
Report link

For me , it was the atomicfu dependency and to fix it I just added this line in build.gradle.kt after the plugins section:

atomicfu {
    transformJvm = false  // Disable transformation for Android target
}

No need to downgrade Kotlin version!

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

79561796

Date: 2025-04-08 10:44:23
Score: 1
Natty:
Report link

Based on this example, you have j which is a block of text that can be delimitated by line. If you set say, some variable ingredients to j.split('\n'), it will give you a list of each ingredient with all of the details.

Now, just loop through that, and split each ingredient by multiple spaces (because it seems each part is consistently separated by multiple spaces). That will give you each part separately. Now, just format each part to your liking, and append them to the desired list. Do Exactly what we did on this project Soursop.Farm

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

79561795

Date: 2025-04-08 10:43:22
Score: 6 🚩
Natty:
Report link

I'm not sure what it is but it's not working for me either. The link Eric gave redirects to support. I created all relevent id's ibm cloud, ibm etc.. but nothing is working.

Reasons:
  • RegEx Blacklisted phrase (3): not working for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: manhoosbilli1

79561788

Date: 2025-04-08 10:40:21
Score: 1
Natty:
Report link

All the options you listed are viable, but each comes with trade-offs. The WebView approach is the easiest and quickest—perfect if your Vue3 website is fully responsive. Users can log in and use it like a native app, but performance and offline support may be limited. Converting Vue3 code into a native app using tools like Capacitor or Cordova is a more flexible and robust choice. These tools allow you to package your existing front-end and interact with device features, making it feel more like a true app while still using web technologies.

Embedding your front-end files directly into the app is similar to the second option but requires you to rebuild the app for every update—less ideal for frequent changes. However, it offers more control and can work offline.

In terms of learning curve, WebView is the easiest, while using Capacitor or similar tools has a moderate curve but offers better scalability. For modern android app development, combining Vue3 with Capacitor is a solid middle-ground: you retain your existing codebase and get native features.

If you're planning long-term support and features, avoid pure WebView and go with a hybrid solution like Capacitor.

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

79561784

Date: 2025-04-08 10:37:20
Score: 1
Natty:
Report link

I tried all of the solutions mentioned here but nothing worked for me. I solved it by reducing the image size to below 2000px for each dimension (height & width). The image resides in the project folder and not the Assets.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Theseus

79561780

Date: 2025-04-08 10:36:19
Score: 3
Natty:
Report link

This solution will work for you

File -> Manage IDE settings -> Restore default settings

After resetting the Android studio. Your issue will be resolved.
Thank me later.

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

79561777

Date: 2025-04-08 10:35:19
Score: 2
Natty:
Report link

I just used react-native-gesture-handler's ScrollView inside KeyboardAwareScrollView and it solved that problem for me

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

79561776

Date: 2025-04-08 10:34:17
Score: 7 🚩
Natty:
Report link
Have you found a solution to this problem?
Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a solution to this problem
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: An Nguyen Van

79561768

Date: 2025-04-08 10:32:16
Score: 2.5
Natty:
Report link

Odoo Mobile App for Android & iOS easily converts your Odoo store into a mesmeric mobile application.

https://apps.odoo.com/apps/modules/14.0/mobikul

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kuldeep Singh Tomar

79561758

Date: 2025-04-08 10:24:14
Score: 2.5
Natty:
Report link

The domain you have purchased needs to have the same path where you upload the project Laravel files and needs to have the index file. you can go to your cPanel and the domain option, and next to it will find the file path.

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

79561755

Date: 2025-04-08 10:22:13
Score: 1.5
Natty:
Report link

Some special colors could be stowed in resources. In this case solution could be:

view.setTextColor(getColor(R.color.orange))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex

79561754

Date: 2025-04-08 10:21:13
Score: 2.5
Natty:
Report link

Unfortunately, Lucid chart does not have a way to group pages in a document into tabs/folders. We can only group documents within folders.

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

79561746

Date: 2025-04-08 10:17:12
Score: 3
Natty:
Report link

remove .background from your ZStack if you have it

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

79561745

Date: 2025-04-08 10:16:11
Score: 4
Natty:
Report link

Use Application Like pdAdmin or DBeaver

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

79561744

Date: 2025-04-08 10:16:11
Score: 1
Natty:
Report link

Menü > Git > Uncommitted Changes > Show Shelf

In the Commit window, you should see the shelved changes under the Shelf tab. If the tab is not displayed, you can open it by proceeding as above.

Afterwards, you can unshelf and your changes will be displayed in the commit window.

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

79561742

Date: 2025-04-08 10:15:11
Score: 1
Natty:
Report link

I fix my issue by a simple little correction. I forgot the @Configuration in my gateway Spring Security configuration. So I always had a default security config. I did some changes in my security config too.

package com.omb.ombgateway.configuration;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.Customizer;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.web.SecurityFilterChain;

@Configuration
public class SecurityConfig {

    @Bean
    public SecurityFilterChain gatewaySecurity(HttpSecurity http) throws Exception {
        http
                .csrf(csrf -> csrf.disable())
                .sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
                .authorizeHttpRequests(auth -> auth
                        .requestMatchers("/api/1.0/auth/**", "/actuator/**", "/error").permitAll()
                        .anyRequest().authenticated()
                )
                .oauth2ResourceServer(oauth2 -> oauth2.jwt(Customizer.withDefaults()));
        return http.build();
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Configuration
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ousmane MBINTE

79561738

Date: 2025-04-08 10:14:10
Score: 0.5
Natty:
Report link
import java.util.Scanner;

public class PrimeNumbers {
    public static void main(String[] args) {
        Scanner scanner=new Scanner(System.in);
        System.out.print("Enter a number: ");
        int number=scanner.nextInt();

        boolean isPrime=true;
            for(int i=2; i<=number/2; i++){
                if(number%i==0){
                    isPrime=false;
                    break;
                }
            }
            if (isPrime){
            System.out.printf("%d is prime", number);
        }else {
                System.out.printf("%d is not prime", number);

            }
        scanner.close();
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Makinya Festus

79561734

Date: 2025-04-08 10:12:09
Score: 5.5
Natty:
Report link

My answer is only to refute the answer with the first number of votes, because I can't vote or reply. I followed his instructions and added "source ~/.bash_profile" at the beginning of my ~/.zshrc. Then I executed "source ~/.zshrc" and it gave an error, "-bash: export: `': not a valid identifier". At this time,any "sudo" and "vim" command will not work at all.And my "~/.bashrc" content will be replace by 'eval "$(thefuck --alias)"'.My command config went missing!I could only delete that line "source ~/.bash_profile" and execute "echo $PATH" to check my PATH. I found that "/usr/bin" and "/bin" were missing, which made my basic commands completely invalid. Then I executed "export PATH=$PATH:/usr/bin:/bin" to fix it. Don't try that method lightly!

Reasons:
  • Blacklisted phrase (2): fuck
  • RegEx Blacklisted phrase (2): can't vote
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: rxs-michael

79561722

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

If you use firewall contexts, be sure to set the context to the firewall name in the test environment.

The firewall name is the default context for each firewall.

firewalls:
    main:
        context: main
        ...

See https://symfony.com/doc/current/reference/configuration/security.html#firewall-context

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

79561718

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

Previously, there was a way to add the flag -disable-concurrency-checking, but it was only available in the first beta versions of Swift Concurrency. Later on, this ability was removed, and now developers are forced to address all the warnings, which ensures that we fix them.

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

79561717

Date: 2025-04-08 10:04:07
Score: 1.5
Natty:
Report link

this will turn off AOS on mobile (less than 768px). once: true means animates only once.

AOS.init({
  once: true,
  disable: () => window.innerWidth < 768
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Asad Ali

79561710

Date: 2025-04-08 09:57:06
Score: 0.5
Natty:
Report link

I am not sure if this question should be answered because it will be more like an "opinion based" instead of a "technical answer". In short it is really unknown why it was not implemented... in long version ... it seems more intentional. Margins and docking are conceptually distinct—margins work well in layout engines like WPF, where flexibility and advanced layout features are baked in. In contrast, Windows Forms prioritizes straightforward functionality, with workarounds like using panel containers for spacing. Another aspect I think it is the complexity on how the layout engine calculates and handles control bounds, particularly during resize events. The trade-off between added complexity and actual developer need may have influenced the decision to omit this feature.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: D A

79561707

Date: 2025-04-08 09:57:05
Score: 5
Natty:
Report link

did you resolve this issue? I have working on this issue for days but have no resolutions yet...

Here is my result

04-08 16:44:30 I/TestInvocation: Starting invocation for 'cts' with '[ DeviceBuildInfo{bid=eng.anqizh, serial=a0f32ff5} on device 'a0f32ff5'] 
04-08 16:44:31 E/TestInvocation: Caught exception while running invocation
04-08 16:44:31 E/TestInvocation: Trying to access android partner remote server over internet but failed: Unsupported or unrecognized SSL message
com.android.tradefed.targetprep.TargetSetupError[ANDROID_PARTNER_SERVER_ERROR|500505|DEPENDENCY_ISSUE]: Trying to access android partner remote server over internet but failed: Unsupported or unrecognized SSL message
        at com.android.compatibility.common.tradefed.targetprep.DynamicConfigPusher.resolveUrl(DynamicConfigPusher.java:318)
        at com.android.compatibility.common.tradefed.targetprep.DynamicConfigPusher.setUp(DynamicConfigPusher.java:172)
        at com.android.tradefed.invoker.InvocationExecution.runPreparationOnDevice(InvocationExecution.java:621)
        at com.android.tradefed.invoker.InvocationExecution.runPreparersSetup(InvocationExecution.java:522)
        at com.android.tradefed.invoker.InvocationExecution.doSetup(InvocationExecution.java:375)
        at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:624)
        at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:291)
        at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:1431)
        at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:692)
Caused by: javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
        at java.base/sun.security.ssl.SSLSocketInputRecord.handleUnknownRecord(SSLSocketInputRecord.java:462)
        at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:175)
        at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
        at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1506)
        at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1421)
        at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
        at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
        at java.base/sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:586)
        at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:187)
        at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1675)
        at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1599)
        at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
        at java.base/java.net.URL.openStream(URL.java:1325)
        at com.android.compatibility.common.tradefed.targetprep.DynamicConfigPusher.resolveUrl(DynamicConfigPusher.java:315)
        ... 8 more
04-08 16:44:31 E/ClearcutClient: Unsupported or unrecognized SSL message
javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
        at java.base/sun.security.ssl.SSLSocketInputRecord.handleUnknownRecord(SSLSocketInputRecord.java:462)
        at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:175)
        at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
        at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1506)
        at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1421)
        at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
        at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
        at java.base/sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:586)
        at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:187)
        at java.base/sun.net.www.protocol.http.HttpURLConnection.getOutputStream0(HttpURLConnection.java:1446)
        at java.base/sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:1417)
        at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:219)
        at com.android.tradefed.clearcut.ClearcutClient.sendToClearcut(ClearcutClient.java:344)
        at com.android.tradefed.clearcut.ClearcutClient.lambda$flushEvents$1(ClearcutClient.java:322)
        at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
        at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760)
        at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387)
        at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312)
        at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843)
        at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808)
        at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
04-08 16:44:31 W/NativeDevice: Attempting to stop logcat when not capturing for a0f32ff5
Reasons:
  • RegEx Blacklisted phrase (3): did you resolve this
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: vanccc

79561691

Date: 2025-04-08 09:49:03
Score: 1
Natty:
Report link

As Tamás Szelei stated in his comment on Andrey's answer: "gtest_main is not an alternative to gtest. You need to link with gtest if you want to use the library either way." I would like to make this answer even clearer. At least for me, the following variant is more understandable:

gtest_main.lib is not an alternative to gtest.lib. You need to link both gtest_main.lib and gtest.lib together if you want to use the gtest framework (Linker -> Input -> Additional Dependencies) and if you don't want to write your own main function.

While the original comment wasn’t entirely clear to me, my clarification makes the topic unequivocally understandable, as the gtest documentation on GitHub states that you should link either gtest_main or gtest: https://github.com/google/googletest/blob/main/docs/primer.md

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