79112463

Date: 2024-10-22 04:46:56
Score: 0.5
Natty:
Report link

In laravel 11 you can exclude cookies from encryption as follow in

bootstrap/app.php

->withMiddleware(function (Middleware $middleware) {
    $middleware->encryptCookies(except: [
        'cookie_name_to_exclude',
    ]);
})

you can find in official docs at here

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

79112457

Date: 2024-10-22 04:43:55
Score: 2.5
Natty:
Report link

I have used stateful set to deploy Azure function app. This did not change function app pod name in turn function app folder in storage account remained constant, even after restarts.

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

79112450

Date: 2024-10-22 04:39:52
Score: 8.5 🚩
Natty:
Report link

Hi can you provide how this issue is resolved . I am facing exactly same issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you provide how
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing exactly same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bhavana Chandana

79112449

Date: 2024-10-22 04:39:52
Score: 1
Natty:
Report link
    var options = {
      series: [44, 55, 41, 17, 15],
      chart: {
      type: 'donut',
    },
    responsive: [{
      breakpoint: 480,
      options: {
        chart: {
          width: 200
        },
        legend: {
          position: 'bottom'
        }
      }
    }]
    };

    var chart = new ApexCharts(document.querySelector("#chart"), options);
    chart.render();
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user27923039

79112425

Date: 2024-10-22 04:29:49
Score: 5.5
Natty: 7
Report link

Not an answer but a link with an interesting title. 😁 https://leg.colorado.gov/sites/default/files/documents/2023A/bills/2023a_098_01.pdf

Reasons:
  • Blacklisted phrase (1): Not an answer
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user3874733

79112410

Date: 2024-10-22 04:18:46
Score: 2
Natty:
Report link

Turns out the Content-Transfer-Encoding was key, I needed to write the anchor tags as <a href=3D"http://testurl.com">test text</a>. Presumably the emails being sent by our partner businesses aren't displaying as intended due to their attempt at correctly encoding equals signs ending up as '3D instead of =3D.

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

79112408

Date: 2024-10-22 04:16:46
Score: 1.5
Natty:
Report link

[ksp] D:/code/ToDoApp/app/src/main/java/com/devdeveloper/todoapp/data/ToDoDao.kt:33: Query method parameters should either be a type that can be converted into a database column or a List / Array that contains such type. You can consider adding a Type Adapter for this.

i am using kotlin 2.0 room version 2.6.1 and id("com.google.devtools.ksp") version "2.0.0-1.0.22" apply false

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

79112406

Date: 2024-10-22 04:14:45
Score: 2
Natty:
Report link

I found the error is caused by the Android Gradle Plugin (AGP) version in the Flutter app, as defined in android/settings.gradle: plugins { ...... id "com.android.application" version "8.1.0" apply false ...... } The version "8.1.0" requires Java 17 to build, changing it to "7.3.0" will work with Java 8.

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

79112405

Date: 2024-10-22 04:14:45
Score: 1
Natty:
Report link

Windows Users can try out similar steps to Remove The Caches exception in Step 3

  1. Open Terminal
  2. cd C:\Users\your_username\.gradle (replace your_username)
  3. rd -r caches\
  4. Rebuild the Project

Hope it Helps!

Reasons:
  • Whitelisted phrase (-1): Hope it Helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tejasvin Vimal

79112394

Date: 2024-10-22 04:07:44
Score: 0.5
Natty:
Report link

I originally wanted to leave a comment but I don't have enough rep. So the answer is honestly, it depends. Usually for my team and I we have our cloud integration set up using Azure Dev Ops where we deploy our services to AWS lambda functions. Our deployment pipeline is a separate process from our actual environments. On one of my old teams, we would change the environment variables manually for our frontend deployments by commenting and uncommenting out the variables, because we never had the time to figure out how to dynamically handle that issue. On another team, we did the same for our .NET backend services using boolean logic gates.

For some of my personal projects, I'm currently dealing with the issue of deploying frontend to both my staging/dev environment and prod environment where I have to manually change the server URI before deploying the latest changes from main into the environments. I haven't had time to figure out a good solution (think the best would be to just write some shell script that will dynamically write to the .env file the server uri based on the flag I pass it).

A former teammate also told me, there is no such thing as best practice, only what is best for your needs after a careful calculation of your trade offs.

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

79112393

Date: 2024-10-22 04:07:44
Score: 2.5
Natty:
Report link

not sure if I have exact answer but if you go through the below article - it has all the details to search a job post on LinkedIn and I feel it might be easily transferable to your problem:

https://medium.com/p/8b1cd877ff01

If you have any follow up. let me know.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Girish Dev Kumar Chaurasiya

79112391

Date: 2024-10-22 04:06:44
Score: 2.5
Natty:
Report link

Hi This is happening because in the ODBC Simba Athena connector, verify SSL is enabled under advanced options, if you uncheck that option. The certificate issue would go. ODBC connector advanced options

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

79112389

Date: 2024-10-22 04:06:44
Score: 1.5
Natty:
Report link

I have tried many ways then end up with buildscript block below plugins block in project build.gradle file.

