79165626

Date: 2024-11-07 08:53:10
Score: 1
Natty:
Report link
void removeLastCharacter() {
  String str = "Something."; // input : "Something."
  String result = str.replaceRange(res.split("").length - 1, null, "");
  print(result); // output: "Something"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: siva karthikayan

79165625

Date: 2024-11-07 08:52:08
Score: 11 🚩
Natty: 6
Report link

I have the same issue... And I have never even added any authentication app of what I remember, so I can't log in and they keep charging me.. security by obscurity! Did you find a solution??

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

79165618

Date: 2024-11-07 08:50:07
Score: 2
Natty:
Report link

As stated in the "EDIT" section above, a workaround is to give up on tuples and use object types and literals instead.

But the best option would be to fix the microsoft/TypeScript#55632 issue: here is a PR microsoft/TypeScript#60434 that would give a proper solution to this problem if merged.

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

79165616

Date: 2024-11-07 08:49:07
Score: 2
Natty:
Report link

In the case of Micronaut, it's solved using the version 3.8.7, which comes with snakeyaml 2.0 support. See -> https://micronaut.io/2023/03/09/micronaut-framework-3-8-7-released/

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

79165610

Date: 2024-11-07 08:48:04
Score: 12 🚩
Natty: 6.5
Report link

Did you get any solution? I am facing the same :(

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (3): Did you get any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Sebastian Archila

79165608

Date: 2024-11-07 08:48:04
Score: 1.5
Natty:
Report link

Please check your Document Root , you Need to store your public folder in it , (Laravel Projects ) Check File Paths of index.php as your files located on your hosting server , see the example below to configure file location paths

DIR_.'/../com/com/vendor/autoload.php Root Directory (project root) |-- com |-- com |-- vendor |-- autoload.php

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

79165602

Date: 2024-11-07 08:46:04
Score: 1
Natty:
Report link

The root part of your Nginx config must point to the Laravel public directory. so based on your docker-comose volumes:

root /var/www/html/api/public;
try_files $uri index.php$args;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: hadi

79165597

Date: 2024-11-07 08:45:04
Score: 1.5
Natty:
Report link

This is not possible. Any element can only be rendered within the window canvas.

The example you showed is not from the page, but from the browser. Google Meet doesn't show the widget, the browser does.

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

79165593

Date: 2024-11-07 08:43:03
Score: 1
Natty:
Report link

In my case I was trying to write the json file in a folder which was already having a json file. So I change the location of the sink and it worked for me. All the best!!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nav

79165565

Date: 2024-11-07 08:33:00
Score: 0.5
Natty:
Report link

The problem was in the props passed to the target component Dialogs. It was like this:

type DialogsProps = {
    dialogs: Array<{id: number, name: string}>,
    messages: Array<{id: number, messageText: string}>,
    sendMessage: (messageText: string) => void
}

I changed it to the type used in the reducer:

type DialogType = {
    id: IdType,
    name: string
} type MessageType = {
    id: IdType,
    messageText: string
}
type DialogsProps = {
    dialogs: Array<DialogType>,
    messages: Array<MessageType>,
    sendMessage: (messageText: string) => void
}

Still don't fully understand the cause of the problem, but it's solved.

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

79165552

Date: 2024-11-07 08:27:59
Score: 1.5
Natty:
Report link

Simply Use this:

@GetMapping("/home")
public String getHome() {
    return "redirect:/home.html";
}

Note: The home.html file should be in src/main/resources/static/

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

79165546

Date: 2024-11-07 08:25:58
Score: 3
Natty:
Report link

Both columns need to be specified as Join Columns. Consider:

@ElementCollection
@CollectionTable(
  name = "person_location",
  joinColumns = { 
     @JoinColumn(name = "person_id"),
     @JoinColumn(name = "location_id")
  }
)
...

Please post more details in JPA form, so that a tested answer is possible.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please post
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: N Sarj

79165544

Date: 2024-11-07 08:23:58
Score: 2.5
Natty:
Report link

Next.js’s App Router has removed support for listening to router events like popstate, making it impossible to handle browser back events either natively via nextjs or manually through DOM events. This is a mess.

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

79165540

Date: 2024-11-07 08:22:58
Score: 1
Natty:
Report link

If you're looking to prevent screen recording on a website, DRM-X 4.0 could be a suitable solution for your needs. DRM-X 4.0 is a platform designed to prevent screen recording on websites, ideal for protecting paid educational content like videos. It's built specifically for online education and can help you secure videos and other digital media on web browsers. This might be just what your needs for a secure, screen-recording-resistant experience on the web. https://www.haihaisoft.com/Smart-Prevent-Screen-Recording.aspx

DRM-X 4.0 Course encryption platform supports the integration of plugins such as Learndash/Learnpress/Tutorlms/Tutorlms/WooCommerce of WordPress. https://www.drm-x.com/DRM-X4.0_integration_tutorial.aspx

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

79165538

Date: 2024-11-07 08:21:57
Score: 2
Natty:
Report link

As noted in the SQL Server Integration Services Projects 2022 Version 1.5 bug fix, this issue was identified as a bug and resolved after updating Visual Studio. I'll leave this question up in case anyone else encounters the same problem.

SQLClient Data Provider for ADO.Net test connection error resolved. (Upgrade VS version to VS2022 17.12 preview 2)

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

79165531

Date: 2024-11-07 08:18:55
Score: 10.5 🚩
Natty:
Report link

I'm facing the same issue. The app has been live for over 7 days, but the status is still pending. Could you help speed up the process?

Reasons:
  • RegEx Blacklisted phrase (3): Could you help
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Shahab Mirxa

79165528

Date: 2024-11-07 08:17:54
Score: 3
Natty:
Report link

The mistake i did was that i copied the content of release directory. I was supposed to publish the project into target directory for given architecture, which after all creates the entry point dll with all refferenced projects.

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

79165527

Date: 2024-11-07 08:17:54
Score: 1
Natty:
Report link

I thought that this answer might be useful for understanding for resolving your issue. Auto Transfer Google sheet generated QR code to Google Doc as Image When the script of this answer is reflected in your showing script, how about the following modification?

Unfortunately, I cannot know your actual script. So, this is a simple modification. Please reflect this in your actual script.

Modified script:

Please add the following function to your script.

// ref: https://stackoverflow.com/a/71151203/7108653
var replaceTextToImage = function (body, searchText, url, width = 200) {
  var next = body.findText(searchText);
  if (!next) return;
  var r = next.getElement();
  r.asText().setText("");
  var img = r.getParent().asParagraph().insertInlineImage(0, UrlFetchApp.fetch(url).getBlob());
  if (width && typeof width == "number") {
    var w = img.getWidth();
    var h = img.getHeight();
    img.setWidth(width);
    img.setHeight(width * h / w);
  }
  return next;
};

And, please modify your script as follows.

From:

newFileBody.replaceText('<<emp-sign>>', emp_sign);
newFileBody.replaceText('<<it-sign>>', it_sign);

To:

replaceTextToImage(newFileBody, '<<emp-sign>>', emp_sign);
replaceTextToImage(newFileBody, '<<it-sign>>', it_sign);

Note:

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (2.5): please provide your
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Tanaike

79165525

Date: 2024-11-07 08:16:54
Score: 2
Natty:
Report link

You need to import you css file from the library (import 'mdui/mdui.css'; )in your 'my-component.css'. It should be something like this taking int consideration your path: @import(../../node_modules/mdui/mdui.css);

That is why it only works when you chnage the shadow-dom to false.

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

79165522

Date: 2024-11-07 08:15:53
Score: 4
Natty:
Report link

I was able to create a template with several projects through this link and tutorial on YouTube by the same author. It is recommended to watch this video to customize the project.

Reasons:
  • Blacklisted phrase (1): this link
  • Blacklisted phrase (1): this video
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: arman

79165516

Date: 2024-11-07 08:13:53
Score: 2
Natty:
Report link

There are several strings that can convert to the given value. Added to that is the fact that MySQL will convert any string that doesn't start with a numeric value to 0. So MySQL cannot use index when comparing a string column with a number. This is explained in MySQL documentation.

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

79165508

Date: 2024-11-07 08:11:52
Score: 3
Natty:
Report link

I found this free web app called "Spreadsheet to ErgRace files" that converts CSV or spreadsheet files into .rac2 files compatible with the Concept2 ErgRace software. They also provide some helpful example guides. This is the link https://spreadsheet2ergrace.81watts.com/

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

79165504

Date: 2024-11-07 08:10:52
Score: 1
Natty:
Report link

Please Ensure DbContext is registered in the Dependency Injection container inStartup.cs or Program.cs file.

If it's not registered use below code.

services.AddDbContext<YourDbContext>(options =>
    options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tharuka Deshan

79165489

Date: 2024-11-07 08:06:51
Score: 2.5
Natty:
Report link

Navigate :

Atlas "left Tab" Security > Network Access > change Ip TO Public or Your Network

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Athul Krishna V

79165477

Date: 2024-11-07 08:03:50
Score: 2
Natty:
Report link

I couldn't get any of the CSS stuff to work, so I made a plugin:

https://github.com/EsotericSoftware/Nateclipse

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

79165475

Date: 2024-11-07 08:03:50
Score: 1
Natty:
Report link

You can just:

pip install chdb
python3 -m chdb \
   "SELECT * FROM \`hits.parquet\` \
   LIMIT 10000000 \
   INTO OUTFILE 'hits10m.parquet'"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: auxten

79165474

Date: 2024-11-07 08:03:48
Score: 11.5 🚩
Natty: 4
Report link

Did you get this fixed?

I am facing a similar issue when trying to setup a GELF input to send windows event viewer logs to GrayLog.

I think i have read somewhere about needing a full chain certificate in the JVM keystore.

Is that what you did?

Reasons:
  • RegEx Blacklisted phrase (3): Did you get this fixed
  • RegEx Blacklisted phrase (1.5): fixed?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Ends in question mark (2):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Lewis

79165468

Date: 2024-11-07 08:01:48
Score: 1
Natty:
Report link

Apologies if my question was unclear, Im still new to this field. However, I’ve found a solution based on a comment by "aurelian-scarlat" in the GitHub issue:

https://github.com/Meteor-Community-Packages/meteor-autoform-select2/issues/44

I cannot use the class name ".select2normalWithouClear" because there are some other elements with the same class. So what i did was give the new class name same for all my select and initialized them like this:

<select class="form-control select2normalWithouClear edu-level mySelectDropdown" data-placeholder="Select Education Level"><option>Test 1</option><option>Test 2</option><option>Test 3</option></select>

<select class="form-control select2normalWithouClear edu-instituteName mySelectDropdown" data-placeholder="Select Institution Name"><option>Test 1</option><option>Test 2</option><option>Test 3</option></select>

Initilize it:

$('.mySelectDropdown').select2({ placeholder: $(this).data('placeholder') });

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

79165466

Date: 2024-11-07 08:00:47
Score: 5.5
Natty: 5.5
Report link

How did you change so the images folder was used? I am trying to do the same but it seems just charging the images in that folder does not work

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): trying to do the same
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Christopher Phillips

79165461

Date: 2024-11-07 07:59:46
Score: 2
Natty:
Report link

Currently, none of the Autodesk APIs support this. It is, however, on the wishlist under ticket: 'FDM-3886 - Allow modification of [Description] field for Items' to be availed. We will update once this is ready for public release. Ref: Patch item to update description

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

79165447

Date: 2024-11-07 07:53:45
Score: 3.5
Natty:
Report link

User-Defined Variable - Try changing it to datalayer variable. User defined is used only for email, phone and stuff that is actually user defined.

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

79165439

Date: 2024-11-07 07:51:44
Score: 1
Natty:
Report link

Yes, data from Yodlee can typically be exported to other programs. Yodlee offers APIs that allow integration with various financial platforms, enabling users to export their financial data into tools like accounting software, spreadsheets, or other financial applications. Many third-party applications or custom-built tools also facilitate the extraction of Yodlee data. However, the export format and process may depend on the specific service or integration you are using.

You Can Check my website i am also a investment banker https://mayanksinghvi.com/

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

79165427

Date: 2024-11-07 07:48:43
Score: 2.5
Natty:
Report link

If you're using XAMPP Or WAMPP and encountering issues with port access, try uninstalling and reinstalling XAMPP Or WAMPP. This often resets network and port settings to their defaults and can resolve the problem.

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

79165423

Date: 2024-11-07 07:46:43
Score: 1.5
Natty:
Report link

If you're looking to prevent screen recording on a website, DRM-X 4.0 could be a suitable solution for your needs. DRM-X 4.0 is a platform designed to prevent screen recording on websites, ideal for protecting paid educational content like videos. It's built specifically for online education and can help you secure videos and other digital media on web browsers. This might be just what your needs for a secure, screen-recording-resistant experience on the web. https://www.haihaisoft.com/Smart-Prevent-Screen-Recording.aspx

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: S.Jason

79165419

Date: 2024-11-07 07:44:40
Score: 6.5 🚩
Natty: 5.5
Report link

Äą giving the same error. Is there any resolution ?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Batuhan AÇIK

79165410

Date: 2024-11-07 07:41:39
Score: 2.5
Natty:
Report link

Generally, you'll want to use Eclipse Transformer instead of using adapters; however, if that isn't suitable for whatever reason, we've recently open-sourced the servlet adapter library we are using internally at my workplace, here: https://github.com/atlassian-labs/jakarta-adapters.

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

79165407

Date: 2024-11-07 07:41:37
Score: 7.5 🚩
Natty:
Report link

no se si llego muy tarde pero la libreria que todo el mundo propone para estas cosas nunca me ha funcionado pero encontre este artículo https://devcodelight.com/publicar-un-tweet-usando-la-api-v2-de-twitter-y-python/ cuyo mÊtodo si me ha funcionado y leyendo la documentaciÃŗn no solo podras publicar un twwet sino que tambien podras hacer replays creeando aasi threads lo malo hay que montar json para cada request espero sirve de ayuda alquien yo tarde 1 aÃąo en que funcionara desde que la api v2 saliera

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): espero
  • RegEx Blacklisted phrase (2): encontre
  • No code block (0.5):
  • Low reputation (1):
Posted by: Marc Mayol

79165406

Date: 2024-11-07 07:39:36
Score: 4
Natty:
Report link

I am new to linux I tried installing arch Linux on my desktop showed the same error "Failed to connect to bus:no media found " How to fix this issue and complete the installation

Reasons:
  • RegEx Blacklisted phrase (1.5): I am new
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Detox International

79165400

Date: 2024-11-07 07:36:35
Score: 1.5
Natty:
Report link

In case if AS keep asking you login even if you already added account to version control setting (Settings => Version control => GitHub). Try next:

  1. Remove account from that list
  2. Generate new token via GitHub link
  3. Add your account again via generated token
  4. Set this account as default
  5. enter image description here
  6. Restart AS
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mykyta Mykhailov

79165393

Date: 2024-11-07 07:33:32
Score: 8 🚩
Natty: 5.5
Report link

can you please provide the solution that how I can fix the error as I am getting same error during pushing notification to client device.
I am using capacitor plugin for fcm and getting error Response: { "error": { "code": 400, "message": "The registration token is not a valid FCM registration token", "status": "INVALID_ARGUMENT", "details": [ { "@type": "type.googleapis.com/google.firebase.fcm.v1.FcmError", "errorCode": "INVALID_ARGUMENT" } ] } }

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please provide the solution
  • RegEx Blacklisted phrase (1): I am getting same error
  • No code block (0.5):
  • Me too answer (2.5): I am getting same error
  • Starts with a question (0.5): can you please
  • Low reputation (1):
Posted by: Sapna

79165389

Date: 2024-11-07 07:30:32
Score: 3.5
Natty:
Report link

Try to turn off Developer Options and turn on again. It works like a charm. Happy coding!

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

79165388

Date: 2024-11-07 07:29:29
Score: 8.5 🚩
Natty:
Report link

We are also facing the same issue. If anyone has a solution, please provide it.

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Milind

79165387

Date: 2024-11-07 07:29:29
Score: 2.5
Natty:
Report link

I was facing same issue because somehow build resulted in nested target/classes directory, For me solution worked is using 7-Zip File Manager, and navigate to the path, then hit SHIFT + DELETE while the item is selected. https://answers.microsoft.com/en-us/windows/forum/all/cannot-delete-file-the-system-cannot-find-the-file/d6cf08ec-7cc6-4f97-b2d4-202b84d3a03a

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

79165384

Date: 2024-11-07 07:25:29
Score: 3.5
Natty:
Report link

Easy way; install node-windows package from npm

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

79165381

Date: 2024-11-07 07:25:29
Score: 2
Natty:
Report link

This vite-plugin-remove-blocks might be an option. It allows to remove marked blocks from any type of code during the build stage.

The plugin was released recently, so any feedback is welcome.

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

79165378

Date: 2024-11-07 07:22:28
Score: 4
Natty:
Report link

When I append the SAS token to the URL, the file gets downloaded instead of opening in the browser. However, I want the file to open directly in the browser (the file type is not PDF).

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Toheed Shaikh

79165368

Date: 2024-11-07 07:19:27
Score: 1
Natty:
Report link

I found the fix to the code to make it playback live stream continously.
It needs to add following codes

               rc = snd_pcm_writei(playback_handle, out_buffer2, outframes);
+               if (rc < 0) {
+                  snd_pcm_recover(playback_handle, rc, 0);
+               }

Which means, there are errors during stream playing, it needs to recover the ALSA from error.

Now, it can playback live stream continously, but I hit another problem: the is slight break when link is changing, as follows,

[http @ 0x6eaba0] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241107_000014_1e5b.aac' for reading
ALSA lib pcm.c:8675:(snd_pcm_recover) underrun occurred

[http @ 0x7665d0] Opening 'http://live.ximalaya.com/radio-first-page-app/live/2730/64.m3u8' for reading
[hls @ 0x6db020] Skip ('#EXT-X-VERSION:3')
[http @ 0x707c40] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241107_000014_1e5c.aac' for reading
ALSA lib pcm.c:8675:(snd_pcm_recover) underrun occurred

[http @ 0x7665d0] Opening 'http://live.ximalaya.com/radio-first-page-app/live/2730/64.m3u8' for reading
[hls @ 0x6db020] Skip ('#EXT-X-VERSION:3')
[http @ 0x6eaba0] Opening 'http://broadcast.tx.xmcdn.com/live/2730_64_241107_000014_1e5d.aac' for reading
ALSA lib pcm.c:8675:(snd_pcm_recover) underrun occurred

It seemed something wrong in my buffer/period settings, what is the right value to set???

Reasons:
  • Blacklisted phrase (1): ???
  • Whitelisted phrase (-1): I found the fix
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: wangt13

79165365

Date: 2024-11-07 07:16:26
Score: 3.5
Natty:
Report link

Add javascript for places the cursor between spans with user-select: all by using Range and Selection objects to set the cursor's position on click. Demo: https://developer.mozilla.org/en-US/play?id=dMfU2o7s8qzzVn3u6YzPmkVeWSdF1Q0RgTLV6yw9UVNpG3o%2BE4I3SdjEbxeZzJ7c6xu8ayUGe%2Bh52Lx3

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

79165356

Date: 2024-11-07 07:13:26
Score: 2.5
Natty:
Report link

Autodesk Data Management PATCH projects/:project_id/items/:item_id does not support updating displayName and description of the item. Currently, none of the APIs support this. It is, however, on the wishlist under ticket: 'FDM-3886 - Allow modification of [Description] field for Items' to be availed.

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

79165355

Date: 2024-11-07 07:13:26
Score: 0.5
Natty:
Report link

use code like this

        MenuItem searchItem = menu.findItem(R.id.action_search);
        SearchView filterPartsSearchView = (SearchView) searchItem.getActionView();

        if (searchManager != null) {
            filterPartsSearchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
        }

       filterPartsSearchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
        filterPartsSearchView.setBackgroundColor(ResourcesCompat.getColor(getResources(), android.R.color.transparent, null));
 
        View searchPlate = filterPartsSearchView.findViewById(androidx.appcompat.R.id.search_plate);
        if (searchPlate != null) {
            searchPlate.setBackgroundColor(Color.TRANSPARENT);
        }

This is Ref Image of selected text

This is Ref Image of selected text

2nd image Ref when cursor pressed and hold for highlight text while move cursor around text

nd highlight text while cursor moving around text

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

79165351

Date: 2024-11-07 07:12:25
Score: 1.5
Natty:
Report link

unset LIBRARY_PATH CPATH C_INCLUDE_PATH PKG_CONFIG_PATH CPLUS_INCLUDE_PATH INCLUDE

run this in your teminal . u will get it

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

79165350

Date: 2024-11-07 07:12:25
Score: 4
Natty:
Report link

Fatihtravelagency Travel agency

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Laki Carab2022

79165349

Date: 2024-11-07 07:11:25
Score: 0.5
Natty:
Report link

Based on document of chakra-ui above prop has been removed in version 3

if you want to use this props, you should install version 2 using

npm i @chakra-ui/[email protected]

you can see the documents for version 2 using chakra-ui-v2 docs

you can always install older versions of a package using this pattern

npm install <package>@<version>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eisa Rezaei

79165347

Date: 2024-11-07 07:11:25
Score: 2
Natty:
Report link

You need to wrap component you need to animate into another block and make wrapper's height 0. After that, on mount, you can get height of your children, from ref, for example, and animate wrapper's height to the children height size.

https://codesandbox.io/p/sandbox/zealous-water-5r8dzc

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

79165337

Date: 2024-11-07 07:07:22
Score: 8 🚩
Natty: 5
Report link

Even I am also facing the same issue.unable to download anything from the internet.facing issue with connection time out.All the appropirate ports are open and no firwall blocking.

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • RegEx Blacklisted phrase (2): Even I am
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kodi Arasan M

79165334

Date: 2024-11-07 07:06:21
Score: 3
Natty:
Report link

You can achieve the goal in the UI way.

PM Console is not applicable in Rider, but the features have been implemented in UI way.

RIDER-21941 Add nuget package manager console

enter image description here

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

79165333

Date: 2024-11-07 07:05:21
Score: 2.5
Natty:
Report link

After some suggestion in the comments, I came up with something that does the job, maybe someone has a more elegant solution?

import monix.reactive.Observable
import monix.execution.Scheduler.Implicits.global
import java.time.ZonedDateTime
import scala.concurrent.duration.DurationInt
import scala.language.postfixOps

val events = Observable.range(0, 100).delayOnNext(1 second)

val timeWindow = 5 seconds

val timestamps = events.map(_ => ZonedDateTime.now())

events.zip(timestamps).scan(Seq[(Long, ZonedDateTime)]())((acc, event) => {
  (acc :+ event).filter(_._2.isAfter(ZonedDateTime.now().minusSeconds(timeWindow.toSeconds)))
}).map(_.map(_._1)).foreach(println)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Giuliano De Sabata

79165329

Date: 2024-11-07 07:03:20
Score: 1
Natty:
Report link

The best way to extract the data and table schema is to use the Export Data option in SSMS. We've used this to move data from one production database to another.

You can either

  1. use a query (in which case you select/ignore, transform (blinding sensitive data) and rename columns if needed) or

  2. copy entire table(s) at once.

There are options to specify the data types and mappings from source to destination, etc.

It takes a few tries to determine the source/destination driver (SQL Native Client is very straightforward) depending on the type of authentication you're using (The best way is to create a DBUser and DBUserLogin temporarily for this purpose, primarily if the DB access is controlled by Azure Entra ID Interactive approach; AZURE Entra Integrated is still effortless)

You can generate a script using SSMS to create the database schema, indexes, etc., in sequence. This script can then be run on the target database before drawing the data.

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

79165325

Date: 2024-11-07 07:02:20
Score: 1.5
Natty:
Report link

It seems like there's two different enemyPrefab you are referencing. You should remove the line:

instance.name = enemyPrefab.name;

Can you include a screenshot how you reference the enemyPrefab? either in script or in inspector. Also a screenshot of the actual prefab in your project.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Dave Victorino

79165320

Date: 2024-11-07 07:00:19
Score: 4
Natty:
Report link

Now supported by Terraform : Reference Documentation

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

79165309

Date: 2024-11-07 06:56:18
Score: 1
Natty:
Report link

Try this approach.

=ARRAYFORMULA({UNIQUE(A2:A), SUMIF(A2:A, UNIQUE(A2:A), B2:B)})

Sample Output

Output

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Patsytalk

79165300

Date: 2024-11-07 06:54:17
Score: 4
Natty:
Report link

This may be dependency management and/or IDE issue. I'm regularly seeing similar issues while having many projects open in IntelliJ IDE that have different versions of Java and dependencies. Closing IDE and opening with single project usually resolves this.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): seeing similar issue
  • Low reputation (0.5):
Posted by: Olavi Vaino

79165296

Date: 2024-11-07 06:53:17
Score: 1
Natty:
Report link

Moving to python:3.11.10-slim-bookworm solved this for me. I would bet that just moving to 3.11.10 would have done it as well.

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

79165292

Date: 2024-11-07 06:52:17
Score: 2
Natty:
Report link
  1. List item AC CONFIG /storage/emulated/0/Documents/PDF Reader/convert/12//storage/emulated/0/Documents/PDF Reader/convert/12/w966547515731/storage/emulated/0/Documents/PDF Reader/convert/12/966547515731
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Juwel Rana

79165289

Date: 2024-11-07 06:51:16
Score: 2
Natty:
Report link

When it comes to unit testing embedded systems, there's often a trade-off between safety and efficiency. While thorough testing ensures safety, especially for critical systems, it can sometimes lead to slower execution and increased complexity. On the other hand, prioritizing efficiency might compromise safety by leaving edge cases unchecked. A good balance is essential. Enrolling in a program testing course can provide you with the tools and methodologies needed to optimize both safety and efficiency in embedded systems testing.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When it
  • Low reputation (1):
Posted by: John Preston

79165269

Date: 2024-11-07 06:44:14
Score: 1.5
Natty:
Report link

The MAIL_TO_ADDRESS should be MAIL_FROM_ADDRESS, as far as I understand you want to send mail from [email protected].

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

79165261

Date: 2024-11-07 06:41:14
Score: 3
Natty:
Report link

I've noted that same thing happened to mutual_info_regression as well, changing the order the X will produce different results

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

79165251

Date: 2024-11-07 06:39:13
Score: 1.5
Natty:
Report link

DataGridViewAutoSizeColumnMode.Fill:

The column width adjusts so that the widths of all columns exactly fills the display area of the control.

So if your RowHeadersWidth is changed by this, its value depends on your font, display DPI and many other display settings. It should be calculated before paint dynamically, and thus it can not be calculated in your grid constructor.

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

79165248

Date: 2024-11-07 06:38:13
Score: 2.5
Natty:
Report link

I would use a '.sh' file and pass my hive query as either hive -e 'query' or hive -f 'query.hql'

In bash, it would be very easy to achieve you require.

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

79165245

Date: 2024-11-07 06:36:13
Score: 2
Natty:
Report link
git branch --track lexer origin/lexer

this work for me

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

79165240

Date: 2024-11-07 06:33:12
Score: 4
Natty:
Report link

āĻŦāĻžāĻ‚āϞāĻžāĻĻ⧇āĻļ⧇āϰ āĻ•ā§ƒāώāĻŋ āĻŦāĻžāĻ‚āϞāĻžāĻĻ⧇āĻļ āĻ•ā§ƒāώāĻŋāĻĒā§āϰāϧāĻžāύ āĻĻ⧇āĻļāĨ¤ āĻāĻĻ⧇āĻļ⧇ āĻļāϤāĻ•āϰāĻž ā§­ā§Ģ āĻ­āĻžāĻ— āϞ⧋āĻ• āĻ—ā§āϰāĻžāĻŽā§‡ āĻŦāĻžāϏ āĻ•āϰ⧇āĨ¤ āĻŦāĻžāĻ‚āϞāĻžāĻĻ⧇āĻļ⧇āϰ āĻ—ā§āϰāĻžāĻŽ āĻāϞāĻžāĻ•āĻžā§Ÿ ā§Ģ⧝.ā§Žā§Ē% āϞ⧋āϕ⧇āϰ āĻāĻŦāĻ‚ āĻļāĻšāϰ āĻāϞāĻžāĻ•āĻžā§Ÿ ā§§ā§Ļ.ā§Žā§§% āϞ⧋āϕ⧇āϰ āĻ•ā§ƒāώāĻŋāĻ–āĻžāĻŽāĻžāϰ āĻ°ā§Ÿā§‡āϛ⧇āĨ¤ āĻŽā§‹āϟ āĻĻ⧇āĻļāϜ āĻ‰ā§ŽāĻĒāĻžāĻĻāύ āϤāĻĨāĻž āϜāĻŋāĻĄāĻŋāĻĒāĻŋāϤ⧇ āĻ•ā§ƒāώāĻŋāĻ–āĻžāϤ⧇āϰ āĻ…āĻŦāĻĻāĻžāύ ⧧⧝.ā§§% āĻāĻŦāĻ‚ āĻ•ā§ƒāώāĻŋāĻ–āĻžāϤ⧇āϰ āĻŽāĻžāĻ§ā§āϝāĻŽā§‡ ā§Ēā§Ž.ā§§% āĻŽāĻžāύ⧁āώ⧇āϰ āĻ•āĻ°ā§āĻŽāϏāĻ‚āĻ¸ā§āĻĨāĻžāύ āϤ⧈āϰāĻŋ āĻšāĻšā§āϛ⧇āĨ¤ āϧāĻžāύ,āĻĒāĻžāϟ,āϤ⧁āϞāĻž,āφāĻ–,āĻĢ⧁āϞ āĻ“ āϰ⧇āĻļāĻŽāϗ⧁āϟāĻŋāϰ āϚāĻžāώāϏāĻš āĻŦāĻžāĻ—āĻžāύ āϏāĻŽā§āĻĒā§āϰāϏāĻžāϰāĻŖ,āĻŽāĻžāĻ› āϚāĻžāώ,āϏāĻŦāϜāĻŋ, āĻĒāĻļ⧁āϏāĻŽā§āĻĒāĻĻ āωāĻ¨ā§āύ⧟āύ, āĻŽāĻžāϟāĻŋāϰ āωāĻ°ā§āĻŦāϰāϤāĻž āĻŦ⧃āĻĻā§āϧāĻŋ,āĻŦā§€āϜ āωāĻ¨ā§āύ⧟āύ āĻ“ āĻŦāĻŋāϤāϰāĻŖ āχāĻ¤ā§āϝāĻžāĻĻāĻŋ āĻŦāĻŋāώ⧟āϏāĻŽā§‚āĻš āĻ āĻĻ⧇āĻļ⧇āϰ āĻ•ā§ƒāώāĻŋ āĻŽāĻ¨ā§āĻ¤ā§āϰāĻŖāĻžāϞ⧟ āĻ“ āϏāĻ‚āĻļā§āϞāĻŋāĻˇā§āϟ āĻŦāĻŋāĻ­āĻžāĻ—āϏāĻŽā§‚āĻšā§‡āϰ āĻ•āĻ°ā§āĻŽāĻ•āĻžāĻŖā§āĻĄā§‡āϰ āĻ…āĻ¨ā§āϤāĻ°ā§āϭ⧁āĻ•ā§āϤāĨ¤ read more

Reasons:
  • No code block (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Ai IDEAS

79165234

Date: 2024-11-07 06:29:09
Score: 6.5 🚩
Natty:
Report link

I don't have enough reputation for posting in the comment section. Also, this may not be what you're looking for, but could you enclose everything in the overridden ExecuteAsync() in a try-catch block that handles this failure?

Maybe StopApplication() could help?

https://learn.microsoft.com/en-us/dotnet/core/extensions/workers#:~:text=hostApplicationLifetime.StopApplication()%3B

How to cancel manually a BackgroundService in ASP.net core

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: chandanbsd

79165233

Date: 2024-11-07 06:29:09
Score: 3.5
Natty:
Report link

You can add all your keyed dependencies in the last as a workaround.

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

79165214

Date: 2024-11-07 06:21:07
Score: 0.5
Natty:
Report link

In 2024, use scriptArgs because arguments doesn’t work:

$ js --version
JavaScript-C128.4.0
$ cat script.js
print(arguments);
$ js script.js hello world
script.js:1:7 ReferenceError: arguments is not defined
Stack:
  @script.js:1:7
$ cat script.js
print(scriptArgs);
$ js script.js hello world
hello,world
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paalon

79165212

Date: 2024-11-07 06:19:07
Score: 1
Natty:
Report link

PLAYWRIGHT_ABORT_REQUEST

In your case

def should_abort_request(request):
    return (
        request.resource_type != "xhr" in request.url
    )

and apply the function in settings

PLAYWRIGHT_ABORT_REQUEST = should_abort_request
Reasons:
  • Whitelisted phrase (-1): In your case
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joon

79165207

Date: 2024-11-07 06:17:06
Score: 2
Natty:
Report link

I don't think this is possible using the picker.

As someone else suggested in the comments, you're better off building your own photo picker and fetching the photos using Apple's PhotoKit framework.

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

79165203

Date: 2024-11-07 06:16:05
Score: 3.5
Natty:
Report link

have you used app.use(bodyParser.json());

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

79165201

Date: 2024-11-07 06:16:05
Score: 2.5
Natty:
Report link

im also face same issue in Login with google. anyone have solution? i follow same step

    @GetMapping("/loginSuccess")
public String loginSuccess(@AuthenticationPrincipal OAuth2User oauthUser) {
    Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
    System.out.println("Authentication principal: " + authentication.getPrincipal());

    if (oauthUser == null) {
        return "Error: OAuth2User is null. Authentication failed.";
    }
    String username = oauthUser.getAttribute("name");
    JwtToken jwtToken = jwtUtils.generateTokenFromUsername(username);
    return "Login successful! JWT Token: " + jwtToken;
}

here my SecurityConfig

@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
    http.cors(cors -> cors.configurationSource(corsConfigurationSource()))
            .csrf(csrf -> csrf.disable())
            .authorizeHttpRequests(auth -> {
                auth.requestMatchers(
                                antMatcher("/api/auth/**"),
                                antMatcher("/oauth2/**"),
                                antMatcher("/login/**")
                        ).permitAll()
                        .anyRequest().authenticated();
            })
            .oauth2Login(oauth2 -> oauth2
                    .defaultSuccessUrl("/api/auth/loginSuccess")
                    .failureUrl("/api/auth/loginFailure")
            )
            .httpBasic()
            .and()
            .sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
            .exceptionHandling()
            .authenticationEntryPoint(unauthorizedHandler)
            .and()
            .addFilterBefore(authenticationJwtTokenFilter(), UsernamePasswordAuthenticationFilter.class)
            .authenticationProvider(authenticationProvider());
    return http.build();
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): also face same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ahamed

79165198

Date: 2024-11-07 06:14:05
Score: 1.5
Natty:
Report link

Use partition name to make it faster

SELECT GL_CODE, SUM(NET_LCY) FROM ( SELECT GL_CODE, NET_LCY FROM "KTC"."SHARED_RAW_RE_GL78" PARTITION (MONTHID_08) WHERE CUST_DIVISION = 'KHCN' ) a GROUP BY GL_CODE;

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

79165195

Date: 2024-11-07 06:14:05
Score: 1.5
Natty:
Report link

The easiest way to resolve this is to add a root_path argument to your FastAPI instance:

 app = FastAPI(
        root_path="/api",
        docs_url="/"
    )
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammad Saad Aziz

79165181

Date: 2024-11-07 06:04:04
Score: 1
Natty:
Report link

If you haven't wrote any native code in your android folder I recommend try deleting the android folder and run

npx expo prebuild

This should bring back the android and ios folder, then try running the app again.

Use this expo link for reference

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

79165178

Date: 2024-11-07 06:03:03
Score: 0.5
Natty:
Report link

I've worked some more in the class and was able to solve 90%: colouring same preference red + hopping out

Here is the class code:

Option Explicit

Public WithEvents CmdEvents As MSForms.ToggleButton

Private Sub CmdEvents_Click()

    'if Clicking off, do nothing
    'set backcolor to off
    If CmdEvents.Value = False Then
        CmdEvents.BackColor = vbButtonFace
        GoTo EndNothing
        Else
        CmdEvents.BackColor = RGB(0, 128, 64)
    End If
    'MsgBox "mpp: " & Left(CmdEvents.Name, 1) & vbCrLf & "i: " & Mid(CmdEvents.Name, 2, 1) ' reads out mpp and i
    Dim i As Long
    Dim mpp         As Long
    mpp = Left(CmdEvents.Name, 1)
    Dim ctl As Control
    Dim nv As Long
    nv = 0
    Dim trb As Long
'    Dim j As Long
        
    For i = 1 To Sheets(1).Cells(11 + mpp, 5).Value
        If Order.Controls(Left(CmdEvents.Name, 2) & i).Value And i <> Right(CmdEvents.Name, 1) Then
            nv = Order.Controls(Left(CmdEvents.Name, 2) & i).Name
            Order.Controls(Left(CmdEvents.Name, 2) & i).Value = False
        End If
    Next i

    'Colour Red if same preference
    For Each ctl In Order.Controls
        If Left(ctl.Name, 1) = mpp Then 'if control is a TB button
            If Left(ctl.Name, 1) = Left(CmdEvents.Name, 1) And Right(ctl.Name, 1) = Right(CmdEvents.Name, 1) And ctl.Value = True And CmdEvents.Value = True And ctl.Name <> CmdEvents.Name Then
                ctl.BackColor = RGB(120, 105, 2) 'red
                CmdEvents.BackColor = RGB(120, 105, 2) 'red
                Else
                'reset green colour
                If Left(ctl.Name, 1) = Left(CmdEvents.Name, 1) And Right(ctl.Name, 1) = Right(CmdEvents.Name, 1) And ctl.Value = True And ctl.Name <> CmdEvents.Name Then
                   'only if not two buttons are pressed in column
                   'need to change "old" column colour as well
'                   For j = 1 To Sheets(1).Cells(11 + mpp, 5).Value
                    trb = 0
                    For i = 1 To Sheets(1).Cells(11 + mpp, 5).Value
                         If Order.Controls(Left(CmdEvents.Name, 1) & i & Right(CmdEvents.Name, 1)).Value Then 'j
                             trb = trb + 1
                         End If
                     Next i
                     MsgBox trb
                    If trb = 1 Then
                         ctl.BackColor = RGB(0, 128, 64) 'green
                    End If
'                  Next j
                End If
            End If
        End If
    Next ctl
    
EndNothing:
End Sub

I also added some colour code and next page in multipage to Order Initialize:

For mpp = 1 To 2 'added version for alternative date
 ' the same
TB.Name = mpp & i & j 'altered for second "date" to work
 ' the same
If TB.Caption = i Then
                        TB.Value = True
                        TB.BackColor = RGB(0, 128, 64) 'added to give green background'
 ' the same
Next mpp
End Sub

My only problem now is that if you click of "7" now (and make it right again), the other 7 stays red: "7" stays red although correct

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

79165175

Date: 2024-11-07 06:02:03
Score: 2
Natty:
Report link

Yes, AWS CloudWatch Logs Insights allows you to query log groups across multiple AWS accounts and regions simultaneously. This capability is part of CloudWatch’s cross-account observability feature, which enables you to view and analyze metrics, logs, and traces from different accounts and regions within a single monitoring account.

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

79165170

Date: 2024-11-07 05:59:02
Score: 0.5
Natty:
Report link

@click.option('--status/--no-status', default=True) is the way to go, as suggested by click documentation

Example:

script.py:

import click

@click.command
@click.option('--status/--no-status', default=True)
def main(status):
    click.echo('status: {}'.format(status))

if __name__ == '__main__':
    main()

$ python3 script.py 
status: True

$ python3 script.py --status
status: True

$ python3 script.py --no-status
status: False
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): is the
  • Low reputation (0.5):
