79395448

Date: 2025-01-28 23:54:09
Score: 2
Natty:
Report link

I managed to solved this. It is weird that I dont have a values.xml file but I edited this file under

/Users/kj/.gradle/caches/transforms-3/0f8e1f19c5fbeeae287aa57770c7b671/transformed/jetified-colorpicker-0.9.1/res/values/values.xml

and remove the conflicting lines.

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

79395446

Date: 2025-01-28 23:53:09
Score: 0.5
Natty:
Report link

As far as IHttpActionResult NotFound(), .NET 9 now has an overload. For example,

return new JsonResult(NotFound("Item not found"));

returns

{"value":"Item not found","formatters":[],"contentTypes":[],"declaredType":null,"statusCode":404}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: NeartCarp

79395441

Date: 2025-01-28 23:48:09
Score: 0.5
Natty:
Report link

Why don't you just exclude vscode/settings.json file from .gitignore and add it to the git repository?

There's nothing wrong in sharing your configuration among your teammates if that's what you have agreed upon.

As for more granular approach, unfortunately it's not currently possible. There is opened issue for this in vscode git repo which would allow to extend config from some basic configuration (which would make it possible to share only part of config and not file as a whole), but it had not progressed for several years, so I guess it's not a high priority issue.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why don't you
  • Low reputation (0.5):
Posted by: Lastik

79395440

Date: 2025-01-28 23:47:08
Score: 0.5
Natty:
Report link

For those that are here because of configuring image pipeline:

scrapy.contrib has been moved to the top level module so now its scrapy.pipelines.images.ImagesPipeline which was changed in version 1.6

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

79395431

Date: 2025-01-28 23:42:07
Score: 3
Natty:
Report link
const isPalidrome = s => {
    let b = true;
    for (let x=0, y=s.length-1; x < y && b; x++, y--)
        b = s[x] == s[y];    
    return b;
}

console.log(isPalidrome('poop'));
Reasons:
  • Blacklisted phrase (2): poop
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paul Bartlett

79395413

Date: 2025-01-28 23:25:03
Score: 1.5
Natty:
Report link

You can use 'coproc' before the command, instead of '&' after the command.

See 'man bash', and search for "Coprocesses".

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nathan Wallwork

79395407

Date: 2025-01-28 23:20:01
Score: 11 🚩
Natty: 6.5
Report link

I have the same problem right now. I'm downloading images from cloudinary and images are not displaying. Did you find a solution?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: fathi93

79395394

Date: 2025-01-28 23:12:59
Score: 1.5
Natty:
Report link
String a = "hello world";

void setup() {
  Serial.begin(9600); 
}

void loop() {
  Serial.println(a); 
  delay(1000);       
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vinit Chaniyara

79395384

Date: 2025-01-28 23:05:57
Score: 1
Natty:
Report link

Click here to preview image

.card {
        height: 100%;
    }
    .card-body {
        padding: 2em;
    }
    .feature-list li {
  position: relative;
  padding-left: 30px;
  list-style: none;
  margin-bottom: 10px;
}

li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%); 
  width: 20px;
  height: 20px; 
  background-image: url('https://static.vecteezy.com/system/resources/previews/033/294/018/non_2x/fill-green-tick-mark-approved-check-mark-icon-symbols-symbol-for-website-computer-and-mobile-isolated-green-tick-verified-badge-icon-social-media-official-account-tick-symbol-vector.jpg'); 
  background-size: cover;
}

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

79395379

Date: 2025-01-28 23:03:56
Score: 1
Natty:
Report link

Building on @scott-jibben's idea of using Indices and ranges, and adding support for nulls and strings shorter than the desired max length, I arrived at the following extension method for LEFT:

public static string Left(this string myString, int maxLength)
{
    if (string.IsNullOrEmpty(myString)) return myString;
    return myString[..Math.Min(maxLength, myString.Length)];
}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @scott-jibben's
  • Low reputation (0.5):
Posted by: ConfuedProblemSolver

79395375

Date: 2025-01-28 23:01:55
Score: 1.5
Natty:
Report link

when you try to log console.log("session", session) in your cart.js what is the output of the log? one other question: Did you check your connection string for mongoDB usually it is different on production from the one you use for development/staging the case might be that you have issue with the database connection, it may return null and triggering a redirect. try adding these logs inside the checkout.js: console.log("User from DB:", user); console.log("Cart from DB:", cart);

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when you
  • Low reputation (0.5):
Posted by: BlackSheep

79395373

Date: 2025-01-28 22:59:55
Score: 3.5
Natty:
Report link

Late to this party, but it does support TimescaleDB as of late 2024 🎉

https://documentation.red-gate.com/fd/supported-databases-and-versions-143754067.html

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

79395360

Date: 2025-01-28 22:52:54
Score: 1.5
Natty:
Report link

In my case, I had a Person Picker field with invalid values. The person had left our organization. Once I removed their name, the record would update.

In order to find the record causing the issue, I created a simple update query. It selected the record ID, and updated a dummy field with filler text. When the error message appeared (ie. the dummy field would not take the filler text), the ID at the top of the Table View was the record that was throwing the error.

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

79395356

Date: 2025-01-28 22:49:53
Score: 1
Natty:
Report link

Anyone with the same problem? Recently I had the same problem in a code, I managed to fix it with: I configured dotenv in the same file that is calling the variable. The problem was that the dotenv was configured in the server file and the variable was being called in another file that was not having access to it, the variable was returning as undefine.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user29408609

79395336

Date: 2025-01-28 22:42:52
Score: 1.5
Natty:
Report link