buildscript {
    val objectBoxVersion = libs.versions.objectbox.get()
    dependencies {
        classpath("io.objectbox:objectbox-gradle-plugin:$objectBoxVersion")
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nero Nguyen

79112381

Date: 2024-10-22 03:54:42
Score: 4
Natty: 6
Report link

I stumbled upon this site and I don't know anything about APIs, etc. Do I need to know programming to do this? I'm desperate to see the members of a channel

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: elle m.

79112376

Date: 2024-10-22 03:51:41
Score: 3
Natty:
Report link

getting the same on my side. No idea what to do

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

79112372

Date: 2024-10-22 03:47:40
Score: 1
Natty:
Report link

So, after getting in contact with Atlas, indeed they do document the fact that they delete records older than 24hrs.

https://www.mongodb.com/docs/atlas/cluster-additional-settings/#:~:text=Atlas%20enables%20auto%2Dscaling%20by,removes%20them%20from%20the%20oplog.

This is subtle though, and while it is linked to storage.oplogMinRetentionHours. That documentation explicitly says BOTH oplog capacity AND minRetention must be exceeeded prior to oplog logs being removed. There is no way my oplog with 3 records in it exceeded any oplog capacity settings (unless Atlas sets it to 0 by default) so I feel like this confusing at best.

There is no way for shared (M0/M2/M5) plans to set the oplogMinRetentionHours value either, which was a bit more obvious in the documentation.

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

79112369

Date: 2024-10-22 03:47:40
Score: 1.5
Natty:
Report link

I have seen this before, but not with Xcode 16
What worked for me was to clear Xcode cache and indexes.
System Preferences > Storage > Developer enter image description here

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: Son Nguyen

79112368

Date: 2024-10-22 03:47:40
Score: 2
Natty:
Report link

docker system prune -f

The sh 'docker system prune -f' step runs the command to remove all unused Docker objects (images, containers, volumes, networks, etc.). The -f flag forces the prune without interactive confirmation (i.e., you don’t have to manually approve it).

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

79112357

Date: 2024-10-22 03:39:38
Score: 1.5
Natty:
Report link

Answer provided as a comment by Iroha works perfectly:

title = parse(text = deparse(bquote("Continents with" ~ italic(.(species)))))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Simeon

79112353

Date: 2024-10-22 03:37:38
Score: 0.5
Natty:
Report link

Cannot deploy on weblogic 14c. i have modify web.xml, reference from oracle weblogic 14c official document, resolve my problem.

VALIDATION PROBLEMS WERE FOUND <2:3> problem: cvc-enumeration-valid: string value '4.0' is not a valid enumeration value for web-app-versionType in namespace http://java.sun.com/xml/ns/javaee

web.xml Namespace Declaration and Schema Location The correct text for the namespace declaration and schema location for the web.xml file is as follows.

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" 
id="WebApp_ID" version="4.0">

links: https://docs.oracle.com/en/middleware/standalone/weblogic-server/14.1.1.0/wbapp/web_xml.html#GUID-FA7981E1-7575-4EC2-8E6D-AB37652E6608

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Cannot
  • Low reputation (1):
Posted by: hhyygg2009

79112331

Date: 2024-10-22 03:23:35
Score: 2.5
Natty:
Report link

Found the issue, so version 0.18.21 has a part for installing an executable in the setup.py file. I'm guessing this has been depricated since GX Cloud is now the preferred method to use to interact or setup expectations.

Thanks all for pointing me in the right direction.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jae

79112320

Date: 2024-10-22 03:14:34
Score: 1
Natty:
Report link

For Mac-:

Increase Android Gradle version and AGP, then change the Android JDK version to latest from project structure , mention that version in Gradle

 compileOptions {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_21
        targetCompatibility JavaVersion.VERSION_21
    }
}

enter image description here

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

79112319

Date: 2024-10-22 03:14:34
Score: 2.5
Natty:
Report link

just unlink your laravel storage and link again.

  1. rm public/storage
  2. php artisan storage:link
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user3777

79112293

Date: 2024-10-22 02:57:30
Score: 2
Natty:
Report link

Hi it seems like you hit the maximum value that Java can handle for an integer, for such high value, you can try :

var num1 = BigInteger("340282000000000000000000000000000000001");

var num2 = BigInteger("340282000000000000000000000000000000000");

BigInteger class is used for the mathematical operation which involves very big integer calculations that are outside the limit of all available primitive data types.

Reasons:
  • No code block (0.5):
  • Filler text (0.5): 00000000000000000000000000000000
  • Filler text (0): 000000000000000000000000000000000
  • Low reputation (1):
Posted by: Gauthier_D

79112290

Date: 2024-10-22 02:56:30
Score: 1
Natty:
Report link

Change it to:

objectbox = { id = "io.objectbox:objectbox-gradle-plugin", version.ref = "objectbox" }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Robert Jamison

79112286

Date: 2024-10-22 02:52:29
Score: 3.5
Natty:
Report link

As an alternative to neural networks, a hashtron network could be trained.

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

79112282

Date: 2024-10-22 02:51:28
Score: 1.5
Natty:
Report link

I faced the same issue and solved it by switching to the correct directory.

You can do this by clicking the profile button in the top-right corner and selecting 'Switch directory.' After switching directories, you will still need to switch accounts by clicking the 'Accounts' tab, which is located between the 'Create Unlimited Account' button and the notification button.

However, I still face a login issue on the API portal, where it says the same email has been used for two or more users.

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

79112275

Date: 2024-10-22 02:46:27
Score: 4
Natty:
Report link

Per the very helpful Geoserver forums, here is the resolution? https://discourse.osgeo.org/t/imagemosaic-timeregex-properites-not-reading-correctly/110680

In short: Shapefiles don't support time values, so have to move to postGIS.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DarwinsBeard

79112265

Date: 2024-10-22 02:41:26
Score: 1.5
Natty:
Report link

The issue was wrong open SSL binaries, I had fetched direct from OPEN SSL but this is not correct for Indy.

Indy currently supports up to OpenSSL 1.0.2u, which you can get from Indy's OpenSSL-Binaries repo.

Once I fetched the correct 32bit DLLs for my application the SMTP SSL worked again. Both 32bit and 64 bit are available from the Indy OpenSSL-Binaries Repo.

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

79112262

Date: 2024-10-22 02:38:26
Score: 2
Natty:
Report link

In my case, I had to reboot the Digital Ocean droplet, then I was able to update the composer again.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Nguyễn Anh Tuấn

79112257

Date: 2024-10-22 02:35:25
Score: 1.5
Natty:
Report link

You can try running poetry remove python-decouple in the shell to the right of your main.py

According to poetry docs https://python-poetry.org/docs/cli/#remove

You can also use a --dry-run option if you are concerned

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

79112251

Date: 2024-10-22 02:30:24
Score: 4
Natty:
Report link

I found the answer (via reddit) https://github.com/estin/simple-completion-language-server is the best way for now

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

79112250

Date: 2024-10-22 02:30:24
Score: 1
Natty:
Report link

here is a inline example using when()

val testBoolean = true;
val converted = when(testBoolean){true->1; false->0}
println("This Boolean to Int = $converted")
println("This Boolean to String ${ when(testBoolean){true->"ON"; false->"OFF"} }")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: semafxtom

79112248

Date: 2024-10-22 02:29:24
Score: 3
Natty:
Report link

table.include.list works for newer versions of debezium table.whitelist is for 1.X

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

79112247

Date: 2024-10-22 02:28:23
Score: 3.5
Natty:
Report link

I think you can try to use a matrix visual

enter link description here

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

79112243

Date: 2024-10-22 02:25:23
Score: 2.5
Natty:
Report link

It looks like you are using the ngrx/data feature to manage your list of reports. That package works well for simple REST operations. What I would do is create another store for selectedForReports, since this functionality is outside of the functionality that the entity data package provides.

So, use your forReports store that uses ngrx/data to handle the query, get, update, and delete operations for the forReports, and then create another regular store to handle the selectedForReports actions and state.

Checkout the docs for additionalCollectionState. They basically require you to setup new reducers and result handlers when you use this property, it's not much different than setting up another store. Why not just avoid the complexity of this and just set up a separate store for selectedForReports?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: dzylich

79112242

Date: 2024-10-22 02:24:23
Score: 2.5
Natty:
Report link

You can have a socket.io code call some javascript and set the cookie but imagine how insecure this would be.

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

79112235

Date: 2024-10-22 02:20:22
Score: 2.5
Natty:
Report link

When I get form on node.js server it gives me unexpected end of form error I have created form using

let formData = new FormData(); formData.append('file', file);

const response = await fetch('/api/uploadToAssemblyAi', { method: 'POST', body: formData, });

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Shubham Rathod

79112234

Date: 2024-10-22 02:19:22
Score: 1
Natty:
Report link

I think that's because you are missing some close bracket in your DAX coding. The brackets should display in pairs.

enter image description here

pls make sure you put the close bracket in the right place, otherwise it will automatically add those missing close brackets in the end.

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

79112223

Date: 2024-10-22 02:13:18
Score: 9.5 🚩
Natty: 5.5
Report link

Did you find a solution for this issue?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution for this is
  • Low reputation (1):
Posted by: Sivajothi Periyasamy

79112222

Date: 2024-10-22 02:13:18
Score: 1
Natty:
Report link

My workaround (thanks to you, taller) is to use the cell's alt text to store a ID tag and the path of the image. This can then be read as the cell's formula property. I can count the images by looping through a range and looking for my ID tag using instr and can have the path and filename (extracted from the path) as needed.

When a picture is placed OVER a cell, I save the name which shows up as a shape (only while placed over cells). I use that saved name to place the picture back in the same cell:

ActiveSheet.Shapes(SavedName).PlacePictureInCell

Until we have better developer docs and more object properties, this will be OK.

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

79112214

Date: 2024-10-22 02:09:17
Score: 1.5
Natty:
Report link

The only use case i found of Promise is

setTimeout or fetch api call

or as others mentioned reading files.

Nothing asynchronous can actually be done in promise. Not even using web workers to perform async operation with promise. Its so confusing as, there's actually no use of promise at all. Wonder why/who created it.

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

79112211

Date: 2024-10-22 02:05:16
Score: 0.5
Natty:
Report link

You could extract your Scaffold into a new widget, or wrap it with a Builder.

context.read<SportsBloc>().add(GetRegisterEvent()) in onTap is using the BuildContext of RegisterScreen which is above BlocProvider

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

79112201

Date: 2024-10-22 01:58:15
Score: 5
Natty:
Report link

You can refer to python knowledge here: https://pythonid.com/tutorials/python-for-loops

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hữu Đoàn Trần

79112197

Date: 2024-10-22 01:55:14
Score: 1
Natty:
Report link

in the host field of the airbyte connection, you need to specify the scheme either http or https followed by the FQDN(fully qualified domain name) and the port for e.g. https:// followed by host.domain:portnumber/

you can review this airflow docs link: airflow.apache.org/docs/apache-airflow-providers-airbyte/stable/… –

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

79112196

Date: 2024-10-22 01:55:14
Score: 1.5
Natty:
Report link

Athough you added parameter: {withCredentials: true} in your request, the browser still not included cookies to send your request because: If you still run your project without SSL, the browser still not include cookies when sending HTTP request. To add SSL into your localhost, let try using mkcert, by follow: enter link description here

  1. First, we need install certificate authorities (CAs) corresponding with you machine. Incase , you use window, let try: enter link description here

  2. follow mkcert instruction

  3. add SSL to your front-end project

  4. Config Angular.json file to use SSL Config 'option' inside the 'serve' like that:

    "options": { "ssl": true, "sslCert": "ssl/localhost.pem", "sslKey": "ssl/localhost-key.pem" },

angular.json configuration

Finally, you run your app, it will run localhost with SSL: https://localhost:4200/

Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lê Hồng Thái

79112191

Date: 2024-10-22 01:49:13
Score: 4
Natty:
Report link

Can you show me more details about userService’s login function?

Also if you use spring security, check SpringSecurity config.

//ex
@Override
protected void configure(HttpSecurity http) throws Exception {
    http
        .authorizeRequests()
        .antMatchers("/login").permitAll()  
        .anyRequest().authenticated();   
}
Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show me
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: lohny

79112187

Date: 2024-10-22 01:47:12
Score: 3
Natty:
Report link

Found mine on WindowsApps, a hidden folder in Program Files. Although it doesn't run.

On another computer though with it's own copy of PAD, it does.

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

79112181

Date: 2024-10-22 01:41:11
Score: 0.5
Natty:
Report link

I realize this is an old post, but I had the exact same problem with an Ubuntu server. I had 'PasswordAuthentication no' and 'PubKeyAuthentication yes' in my sshd_config and I was able to connect to the server with my private key, but the moment I tried to connect to the database with my MySQL client using the same key, it would always fail. For me the solution was to generate a new SSH key with PuttyGen. In the top menu, go to 'Key' and 'Parameters for saving key file'. Ensure the ppk version is 2 and not 3, and choose ECDSA as the key type.

Hopefully this helps you or someone else that comes across this post.

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

79112177

Date: 2024-10-22 01:35:08
Score: 6.5 🚩
Natty: 4
Report link

I have the same question,but after upgrading the package version of imbalanced-learner to the 0.12.4,I find it work fine.My original version is 0.11.1. You can have a try.

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

79112175

Date: 2024-10-22 01:33:07
Score: 5.5
Natty:
Report link

Could you let me know which field is being skipped and share the link to your form? It sounds like there may be a validation issue on the form.

I’ve worked extensively with WordPress and Gravity Forms for over 5 years now. This issue is likely due to JavaScript or a conflict with another plugin. I can help you troubleshoot and implement a fix, ensuring that your mandatory field is correctly enforced.

Let’s connect via Zoom to dive deeper into this. I’m confident we can resolve this quickly and improve your data quality.

Best Regards, Clement

Reasons:
  • Blacklisted phrase (0.5): Best Regards
  • Blacklisted phrase (1): Regards
  • RegEx Blacklisted phrase (2.5): Could you let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Clement Adegoroye

79112169

Date: 2024-10-22 01:29:06
Score: 5
Natty: 5
Report link

Is Water Nymph aka Vesna Car going to stay out of my Nicholas Di Chiara's life from October of 2024 to February of 2025?

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

79112164

Date: 2024-10-22 01:25:04
Score: 2.5
Natty:
Report link

The question focuses on generating and downloading a CSV file via a sequence triggered by a form. This can be easily managed using JavaScript by creating the CSV on the server-side, then sending it back to the client for download. A common approach is to use a Blob object and trigger a download via a button or link. This reminds me of the flexibility in Pokerogue and Pokerogue Dex, where seamless interactions create a smooth gaming experience.

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

79112153

Date: 2024-10-22 01:14:02
Score: 1.5
Natty:
Report link

The only simple way I found that allowed me to complete my requirement was to first publish the spreadsheet, then fetch from the published URL. That way, the data isn't cut off like it would from the docs.google.com endpoint.

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

79112147

Date: 2024-10-22 01:13:02
Score: 1
Natty:
Report link

You can do it with pd.merge

pd.merge(df2, df1, on='x', how='inner', suffixes=('_1', '_2'))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: poisoned_monkey

79112146

Date: 2024-10-22 01:13:02
Score: 0.5
Natty:
Report link

Your Can achieve this with ImageView and EditText.

Here is XML Code Example

<androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/search_container"
    android:layout_width="wrap_content"
    android:layout_height="70dp"
    android:layout_margin="30dp"
    android:background="@drawable/round_corner"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">


    <ImageView
        android:id="@+id/search_icon"
        android:layout_width="70dp"
        android:layout_height="50dp"
        android:layout_margin="5dp"
        android:scaleType="center"
        android:src="@drawable/ic_edit_24"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@id/search_edit_text"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <EditText
        android:id="@+id/search_edit_text"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:gravity="start|center_vertical"
        android:hint="Search..."
        android:paddingEnd="20dp"
        android:visibility="gone"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toEndOf="@id/search_icon"
        app:layout_constraintTop_toTopOf="parent" />


</androidx.constraintlayout.widget.ConstraintLayout>

Here is Kotlin Code Example

 override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main2)
    
   var searchIcon:ImageView = findViewById(R.id.search_icon)
   var searchEditText:EditText = findViewById(R.id.search_edit_text)
    searchEditText.background = null
    searchEditText.visibility = View.GONE

    val constraintLayout = findViewById<ConstraintLayout>(R.id.search_container)
    val constraintSet = ConstraintSet()
    constraintSet.clone(constraintLayout)

    searchEditText.visibility = View.VISIBLE
    searchEditText.hint = "Search"
    searchEditText.requestFocus()

    val widthAnimator = ValueAnimator.ofInt(
        0,
        (constraintLayout.parent as View).width * 6 / 10
    ) // 60% of parent width
    widthAnimator.addUpdateListener { valueAnimator ->
        val layoutParams = searchEditText.layoutParams
        layoutParams.width = valueAnimator.animatedValue as Int
        searchEditText.layoutParams = layoutParams
    }

    widthAnimator.duration = 400 // Keep the same duration for balance
    widthAnimator.start()

    searchIcon.setImageResource(R.drawable.ic_done_24)
    val imm = getSystemService(INPUT_METHOD_SERVICE) as InputMethodManager
    imm.showSoftInput(searchEditText, InputMethodManager.SHOW_IMPLICIT)


}