Posted by: laur

79165167

Date: 2024-11-07 05:57:01
Score: 3
Natty:
Report link

In my case i hadn't created the database i specified in the datasours.url

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

79165163

Date: 2024-11-07 05:56:01
Score: 1.5
Natty:
Report link

Add a button input with the name of send in your form. <button name="send" type="submit">Send</button>

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

79165162

Date: 2024-11-07 05:56:01
Score: 1.5
Natty:
Report link

So removing all permissions from the service account and granting only storage admin access, along with full API access for Cloud Scope, ultimately worked. I stopped the current VM and restarted it, and now the gcloud cp command is functioning properly.

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

79165159

Date: 2024-11-07 05:56:01
Score: 2
Natty:
Report link

Last week i also had this issue,, im using the dotnet code, the problem is with the security ..my public server cloudflare is blocking the docusign.. so better you neeed to check this cloudflare check if the docusign domains are whitelisted check the firewall logs and proxy if there is any block

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

79165157

Date: 2024-11-07 05:55:01
Score: 3
Natty:
Report link

Sync with Firebase: Once you're signed in with the correct account, the Firebase Assistant should automatically sync with Firebase services, and the error should no longer appear.

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

79165153

Date: 2024-11-07 05:53:00
Score: 1.5
Natty:
Report link