I know this is an old post, but thought I'd put my solution here just in case someone else is trying to get this integration working. I was able to successfully connect Stamps.com to Magento 2.4.  There were two tricks to get it to work.

  1. There is one drop down "Invoice after shipping" that does not show on the connection screen in Stamps.com due to some incorrect css.   Correcting the css in the browser to remove the fixed display property for the element allowed me to select this option and ability to try to connect. On the .storeConnect .action-row class rules remove the fixed position styling.

  2. Install the Shipstation extension, not the one provided by Stamps.com - https://github.com/shipstation/plugin-magento.

After making these two changes, I was able to connect to Magento and when printing labels it sends the tracking information and creates a shipment to complete the order in Magento.

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

79395323

Date: 2025-01-28 22:38:49
Score: 1
Natty:
Report link

A little late... just install tzdata.

pip install tzdata

and use it.

from datetime import datetime
from zoneinfo import ZoneInfo
time_bo = datetime.now(tz=ZoneInfo('America/La_Paz'))
print(time_bo)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ole1105

79395322

Date: 2025-01-28 22:38:49
Score: 3
Natty:
Report link

SmartScout has an API of Amazon brands and category marketshare. There's keywords and products, but the high level stuff is there.

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

79395318

Date: 2025-01-28 22:34:48
Score: 0.5
Natty:
Report link

This is not an answer in the specific sense, but a general response to your question that I hope will be helpful.