Here is Final Output in Gif enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hafiz Waqas

79112133

Date: 2024-10-22 01:06:00
Score: 1
Natty:
Report link

The answer (a very comprehensive one) is here: https://stackoverflow.com/a/64771432/4582204 (and this question will likely be closed as a duplicate).

But I wanted to simply and quickly say that in

-replace regex, replacement

the regex is a regex, and needs the two backslashes \\ because the first has to escape the second, but the replacement is literal, no escaping needed, so \\\\ is not two escaped backslashes but literally 4 backslashes.

So the correct code is:

'foo\bar' -replace '\\', '\\'

And while at first glance this code appears to be doing nothing, it is doing something, because the first backslash is an escape and second term is not escaped.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: john v kumpf

79112129

Date: 2024-10-22 01:02:59
Score: 2
Natty:
Report link

The comments explain the problem: when passing unnamed arguments to gsub and sub, the variable goes third.

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

79112126

Date: 2024-10-22 01:02:59
Score: 1.5
Natty:
Report link

Using the following options has it working now:

const options = {
    bounds: defaultBounds,
    componentRestrictions: {country: 'us'},
    strictBounds: false,
    fields: ["address_components", "geometry"],
    types: ["address"],
};

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

79112124

Date: 2024-10-22 01:00:57
Score: 8 🚩
Natty:
Report link