only if you know its going to be col_B, we can also do something like this, for 'n' columns you can loop

if (df.columns.contains("col_B")) df else df.drop("col_B")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: devmittal

79165140

Date: 2024-11-07 05:45:59
Score: 2.5
Natty:
Report link

When you face the problem bigserial doesn't exist when giving it in prisma datatype then

Run the command npx prisma migrate dev --create only

It will generate a migration.sql file inside the generated file changed all BIGSERIAL to BIGINT

And now run the command npx prisma migrate dev

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Aryan Trivedi

79165137

Date: 2024-11-07 05:42:58
Score: 1.5
Natty:
Report link

You can use DuplicateFilesDeleter software to delete duplicate files. This is the best way of delete duplicate files.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dan Johnson

79165121

Date: 2024-11-07 05:35:56
Score: 1.5
Natty:
Report link

Please beaware that Copying all content of C:\xampp\mysql\backup to the C:\xampp\mysql\data will fix the issue. But if you have existing db and WordPress installation then it will not open the website homepage properly. I will ask you an fresh WP installation and won't let you install the new one.

So replace it at your own risk.

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

79165106

Date: 2024-11-07 05:28:55
Score: 1.5
Natty:
Report link

It sounds frustrating to run into issues with deleting a promo code or updating the maximum redemption attribute! Often, this can happen due to system restrictions or specific settings in your platform. Here are a few suggestions:

Check Permissions: Ensure that you have the necessary permissions to make these changes. Some platforms restrict editing or deleting codes based on user roles.

Review Code Settings: Sometimes, settings tied to the promo code—like expiration dates or usage limits—might prevent changes. Try reviewing these to see if anything conflicts with your update.

Clear Cache or Try a Different Browser: Occasionally, browser cache can interfere with system changes. Clearing your cache or trying a different browser might help.

Contact Support: If you’ve checked permissions and settings but still face issues, it could be worth reaching out to the support team of your platform. They can often resolve backend issues that aren't visible on your end.

For more helpful resources on using promo codes effectively, check out our Encashback website, where you can find a range of promo codes and cashback offers across multiple categories.

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

79165098

Date: 2024-11-07 05:18:53
Score: 4
Natty:
Report link

In this case just clear cached data of browser.

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

79165094

Date: 2024-11-07 05:16:53
Score: 0.5
Natty:
Report link

11 Grinder

November 8, 2019

"HENERAL LUNA"

(CRITIQUE PAPER)

The movie "Heneral Luna" is one of the best historical movies ever created by the Filipinos. It shows complete details and information that Heneral Luna and his men did before. As a viewer, perhaps I was not able to get the exact message that the director wanted to convey, but obviously, the movie is about the willingness of our Filipino ancestors who fought and willingly sacrificed for the country. In particular, Heneral Antonio Luna, the main character, was depicted as the nationalistic leader of the Filipino soldiers. Here, the filmmakers were able to create a character somehow similar to us, something which we can relate for. The movie shows how selfishness and having no collective unity and loyalty in the society greatly affects the country. The movie reminds us of the sacrifices and the blood wasted, just to achieve the freedom and independence that we have long been aspiring for.