[As ever, I defer to @raiph's attention to detail and actual code fix]

I am very impressed with the progress that you have made and would encourage you to keep going ... I have built several realworld raku grammars and they are always quite intricate since that is the nature of parsing/regex at a character level. I am sure you know to take ChatGPT with a pinch of salt.

At first, I wanted to say "don't use raku grammars to solve this problem, the quickest way to extract data from your source file is more likely to be a set of regexes". Why? Well the source file is quite odd - there is a prediliction for newlines and repeated info. A regex type approach would try and pick out anchors (eg section, subsection, subsubsection) and then key off these to capture the variable data. In contrast a grammar like yours is trying to pick up all the text and is more work and more prone to small errors.

Then I saw you wrote that you want to check the correctness/completeness of the source. [This goal seems a bit nutty to be, but I am sure you have your reasons]

In this case, I think you have made a good (comprehensive) start, but your Grammar is brittle - would you really care if version 0.001 became version 0.002?

So, my current view based on how I would do this myself, is to say that your grammar token structure needs to have a good impedance fit with the language that you are parsing. This is another way of saying take a top down look and try to extract the patterns that you want to extract in a hierarchical way.

What do I mean by that, what would I change...

  1. Many of the features are 3 line stanzas - so I would try to make a general to match these paras

  2. Many of these have repeat text - so I would try to check and then eliminate the duplications

  3. They have a consistent syntax built with components, so have tokens for each component

Something like:

... what you have already around TOP ...

token stanza  { <header> <tagged> <untagged> }

token header  { '@' ['section'|'subsection'|<subsub>] }

token tagged  { '[#:tag "\' <factor> <subject> <yyyymm> ']' }   # look up ~ and % in the docs
token untagged { '{' <factor> <subject> <yyyymm> '}' }
token factor  { Factor \d+ ':' <.ws> }
token subject { [\@italic\{]? [Quaffing | Quenching] [}]? ',' <.ws> }
token yyyymm  { like you have it }

This is just a rough idea ... but hopefully you get the feeling for the level of granularity / reusability of tokens.

Reasons:
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (0.5): Why?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @raiph's
  • High reputation (-1):
Posted by: librasteve

79395311

Date: 2025-01-28 22:29:47
Score: 0.5
Natty:
Report link

Following up on @Akshaykumar's solution, I encountered this error: FAILURE: Build failed with an exception.

What went wrong: Execution failed for task ':app:checkDebugAarMetadata'.

A failure occurred while executing com.android.build.gradle.internal.tasks.CheckAarMetadataWorkAction An issue was found when checking AAR metadata:

  1. Dependency ':flutter_local_notifications' requires core library desugaring to be enabled for :app. See https://developer.android.com/studio/write/java8-support.html for more details.

To resolve this, add the following to your android/app/build.gradle:

  1. Add the desugaring dependency:
dependencies {
    coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.0.3"
}

Enable Java 17 and desugaring:

gradleCopyandroid {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_17
        targetCompatibility JavaVersion.VERSION_17
        coreLibraryDesugaringEnabled true
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Akshaykumar's
  • Low reputation (0.5):
Posted by: FarHard112

79395310

Date: 2025-01-28 22:28:46
Score: 8.5 🚩
Natty:
Report link

Can you share your CrimeListAdapter code, and the edit crime fragment code?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share your
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you share you
  • Low reputation (1):
Posted by: Harley

79395308

Date: 2025-01-28 22:26:45
Score: 1.5
Natty:
Report link

i'm encountering this issue and its not permissions related. it seems someone deleted the deployment pool. deleting and recreating the environment does not solve the issue. the new environment has the same problem.

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

79395306

Date: 2025-01-28 22:25:45
Score: 3.5
Natty:
Report link

I installed the Intel version of R by mistake. For anyone else struggling with this, you can find the ARM install here

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

79395305

Date: 2025-01-28 22:25:45
Score: 1
Natty:
Report link

I had the same problem when creating a map file .ber with Vim. My code ran very well when I created the map with VS Code, but one of my colleagues, he tried to test my code and created a map by Vim. Boom! I got the segment fault. After many tests, I realized that Vim always unexpectedly adds a '\n' like an EOF. But VS Code doesn't. So I was so confused! Finally, I have the confirmation here in this question. Thank you so much for the question and the answers below!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tat Hoang Ng

79395299

Date: 2025-01-28 22:22:44
Score: 1
Natty:
Report link

My mistake was that the camera was turning the player and the player himself was turning, there was a conflict, so when the camera was looking at the player's back, there was no shaking, because there was no rotation conflict, and when moving sideways relative to the camera, there was a conflict.

Player code

private void PlayerMove(Vector3 move)
{
    if(_isAttacking == true) return;
    _player.PlayerAnimator.SetFloat("Value", move.magnitude);
    var forward = _camera.transform.forward;
    var right = _camera.transform.right;
    forward.y = 0;
    right.y = 0;    
    forward.Normalize();
    right.Normalize();
    Vector3 movement = (move.x * right + move.y * forward);
    movement.y = 0;
    
    Vector3 val = _playerModel.PlayerSpeed * Time.fixedDeltaTime * movement;
    _player.PlayerRb.MovePosition(_player.PlayerRb.position + val);
    

    if (movement.magnitude != 0)
    {
        Quaternion targetRotation = Quaternion.LookRotation(val);
        _player.PlayerRb.rotation = Quaternion.Slerp(_player.PlayerRb.rotation,
            targetRotation, _playerModel.PlayerRotationSpeed * Time.fixedDeltaTime);
    }
}

I deleted these lines in the camera code.

private void ToUpdate()
{
    var targetRotation = Quaternion.Euler(0, _cameraMovement.x, 0);
    _player.transform.Rotate(new Vector3(0, targetRotation.x,0),Space.World);
}

https://youtu.be/P61KHd4aBxk new video

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nikolay Stuff

79395294

Date: 2025-01-28 22:17:43
Score: 0.5
Natty:
Report link

I created my account just to share that I found a way.

Context:

And looking through all the commands I found:

bannerView.removeFromSuperview()

and it worked like a charm!

Hope it's not too late and I helps!

PD: Keywords so people find this answer:

How to dismiss Admob banner AD in swift in Xcode

Remove Admob add from view in swift in xcode

Stop Admob add from showing in swift in xcode

Reasons:
  • Blacklisted phrase (1): worked like a charm
  • Whitelisted phrase (-1): it worked
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: juanchop6

79395286

Date: 2025-01-28 22:13:42
Score: 1
Natty:
Report link

I tried something, and I came up with this (replace it to your css):

.card-body {
    padding: 2em;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex; 
    align-items: center; 
    padding: 0.5em; 
}

.feature-list li::before { /*img styling*/
    content: ''; 
    display: inline-block; 
    background: url('imms.png') no-repeat center center; 
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-right: 0.5em; 
}

This will align your text with the image like this:

text aligned

Let me know if it works for u; happy coding!

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

79395282

Date: 2025-01-28 22:11:41
Score: 4
Natty:
Report link

It turns out adding the flag --legacy-peer-deps to any install makes it work.

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

79395265

Date: 2025-01-28 22:00:38
Score: 3
Natty:
Report link

I'm having this issue too - running code that hasn't changed in last month. I think it might be to do with the recent broom.helpers update looking through my backtraces.

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

79395261

Date: 2025-01-28 21:59:38
Score: 3
Natty:
Report link

Here is the exact REST API you need to call to Run an Indexer (which in turn refreshes the index)

https://learn.microsoft.com/en-us/rest/api/searchservice/run-indexer

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

79395259

Date: 2025-01-28 21:58:38
Score: 5.5
Natty:
Report link

Did you start seeing this error after doing anything specific, like upgrading a dependency?

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

79395253

Date: 2025-01-28 21:54:35
Score: 8.5 🚩
Natty: 4
Report link

How did you managed to run webtorrent package client side?!

Reasons:
  • RegEx Blacklisted phrase (3): did you manage
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (0.5):
Posted by: Adel Benyahia

79395240

Date: 2025-01-28 21:44:33
Score: 3.5
Natty:
Report link

Hardcoding the width property of the DropdownMenu seems to work, but I have a thing against hardcoding size properties in this sense due to responsiveness issues.

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

79395238

Date: 2025-01-28 21:43:33
Score: 1
Natty:
Report link

In some cases you can try the following:

  1. Right click the solution in the visual studio solutions window
  2. Resolve Errors

I tried all other solutions including reinstalling SSRS extension but the above helped.

Reasons:
  • Whitelisted phrase (-1): try the following
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sameer Ahmed

79395235

Date: 2025-01-28 21:41:33
Score: 2.5
Natty:
Report link

I ran into this multiple times. I got tired of having to spin up a backend to use the OpenAI API and figure out security and analytics per user in my apps so I created Backmesh which lets you safely call any LLM API from your app using a JWT proxy without exposing your API Keys or a backend. Check out the security documentation to learn more. It is also open source and can be self hosted. Happy to help you out on our Discord if it is still relevant or feel free to DM me!

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

79395233

Date: 2025-01-28 21:40:32
Score: 0.5
Natty:
Report link

For some reason, strings in PHP can cause this behaviour, since escaping characters can only happen inside double quotes.

If you have any string, you can overcome this PHP limitation by just using this line of code:

$msg = str_replace('\n', "\n", $msg);

*where msg is your string.

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

79395229

Date: 2025-01-28 21:36:32
Score: 2.5
Natty:
Report link

After doing npm install -D tailwindcss, use npx tailwindcss-cli@latest init to create the tailwind.config.js file. Updated with verion v4.0.

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

79395223

Date: 2025-01-28 21:31:30
Score: 1.5
Natty:
Report link

Found the fix, manifest needs the "query all packages" permission, like so

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />

<!-- Other permissions and application components -->
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Fred T.A

79395220

Date: 2025-01-28 21:26:29
Score: 2
Natty:
Report link

Did anyone able to solve this? I have tried but throwing error for: Multiple entries with same key: primary=JdbcTable {primary} and primary=JdbcTable {primary}

Here is the relevant part of my Java code:

// Initialize Calcite connection with case-sensitive settings
Properties info = new Properties();
info.setProperty("lex", Lex.MYSQL.name());
info.setProperty("caseSensitive", "true");
Connection connection = DriverManager.getConnection("jdbc:calcite:", info);
CalciteConnection calciteConnection = connection.unwrap(CalciteConnection.class);
SchemaPlus rootSchema = calciteConnection.getRootSchema();

// Connect to CockroachDB
org.postgresql.ds.PGSimpleDataSource cockroachDS = new org.postgresql.ds.PGSimpleDataSource();
cockroachDS.setUrl("jdbc:postgresql://localhost:26257/sample");
cockroachDS.setUser("root");
cockroachDS.setPassword("");

// Connect to H2
org.h2.jdbcx.JdbcDataSource h2DS = new org.h2.jdbcx.JdbcDataSource();
h2DS.setURL("jdbc:h2:testdata;AUTO_SERVER=TRUE");
h2DS.setUser("");
h2DS.setPassword("");

// Add schemas
rootSchema.add("CRDB", 
    JdbcSchema.create(rootSchema, "CRDB", cockroachDS, 
        "sample",  // catalog
        "public")); // schema

rootSchema.add("H2DB", 
    JdbcSchema.create(rootSchema, "H2DB", h2DS,
        "DEFAULT",  // catalog
        "PUBLIC")); // schema

// Execute join query with simplified schema references
String sql = 
    "SELECT c.customer_name, o.order_id, o.order_date " +
    "FROM CRDB.customers c " +
    "JOIN H2DB.orders o ON c.customer_id = o.customer_id";

try (Statement statement = calciteConnection.createStatement()) {
    System.out.println("Executing query: " + sql);
    
    // Enable debug logging
    statement.execute("EXPLAIN PLAN FOR " + sql);
    ResultSet explainRs = statement.getResultSet();
    System.out.println("\nQuery Plan:");
    while (explainRs.next()) {
        System.out.println(explainRs.getString(1));
    }
    
    // Execute actual query
    ResultSet rs = statement.executeQuery(sql);

    // Print results
    System.out.println("\nQuery Results:");
    while (rs.next()) {
        System.out.printf("Customer: %s, Order ID: %s, Date: %s%n",
            rs.getString(1),
            rs.getString(2),
            rs.getString(3));
    }
} catch (SQLException e) {
    System.err.println("Error executing query: " + e.getMessage());
    e.printStackTrace();
}

// Clean up
connection.close();
Reasons:
  • RegEx Blacklisted phrase (1.5): solve this?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did anyone
  • Low reputation (1):
Posted by: Anoop

79395218

Date: 2025-01-28 21:26:29
Score: 0.5
Natty:
Report link

Your javascript code just needed a little tweaking. It should look something like this:

    // your previous code
    const formData = new FormData(form);
    const searchParams = new URLSearchParams();
    for (let [key, value] of formData.entries()) {
      searchParams.append(key.toString(), value.toString());
    }
    
    fetch(form.action, {
      method: 'POST',
      body: searchParams.toString(),
      headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
      },
    })
    // your other code

I just checked with myself, it should work, request.POST should now contain the form data. Check it out and let me know if it works for you?

p.s. I did not use your update_expense controller code.

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Serhii Fomenko

79395209

Date: 2025-01-28 21:24:28
Score: 0.5
Natty:
Report link

The simple answer would be as follow

In window.onload, "onload" is a method that invokes the function as soon as the whole page is ready to process the code. the function will only invoked after the whole page including other js/css/media files has been loaded properly then window.onload function fires and executes the code written in the method.

In $(document).ready() "ready" is a jQuery method that is used to invoke a function as soon as the DOM(document object model) is ready irrespective of whether images, CSS, or other asset files are loaded or not.

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

79395204

Date: 2025-01-28 21:21:26
Score: 9.5 🚩
Natty:
Report link

O erro indica que o Flutter está tendo problemas para encontrar e executar o Java corretamente. Ele tenta usar um caminho incorreto, misturando dois endereços: C:\Program Files\Java\jdk-17 e C:\flutter/bin/internal/exit_with_errorlevel.bat\bin\java. Vamos resolver isso.


Como resolver esse problema:

  1. Garanta que o JAVA_HOME está configurado corretamente

  1. Garanta que %JAVA_HOME%\bin está na variável Path
  1. Corrija o erro do Flutter com o comando direto Esse problema às vezes ocorre porque o Flutter confunde os caminhos. Para corrigir, você pode forçar o Flutter a usar o Java correto:

  2. Abra o terminal e configure o Java diretamente no Flutter:

    flutter config --android-studio-dir="C:\Program Files\Android\Android Studio"
    flutter config --jdk-dir="C:\Program Files\Java\jdk-17"
    
    
    Substitua o caminho pelo local real do Android Studio e do Java, se forem diferentes.
    
    

4. Verifique novamente


Boa sorte😊

Reasons:
  • Blacklisted phrase (3): você
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): porque
  • Blacklisted phrase (1): não
  • RegEx Blacklisted phrase (2): encontrar
  • RegEx Blacklisted phrase (2): encontre
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mauricio Henrique