we are also facing a similar kind of issue Do you have any update?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cloud Engineer

79112111

Date: 2024-10-22 00:54:56
Score: 2
Natty:
Report link

fix mysqld.cnf

sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf

then add the bottom of the document

default-time-zone="UTC+N" (In my case, live in Korea: default-time-zone="+9:00")

then restart

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

79112107

Date: 2024-10-22 00:51:55
Score: 2
Natty:
Report link

This last answer (user7711283) is working under windows with a minor fix:

class RAWMOUSE(ctypes.Structure):
_fields_ = [
    ("usFlags", ctypes.c_ushort),
    #("ulButtons", ctypes.c_ulong),
    ("usButtonFlags", ctypes.c_ushort),
    ("usButtonData", ctypes.c_ushort),
    ("ulRawButtons", ctypes.c_ulong),
    ("lLastX", ctypes.c_long),
    ("lLastY", ctypes.c_long),
    ("ulExtraInformation", ctypes.c_ulong)
]

Indeed, as the struct is a union, you need to comment either "usButtons" or both "usButtonData" and "usButtonFlags"

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): user7711283
  • Low reputation (1):
Posted by: BilboX

79112105

Date: 2024-10-22 00:49:54
Score: 2.5
Natty:
Report link

juicefs may too. the db data can be in S3, but juicesfs provides the DB with a posix like API.

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