The film is engaging because the author makes it realistic for it to become convincing for the viewers. The scenarios are naturally implied to Filipino people's characteristic before, one of which was depicted was that they did not mind to use vulgar words. Moreover, the movie is not depicted too poetic so the generations are able to relate. The film is also not boring so the viewers are interested to watch it It emphasized the history of our country under the jurisdiction of then President Emilio Aguinaldo as General Luna lead the Philippine army for the freedom of our country. It also shows the political hierarchy in his time. Watching the film, it expands our knowledge about our history and at the same time it is also entertaining.

I am really impressed with the movie. The unique perspective and idea of the filmmaker, the way the artists brought their character, and all of the style they used in making such a beautiful movie, truly caught the attention of the viewers. It is just that, I got disappointed about the unexpected unhappy ending. I mean, why some of the Filipino before, kill the General instead of just being open and cooperative. Its ending was also unclear but being unclear makes the viewers to create and imagine their own ending based from their understanding. So, in the end the movie is really great for those who is open minded and for those who really loves the Philippines. If there is another historical movie, I would love to watch it and to know more

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

79165093

Date: 2024-11-07 05:16:50
Score: 6 🚩
Natty: 5
Report link

are you able to solve it? I have created a ticket on Upwork regarding this. If you were able to find the solutions let me know.

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Waqas Yousaf