79395203

Date: 2025-01-28 21:21:26
Score: 3
Natty:
Report link

Consider this an addon to the answer by @Orkhan Alikhanov.

The reason it doesn't work in DbVisualizer is because that program (for some unknown reason) does not allow (difficult?) statements. You can fix this by turning on what they call "dialects" in the settings:

Tool Properties

Then, both suggestions in the answer by Orkhan should work.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Orkhan
  • Low reputation (1):
Posted by: yaldum

79395185

Date: 2025-01-28 21:11:23
Score: 0.5
Natty:
Report link

To solve the issue I was having I needed to use a delegated account. I couldn't add the service account email directly due to workspace limitations but it was able to act under an email in the workspace

    credentials = service_account.Credentials.from_service_account_file(
        path.join(path.dirname(__file__), "config", "credentials.json"),
        scopes=scopes,
    )

    delegated_creds = credentials.with_subject("[email protected]")
    self.service = build("drive", "v3", credentials=delegated_creds)
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Rafael Cenzano

79395178

Date: 2025-01-28 21:08:22
Score: 4.5
Natty: 8.5
Report link

What if it isn't there? That was my question. I've seen it in most of my apps because I'd set runas to admin but I can't find it and my app won't allow file access on the computer. Anything? Thanks for any help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): any help
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What if it is
  • Low reputation (1):