79112104

Date: 2024-10-22 00:46:54
Score: 2.5
Natty:
Report link

If you have problem and you use windows. exec this cmd :

".\android\gradlew.bat build --refresh-dependencies"

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

79112085

Date: 2024-10-22 00:35:52
Score: 2.5
Natty:
Report link

If anyone is encountering this issue, go to System Settings -> Privacy & Security -> Full Disk Access. Make sure Android Studio is full disk access.

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

79112066

Date: 2024-10-22 00:20:48
Score: 8 🚩
Natty: 5.5
Report link

Hi please can I know what you did to fix this having the same problem with vs code?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Neoko XXX

79112036

Date: 2024-10-21 23:48:41
Score: 1
Natty:
Report link

I was able to load the new API reference using the below method.

using Acumatica.Default_22_200_001.Model;
using Acumatica.RESTClient.Client;

using static Acumatica.RESTClient.AuthApi.AuthApiExtensions;
using static Acumatica.RESTClient.ContractBasedApi.ApiClientExtensions;  

var client = new ApiClient(siteURL);
client.Login(username, password, tenant, branch, locale);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tharidhi Perera

79112029

Date: 2024-10-21 23:41:40
Score: 2.5
Natty:
Report link

Water Source → Refill Stations → Consumers | | | Resource Use Refill Process Refill Usage (Water) (Reusable Bottles) (Reduced Waste)

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