79165087

Date: 2024-11-07 05:14:49
Score: 4
Natty:
Report link

I find the error, it must using StatefulSet when deploying jenkins on kubernetes.

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

79165085

Date: 2024-11-07 05:12:49
Score: 0.5
Natty:
Report link

Okay, I have the answer to your question and the explanation. After running into the same issue myself and digging deeper, I realized it was a "skill" issue and not an "angular" issue.

The "skill" issue here is using a boilerplate template (e.g., ng new) and not understanding how the different files are wired together, further exaggerated by different documentations and online articles assuming different versions of angular "template".

Issue in detail

Angular: 18.2.0 Material: 18.2.11

When using standalone components without module files, I could not utilize the provider to inject the default options into the matsnackbar in the following way.

import { MAT_SNACK_BAR_DEFAULT_OPTIONS, MatSnackBar, MatSnackBarModule } from '@angular/material/snack-bar';

@Component({
  ......
  standalone: true,
  imports: [...., MatSnackBarModule, ....],
  providers: [
    {
      provide: MAT_SNACK_BAR_DEFAULT_OPTIONS,
      useValue: {
        duration: 2500,
        horizontalPosition: 'left',
      }
    }],
  ......
})

constructor(private _snackBar:MatSnackBar) {}

Solution 1: Defining providers in a component and inject it immediately for usage