Posted by: piBoss

79395176

Date: 2025-01-28 21:06:20
Score: 1
Natty:
Report link

Okay, I manage to solve this issue by doing these steps:

This should solve your problem, men. Remember that if for any reason you want to export to Android 15 then you need to migrate to Unity 6, no other solution.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eder Martínez

79395173

Date: 2025-01-28 21:06:20
Score: 1.5
Natty:
Report link

To update @miradulo's great answer, the whis=range syntax was deprecated staring in matplotlib 3.3. The matplotlib 3.3+ way of forcing whiskers to cover the entire range of data is:

df.boxplot(grid=False, figsize=(9, 4), whis=(0, 100))

example boxplot with whiskers indicated min and max values

(docs for matplotlib.axes.Axes.boxplot)

Alternately, you can remove whiskers all together and just show the interquartile range by combining whis=0 with the showfliers and showcaps arguments:

df.boxplot(grid=False, figsize=(9, 4), whis=0, showfliers=False, showcaps=False)

example boxplot with whiskers removed showing just the interquartile range

Example data:

import pandas as pd

example_data = {
    2013: [1.09, 1.73, 2.23, 2.69], 2014: [0.97, 1.68, 2.00, 2.35], 
    2015: [1.04, 1.28, 1.85, 2.11], 2016: [0.86, 1.14, 2.12, 2.25], 
    2017: [1.08, 2.26, 2.44, 2.57]
}
df = pd.DataFrame(example_data)
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @miradulo's
  • Low reputation (0.5):
Posted by: Rachel W

79395170

Date: 2025-01-28 21:01:19
Score: 2.5
Natty:
Report link

const handleScroll = (e) => { const reachedBottom = Math.ceil(e.target.scrollTop + e.target.clientHeight) >= e.target.scrollHeight; if (reachedBottom) { // do something } };

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

79395169

Date: 2025-01-28 21:01:19
Score: 2
Natty:
Report link

You may try:

=sumif(TRANSPOSE($J$15:$AB$15),"Non-Clinical",$D$4:$D$22)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Jats PPG

79395159

Date: 2025-01-28 20:58:17
Score: 4
Natty:
Report link

I'm not "reputable" enough to add a comment to the OP, but I wanted to ask if you ever resolved this. I'm having the same issue under the same OS. I wonder if newer versions of httpuv no longer work on Win7 for some reason, as it does work fine for me on a Win10 machine.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: ebuhle

79395152

Date: 2025-01-28 20:54:17
Score: 1
Natty:
Report link

add-

.secondary-menu-class{

 display : flex;

 justify content : center ;

 align items : center;

}

To make sure that this is the correct class, you can add a background color and check that you are indeed aware of what you are doing.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: לאה גולדברג

79395151

Date: 2025-01-28 20:54:17
Score: 0.5
Natty:
Report link

You can use the logical function GREATEST () which returns the greater of a list of numbers.

SELECT GREATEST(<COMPLICATED CODE THAT RETURNS A SINGLE INT>, 1)

https://learn.microsoft.com/en-us/sql/t-sql/functions/logical-functions-greatest-transact-sql?view=sql-server-ver16

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Travis Peterson

79395148

Date: 2025-01-28 20:53:16
Score: 2.5
Natty:
Report link

It turns out that this was caused by the client itself NOT the SQL syntax.

Apparently DBeaver was the culprit. If anyone experiences this issue with DBeaver, there is an option to turn off variables.

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

79395147

Date: 2025-01-28 20:53:16
Score: 1.5
Natty:
Report link

Did you used TypeVar correctly? Here is an example

from typing import Sequence, cast, TypeVar, Type

T = TypeVar("T")


def map_cast(T: Type[T], seq: Sequence) -> Sequence[T]:
    """Cast a sequence of elements to a sequence of elements of given type."""
    return [cast(T, x) for x in seq]


a = map_cast(str, [1, 2, 3]) # a will have type hint is Sequence[str]

print(a)
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you use
  • Low reputation (1):
Posted by: Vũ Trí Anh Hoàng

79395141

Date: 2025-01-28 20:48:15
Score: 3.5
Natty:
Report link

For some reason mine only works when i use ' python -m notebook '

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

79395134

Date: 2025-01-28 20:46:15
Score: 3
Natty:
Report link

Snap curl isnt working for nvm we have to download the curl from apt its takes too much time for solve this problem even ai doesnt solve this problem

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

79395131

Date: 2025-01-28 20:45:14
Score: 9
Natty: 7
Report link

I have the same error but when I provide an absolute linux path to the file, it throws an error like this. "java.io.FileNotFoundException: ServletContext resource [/appl/suze/cert.jks] cannot be resolved to URL because it does not exist". If I place the same file under /src/main/resource packaged with jar, its working. My use-case is to make it work with external path. Any help?

Reasons:
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (1): I have the same error
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sujith

79395123

Date: 2025-01-28 20:42:13
Score: 1
Natty:
Report link

The talk usually includes the science behind meditation, showing how it can positively impact brain function and overall quality of life.

The speaker frequently emphasizes the transformative power of mindfulness practice, stressing how even brief meditation sessions can significantly improve mental well-being by reducing anxiety, improving focus, and increasing self-awareness.

This helps people better navigate the stresses of daily life by learning to observe their thoughts and emotions without passing judgment.

Important topics frequently discussed in a meditation TED talk:

1).The advantages of meditating higher self-awareness, better focus, better emotional control, less stress, and the ability to counteract harmful thought patterns.

2). The fundamental idea of meditation is mindfulness practice, which is focusing on the here and now without passing judgment and noticing thoughts and emotions as they come up scientifically.

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