79112027

Date: 2024-10-21 23:40:39
Score: 11
Natty: 8.5
Report link

i am struggling with the same error, did you get a fix??

Reasons:
  • Blacklisted phrase (1): i am struggling
  • RegEx Blacklisted phrase (3): did you get a fix
  • RegEx Blacklisted phrase (1.5): fix??
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prince Maheshwari

79112015

Date: 2024-10-21 23:31:37
Score: 0.5
Natty:
Report link

Setting autoWidth: false in the DataTables config object fixed it for me.

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

79112011

Date: 2024-10-21 23:30:37
Score: 1.5
Natty:
Report link

Add -D LLVM_INSTALL_UTILS=ON to your CMAKE command.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dr. Ehsan Ali

79112007

Date: 2024-10-21 23:26:36
Score: 2
Natty:
Report link

Python external is a tricky one, I recommend you to remove the external and let spack install its own python.

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

79111981

Date: 2024-10-21 23:08:31
Score: 0.5
Natty:
Report link
import kotlin.random.Random


fun main() {
    // creates an instance of ArrayList<Int!>
    val list = ArrayList(List(10) { Random.nextInt() })
}

Verified on Kotlin v2.0.20

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

79111977

Date: 2024-10-21 23:06:29
Score: 8 🚩
Natty: 4
Report link

@rakitin, Could you explain to me how you organized the directory? I mean app.tsx, tab1, tab2 and tab3

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you explain
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @rakitin
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: victor costantini

79111974

Date: 2024-10-21 23:04:28
Score: 1
Natty:
Report link

This was a tricky one!
So please give me a thumbs up for sharing if this helps you. Thanks!

I had the same issue of Laravel Cashier saving fine to stripe but not to my database.
However, I was experiencing this on my local development environment.
Running stripe listen command fixed the issue.

Here are the details :
Understanding Why the Records Save Only When Running stripe listen.

The reason your subscription records are saved to your database only when you run:

stripe listen --forward-to http://localhost-url/stripe/webhook

is because your local development environment (http://localhost-url) is not accessible from the internet. Therefore, Stripe cannot send webhook events directly to your local server. The stripe listen command provided by the Stripe CLI acts as a proxy between Stripe's servers and your local machine, forwarding the webhook events to your local webhook endpoint.

In summary:

Without stripe listen: Stripe's servers cannot reach your local webhook endpoint (http://localhost-url/stripe/webhook) because it's not publicly accessible. With stripe listen: The Stripe CLI listens for events on Stripe's servers and forwards them to your local endpoint, allowing your application to process the webhooks.


Also, I had added this route to my web.php file.

Cashier route I added for stripe webhooks

You don't need to add this route. Cashier adds it on it's own for you.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): I had the same
  • RegEx Blacklisted phrase (2.5): please give me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 13garth

79111956

Date: 2024-10-21 22:57:27
Score: 2.5
Natty:
Report link

For what it's worth I didn't find what I was looking for in this post. Here's the skinny, I'm using Vitepress and I want to override some styles that are obviously scoped but I'm using a standalone override css file.

I can't seem to attach any sort of "scoped" status to the standalone css file. Also the way that it's included / imported is through a JS file. Cause I thought maybe I could declare scoped in my import.

I'll update this if I figure out how to work around this.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bool

79111954

Date: 2024-10-21 22:57:27
Score: 1.5
Natty:
Report link

In your channel declaration pass 3ed parameter to spicify guards

['guards '=>['sanctum']]
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TLEMCANI Abdelkadir

79111931

Date: 2024-10-21 22:39:23
Score: 2.5
Natty:
Report link

Render toast on page load To render a toast on initial page load it is required that the function toast() is called inside of a setTimeout or requestAnimationFrame.

https://sonner.emilkowal.ski/toast

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

79111927

Date: 2024-10-21 22:35:23
Score: 1.5
Natty:
Report link

You should probably just create a "base-template" project.

I don't think that Xcode has the legacy templates from the previous eras.

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

79111922

Date: 2024-10-21 22:31:22
Score: 1
Natty:
Report link

Ensure your VM has enough RAM so the language server doesn't OOM

If you're running several plugins and language servers, ensure the instance where you are running vscode has enough memory.