Building on @christian-fuchs' comments and answers, the closest workaround I could settle on was the following.

import { MAT_SNACK_BAR_DEFAULT_OPTIONS, MatSnackBar, MatSnackBarConfig, MatSnackBarModule } from '@angular/material/snack-bar';

@Component({
  ......
  imports: [....,MatSnackBarModule, ....],
  standalone: true,
  providers: [
    {
      provide: MAT_SNACK_BAR_DEFAULT_OPTIONS,
      useValue: {
        duration: 2500,
        horizontalPosition: 'left',
      }
    }],
  ......
})

constructor(@Inject(MAT_SNACK_BAR_DEFAULT_OPTIONS) private _snackBarDefaultOptions: MatSnackBarConfig,
  private _snackBar: MatSnackBar) {}

triggerSnackbar() {
  this._snackBar.open('This snackbar will close in 5 seconds', null, _snackBarDefaultOptions)
}

Solution 2: Use ngModules along with standalone components (Keep it lightweight and use it for global configs)

To be honest, the above example is not really a workaround but the right way to do this when you're not using Angular module files (i.e., app.module.ts, etc.).

The reason is that the matsnackbar seems to be initialized before the provider can feed the default values in the standalone component. However, it would work if you took the same approach in the module file, say example.module.ts, and did something like below.