79395121

Date: 2025-01-28 20:41:12
Score: 1
Natty:
Report link

Answering since I cannot add comments. I'm running Git on Windows and the following alias works for me, it is very similar to yours:

git config --global alias.pullall !"git pull && git submodule update --init --recursive"

Then you can run the command git pullall. Add Alias Use Alias

I don't remember why it was, but my alias wasn't working when I used single quotes to wrap my command. May have been a Windows-issue.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dirtyllama13

79395116

Date: 2025-01-28 20:39:12
Score: 1.5
Natty:
Report link
def __str__(self):
    return f"""{self.date} - {self.time}
           Tags: {self.tags}
           Text: {self.text}"""
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ViBP

79395106

Date: 2025-01-28 20:33:10
Score: 3
Natty:
Report link

Once the token is found, add it here and your app won't have issues.

Manage Debug Tokens

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

79395105

Date: 2025-01-28 20:32:09
Score: 5
Natty: 6
Report link

I did add it to home, and when I click on the icon of my home I still see this "Push notifications are not supported...".

Is there something else I have to do?

Reasons:
  • Blacklisted phrase (1): I have to do
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Ric

79395091

Date: 2025-01-28 20:25:07
Score: 1.5
Natty:
Report link

Need environment variables to be defined here. I resolved the same issue for me by create three paths

enter image description here

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: NNM

79395083

Date: 2025-01-28 20:22:06
Score: 3.5
Natty:
Report link

Try createPresignedPost instead.

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adrian Bartholomew

79395072

Date: 2025-01-28 20:20:06
Score: 1
Natty:
Report link

I found that Milvus treats % as a wildcard. To query literal % or other special characters, we need to escape them.

  1. Escape % and \n: use \% for % and \\n for newlines.

    • Prefix Match: field like "abc%".
    • Exact Match: field == "abc".
    • Intermediate % (e.g., "abc%def%") requires escaping.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: tmandyai

79395070

Date: 2025-01-28 20:20:06
Score: 1
Natty:
Report link

To use the auto-update mechanism for your Python GUI application using the GitHub Enterprise repository, you need to pass authentication and successfully download and execute the binary update. You can follow the steps below:

Steps to create auto-update tasks:

  1. Store Version Information
  2. Check for updates Use the GitHub API to get the version.txt file from the repository. Download the new EXE Authenticate using your GitHub Enterprise API token. Replace existing EXE Create a separate path and replace existing EXE with a newer one.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Adarsh Gupta

79395067

Date: 2025-01-28 20:19:06
Score: 1
Natty:
Report link

This is P2165R4: Compatibility between tuple, pair and tuple-like objects.

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

79395063

Date: 2025-01-28 20:18:05
Score: 1.5
Natty:
Report link

For Windows users, even with opening PowerShell as Administrator didn't solve the case for me...

The problem can be solve with the PowerShell(as Admin) command:

Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser

Answer Y to autorize the script's execution.

et Voila!

Now you can run rpm install without any restrictions

To learn more about execution policies : https://learn.microsoft.com/fr-fr/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.5

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: RoGKôT

79395047

Date: 2025-01-28 20:09:03
Score: 2.5
Natty:
Report link

If there are no Github status outages, as the other answers have suggested, and you have done the suggestions stated for dealing with the browser caching issues, then simply closing the pull request and then reopening it should clear it.

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

79395046

Date: 2025-01-28 20:09:03
Score: 3
Natty:
Report link

I used Snake YML to resolve this. I have to change the prop file to YML file and read it through snake yml. the used ObjectMapper to convert it to Map<String, Identity>

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

79395044

Date: 2025-01-28 20:09:03
Score: 1
Natty:
Report link

:white_check_mark: fixed by bumping Capybara to 3.40.0

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

79395041

Date: 2025-01-28 20:08:03
Score: 2
Natty:
Report link

I appreciate your offer to let me participate in the improvement of your app! However, I have now found a menu item in the Android settings that I could use to fix the problem. It's called “Manage background apps” (translated from german "Hintergrund-Apps verwalten". There I have added the BeaconScope app as “Always allow”. So far (since 4h 10′), the advertising has been running without interruption!

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

