79439884

Date: 2025-02-14 15:52:31
Score: 3
Natty:
Report link

This is what I was looking for, I've been 2 years changing the Basic Colors manually in that panel, never thought about looking in Color Presets...

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sergio Fernández

79439880

Date: 2025-02-14 15:52:31
Score: 2.5
Natty:
Report link

try apk upgrade before apk add nodejs

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Simas Skilinskas

79439868

Date: 2025-02-14 15:47:29
Score: 2
Natty:
Report link

if shortest_length <= length than your variable will not be defined. It is bad practice to define variables like that.

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

79439863

Date: 2025-02-14 15:46:29
Score: 0.5
Natty:
Report link

I was able to solve this by adding a name property for Firebase initializeApp like stated in this answer.

 await Firebase.initializeApp(
 name: "dev project",
 options: DefaultFirebaseOptions.currentPlatform);

in case it is useful for someone in the future.

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

79439862

Date: 2025-02-14 15:46:29
Score: 2
Natty:
Report link

...finally solved!! In business.facebook.com look for "Account --> Business Asset Group" then create a group and assign people and assets from there, regenerate your tokens and voilà! No more errors.

I bet that all the previous assignments from the other sections can be removed but I have to test it.

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

79439855

Date: 2025-02-14 15:44:28
Score: 1.5
Natty:
Report link

It's a visual studio bug, caused by renaming a .blazor file to .blazor.css

The solution for me was:

  1. removing the file .razor.css (copy it elsewhere)
  2. rebuilding
  3. paste the file .razor.css back
  4. rebuild.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Axeltherabbit

79439843

Date: 2025-02-14 15:40:28
Score: 2.5
Natty:
Report link

You can add a windowWidth to html2canvas for this. Solved the issue for me!

const canvas = await html2canvas(element, { scale: 2, windowWidth: 1440 });

https://html2canvas.hertzen.com/configuration

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

79439841

Date: 2025-02-14 15:40:28
Score: 2
Natty:
Report link

I found a solution that works for me! To do this, I use the cursors that are already available on every Windows system (C:\Windows\Cursors):

Read Cursor from C:\Windows\Cursors

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Robin Fauser

79439840

Date: 2025-02-14 15:39:27
Score: 0.5
Natty:
Report link

JetStream push subscriptions work a bit differently from plain NATS subscriptions. In core NATS you can subscribe to a wildcard subject like "*.events.east.india" and get messages from subjects such as "Kolkata-Manipur.events.east.india" or "Kohima-Shilong.events.east.india". However, when you’re using JetStream, the subscription subject is tied to the consumer configuration.

Your subscription isn’t working with "*.events.east.india" in a JetStream push subscribe because JetStream requires an exact match to the consumer’s delivery subject, and wildcards are meant for stream configuration—not for the push subscription call.

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

79439824

Date: 2025-02-14 15:33:26
Score: 1
Natty:
Report link

Let's take it a simple way. A basic auth pop-up is a window of OS, not a window of browser. You can control browser by using selenium, but can not interact with a OS pop-up window. You can try other automation libary like win32gui to interact with a OS pop-up.

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

79439819

Date: 2025-02-14 15:29:25
Score: 2
Natty:
Report link

My name is Magaret Reed, and I would like to recommend AGENT Jasmine Lopez, who is also known as the recoveryfundprovider agent. Jasmine has specialized skills in digital monitoring and can discreetly gather information while individuals use their computers and smartphones. Operating from the background, her methods allow her to collect sensitive data without drawing attention. This includes important information such as browsing history, login details, personal videos, photos, and private messages.

In my experience, Jasmine was able to access my spouse's iPhone and social media accounts with ease, all without the involvement of any third party. Her ability to spy on devices while maintaining complete secrecy is remarkable. If you wish to get in touch with her, you can reach her through email at recoveryfundprovider@gmail com, Additionally, she is available on WhatsApp and for text messaging at +44-7366-445035. For those who prefer social media, her Instagram handle is @recovery_fund_provider.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @recovery_fund_provider
  • Low reputation (1):
Posted by: margaret

79439815

Date: 2025-02-14 15:27:25
Score: 1
Natty:
Report link

When using an arrow function, 'this' refers to the surrounding context. So no need to do that anymore!