example.module.ts

import {
  MAT_SNACK_BAR_DEFAULT_OPTIONS,
  MatSnackBarModule,
} from '@angular/material/snack-bar';

@NgModule({
  providers: [
    { provide: MAT_SNACK_BAR_DEFAULT_OPTIONS, useValue: { duration: 50 } },
  ],
  exports: [MatSnackBarModule],

)
export class ExampleModule {}

example.component.ts

import { SnackBarComponentComponent } from './snack-bar-component/snack-bar-component.component';

@Component({
  ....
})
export class ExampleComponent {

  constructor(private snackBar: MatSnackBar) {}

  openSnackBar() {
    this.snackBar.open('This snack will close in 5 seconds');
  }
}

There may be some gotchas. For example, if this were app.module.ts and app.component.ts, we need to ensure that the app module is bootstrapped in main.ts or main.server.ts (server-side rendering, I believe) and not the AppComponent (as is the case when generating an Angular app with standalone templates).

Method 3: Understand the boilerplate generated by the latest ng command and define the provider in the correct location/file

If you are set on using angular standalone components without any modules, define the providers when bootstrapping. This ensures that the required information is loaded into the global config before these components are rendered.

For example

app.config.ts

import { MAT_SNACK_BAR_DEFAULT_OPTIONS } from '@angular/material/snack-bar';

export const appConfig: ApplicationConfig = {
  providers: [
    {
      provide: MAT_SNACK_BAR_DEFAULT_OPTIONS,
      useValue: {
        duration: 1000,
        horizontalPosition: 'right',
      }
    }]
};

main.ts

import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';

bootstrapApplication(AppComponent, appConfig)
  .catch((err) => console.error(err));
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @christian-fuchs'
  • Low reputation (1):
Posted by: chandanbsd

79165082

Date: 2024-11-07 05:11:49
Score: 5.5
Natty:
Report link

Thank Ravinder for your response.. I am use this code but It's gives on url bar

cricf.com/cricket-article.php?cardid=3730

When I do some changes like below It gives on url bar

cricf.com/cricket-article/cardid/3730/

But with page not found 404 error

RewriteEngine on RewriteCond %{THE_REQUEST} /cricket-article.php?cardid=([^\s&]+) [NC]

RewriteRule ^ cricket-article/cardid/%1? [R=302,L]

RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^cricket-article/cardid/([^/]+)/?$ cricket-article.php?cardid=$1 [L,QSA,NC]

Any Suggestions..?

Reasons:
  • RegEx Blacklisted phrase (2): Any Suggestions
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Wasim Saiyed