I was running vscode with ssh into a virtualbox, and well, I didn't allocate enough memory for the pylance language server to run, because it basically installs a nodejs server and runs it back vscode on your host machine.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: jm-nab

79111921

Date: 2024-10-21 22:30:22
Score: 1
Natty:
Report link
<select class="form-select" id="fldName" name="fldName" required>
     <option selected disabled>Choose one</option>
     <option value="1">a</option>
     <option value="2">b</option>
     <option value="3">c</option>
</select>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ali Rad

79111915

Date: 2024-10-21 22:29:21
Score: 2.5
Natty:
Report link

Setting the batch ingestion policy alone will not help the write latency.

Adding this option "writeMode":"Queued" to the Spark Kusto connector improved the write latency from 30 secs to sub-second for me.

It's documented here: https://github.com/Azure/azure-kusto-spark/blob/master/docs/KustoSink.md

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

79111912

Date: 2024-10-21 22:28:21
Score: 2
Natty:
Report link

You can add zero_copy_only=True to enforce/test if a copy is made: large_table.to_pandas(zero_copy_only=True) see https://arrow.apache.org/docs/python/generated/pyarrow.Table.html#pyarrow.Table.to_pandas

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

79111902

Date: 2024-10-21 22:24:20
Score: 1
Natty:
Report link

My answer illustrates a frequent motivation to move only the x-axis: stacked diagrams with different horizontal axes but hspace=0.

import numpy as np
from matplotlib.pyplot import subplots

t = np.linspace(0, 3*np.pi)
U = np.sin(t)
x = np.linspace(-4, 4)
y = 1/(1 + x**2)

fig, (ax1, ax2) = subplots(2, 1, figsize=(8, 5), gridspec_kw={'hspace': 0})
ax1.plot(t, U)
ax1.spines['bottom'].set_position(('data', 0)) #'zero')
ax2.plot(x, y)
ax2.set_ylim(0)
fig.tight_layout()
fig.show()

The result

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

79111901

Date: 2024-10-21 22:24:20
Score: 1
Natty:
Report link

On Ubuntu 20.04, --config-settings or --confirm-license params are not available with pip 24.2.

The solution for me was to set an environment variable to pre-accept the license terms before the pip install like this:

export PYQT5_LICENSE=1
pip3 install --upgrade PyQt5
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: anilkir

79111885

Date: 2024-10-21 22:15:16
Score: 6.5 🚩
Natty: 6
Report link

Ever find the solution? I am having a similar problem, however I notice my custom RPC is initially pinged successfully, then immediately after the default/fallback RPC is used. Not sure how to force the custom RPC.

Reasons:
  • Blacklisted phrase (1): I am having a similar problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having a similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Colin Cooley

79111882

Date: 2024-10-21 22:13:15
Score: 1.5
Natty:
Report link

The latest, release of Eclipse has removed Navigator which is a very crucial feature for developers help to them navigate through files and folders.

However, it can customize Project Explorer as needed.

Now can work as expected as Navigator before.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anura P. Kasthoori

79111878

Date: 2024-10-21 22:07:14
Score: 1.5
Natty:
Report link

Use reactor.util.function.Tuples.of(T1 t1, T2 t2)

Note that it uses the Tuples class.

Method signature:

static <T1,T2> Tuple2<T1,T2> of(T1 t1, T2 t2)

More methods and constructors available in the Javadoc

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

79111859

Date: 2024-10-21 21:57:11
Score: 0.5
Natty:
Report link

Sorry, I'm answering my own question. I found a solution and it's one I hadn't seen before in any of the posts related to this problem, perhaps because it's on express verion 4.21.1:

Simply change the following:

const express = require('express');
const app = express();
const port = 3100;

app.use(express.json());

To this:

const express = require('express');
const app = express();
var cors = require('cors')
const port = 3100;

app.use(cors())

app.use(express.json());

you must load the cors pakage with

npm install cors

and see:

https://github.com/expressjs/cors?tab=readme-ov-file#enabling-cors-pre-flight

for more information.

With that I could remove the mode: no-cors line from then origin fetch.

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

79111858

Date: 2024-10-21 21:57:11
Score: 3
Natty:
Report link

The Problem is WSL2. When i run the command inside the windows terminal, it works as exspected. I stil prefer the wsl if someone has a solution.

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

79111846

Date: 2024-10-21 21:51:10
Score: 1.5
Natty:
Report link

When I use the code below, I have a problem that the Image in CarouselView is not displayed, how can I fix this by leaving the Canvas error solution method: trying to use a recycled bitmap android.graphics.Bitmap maui

public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
    var builder = MauiApp.CreateBuilder();
    ...
 #if ANDROID
    
 
ImageHandler.Mapper.PrependToMapping(nameof(Microsoft.Maui.IImage.Source), 
(handler, view) => PrependToMappingImageSource(handler, view));
#endif

    return builder.Build();
}

#if ANDROID
public static void PrependToMappingImageSource(IImageHandler handler, 
Microsoft.Maui.IImage image)
{
    handler.PlatformView?.Clear();
}
#endif
}

Here is the code of my CarouselView

using PDconfigurator.Helpers;
namespace PDconfigurator.View.Controls;