79395037

Date: 2025-01-28 20:06:02
Score: 6.5 🚩
Natty: 4
Report link

I'm having the same issue with Version: Version 24.3.0.284

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dr. Tony Griffin

79395017

Date: 2025-01-28 20:00:00
Score: 3
Natty:
Report link

I don’t really know what you mean but if you are trying to read this in your serial monitor on like VS Code or sum it should work. Try to use Platform.io.

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

79395010

Date: 2025-01-28 19:55:59
Score: 3
Natty:
Report link

Thx @musicamante I changed my app from QDialog to QWidget. Everything looks the same, but actually works.

Reasons:
  • Blacklisted phrase (1): Thx
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @musicamante
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Nippey

79395006

Date: 2025-01-28 19:53:58
Score: 0.5
Natty:
Report link

I found the answer:

import java.lang.management.ManagementFactory;
import java.util.List;


// Get jacoco agent jvm argument.
List<String> jvmArgs = ManagementFactory.getRuntimeMXBean().getInputArguments();
String jacocoAgentArg = jvmArgs.stream()
                .filter(arg -> arg.startsWith("-javaagent") && arg.contains("org.jacoco.agent"))
                .toArray(String[]::new)[0];
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: countinglambdastosleep

79394994

Date: 2025-01-28 19:45:57
Score: 0.5
Natty:
Report link

just to clarify the question asked running on Online Matplotlib Compiler

code:

import matplotlib.pyplot as plt
import numpy as np
import matplotlib

print(matplotlib.__version__)

t = np.linspace(0, 5, 301)  # Ajouter un point pour les bords
f = np.linspace(-10, 10, 501)  # Ajouter un point pour les bords

valeurs = np.zeros((500, 300))

#print('t :' , t)

valeurs[100:110, :] = 100
valeurs[400:440, :] = 5

valeurs[valeurs==0 ] = np.nan

fig = plt.pcolormesh(t, f,valeurs, norm=matplotlib.colors.Normalize(clip=True))
#plt.pcolormesh(valeurs) #Give the same result except on axis marks.

#plt.imshow(valeurs, interpolation='bilinear', origin='lower', extent=[t[0], t[-1], f[0], f[-1]], aspect='auto')

print(matplotlib.scale.get_scale_names())
plt.show()

Output:

3.5.2
['function', 'functionlog', 'linear', 'log', 'logit', 'symlog']

plot:

enter image description here

Does using : valeurs[valeurs==0 ] = np.nan

in :

import matplotlib.pyplot as plt
import numpy as np

t = np.linspace(0, 5, 301)  # Ajouter un point pour les bords
f = np.linspace(-1000, 1000, 501)  # Ajouter un point pour les bords

valeurs = np.zeros((500, 300))



valeurs[100, :] = 10
valeurs[400, :] = 10

valeurs[valeurs==0 ] = np.nan

plt.pcolormesh(t,f,valeurs)
#plt.pcolormesh(valeurs) #Give the same result except on axis marks.
plt.show()

pic:

enter image description here

improves your output ??

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: pippo1980

79394992

Date: 2025-01-28 19:45:57
Score: 0.5
Natty:
Report link

Ooops, links now fixed on the downloads page.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: JasonPlutext

79394987

Date: 2025-01-28 19:40:56
Score: 0.5
Natty:
Report link

Hello my problem was line in the .gitnore

# env files (can opt-in for committing if needed)
.env*

I was pushing the code to the github, where I was building production version in github-actions, but environment variables were accessible only on the local mashine.

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

79394955

Date: 2025-01-28 19:19:49
Score: 0.5
Natty:
Report link

Thanks to @Aryan Raj suggestion, here is a more explicit solution to my problem. Add the following lines to the Dockerfile:

# Add Tini
RUN apt-get install -y tini

# Set Tini as entrypoint
ENTRYPOINT ["/usr/bin/tini", "--"]

# Set your main application as CMD
CMD ["/usr/queue/qserver", "--port=1234"]

Now the qserver daemon runs as expected in the background!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @Aryan
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: mcExchange

79394951

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

created shell script & placed it at both places (.platform/confighooks/prebuild/test.sh) & (.platform/hooks/prebuild/test.sh) just to make sure that environment variable is available in both config & deploy stages . Note : config stage hooks .platform/confighooks/prebuild gets executed when there are eb config changes , which doesn't require any deployment, while deploy stage hooks .platform/hooks/prebuild gets executed post config stage , mostly in case of uploading new app version , changing few eb configs which requires deployment

can you share the script that works with .platform/hooks/prebuild/test.sh

the following script `# .ebextensions/setup-env.config container_commands: 01-extract-env: env: AWS_SECRET_ID: "Fn::GetOptionSetting": Namespace: "aws:elasticbeanstalk:application:environment" OptionName: AWS_SECRET_ID AWS_REGION: {"Ref" : "AWS::Region"} ENVFILE: .env

command: >
    aws secretsmanager get-secret-value --secret-id $AWS_SECRET_ID --region $AWS_REGION |
    jq -r '.SecretString' |
    jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]' > $ENVFILE`gives error `format error` 
Reasons:
  • RegEx Blacklisted phrase (2.5): can you share
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hammad Hameed Awan

79394946

Date: 2025-01-28 19:15:47
Score: 5
Natty: 4.5
Report link

I have the exact same problem. I found out that only one profile of my Chrome browser (the profile that I kinda need to use for my work) is facing this issue. None of my oyher profiles of Chrome nor any other browser is affected by this issue. And similarly adding even listener doesn't solve this problem.

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