element.addEventListener('click', () => {
     console.log(this); // 'this' refers to the surrounding context
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: RBILLC

79439814

Date: 2025-02-14 15:26:24
Score: 1
Natty:
Report link

When using an arrow function, 'this' refers to the surrounding context. So no need to do that anymore!

element.addEventListener('click', () => {
     console.log(this); // 'this' refers to the surrounding context
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: RBILLC

79439811

Date: 2025-02-14 15:26:22
Score: 9.5 🚩
Natty: 5.5
Report link

Did you resolve the issue, bro?

Reasons:
  • RegEx Blacklisted phrase (3): Did you resolve the
  • 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
  • Low reputation (1):
Posted by: anh tuan

79439800

Date: 2025-02-14 15:21:20
Score: 2.5
Natty:
Report link

Use this:

//# sourceURL=helperJavaScript.js
</script>

See: https://greatrexpectations.com/2014/01/22/chrome-dev-tools-inline-dynamic-javascript

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

79439798

Date: 2025-02-14 15:21:20
Score: 0.5
Natty:
Report link

It's caused by a bug in Tomcat. You should use 11.0.2 until 11.0.4 has been released.

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

79439789

Date: 2025-02-14 15:13:19
Score: 2
Natty:
Report link

@peter_the_oak's answer is not fully correct. You can request consent for any subdomain you wish, provided that the root domain is verified.

For instance, if you're requesting OAuth access for www.example.com. You need to make sure example.com is verified by Google and tied to you.

The quickest way to do so is to head into Google search console and verify your domain. They'll provide you with a TXT value for you to save into your DNS entry and within 5 minutes, it should work.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @peter_the_oak's
  • Low reputation (0.5):
Posted by: charles_ganza

79439786

Date: 2025-02-14 15:13:19
Score: 1.5
Natty:
Report link

You can try getting the code in step one in the browser as well. This way it will cache the logged user in the browser and you won't need to sign in twice.

I hit a rock there on Android, as google doesn't like my redirect url, but maybe you will be lucky.

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

79439783

Date: 2025-02-14 15:13:18
Score: 5
Natty:
Report link

I see that you can verify using an email also. Would it not be more viable to set up a separate gmail and flow which could be used for such verification?

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

79439763

Date: 2025-02-14 15:06:17
Score: 2
Natty:
Report link

It turns out the answer was that the actual filepath (which I truncated in my example for simplicity's sake) was too long. When combined with the longer filename for the precision recall curve it seems to have reached a character limit; shortening the filename fixed the problem. A shame that the error message in this scenario isn't more descriptive of the actual issue!

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

79439757

Date: 2025-02-14 15:04:14
Score: 11 🚩
Natty:
Report link

I'm struggling with the same error since a week now, have you found any solution?

Thanks!!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): have you found any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Fabrizio

79439744

Date: 2025-02-14 15:01:13
Score: 3
Natty:
Report link

It worked perfectly. Thank you very much friend.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): It worked
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maximus Jr

79439743

Date: 2025-02-14 15:00:10
Score: 11 🚩
Natty: 4
Report link

I am stuck in the same situation as you are, did you find any solution for this, please let me know. I will appriciate your help and support.

I am also using the same "nfc":{...} but this is not opening the pass.

I want to enable the nfc in my pkpass, I am using the same json as urs and as suggested in the NFC enable apple documentation.

Please, provide the appropriate solution for this.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yash Singh

79439737

Date: 2025-02-14 14:58:09
Score: 0.5
Natty:
Report link

I got here because I was having the same problem in Colab: why the heck isn't the logger honoring my formatting, and why is it giving me this root output?

It's because Colab sets up default logging handlers when a notebook starts, and these take precedence over those you define using basicConfig(). As others have pointed out, you can override this behavior using the force=True keyword argument, which resets the handlers and will apply the desired format.

Sample code:

import logging

log_format = "%(asctime)s - %(filename)s - %(funcName)s - line %(lineno)d - %(levelname)s - %(message)s"

logging.basicConfig(level=logging.INFO, format=log_format, force=True)  


logger.info("Logger is now correctly formatted in Colab!")

The accepted answer doesn't work for me. The top answer gives the right information but I found it confusing so am adding this for people that might appreciate something a bit simpler.

Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: eric

79439730

Date: 2025-02-14 14:55:08
Score: 2
Natty:
Report link

Consider using preact-iso router (https://github.com/preactjs/preact-iso).

It's a newer router from the same author of the frozen preact-router (https://github.com/preactjs/preact-router/blob/main/README.md)

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

79439718

Date: 2025-02-14 14:47:07
Score: 1.5
Natty:
Report link

I couldn't get the solution suggested by @Lucas to work as I wanted to insert an extra level - my solution was along the following lines...

class UWS_Logger < Logger
  verb = $VERBOSE
  $VERBOSE = nil
  SEVS = %w(DEBUG TRACE INFO WARN ERROR FATAL UNKNOWN).each_with_index do |c, i|
    Logger::Severity.const_set(c, i)
  end
  $VERBOSE = verb

  def format_severity(severity)
    SEVS[severity] || 'ANY'
  end
end
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Lucas
  • Low reputation (1):
Posted by: David Pointon

79439715

Date: 2025-02-14 14:46:06
Score: 1.5
Natty:
Report link

Thank you @Marek-h for your suggestion. Using NSWorkspace.shared.setIcon(image, forFile: bundle.path, options: []) has the same effect, only works temporarily while the app is opened.

Seems like the reason the icon keeps reverting back is because I'm running a signed app. MacOS's code signing and app sandboxing prevent permanent modifications to the app bundle, which is what I'm trying to do when setting the icon.

Seems like the only way to do this for now will be to distribute the app from outside the App Store.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Marek-h
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Random player

79439711

Date: 2025-02-14 14:44:06
Score: 3
Natty:
Report link

Thank You for the solution, Can you use npm run watch in production site for real-time changes in server? Without the need of executing npm run production

Reasons:
  • Blacklisted phrase (0.5): Thank You
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Huzaifa

79439702

Date: 2025-02-14 14:42:05
Score: 4
Natty: 4.5
Report link

@shiraz

without reverse proxy we cannot able to map an path url using url rewrite?

eg:http://localhost/testnode

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @shiraz
  • Low reputation (1):
Posted by: Aditya Prashanth

79439693

Date: 2025-02-14 14:39:04
Score: 0.5
Natty:
Report link

You can disable this behaviour in MSVC by giving the compiler flag /Zc:gotoScope-, you can also disable the warnings that are generated when jumping over trivial variable initialisation with the compiler flag /wd4533.

Relevant links:

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

79439688

Date: 2025-02-14 14:36:04
Score: 2.5
Natty:
Report link

@app.get('/health') async def health(): """ Returns health status """ return JSONResponse({'status': 'ok'})

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

79439684

Date: 2025-02-14 14:35:03
Score: 3.5
Natty:
Report link

Full disclosure I work at ngrok. You don't have to pay for a static domain anymore: https://ngrok.com/blog-post/free-static-domains-ngrok-users

If you don't want your endpoint on the public internet, use an internal endpoint: https://ngrok.com/docs/network-edge/internal-endpoints/#:~:text=Introduction%E2%80%8B&text=Internal%20Endpoints%20cannot%20be%20accessed,active%20endpoint%20for%20billing%20purposes.

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

79439679

Date: 2025-02-14 14:33:03
Score: 3
Natty:
Report link

in my case i copied the CORE_RL_* dll files into C:\xampp\php also

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

79439666

Date: 2025-02-14 14:28:01
Score: 4.5
Natty: 5.5
Report link

thank you! so helpful, ive been trying for hours to do this!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29646107

79439659

Date: 2025-02-14 14:25:00
Score: 4
Natty:
Report link

If you are trying to convert a console application to a class library, try setting the startup object to '(Not set)' beforehand. enter image description here

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

79439658

Date: 2025-02-14 14:25:00
Score: 2
Natty:
Report link

You could use the vi( and it'll visualize whatever inside the next parentheses after your cursor, if that's what you mean.

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

79439650

Date: 2025-02-14 14:22:57
Score: 8 🚩
Natty: 6
Report link

I am having the same issue (I think). I am using openpyxl to transfer data from one excel sheet to another. The target excel sheet has formulas, but not in any cells where I am appending data.

Before the data transfer the formulas in the target excel sheet are fine. After the data transfer formulas that referencing cells where data was transferred to have the curly bracket.

Does anyone know why these curly brackets appear?

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Andrew

79439647

Date: 2025-02-14 14:21:56
Score: 2
Natty:
Report link

Without hardware accelaration in browser, drop-shadow causes some serious fps drop because it's cpu bound.

If your element's shape is box-like you can go with box-shadow it's lightweight by nature. Otherwise, you need to turn on hardware accelaration in browser.

For detailed information you can check : https://css-tricks.com/breaking-css-box-shadow-vs-drop-shadow

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: onur altuntaş

79439636

Date: 2025-02-14 14:16:55
Score: 3
Natty:
Report link

Estou com dificuldades em rodar a distribuição de weber aos meus dados. Consegui usar a função fitdist para as distribuições weibull, gamma, normal, lognormal e beta, mas a weber não consigo

Reasons:
  • Blacklisted phrase (1): não
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: juliana fonseca

79439635

Date: 2025-02-14 14:15:55
Score: 3.5
Natty:
Report link

Enhance networking with Leapon's NFC business cards. Share profiles instantly, collect leads, and grow your professional network effortlessly.

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

79439632

Date: 2025-02-14 14:13:54
Score: 6
Natty: 7
Report link

Sobre este tópico, no forms de "order organizer", Eu preciso trocar em todas as linhas a TAX_CODE para um valor que peguei do header da OV. Preciso de um evento para fazer uma unica vez que o usuário saiu do FORM. Não estou conseguindo, alguem pode ajudar? [enter image description here][1] pode escrever em portugues???????????

Aplicação do Form : Gerenciamento de Ordens Nome do Form : OEXOEORD Caminho do Form : /woadev/app/oracle/R122/fs2/EBSapps/appl/ont/12.0.0/forms/PTB/OEXOEORD.fmx Versão do Form : 12.0.306.12020000.82 Última Modificação do Form : $Date: 2015/03/23 22:52 $

Reasons:
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): Não
  • Blacklisted phrase (1): todas
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): ???????????
  • Low reputation (1):
Posted by: Vicente Neto

79439629

Date: 2025-02-14 14:13:54
Score: 1
Natty:
Report link

I want to enable nfc in my pkpass. I have used this code

     pass.nfc = new NFC
     {
         message = mbr.MembershipID,
         encryptionPublicKey = "MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE7LGd0HX4cK+WoiQB7DpV4D59hUfDBgGeQfu2f20M4gEfQiSNcOj8J+5N5dg2iYm7//cIusxHeInU2WZEZAQZZg==",
         requiresAuthentication = false
     };
    
    but now the pkpass is not able to get open, please guid me.
    
    I have used below code to create encryptionpublickey 
    
    using (ECDiffieHellman ecdh = ECDiffieHellman.Create(ECCurve.NamedCurves.nistP256))
    {
        // Export public key in X.509 format
        byte[] publicKey = ecdh.ExportSubjectPublicKeyInfo();
    
        // Convert to Base64
        string base64PublicKey = Convert.ToBase64String(publicKey);
    
        Console.WriteLine("Base64-encoded X.509 SubjectPublicKeyInfo:");
        Console.WriteLine(base64PublicKey);
    }
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yash Singh

79439626

Date: 2025-02-14 14:11:53
Score: 2.5
Natty:
Report link

Thanks for contributing an answer to Stack Overflow!

Please be sure to answer the question. Provide details and share your research! But avoid …

Asking for help, clarification, or responding to other answers. Making statements based on opinion; back them up with references or personal experience. To learn more, see our tips on writing great answers.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: adgjm789

79439625

Date: 2025-02-14 14:11:53
Score: 2.5
Natty:
Report link

Dears, the issue is resolved or still not resolve, I meet same issue in Apache Beam Python 3.12 SDK 2.59.0

Unable to perform SDK-split for work-id: due to error: INTERNAL: Empty split ret

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

79439614

Date: 2025-02-14 14:08:52
Score: 2.5
Natty:
Report link

Be aware of common functionality across features such as session/user information that also might come from a provider - but in general common functionality across features to prevent duplicated code.

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

79439601

Date: 2025-02-14 14:02:51
Score: 2.5
Natty:
Report link

I have updated your example and used row selection persistence to maintain the selection state in the Grid. Here is the result that meets your requirements:

https://stackblitz.com/edit/angular-pe3m9kdq-i1qt5ben

I hope this helps.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yan-dev

79439598

Date: 2025-02-14 14:00:50
Score: 1
Natty:
Report link

following error went away after updating version of react and redux

TypeError
(0 , _searchApiSlice__WEBPACK_IMPORTED_MODULE_1__.useSearchCustomersQuery) is not a function or its return value is not iterable
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: noBoom

79439586

Date: 2025-02-14 13:56:49
Score: 1.5
Natty:
Report link

That can be achieved by making another directory inside resources/META-INF/resources and adding an index.html.

Your directory structure would look like this:

| META-INF/
------| resources/
------------| index.html
------------| login/
------------------| index.html

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Filler text (0.5): ------------
  • Filler text (0): ------------
  • Filler text (0): ------------------
  • Low reputation (1):
Posted by: can-ishk

79439581

Date: 2025-02-14 13:54:49
Score: 1.5
Natty:
Report link

I'd say:

double result = (x % 1 < 0.5? x : Math.round(x));
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eyso

79439574

Date: 2025-02-14 13:51:48
Score: 1.5
Natty:
Report link

The table-value constructor inside a CTE is a bit tricky because SQL syntax doesn’t directly support it in the way you’re attempting.

The best way to do this is to explicitly define column names within the VALUES clause itself inside the WITH statement.

Here’s the correct way to write your query: https://runsql.com/r/7f9d71d458eb7adf

Notice that the alias t (e, f) must be explicitly added after the VALUES clause inside the SELECT * FROM subquery.

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

79439573

Date: 2025-02-14 13:51:48
Score: 0.5
Natty:
Report link

React components take props as object

https://react.dev/learn/passing-props-to-a-component

export default function WatchList({ movies, watchlist, toggleWatchlist }) {}
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Алексей Мартинкевич

79439570

Date: 2025-02-14 13:50:48
Score: 0.5
Natty:
Report link

I ran into same issue but using https://github.com/rubocop/rubocop I looked at the "DETAILS" section.

fixed it with vscode user settings.json file

"rubocop.mode": "enableViaGemfile",

rubocop headquaters img

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

79439567

Date: 2025-02-14 13:49:48
Score: 0.5
Natty:
Report link

Hello you found the answer. Fyi

in open CV you can use cvtcolor bgr to RGB as well

Rgb_img = cv2.cvtColor(img,cv2.COLOR_BGR2RGB) Img= your photo . What is nice with it is it can convert to a lot of other color channels Hsv or lab for exemple

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: C Jean

79439560

Date: 2025-02-14 13:43:46
Score: 2
Natty:
Report link
  1. XNOR Gate Using NOR ⦁    Extend the XOR circuit by adding a final NOR gate. ⦁    Connect the XOR output to the inputs of the last NOR gate. ⦁    Run the simulation to verify the XNOR operation.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Joshna Palla

79439553

Date: 2025-02-14 13:41:46
Score: 3
Natty:
Report link

I created an instance of inputObject like this: var inputObject = ClassFactory.CreateObject(new string[] { "col0", "col1" }, new Type[] { typeof(string), typeof(bool) } ); inputObject?.GetType().GetProperty("col0")?.SetValue(inputObject, "Wow... Loved this place.");

but when I call: var predict = predictMethod.Invoke(dynamicPredictionEngine, new[] { inputObject });

I get an error :-(: System.ArgumentException: 'Object of type 'DynamicInput' cannot be converted to type 'DynamicInput'.'

Reasons:
  • RegEx Blacklisted phrase (1): I get an error
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Michal Siedlecki

79439550

Date: 2025-02-14 13:40:46
Score: 3.5
Natty:
Report link

I found a solution while facing same problem. For avoid inserting if you violate not null constraint you can do a Insert Select operation avoiding null values.

In your example:

INSERT INTO public.users (user, user_yob, sex) SELECT mom, mom_yob, 'F' FROM staging.users where user is not null ON CONFLICT DO NOTHING;

This should avoid inserting values from staging users to public users if user (guess is name or something similar is not null) you can check any value

Here you have an example of the select into with where clause

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same problem
  • Low reputation (1):
Posted by: Daniel Jiménez

79439548

Date: 2025-02-14 13:40:46
Score: 3
Natty:
Report link

The import error is stored in the table "import_error" in your database.

Just delete the entry and the warning is gone.

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

79439537

Date: 2025-02-14 13:35:45
Score: 2.5
Natty:
Report link

If someone still struggles with this issue and is using native federation with web components, make sure that your "shared" object within federation.config.js in micro-frontend is empty.

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

79439532

Date: 2025-02-14 13:34:45
Score: 0.5
Natty:
Report link

I have removed the Gridview databind instruction from the Page_Load() event and only refresh it when required. It solved the problem. I can see why refreshing the values might mess up with the DataKeys, but I still wonder why it works in localhost !

// don't call this sub in the Page_Load() event
    
private void RefreshGridview()
{
    this.SqlDataSource_Contracts.SelectCommand = GetGridviewSql();
    this.GridView_Contracts.DataBind();
    Label_Gridview.Text = GridView_Contracts.Rows.Count + " contracts in the database";
}        
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Cookie Monster

79439528

Date: 2025-02-14 13:33:44
Score: 1.5
Natty:
Report link

First, clear Flutter cache files. Then, clear your device's cache or uninstall and reinstall the device.

flutter clean
flutter pub get
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aly Yilmaz

79439524

Date: 2025-02-14 13:32:44
Score: 1
Natty:
Report link

It's a known issue with camelot. Just uninstall the current installation of camelot by pip uninstall camelot and reinstall it by doing pip install camelot-py.

It should fix the issue.

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

79439521

Date: 2025-02-14 13:30:44
Score: 2
Natty:
Report link

As it turned out, yes, it was enough to mark the DigitalProduct only with the annotation @Entity.

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

79439519

Date: 2025-02-14 13:30:44
Score: 1.5
Natty:
Report link

I was able to solve this by using the Builder::allowlist_item method with regex:

Builder::default().allowlist_item(r"^mylib_.*$")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Martin

79439508

Date: 2025-02-14 13:26:43
Score: 2
Natty:
Report link

you're not setting device token to FCM system

func application(
          _ application: UIApplication,
          didRegisterForRemoteNotifeicationsWithDeviceToken deviceToken: Data
      ) {
          Messaging.messaging().apnsToken = deviceToken
          
      }

and in didFinishLaunching method

... 
        UNUserNotificationCenter.current().delegate = self
                let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound]


         UNUserNotificationCenter.current().requestAuthorization(options: authOptions) { granted, error in
                    print("Notification permission granted: \(granted)")
                }
        
                
                Messaging.messaging().delegate = self
        
 ....

I'm always using in this order, I think it will work, please let me know after trying

edit:

and, the main problem in here is that

However, if you have disabled swizzling by setting
 *  `FirebaseAppDelegateProxyEnabled` to `NO` in your app's
 *  Info.plist, you should manually set the APNs token in your application
 *  delegate's `application(_:didRegisterForRemoteNotificationsWithDeviceToken:)`
 *  method.

As far as I get you touched your info.plist file to set FirebaseAppDelegateProxyEnable key to set it false, if you did it, you have to manually set it apnsToken like the code I've shared

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): I think it will work, please
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: eemmrrkk

79439495

Date: 2025-02-14 13:22:41
Score: 1
Natty:
Report link

com.google.firebase.database.DatabaseException: Expected a Map while deserializing, but got a class java.lang.String at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.expectMap(CustomClassMapper.java:344) at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.deserializeToParameterizedType(CustomClassMapper.java:261) at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.deserializeToType(CustomClassMapper.java:176) at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.convertToCustomClass(CustomClassMapper.java:101) at com.google.firebase.database.DataSnapshot.getValue(DataSnapshot.java:229) at com.dts.yanzz.v20.LoginActivity$4.onChildAdded(LoginActivity.java:168) at com.google.firebase.database.core.ChildEventRegistration.fireEvent(ChildEventRegistration.java:79) at com.google.firebase.database.core.view.DataEvent.fire(DataEvent.java:63) at com.google.firebase.database.core.view.EventRaiser$1.run(EventRaiser.java:55) at android.os.Handler.handleCallback(Handler.java:883) at android.os.Handler.dispatchMessage(Handler.java:100) at android.os.Looper.loop(Looper.java:237) at android.app.ActivityThread.main(ActivityThread.java:7830) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1040)

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

79439493

Date: 2025-02-14 13:22:41
Score: 1.5
Natty:
Report link

The solution here was to use labels instead:

enter image description here

Why? the data is already ingested as stored as structure metadata with labels already generated for querying support, so this means you should be able to use it as a source field directly to derive a new field from it.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: IbrarMumtaz

79439483

Date: 2025-02-14 13:17:40
Score: 1.5
Natty:
Report link

I know this is an old thread, but you are looking for this: Command line switch /appvpid: You can apply the /appvpid: switch to any command, which enables that command to run within a virtual process that you select by specifying its process ID (PID). Using this method launches the new executable in the same App-V environment as an executable that is already running.

Example: cmd.exe /appvpid:8108 https://learn.microsoft.com/en-us/microsoft-desktop-optimization-pack/app-v/appv-running-locally-installed-applications-inside-a-virtual-environment

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

79439482

Date: 2025-02-14 13:16:40
Score: 3
Natty:
Report link

the issue is that you try To add voyager on laravel 7 ,but the min requirement is laravel 8.see documentation for more informations. I hope that's solve the issue.

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

79439471

Date: 2025-02-14 13:10:39
Score: 2.5
Natty:
Report link

I am posting the answer to this question.

For window user: set DOTNET_DefaultStackSize=200000

For Mac user: export DOTNET_DefaultStackSize=200000

Increasing the default stack size will do.

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

79439465

Date: 2025-02-14 13:08:38
Score: 1.5
Natty:
Report link

This is neither a compilation error nor a timeout. The program is simply waiting for you to provide input (enter the value of 't'). After running the code, input an integer, and you will see the output.

It looks like your understanding of C++ fundamentals needs improvement. I recommend reading more about C++ or watching some tutorials to strengthen your basics.

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

79439458

Date: 2025-02-14 13:05:37
Score: 1.5
Natty:
Report link

Polymorphism means "many forms" in IT-Context it just means, that one interface can have multiple forms. So overall everything you have described is polymorphism.It's just different forms. Most people from my daily interactions talk about the subclass overriding. But thats maybe just because of the Field I work in. But basically everything that allows to change behaviour without destroying the old one can be considerd polymorphism

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

79439456

Date: 2025-02-14 13:04:37
Score: 0.5
Natty:
Report link

you can use the strategy matrix feature for gha

https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow

jobs:
  example_matrix:
    strategy:
      matrix:
        os: [ubuntu-22.04, ubuntu-20.04]
        version: [10, 12, 14]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/setup-node@v4
        with:
          node-version: ${{ matrix.version }}
Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mega

79439450

Date: 2025-02-14 13:03:37
Score: 1
Natty:
Report link

So thanks to the answer by @Barmar, and comments by @TobySpeight along with their answer not working on our Gitlab CI pipeline job, running in a docker image, we have to install zsh and create the following script file…

#!/usr/bin/env zsh

set -o pipefail;

counter=0;
while ! { output=$(docker compose --project-directory ./app --env-file ./.env exec php vendor/bin/pest --coverage-clover=clover.xml | tee /dev/fd/3) } 3>&1; do
  counter=$((counter+1));
  if [[ $output != *"done"* ]]; then
    echo "Attempt $counter failed.  Aborting.";
    exit 1;
  fi

  echo "Attempt $counter failed, but with known issue.";
  if [[ $counter -ge 5 ]]; then
    echo "Too many attempts.  Aborting.";
    exit 1;
  fi;
  echo "Re-trying...";
done;

For some reason, using sh or bash gave an "Unexpected token do" syntax error.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Barmar
  • User mentioned (0): @TobySpeight
  • Self-answer (0.5):
Posted by: TobyG

79439445

Date: 2025-02-14 13:01:33
Score: 6 🚩
Natty:
Report link

We had the same issue with polymer / neon-animation. But since we had issues with web-animations-js dependency we are trying out our own polyfill for play() based on KeyframeEffect documentation

(function () {
  if (document.timeline && !(document.timeline as any).play) {
    (document.timeline as any).play = (effect: KeyframeEffect) => {
      const animation = new Animation(effect, document.timeline);
      animation.play();
      return animation;
    };
  }
})();

under the assumption that neon-animation is the only dependency relying on timeline.play() and that the native web animations API is available, this seems to work. Does anyone have any ideas why this should not work? Or what side effects this can cause?

Reasons:
  • Blacklisted phrase (1): any ideas
  • RegEx Blacklisted phrase (3): Does anyone have any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: cmanthey

79439442

Date: 2025-02-14 12:59:33
Score: 2
Natty:
Report link

While trying this with the current version...

./spark-submit --master k8s://https://127.0.0.1:44617 --deploy-mode cluster --name spark-connect --class org.apache.spark.sql.connect.SimpleSparkConnectService --conf spark.kubernetes.container.image=spark:our-own-apache-spark-with-connect-kb8 --conf spark.kubernetes.container.image.pullPolicy=IfNotPresent --conf spark.kubernetes.authenticate.driver.serviceAccountName=spark local:///opt/spark/examples/jars/spark-connect_2.12-3.5.4.jar

... the driver does not offer the port 15002 but others:

kubectl describe pod spark-connect-d751899504784eaa-driver
...
Ports:         7078/TCP, 7079/TCP, 4040/TCP

So the above

kubectl port-forward NAME_OF_THE_DRIVER 15002

won't work. Any idea why the port is not opened?

Started with this https://medium.com/@SaphE/deploying-apache-spark-on-a-local-kubernetes-cluster-a-comprehensive-guide-d4a59c6b1204 and included the spark connect jar from here https://repo1.maven.org/maven2/org/apache/spark/spark-connect_2.12/3.5.4/ since it was not included in the preset docker image.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user29644975

79439436

Date: 2025-02-14 12:57:32
Score: 3
Natty:
Report link

Happens, when in a same class I declare method with same name vscode won't say anything about that. But error tells me that mistake on a different location.

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

79439432

Date: 2025-02-14 12:56:31
Score: 4.5
Natty:
Report link

enter image description here

LikedIn Post Sharing Can be in 2 ways , Detailed Simple Code & GitHub repo with video is here

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

79439423

Date: 2025-02-14 12:53:30
Score: 1
Natty:
Report link

In my case, the dependency I had used for mysql, with Spring 6.x.x was incorrect.

Worked after adding:

    <dependency>
        <groupId>com.mysql</groupId>
        <artifactId>mysql-connector-j</artifactId>
        <scope>runtime</scope>
    </dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ImalshaG

79439422

Date: 2025-02-14 12:53:30
Score: 1
Natty:
Report link

A tuple can store duplicate values, while a frozenset enforces uniqueness. Tuples allow element access by index, but frozensets do not support indexing or slicing. Frozensets support set operations like union, intersection, and difference, whereas tuples lack these. Additionally, a tuple's hashability depends on its elements (it must contain only hashable items), while a frozenset is always hashable since it contains only immutable elements. Lastly, tuples preserve insertion order (since Python 3.7+), while frozensets are unordered, meaning iteration order is not guaranteed.

Check out this reference

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

79439418

Date: 2025-02-14 12:51:30
Score: 2
Natty:
Report link

I think it might be a Firewall issue because even docker run hello-world fails:

Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world e6590344b1a5: Retrying in 1 second docker: error pulling image configuration: download failed after attempts=6: tls: failed to verify certificate: x509: certificate signed by unknown authority. See 'docker run --help'.

I`ll check if thsi is true and will update the topic.

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

79439416

Date: 2025-02-14 12:51:30
Score: 0.5
Natty:
Report link

Here's your answer:

<!DOCTYPE html>
<html>
<head>
 <title>test</title>
 <style type="text/css">
 table { counter-reset: row-counter; }
 tbody tr { counter-increment: row-counter; }
 tr td:nth-child(2)::before { content: counter(row-counter);}
 </style>
</head>
<body>
 <table border="1">
  <tr><td></td><td></td><td></td></tr>
  <tr><td></td><td></td><td></td></tr>
  <tr><td></td><td></td><td></td></tr>
</table>

All I know is it works. Don't ask me why.

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

79439410

Date: 2025-02-14 12:47:29
Score: 1.5
Natty:
Report link

We strongly recommend avoiding using OneDrive as a project or venv root due to specifics in file sync. Please consider moving the project and re-creating the virtual environment in the proper local directory to avoid any possible issues.

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

79439408

Date: 2025-02-14 12:47:29
Score: 0.5
Natty:
Report link

You're on the right track! The issue likely comes from a mix of positioning methods and percentages that don’t scale well together. Here are a few key fixes:

  1. Fixing Center Alignment Use display: flex and justify-content: center on the container that holds both .socials and #magicbox.

  2. Keeping the Figure Under the Socials Instead of using bottom: -45px; on .footer, try adding margin-top to #magicbox. Use position: absolute only if necessary; otherwise, flexbox or grid will be more predictable.

  3. Making It Responsive Instead of left: 35% in #magicbox, use margin: auto and text-align: center to keep it in place.

    .hiddenBottom { display: flex; flex-direction: column; align-items: center; }

    .socials { position: relative; z-index: 1; }

    #magicbox { position: relative; width: auto; min-height: 275px; margin-top: 10px; display: flex; justify-content: center; align-items: center; }

    .magic { position: absolute; bottom: 0; width: 30%; }

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

79439401

Date: 2025-02-14 12:45:28
Score: 1.5
Natty:
Report link

Also noted on the corresponding GitHub issue -- the issue here was your syntax in mapping to values:

The values you want to set are: AzureFunctionsJobHost__logging__logLevel__Function.http_trigger.User AzureFunctionsJobHost__logging__logLevel__Function.http_trigger

The key is that underscores map to object traversal within host.json.

Values like Function.http_trigger.User are just strings, so there's no need to replace the periods with underscores.

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

79439394

Date: 2025-02-14 12:42:28
Score: 2
Natty:
Report link

QUOKKA INSTALLATION

  1. First extension need to install
  2. go to directory: C:\Users\Administrator.quokka
  3. after npm install: npm install @babel/core --save
  4. after npm install: npm install jsdom --save
  5. now run quokka
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Moniur Islam khan

79439393

Date: 2025-02-14 12:42:28
Score: 2.5
Natty:
Report link

I have this issue come up every now and then; if I hard-restart the app on the iOS simulator (double tap home button and swipe up), it fixes the issue.

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

79439391

Date: 2025-02-14 12:40:27
Score: 0.5
Natty:
Report link

Turns out that i was having a computed property on one of the components that was using a filter to get all the typeA segments that looked like this

content?.elementList[0].segments.filter( x=> x.$type = SegmentType.TypeA)

instead of

content?.elementList[0].segments.filter( x=> x.$type == SegmentType.TypeA)

or

content?.elementList[0].segments.filter( x=> x.$type === SegmentType.TypeA)

I got confused because even if I put my console.log() as soon as I was getting the response the object was still modified by the property mentioned above, and I assumed that it might have been caused by the parsing of the object.

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

79439385

Date: 2025-02-14 12:39:27
Score: 2.5
Natty:
Report link

In the pull-down menu, where you can select the file to run, select "Edit Configuration...", there select "modify options" and under Java toggle "Do not build before run...". Than none other than the selected or current file is run.

This solved for me that other, still buggy, files were prompted to correct, before the IDE ran anything.

Maybe this is helpful. Cheers.

Reasons:
  • Blacklisted phrase (1): Cheers
  • No code block (0.5):
  • Low reputation (1):
Posted by: elAndres

79439384

Date: 2025-02-14 12:39:27
Score: 1
Natty:
Report link

It is 2025 and the ability of reimporting a project has gone.

I managed to restore project by cloning it again to a new directory, refreshing idea's gradle plugin in the new dir, and moving ./idea/gradle.xml file back to the original project.

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

79439383

Date: 2025-02-14 12:37:26
Score: 4
Natty: 5.5
Report link

what the name can I change IconName
IconName in each line thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): what the
  • Low reputation (1):
Posted by: Adam

79439379

Date: 2025-02-14 12:36:26
Score: 0.5
Natty:
Report link

Just click the schemes drop-down at the top and choose Edit scheme. On the screen that opens, select Run on the left, pick Release rather than Debug next to Build configuration, and click Close. You may also want to uncheck Debug executable on the latter screen.

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

79439378

Date: 2025-02-14 12:36:26
Score: 3
Natty:
Report link

Laravel provides the app()->make() method, which allows you to pass runtime parameters. link to docs here: https://laravel.com/docs/11.x/container#the-make-method

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

79439366

Date: 2025-02-14 12:29:25
Score: 0.5
Natty:
Report link

What seems to be the problem is that you didn't install the AdmZip package. Do it like this:

npm install adm-zip

PS: I think you have an error in the later part of your program. Notice that a single backslash (\) character is a beginning of an escape pattern. You should use the sequence \\ to insert a single backslash:

'C:\\Users\\Nikla\\Documents\\AdventureWorksDW2022.bak'
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Proteus

79439365

Date: 2025-02-14 12:29:25
Score: 0.5
Natty:
Report link

Coding directly in cPanel's file editor can be challenging, especially if you're used to a full-featured IDE or text editor with shortcuts and advanced functionality. However, there are still some ways to improve your productivity while working in cPanel's file editor. Here are some tips and potential shortcuts:

1. Use Browser Shortcuts

Since cPanel's file editor runs in your browser, you can leverage browser shortcuts to speed up your workflow:

Ctrl + S (Windows) / Cmd + S (Mac): Save the file.

Ctrl + F (Windows) / Cmd + F (Mac): Open the find tool to search within the file.

Ctrl + Z (Windows) / Cmd + Z (Mac): Undo changes.

Ctrl + Y (Windows) / Cmd + Shift + Z (Mac): Redo changes.

Ctrl + C (Windows) / Cmd + C (Mac): Copy selected text.

Ctrl + X (Windows) / Cmd + X (Mac): Cut selected text.

Ctrl + V (Windows) / Cmd + V (Mac): Paste text.

Ctrl + A (Windows) / Cmd + A (Mac): Select all text in the file.

2. Use cPanel Editor Features

While the cPanel file editor is basic, it does offer some features that can help:

Syntax Highlighting: Ensure the editor is set to recognize the file type (e.g., PHP, JavaScript, HTML) for better readability.

Line Numbers: Use line numbers to quickly navigate to specific parts of the code.

Search and Replace: Use the "Find" or "Find and Replace" feature to make bulk changes.

3. Use an External Editor with FTP

If cPanel's editor feels too limiting, consider using a local text editor or IDE with FTP/SFTP support. This way, you can edit files directly on the server without manually uploading/downloading them. Some popular options include:

VS Code with the SFTP extension: Edit files directly on the server.

Sublime Text with SFTP plugin: Sync files with the server.

Notepad++ with NppFTP plugin: Edit files remotely.

This approach gives you the power of a full-featured editor while still working directly on the server.

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

79439363

Date: 2025-02-14 12:28:24
Score: 4
Natty:
Report link

you can try cmd instead of PowerShell

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

79439361

Date: 2025-02-14 12:28:24
Score: 1
Natty:
Report link

First, you need to import image to use in img element

import imgName from '../../public/testimg.jpeg

then put it in img

<img src={imgName} />

If you are using nextjs, I recommend using Image component.

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

79439358

Date: 2025-02-14 12:26:23
Score: 1.5
Natty:
Report link

adjust the trigger

on:
  workflow_run:
    workflows: ["Auto Version Tagging"]
    types:
      - completed
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mega

79439356

Date: 2025-02-14 12:26:23
Score: 1.5
Natty:
Report link

I use this:

kubectl get --raw /metrics | grep kubernetes_feature_enabled

(Grabbed it some time ago from here: https://cloud.google.com/kubernetes-engine/docs/concepts/feature-gates#check-feature-gate-state)

Works fine for all the k8s cluster flavours I manage (including EKS and the ones set up via kubeadm), not just GKE. :)

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

79439353

Date: 2025-02-14 12:26:23
Score: 1.5
Natty:
Report link

You can add image in your notebook in two way:

  1. In Markdwon

![<title>](tensornames.png)

  1. In code

from PIL import
Image Image.open('tensornames.png')

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

79439348

Date: 2025-02-14 12:23:19
Score: 7 🚩
Natty: 5.5
Report link

????? ??????-1

??????.. ????? ?? ??????? ???????? ??? ??????? ???? ??? ???????? ??????… -????? ??? ?? ????, ????? ????? ????? ?? ???? ????

???? ?? ???? ??? ??????? ?? ???? ?? ????? ?? ??? ??? ???? ???? ???? ??? ?? ??? ??? ?? ??????? ???? ??? ???? ???? ???? ?? ????????? ?? ?? ???? ?? ??? ????? ??? ???? ?? ?? ?????? ?? ??? ?? ?-?????? ???? ???? ?? ??????? ???? ?? ??? ??? ?????? ?? ???? ?? ??? ???? ????? ??? ???? ?? ???? ?????? ?????? ?? ??? ?????? ?? ??? ??? ??? ???? ??? ?????? ???? ????? ? ?? ??????? ?? ???? ???? ?? ??? ?????? ??? ??? ??? ???? ?? ?????? ?? ?? ???? ?? ???, ?? ????? ?? ?? ????? ??? ?? ???? ?? ?? ??? ???? ?? ????? ???? ??? ????? ?? ????? ?? ????? ?? ????? ?? ??? ?-?????? ????? ?? ?????? ???? ???? ???? ?????? ?? ?????? ?? ?? ?????? ????? ?? ???? ?? ?????? ??? ????? ????? ???? ???? ???? ?? ???????? ???? ???? ???? ?? ??? ????? ????? ??????? ???? ?? ???? ??? ??? ?? ???? ???? ????? ????? ??? ????? ?? ??? ???? ?? ?? ?? ??????? ???????? ????? ?????? ?? ??? ????? ???? ?? ???? ?????? ?-?????? ?? ??? ?????? ???? ???? ???? ??? ???? ?? ?????? ?? ?????? ?? ??????? ??? ???? ?? ??????? ????? ?? ??? ?? ?????????? ???? ?????? ?? ????? ?? ?????? ?? ???? ??? ????? ??? ????????? ???? ???? ?? ??? ????? ???????? ?? ???? ??? ??? ??? 15 ????? ??? ????? ?? ???????? ?? ???? ??? ?????? ??????? ????? ????? ?? ???? ???? ????? ?? ???????? ?? ?????


????? ?? ???? ??? ???? ?? ??? ????? ????? ?? ?????, ????? ????? ????? ?? ???? ??? ???? ?????? ????? ??? ?????? ?? ????? ?? ????? ?? ?? ??? ??? ?? ????? ??? ????? ?? ?? ????? ?? ??????? ???? ?? ???? ???? ????? ?????? ?? ????? ?????? ??? ????? ???? ???? ???


????? ?????? 2…

??????? ??? ??? ?? ??? ???? ???? ?? ????? ???? -???? ?? ??? ???? ??? ???? ??? ?? ??? ???? ?? ???? ??? ??? ???????? ?? ??????? -??? ?? ?????? ????? ?? ??? ??? ???? ?????? ?? ????? ?? ???? ??????

?????? ??????? ??????? ??? ??? ??? ?? ??? ?????? ???? ??? ????? ???? ?? ???? ????? ??? ???? ?? ????? ?????? ?? ?? ???? ?? ??? ???? ??? ???? ??? ??? ?? ???? ??? ??? ??????? ?? ???????? ???

??? ???? ???? ?? ?? ??????????? ??? ????? ?? ??? ?? ? ????? ???? ???????? ??? ???? ????? ??????? ?????? ?? ??? ?????? ?? ?????? ???? ?? ???? ?? ??? ?? ???? ????? ??? ?????? ????? ?? ??? ?? ?? ??? ??? ?? ????????? ?? ???? ???? ???? ?? 50,000 ????? ?? ?????? ?????? ???????? ??????? ?? ?? ?? ?? ?? ??? ??????? ?? ??? ?? ?????? ??? ?? ??? ?? ???? ?? ?????? ???? ?? ???? ?? ???

??? ?? ?? ???? ??? ??? ????? ?? ?????? ?? ??? ???? ???? ???? ?? ?? ???? ??? ?? ??? ??????? ?? ?? ??? ?? ???? 50,000 ?? ?? ??? ????? ?? ?? ?????? ??? ??? ?? ?? ???? ?? ???, ??? ?? ???? ??? ?? ?? ?? ?? ???? ??? ??????? ????????? ???? ????? ??? ?? ???? ?? ????????? ?? ????? ?? ???? ??? ?? ??? ???

??????? ?? ?????? ?? ???? ??? ?? ???? ???? ???? ?? ?? ???? ??????? ???? ?? ?? ??????? ?????????? ????? ?????? ?? ?????? 11,000 ????? ???? ?? ??? ??? ???? ??????? ?? ?????? ?? ??? ?? ?????? ???? ?? ??? ??? ???? ?????? ??? ?? ???? ?????? ?? ????? ?? ???? ?????


????? ??????? 3…

??????...????? ?? ????? ??? ???? ??? ?? ?????? -?????? ?? ???? ????? ?? ?????? ???? ???? ???? ????? ??? -?????? ?? ????? ??? ?? ????? ?? ?? ????? ?? ????? ??? ???????

??? ?? ?????? ?? ??? ?? ??? ????? ?? ??? ???? ?????? ??? ?? ??? ???? ??????? ?? ??? ???? ??????? ?? ????? ??? ???? ??? ?????? ?? ???? ??? ?????? ????? ???? ???? ??? ???? ???? ????? ?? ??? ??? ??? ?? ?????? ?? ?? ?????? ?? ???? ??? ????? ?? ???? ?? ?? (???) ???? ???? ?? ?? ???????? ?? ??? ?????? ?????? ?????? ?? ??????? ?? ????? ??? ??????? ?? ????? ???? ?????? ????? ?????

?? ????? ??? ?????? ?? ???????, ???????, ??????, ??????, ??? ????? ?? ??? ??? ?? ????? ?????? ??????? ?????? ?? ?? ?????? ??? ??? ??? ?? ????? ??????? ?? ??? ?? ??? ?? ?????? ?? ??? ?? ??? ???? ?????? ?? ?????????? ???????? ?? ??? ????? ????? ?? ?????? ???? ?? ??? ???? ?????? ?? ???????? ?? ??? ?? ??? ?????? ?? ?? ???? ?? ????? ? ?????? ?????? ????? ??? ??? ?? ????? ?? ???? ?????? ?? ??????? ????? ??? ??? ?? ???? ???? ?? ??? ??? ?? ????? ??? ??? ?? ??? ?? ??????? ?????? ?????? ?? ?? ?? ??????? ???? ???? ??? ???? ??? ????? ?? ??? ??? ??? ??? ??????? ?? ?? ?????? ?????? ?? ??? ??? ??? ??? ??????? ??? ?? ?? ????? ??? ???? ?????? ????? ???? ?? ????? ?? ?? ???? ???? ?? ????? ??? ?? ????? ??? ?? ?? ??? ?? ??? ????? ??? ?? ???? ??? ??? ???? ???? ?? ?? ??????? ??????? ??? ??? ??? ?? ??? ??? ?? ??? ??? ?? ?? ??? ??????? ??????? ?? ?????? ?? ??? ???

?????? ??????? ?? ?????? ???? ?????? ?? ?????

???? ?? ?? ????? ??? ????? ?????? ????? ??? ??? ?? ????????? ????? ???? ?? ?????? ???? ?? ??? ??? ?? ?????? ?? ???? ?? ?????? ???? ????? ??? ??? ????? ???? ??? ?? ???? ?????? ??? ???? ?? ????? ???? ?????? ?? ????? ?? ??? ??, ????? ?? ???? ???? ?????? ??? ?? ??? ?? ???? ????? ??? ??? ???? ???? ????? ???? ???

??? ?? ???? ?? ???? ????? ????? ??? ?? ????? ?? ???? ??? ?? ?? ??? ?? ????????????? ????????? ????????? ??? ??? ??? ???? ???? ??? ????? ??? ???? ??? ?? ??? ??? ??? ??? ???? ?? ?? ????? ?? ????? ?? ?????? ??? ?? ????? ??? ?????? ??? ???? ????? ????? ?? ?????? ???? ??? ?? ?????? ??? ?? ????? ?? ??? ?? ????????? ??? ?? ??????? ?? ????? ???? ??????? ???? ?????? ?? ?????? ??? ?? ???? ????? ?????? ?? ???? ??????? ?? ????? ?? ??? ???


????? ?????? 4…

??????...??? ????? ?? ??? ?????? ?? ??????… -??? ???? ??? ??? ???????? ?? ???? ????

??? (Artificial Inteligence) ????? ?? ??? ?????? ?? ??? ?????? ?????? ??? ???? ?? ????????? ?? ???? ?? ??? ???? ???? ??? ?????? ????? ??? ?????? ?? ?? ???? ?? ?? ???? ????? ???? ???? ????

???? ?????????? ?? ???? ??????????? ?? ???????? ??? ??? ???? ??? ????? ??? ?? ??? ????? ???? ??????? ????????? ??? ????? ?? ??? ??? ????? ??? ?? ?????? ??? ???? ???? ???? ??? ?? ??? ???? ?????? ??? ??? ?? ????? ????? ?? ????????? ????? ?? ???? ???? ???? ???? ?? ???? ????? ??? ???? ?????? ??? ??? ???????? ??????? ??? ?? ?????? ?? ?? ??????? ?? ????? ?????? ????? ???? ????????? ??? ??? ?? ??? ????? ?? ??????? ???? ??? ?????? ????????? ?? ??????? ??? ??????????? ???????? ??? ?? ??????? ??? ???? ??????? ??? ???? ?????? ??? ??????? ??? ?? ???? ?????? ????? ??????? ??? ??? ?????? ??????????, ?????? ??????? ??? ?? ??? ??? ???? ???????? ??? ??????? ?? ???? ????????? ???? ??? ??????

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • No latin characters (2):
  • Filler text (0.5): ????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ??????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ???????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ??????????
  • Filler text (0): ????????
  • Filler text (0): ??????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ????????????
  • Filler text (0): ?????????
  • Filler text (0): ??????????
  • Filler text (0): ???????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ???????????
  • Filler text (0): ????????
  • Filler text (0): ??????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Low entropy (1):
  • Low reputation (1):
Posted by: sunil kumar