public partial class ImageModalPage : ContentPage
{
public ImageModalPage(List<ImageSource> imageSources, int initialIndex)
{
    InitializeComponent();
    carouselView.ItemsSource = imageSources;
    carouselView.KeepCarouselPosition(initialIndex);
    if (imageSources.Count == 1)
    {
        carouselView.IsSwipeEnabled = false;
    }
}


private async void OnSwipe(object sender, SwipedEventArgs e)
{
    await CloseModal();
}

private async Task CloseModal()
{
    await App.Current.MainPage.Navigation.PopModalAsync();
}
}
Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): how can I fix this
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When I use the code
  • Low reputation (1):
Posted by: Влад Гурковский

79111803

Date: 2024-10-21 21:29:05
Score: 2.5
Natty:
Report link

subscription filter policy was not the correct way. Using config sets I could specify event destinations. Different config set = different environment

https://docs.aws.amazon.com/ses/latest/dg/event-destinations-manage.html

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

79111802

Date: 2024-10-21 21:29:03
Score: 9 🚩
Natty: 4
Report link

I am getting the same problem now but during export. Extremely frustrated, changed all the data types to numeric, decimal.. NOTHING HELPS. I just want to make a simple export. How can that be so difficult?!

Did anyone find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): Did anyone find a solution
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same problem
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Vladi

79111801

Date: 2024-10-21 21:29:03
Score: 1.5
Natty:
Report link

I am using Laravel Sail and the solution was deleting the storage folder inside public and recreated it inside the container using php artisan storage:link

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

79111798

Date: 2024-10-21 21:26:02
Score: 3
Natty:
Report link

I am into the same situation but my environment is vcenter based.

the SE's are unable to join controller and i am unable to figure out what is happening.

I have console access to the SE but the admin / admin doesn't works for me.

my controller version is 30.2.2-9108.

Output of https:///api/securechannel-status?is_controller=false

{"count": 2, "results": [{"_last_modified": "1729534976401619", "is_controller": false, "marked_for_delete": false, "name": "se-b00dcc3a-5b6a-4a52-8e6c-740cd6733e05", "status": "SECURE_CHANNEL_NONE", "uuid": "se-b00dcc3a-5b6a-4a52-8e6c-740cd6733e05", "url": "https://10.65.41.160/api/securechannelmapping/se-b00dcc3a-5b6a-4a52-8e6c-740cd6733e05"}, {"_last_modified": "1729534976404044", "is_controller": false, "marked_for_delete": false, "name": "se-994c00e4-3754-47d5-b72b-c303daa0727b", "status": "SECURE_CHANNEL_NONE", "uuid": "se-994c00e4-3754-47d5-b72b-c303daa0727b", "url": "https://10.65.41.160/api/securechannelmapping/se-994c00e4-3754-47d5-b72b-c303daa0727b"}]}

Any pointers on login credentials OR secure channel is appreciated. My gut feeling is that IP address is not assigned to the SE as i am unable to ping it from the controller when connected using SSH.

TIA Hitesh TIA

Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2): TIA
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hitesh Vinzoda

79111797

Date: 2024-10-21 21:25:02
Score: 0.5
Natty:
Report link

I'm only aware of an indirect way, namely: to dump the values of the do-loop in a string:

reset session
# n = *some integer*. For simplicity, let's take n = 2
n = 2
array med2[n]
med2[1] = 3.23; med2[2] = 5.43
s = 'MEDIA  '
do for [i=1:n]  {
s = s.gprintf("%8.2f",med2[i])
}
print s

Result:

MEDIA 3.23 5.43

I guess there may be a more direct way, like putting some symbol right after 'MEDIA ' and after the print in the loop. But I've got no idea.

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

79111795

Date: 2024-10-21 21:25:02
Score: 0.5
Natty:
Report link

You can simply create a WAF rule in clowdflare that skip all filters for traffic from your VPS IP. Note that you may need to include both IPv4 and IPv6.

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

79111781

Date: 2024-10-21 21:18:01
Score: 1
Natty:
Report link

I have submitted a NetSuite case to find out if this feature is either supported or has a known timeline when it would be. Here's the answer I got from NetSuite Support:

"As of the moment, we have already attached the enhancement to this case. This means that this specific feature is not yet available within NetSuite. There is no timeline as of the moment but once there is, we will let you know as soon as possible."

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

79111774

Date: 2024-10-21 21:16:00
Score: 0.5
Natty:
Report link

Using matplotlib.ticker can provide a solution indeed.

formatter = ticker.ScalarFormatter(useOffset=True, useMathText=True)
formatter.set_scientific(True)
formatter.set_powerlimits((-3, 4))  # define when to apply scientific notation

axs[i].xaxis.set_major_formatter(formatter)
axs[i].yaxis.set_major_formatter(formatter)

powerlimits defines which numbers are shown in scientific and which in decimal notation, referring to the exponents of 10. Outside the interval it will be scientific, inside decimal.

Resulting in: enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Márton Horváth

79111771

Date: 2024-10-21 21:15:00
Score: 2.5
Natty:
Report link

Open an SSIS solution then open the package in the solution. Right-click on the Control Flow view background, then toggle on the Variables. You can dock the Variables below the Connection Manager (or wherever you like).

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