79394937

Date: 2025-01-28 19:11:46
Score: 1
Natty:
Report link

had the same issue with Pycharm2024, i fixed it by renaming some newly updated files in the tmp folder as below -

enter image description here

under the path \AppData\Local\JetBrains\PyCharm2024.2\tmp

Reasons:
  • Whitelisted phrase (-2): i fixed
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: NNM

79394931

Date: 2025-01-28 19:09:45
Score: 2.5
Natty:
Report link

I have tried this, and it seems to have made my application very slow, I am thinking if it could be due to the next app compiling every time an endpoint is called?

I can't find enough on this online

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

79394925

Date: 2025-01-28 19:03:44
Score: 1.5
Natty:
Report link

I discovered the answer, in case anybody finds this. The problem is in the font-family. If I specify

pdf("font_plot.pdf", family="Lexend Deca Medium", width=4, height=4)

for example, then it works like a charm!

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

79394924

Date: 2025-01-28 19:02:43
Score: 7.5 🚩
Natty: 4
Report link

In Angular 16 version I have used ngx-extended-pdf-viewer 17. I am trying to print the document using inbuild print button but in before going to print I am changing the base64 which is provided to ngx-extended-pdf-viewer for watermark & afterprint I am again resetting the previous base64 value to that control but its not working whenever I am trying to replace this values. Its open an model & show pdf is in progress to print at 50% and stuck there. Please help me with this solution.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): its not working
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): Please help me
  • No code block (0.5):
  • Low reputation (1):
Posted by: AMOL KARLE

79394911

Date: 2025-01-28 18:59:41
Score: 9 🚩
Natty: 4
Report link

i'm having the exact same problem - same API, same error. i believe this is due to organization settings because it works for most of our customers besides one. i'm trying to narrow down and figure out which setting it is... James - any luck finding a resolution for this?

Reasons:
  • Blacklisted phrase (1.5): any luck
  • RegEx Blacklisted phrase (1): same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i'm having the exact same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Lev Waisberg

79394910

Date: 2025-01-28 18:58:40
Score: 1.5
Natty:
Report link

Yes you can but they will be connected to one merchant account for in-app purchases and such.

Also check out this link

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: user16930239

79394889

Date: 2025-01-28 18:47:37
Score: 4
Natty: 4
Report link

my issue was the name of the host resource is case sensitive.

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

79394887

Date: 2025-01-28 18:47:36
Score: 2.5
Natty:
Report link

I answered my question and it was my misunderstanding of streams. I need to put the de-init and re-init in its own Task block in the stream. Reason why is because putting these two await calls in their own streams lets me continue to emit values without getting blocked, so you see the .inProgress status as soon as it’s sent rather than having to wait for the re-init to complete

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

79394882

Date: 2025-01-28 18:44:35
Score: 10.5 🚩
Natty: 5.5
Report link

I am facing the same issue, did you able to solve it?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vivek Lande

79394881

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

One approach is to create a new FlutterEngine that doesn't call into UI code, when MainActivity is terminated, but when a foreground service notification is still active. You'll still need to refactor you code so the FlutterEngine is the one always making MethodChannel calls.

Here's an example.

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

79394879

Date: 2025-01-28 18:43:34
Score: 3
Natty:
Report link

I found the answer. I feel so stupid :( looking through the FIRST page in the SMS Retriever documentation, I found this

// Starts SmsRetriever, which waits for ONE matching SMS message until timeout // (5 minutes). The matching SMS message will be sent via a Broadcast Intent with // action SmsRetriever#SMS_RETRIEVED_ACTION. Task task = client.startSmsRetriever();

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

79394874

Date: 2025-01-28 18:42:34
Score: 3.5
Natty:
Report link

I found that my Bin directory in my web project had duplicate files that were appended with my computer name. Removing them corrected the issue.

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

79394873

Date: 2025-01-28 18:42:34
Score: 2.5
Natty:
Report link

maybe the block block-yui_3_17_2_1_1738087604786_10243 does not exist

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

79394867

Date: 2025-01-28 18:38:32
Score: 2.5
Natty:
Report link

I had to completely kill the codespace and spin up a brand new codespace for my changes to take effect

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

79394864

Date: 2025-01-28 18:37:32
Score: 2
Natty:
Report link

Steps 1 Uninstall plain after install.

Steps 2 Restart android studio.

Steps 3 control+space check working or not(steps 4).

Steps 4 not working then reinstall Android studio.

BY: ANDROID ALIANS

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

79394860

Date: 2025-01-28 18:35:32
Score: 2
Natty:
Report link

Had same issue.. I tried a lot but only reactive (not ref) + Object.assign() helped me with this issue, so:

  1. Create state --> const state = reactive({ visible: false, });
  2. composable/hook should return Object.assign(state, {toogle, close })
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lukian Maksym

79394859

Date: 2025-01-28 18:35:32
Score: 1
Natty:
Report link

No there is no Guidelines prohibiting this, but it makes the approval much much harder. and you cannot make it kids friendly.

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

79394853

Date: 2025-01-28 18:30:31
Score: 3.5
Natty:
Report link

enter image description herein android studio 2025 the Generate Signed Bundle/APK option is hidden so you have to search for it 1 photo = 1000 words follow steps in this diagram

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohsen Atyyat

79394852

Date: 2025-01-28 18:29:31
Score: 1.5
Natty:
Report link

Add this code to your css.

@media (min-width: 768px) {
  .product-div {
    grid-template-columns: 2fr 2fr;
  }
}

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