79297832

Date: 2024-12-20 16:28:20
Score: 2
Natty:
Report link

I was able to solve the problem. Sharing for others.

1. Do I just need changes in application.yaml to make my springboot3 work in SSL?

Yes. Springboot3 offers SSL bundle which can be used.

2. Do I need to convert .crt and .key to any other format? or can Springboot3 work with that fine?

Not required. In Springboot3, you can directly consume .crt and .key files

3. How can I fix my errors? I understand that it is related to SSL configuration. I tried this org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop' and Failed to start 'webServerStartStop' spring boot app and it didnt help. And fyi - I am trying to consume the.crt and .key during run time as they reside inside my container in eks cluster which I read during app start up.

you just need below changes in your application.yml file and can consume .crt and .key directly from your local or from your container. In my case, I added the port as 8443 in my application yaml but my app was exposed in 8083. I fixed that too.

server:
  port: 8083 
  ssl:
    enabled: true
    bundle: mybundle
    enabled-protocols: TLSv1.3

spring:
  ssl:
    bundle:
      pem:
        mybundle:
          keystore:
            certificate: /path/to/cert.crt
            private-key: /path/to/cert.key
      jks:
        client:
          trust-store:
            location: classpath:trust.jks
            password: <truststore password> 
            type: jks
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I am trying to
  • Whitelisted phrase (-2): I fixed
  • RegEx Blacklisted phrase (1.5): How can I fix my errors?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: extractor

79297822

Date: 2024-12-20 16:25:19
Score: 1.5
Natty:
Report link

Turns out the fix was manually copying the command VSCode runs to debug, and running it in the integrated terminal manually.

This worked for debugging it once, and the entire system fixed itself somehow after.

I have no idea why, or what was happening originally. This seems like a bug still, however it is "resolved."

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

79297802

Date: 2024-12-20 16:17:18
Score: 0.5
Natty:
Report link

Impeller already does what you're asking automatically and actually doesn't depend on Vulkan. On iOS and macOS, Impeller uses Metal, not Vulkan. On Android, it uses Vulkan if available, and otherwise falls back on OpenGL.

From the page you linked:

Impeller uses, but doesn't depend on, features available in modern APIs like Metal and Vulkan.

Flutter enables Impeller by default on Android. On devices that don't support Vulkan, Impeller will fallback to the the legacy OpenGL renderer. No action on your part is necessary for this fallback behavior.

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

79297800

Date: 2024-12-20 16:17:18
Score: 2.5
Natty:
Report link

Use this command to set a default Node.js version. For example, to set version 16 as the default, use: nvm alias default 16. You can replace 16 with any other version, such as 18, 20, or 22, depending on your needs.

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

79297798

Date: 2024-12-20 16:16:18
Score: 2.5
Natty:
Report link

AIMBOT 95% VIP [FREE FIRE].zip 1 /storage/emulated/0/Android/data/com.dts.freefireth/AIMBOT 95% VIP [FREE FIRE].zip: open failed: EACCES (Permission denied)

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

79297796

Date: 2024-12-20 16:15:18
Score: 3
Natty:
Report link

You can checkout this detailed article explaining the reason for this behaviour in javascript.

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

79297789

Date: 2024-12-20 16:13:17
Score: 4
Natty:
Report link
//@version=2
study(title = "Directional Flow Analyzer Indicator Heikin Ashi", shorttitle="Directional Flow Candles", overlay=true)

len=input(10)
o=ema(open,len)
c=ema(close,len)
h=ema(high,len)
l=ema(low,len)

haclose = (o+h+l+c)/4
haopen = na(haopen[1]) ? (o + c)/2 : (haopen[1] + haclose[1]) / 2
hahigh = max (h, max(haopen,haclose))
halow = min (l, min(haopen,haclose))

len2=input(10)
o2=ema(haopen, len2)
c2=ema(haclose, len2)
h2=ema(hahigh, len2)
l2=ema(halow, len2)

col=o2>c2 ? red : lime
plotcandle(o2, h2, l2, c2, title="heikin smoothed", color=col)

Please help me to update this pine script from version 2 to the latest version 5 or 6

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me to
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mani Kandan

79297776

Date: 2024-12-20 16:07:15
Score: 3
Natty:
Report link

I have built a dynamic enum that can be useful for your project. I’ve published it on GitHub, and you can refer to it here: flexiEnums

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

79297750

Date: 2024-12-20 15:56:13
Score: 0.5
Natty:
Report link

either run it in jupyter, or if you have conda run the (Given_Name).py file by just opening conda prompt window and typing its (Given_Name).py and pressing Enter (conda probably is directed to your PATH to read your .py files, if it is not reading your file in a right directory, you can give a new directory on the same Drive (like Drive C) using cd command like: cd C:\Program Files)

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

79297711

Date: 2024-12-20 15:40:09
Score: 1
Natty:
Report link

When it's run, there was a blank form underneath it, and I wanted to hide it

Pay attention to @Bryan Oakley and @acw1668

The problem can be fixed.

Pay attention to @Bryan Oakley and @acw1668

Move root.withdraw() after root.geometry(...)

Snippet:

:
root.geometry("340x100+50+500")
root.withdraw()
:

Screenshot:

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • User mentioned (1): @Bryan
  • User mentioned (0): @acw1668
  • User mentioned (0): @Bryan
  • User mentioned (0): @acw1668
  • Starts with a question (0.5): When it
  • High reputation (-1):
Posted by: toyota Supra

79297706

Date: 2024-12-20 15:37:09
Score: 0.5
Natty:
Report link

It sounds like you’re dealing with a significant performance bottleneck due to the volume of data being loaded in your relationship mapping. To address this efficiently, here are a few suggestions:

Use Lazy Loading: Ensure that your @ManyToMany relationship is set up with fetch = FetchType.LAZY. This way, the associated data will only be loaded when explicitly accessed. For example:

@ManyToMany(fetch = FetchType.LAZY)private Set<ArticoloPolicySconto> articoloPolicySconti;

This reduces the risk of fetching unnecessary data during application startup.

Custom Querying with JPQL/Criteria API: Instead of relying on automatic loading of relations, you can create custom repository methods to fetch only the data relevant to the logged-in user. For example:

@Query("SELECT aps FROM ArticoloPolicySconto aps JOIN aps.users u WHERE u.id = :userId")List<ArticoloPolicySconto> findPolicyByUserId(@Param("userId") Long userId);

This approach minimizes the data fetched and processed at any time.

Batching or Pagination: If fetching data still results in performance issues due to size, consider using batching or pagination with your queries to fetch smaller chunks of data:

PageRequest pageRequest = PageRequest.of(0, 100); // Example for pagination
List<ArticoloPolicySconto> policies = repository.findPolicyByUserId(userId, pageRequest);

Indexing in PostgreSQL: Ensure that your database tables have appropriate indexes on fields used in your queries (e.g., id_user, id_articolo, politica_sconto_id). This will significantly enhance query performance.

Additionally, if you need custom help to optimize your system, Elogic Commerce just happens to specialize in e-commerce solutions, including optimizing database relationships and performance in complex systems like yours. Feel free to contact us if you'd like to consider working together - we've helped companies solve similar challenges in the past)

Best.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @ManyToMany
  • Low reputation (1):
Posted by: Bohdan Ponomarenko

79297704

Date: 2024-12-20 15:37:09
Score: 1
Natty:
Report link

In my application, Filament 3.2, Laravel 11, I had the same issue in the panel. This was sucessfull in displaying the logo image in my project:

->brandLogo(url('storage/images/wplanner_textBorder_transparent.png'))

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jennifer

79297685

Date: 2024-12-20 15:29:06
Score: 2.5
Natty:
Report link

Did you try docsible ? It's auto generate docs readme.md for roles/collection

Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: element

79297675

Date: 2024-12-20 15:24:05
Score: 3
Natty:
Report link

You can achieved this by invalidating the query. From the official docs:

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

79297673

Date: 2024-12-20 15:23:05
Score: 2.5
Natty:
Report link

This does work properly if the "constant" in question is a function address.

It may also be possible to reliably produce the relocation construct I want in LLVM IR (in the RL scenario I am in, there is code generation directly in IR, so I don't need to adhere to the behaviors/assumptions of a C compiler).

The situation in the original question seems to depend on what C/C++ compilers are allowed / not allowed to assume about just how "const" a const extern variable really is. Thanks everyone for the comments.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Yoni Lavi

79297658

Date: 2024-12-20 15:17:03
Score: 1.5
Natty:
Report link

I reviewed my issue and figured out that I'm not sending the correct Payload as value of key, So Please Remove Special Char as=> (,), etc. from their value of Key.

Thanks.

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

79297651

Date: 2024-12-20 15:15:03
Score: 1
Natty:
Report link
{$gen_num = array_fill(0,5,'i')}
{$gen_num = array_keys($gen_num)}
{assign var="i" value=shuffle($gen_num)}
{$read = ', '|implode:$gen_num}
{$read}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Onyedikachi Oko - Dexter

79297650

Date: 2024-12-20 15:15:03
Score: 1.5
Natty:
Report link

It seems to be related to cache - after the recent release of v12, there are possible issues with chart rendering caused by the new way of handling modules - see more details in the release notes: https://www.highcharts.com/blog/changelog/#highcharts-v12.0.0

Please try to clean up the cache in your browser and share the results.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Andrzej Bułeczka

79297649

Date: 2024-12-20 15:13:02
Score: 1.5
Natty:
Report link

I’ve recently managed to set it up and get it working. Currently I got the backend doing typo3 stuff, where I create content blocks and fill up the content. And a Nuxt 3 frontend where I create those components for the content blocks. The headless typo3 + nuxt Module work great together. Since I’m really new to typo3 I am not sure if this is the ideal setup, but at least it works. I also had massive issues with CORS and only fixed it after many hours of bashing my head against the keyboard. In my opinion, fixing the CORS issue should be the nr 1 priority in the documentation. The devs probably expect the average beginner to be a backend god or something.

If you still need help, let me know. I could prepare a small starter setup which you could clone.

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

79297634

Date: 2024-12-20 15:10:01
Score: 1
Natty:
Report link

I had the same problem. My solution was with encoding. when i changed encoding from UTF-8 to UTF-8 with BOM. The procedures inserted with no problem. Even though I had collation set to Latin. Also put the N'' before the string.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: KrumpiDumpi

79297628

Date: 2024-12-20 15:06:00
Score: 1
Natty:
Report link

Here is my opinions-To add a "Printable version" hyperlink to the MediaWiki navigation menu, you could adjust the MediaWiki:Sidebar page. However, the "Printable version" link isn't always at once brought via the sidebar but may be protected the use of a custom hyperlink. Here’s how you may do it:

Navigate to the MediaWiki:Sidebar page.

Add the subsequent line beneath the navigation segment:

** unique:e-bookprintableversion

Your updated sidebar have to appear like this:

Save the adjustments.

This will create a "Printable model" hyperlink in your navigation menu, allowing customers to without problems get admission to the printable layout of the present day page. Make positive to clear your cache if the adjustments do now not appear immediately.

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

79297627

Date: 2024-12-20 15:06:00
Score: 0.5
Natty:
Report link

Based on best practice, each repo will have its own stage.

repo1 -> dev_stage_01
repo2 -> dev_stage_02

This avoids the deletion and recreation of the common single stage (eg:- dev) reference when any one of the repos are getting deployed to the common single stage(dev).

While mapping these to Api Gateway Custom Domain, there will be multiple entries.

API             Stage           Path
api_gatewaay -> dev_stage_01 -> /
api_gatewaay -> dev_stage_02 -> /
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: PackedUp

79297624

Date: 2024-12-20 15:05:00
Score: 0.5
Natty:
Report link

Even though I currently see no hint to this in the Changelog, the solution seems to be to update your androidx.car.app:app SDK Version to 1.7.0-beta

There were likely some changes in the Manifest or the CarContext, to fix the Intent handling, which has been changed (allegedly only for apps targeting Android 15) as described here

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

79297616

Date: 2024-12-20 15:01:59
Score: 2
Natty:
Report link

As is always the way - posting the question caused me to find the answer almost straight away! Even though I'd be searching for hours...

I need to change the resultType on the select element to resultMap. I also needed to map all the variablers explicitly which really surprised (and slightly annoyed) me since the columns and variable names are all the same...

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Paul Hunnisett

79297606

Date: 2024-12-20 14:58:58
Score: 1.5
Natty:
Report link

It seems like you are tracing the HTTP activity using diagnostic tools from dotNet, this activity is in early stages and not ready for production as they say: https://learn.microsoft.com/en-us/dotnet/core/diagnostics/distributed-tracing-builtin-activities so the issue maybe in this tool not Sentry since you removed it and still got the same issue, hope this can help

Reasons:
  • Whitelisted phrase (-1): hope this can help
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28871802

79297594

Date: 2024-12-20 14:53:57
Score: 1
Natty:
Report link

I faced the same mistake, I realized the syntax is missing a bracket. And also the matrix dimension need to be correct as what Nilesh Kumar and Helen answered earlier.

import numpy as np 
a = np.array([[8.0,7.0,6.0],[5.0,4.0, 1.0]])
print(a)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhd Izzat

79297585

Date: 2024-12-20 14:50:56
Score: 5
Natty: 5
Report link

just un choose "for install builds only"

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

79297584

Date: 2024-12-20 14:50:56
Score: 3
Natty:
Report link

Chrome Version: 129.0.6668.103

If chromium is ok for you - you can just add 1 commit and distribute your own extension by your own site. Here's the commit - https://github.com/chromium/chromium/commit/4295004b1d0fb511ff5871bf264fe43a8e4693a7 works for 129.0.6668.101

More details:

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Тимур Аппаев

79297583

Date: 2024-12-20 14:50:55
Score: 4
Natty:
Report link

Just use keyboardShouldPersistTaps="handled" to ScrollView and it will work. reference: https://facebook.github.io/react-native/docs/scrollview.html#keyboardshouldpersisttaps

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

79297580

Date: 2024-12-20 14:50:55
Score: 1
Natty:
Report link

Thank you very, very much to @Holger.

Now I learned: Do NOT set the System scaling options!!!

The offending code could be fixed with:

public void paintComponent(Graphics g)
   {
      super.paintComponent(g);
      if (ApplicationImages.getImage() != null)
      {
         float factorWidth = 1536 / 1280F; // here is the fix
         float factorHeight = 960 / 859F; // here is the fix
         if (factorWidth < factorHeight)
         {
            int width = (int) (1280F * factorHeight);
            int x = getParent().getWidth() / 2 - width / 2;
            g.drawImage(
                  ApplicationImages.getImage().getScaledInstance(width,
                    getParent().getHeight(), BufferedImage.SCALE_SMOOTH),
              x, 0, this);
         }
         else
         {
            int height = (int) (859F * factorWidth);
            int y = getParent().getHeight() / 2 - height / 2;
            g.drawImage(ApplicationImages.getImage().getScaledInstance(
              getParent().getWidth(), height, BufferedImage.SCALE_SMOOTH),
              0, y, this);
         }
      }
   }
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Holger
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dragoness

79297579

Date: 2024-12-20 14:50:55
Score: 1
Natty:
Report link

The error message ApplicationSets is nil in request suggests that the Argo CD API expects the ApplicationSet object to be nested under a specific field in the request payload. The raw Kubernetes-style manifest on its own isn’t what the Argo CD API endpoint expects.

According to the Argo CD ApplicationSet gRPC/REST definitions, when creating an ApplicationSet via the Argo CD API, you must wrap your JSON object inside a applicationSet field. The POST /api/v1/applicationsets endpoint expects a payload in the format defined by the CreateApplicationSetRequest message, which looks like this:

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

79297559

Date: 2024-12-20 14:43:53
Score: 1.5
Natty:
Report link

I was missing the rust setuptools that resolved the error for me. python3.11 -m pip install setuptools_rust

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

79297554

Date: 2024-12-20 14:42:52
Score: 7
Natty: 7.5
Report link

How do you reagin stripe's 2 dollar per active account per month fee?

Reasons:
  • Blacklisted phrase (1): How do you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How do you
  • Low reputation (1):
Posted by: H4444

79297553

Date: 2024-12-20 14:42:52
Score: 1.5
Natty:
Report link

Same thing happened to me. I just removed previously created images from docker desktop and it worked.

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

79297549

Date: 2024-12-20 14:41:51
Score: 5.5
Natty:
Report link

just remove %matplotlib notebook because in Jupyter notebook this line give error. when i run some code i get same error "Javascript Error: IPython is not defined in JupyterLab" but when i just see one things in my code i write %matplotlib notebook that is use in colab notebook not in jupyter notebook

Reasons:
  • RegEx Blacklisted phrase (1): i get same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i get same error
  • Low reputation (1):
Posted by: Harsh Bopaliya

79297535

Date: 2024-12-20 14:36:50
Score: 1
Natty:
Report link

I know this is an old question, but I've been struggling with this issue all day, as part of the 'collectstatic' operation. I suddenly realised that this (manage.py collectstatic) is run in build (in my case in GitHub Actions), and not on Azure, and so of course doesn't have access to the Azure environment variables.

Collectstatic also doesn't need them, so I've updated my settings module to ignore anything that's not set in the environment, and it gets through the build process fine now.

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

79297530

Date: 2024-12-20 14:35:49
Score: 3
Natty:
Report link

Use decorator @Optional(). Check docs for this new feature: https://www.npmjs.com/package/class-validator#validation-decorators

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

79297515

Date: 2024-12-20 14:27:47
Score: 2.5
Natty:
Report link

What is your question? Something like: "How can I install PHPWord manually?"?

To answer this kind of question
I looked into the related repo on GitHub. Nothing about a manual installation. On the installation section of the readMe we have: "PHPWord is installed via Composer.". To use composer seems to be the only possibility nowadays. When using composer, the shown example in the same section should be valid.

You could still do it by your own. But then you must download all dependencies, place the files in a reasonable structure and implement a correct working autoloader.

Find the dependencies
Looking into composer.json of PHPWord the only dependency is phpoffice/math. This lib, in turn, has no dependencies. (the old dependency was phpoffice/common, see the links from the second link of OP)

Place the files in a reasonable structure

Implement a correct working autoloader
How to create an autoloader can be found e.g. here:
how does php autoloader works


Make sure you find out, where the error was logged. When you fix your project according my description above and still have errors, then probably we can't help you anymore without the error log.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): What is your
  • RegEx Blacklisted phrase (1): see the links
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is you
  • Low reputation (0.5):
Posted by: 1stthomas

79297512

Date: 2024-12-20 14:26:47
Score: 1
Natty:
Report link

I am doing the upgrade from a Symfony project. I've found the next command and in Symfony 5.0 works fine:

php bin/console debug:container --deprecations
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dany Des

79297505

Date: 2024-12-20 14:23:46
Score: 2
Natty:
Report link

You need to add the androidx.sqlite dependency, like this:

`implementation "net.zetetic:android-database-sqlcipher:4.5.3"

implementation 'androidx.sqlite:sqlite:2.2.0'`

It can be solved.

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

79297495

Date: 2024-12-20 14:19:45
Score: 1
Natty:
Report link

We had a similar need recently, and ended up using Microsoft Office 365 auto-provisioning feature in GWS to sync users into Azure Entra ID, same as you, both creation and deletion are supported out of the box.

The only caveat, as you found, is that it only sync users, not the groups they belong to. So you would need to create the security groups on Azure first, and then after having the GWS users synced into Entra ID directory, use another method to assign users to groups.

We approeached this with SDK/APIs, built a python script that reads GWS groups to see which members/owners they have using google SDK, and then using Graph API through a service principal in Azure with the right permissions (Directory readwrite all,etc) assign those users to the same groups in Entra ID they were in GWS. This took a bit of time but works.

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

79297491

Date: 2024-12-20 14:18:45
Score: 1.5
Natty:
Report link

What I've been using and it works great is:

IQueryable groupByLeadIdQuery = null;

I hope it works for you too.

Reasons:
  • Whitelisted phrase (-1): hope it works
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): What I
  • Low reputation (0.5):
Posted by: Sergio J. Batarce

79297490

Date: 2024-12-20 14:18:45
Score: 3
Natty:
Report link

Not in Chrome, of cource, but you can try my fork of chromium - Ultimatum. sockets, dns and many others available for webextension with manifest v3 -

https://www.reddit.com/r/UltimatumBrowser/comments/1hih78e/ultimatum_debut/

https://github.com/gonzazoid/chromium

(bonus - it can install webextensions from any site)

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Тимур Аппаев

79297485

Date: 2024-12-20 14:17:44
Score: 2
Natty:
Report link

In scala, if you want pass argument using sbt command

syntax :

sbt "runMain MainClass argument"

eg: my main class name is BookApp and I want to pass book name Physics.then,

sbt "runMain BookApp Physics"

if your main class is inside the package eg: org

sbt "runMain org.BookApp Physics"
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Balaji D

79297484

Date: 2024-12-20 14:16:44
Score: 2
Natty:
Report link

Try HawkClient: A Better Postman Alternative.

After being frustrated with Postman’s online-only restrictions and forced sign-ins? I have created HawkClient!

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Prashant Rathi

79297478

Date: 2024-12-20 14:15:44
Score: 2
Natty:
Report link

We upgraded to epplus 7 and Node is no longer accessible through the conditional formatting interfaces, but these interfaces have a new Boolean property called PivotTable. When set to true, your conditional formatting will be applied.

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

79297477

Date: 2024-12-20 14:14:44
Score: 0.5
Natty:
Report link

I've made a basic example that should reproduce the issue (breakpoints are also missied) - note the main advantage here it prints some information's i missed in my real program.

The example is composed of 4 files:

In practice, type "sh start.sh"

#!/bin/bash
python test_breakpoint.py
#!/bin/bash
python inside_file.py
import os, subprocess, debugpy

path = os.getcwd()
shfile = "run_python.sh"

# /// DEBUGGING
debugpy.listen(5678)
print("Waiting for Python debugger: attach")
debugpy.wait_for_client()
debugpy.breakpoint()
# /// DEBUGGING

command_line = f"sh {shfile}"
args = command_line.split()
run = subprocess.run(args)
import debugpy
print("\n*** here is a breakpoint ***\n")
debugpy.breakpoint()

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python Debugger: Attach",
            "type": "debugpy",
            "request": "attach",
            "port": 5678,
            "host": "localhost",
            "justMyCode": true,
            "pythonArgs": [
                "-Xfrozen_modules=off"
            ],
            "env": {
                "PYDEVD_DISABLE_FILE_VALIDATION": "1"
            }
          }
    ]
}

Whatever I implement, the following warning appears and any breakpoint ouside the main python file (test_breakpoint.py here) is ignored ... ... what am i missing?

Thanks for your help

0.00s - Debugger warning: It seems that frozen modules are being used, which may 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off 0.00s - to python to disable frozen modules. 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. Waiting for Python debugger: attach

*** here is a breakpoint ***

0.00s - Debugger warning: It seems that frozen modules are being used, which may 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off 0.00s - to python to disable frozen modules. 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: paul18fr

79297476

Date: 2024-12-20 14:14:44
Score: 1
Natty:
Report link

With an Office 365 subscription, Excel provides additional formula functions, perfect for this exact task.

=TEXTJOIN(" ",TRUE,UNIQUE(TRANSPOSE(TEXTSPLIT(A1," "))))

This is identical to @user11308575 answer, except using Excel syntax rather than Google Docs syntax.

Personally, I used this with non-space delimiters (","), but to answer the question correctly, the formula was written this way.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @user11308575
  • Low reputation (0.5):
Posted by: JKVeganAbroad

79297475

Date: 2024-12-20 14:13:43
Score: 0.5
Natty:
Report link

I think there are two things you can try:

Change your hyperparameters and see how this affects your model performance.

But I think more importantly generate new features. For instance how often did each team win in the previuos ten games, how is it ranked (like what place does it have in its league) and other statistics you can generate from the data you have. Be creative. You could also try to include external data like the weather, or how far away is the visting team from its hometown (less supporters).

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

79297469

Date: 2024-12-20 14:11:43
Score: 1.5
Natty:
Report link

Add a Condition. In the Condition Parameters, check that the IsFolder property of the 'When a file is created' action is equal to true. Put your 'Add a row into a table' action in the 'True' branch of the condition.

enter image description here

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

79297462

Date: 2024-12-20 14:08:41
Score: 0.5
Natty:
Report link

Vite 6.0.5 has been released. It fixes this issue by pinning esbuild to v0.24.0 for the time being.

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

79297457

Date: 2024-12-20 14:07:41
Score: 0.5
Natty:
Report link

As per the chosen answer here I needed to configure security on the producer for the connector that Kafka Connect is running. So I added these lines to kafka-connect settings;

  CONNECT_PRODUCER_SECURITY_PROTOCOL: SASL_PLAINTEXT
  CONNECT_PRODUCER_SASL_MECHANISM: PLAIN
  CONNECT_PRODUCER_SASL_JAAS_CONFIG: org.apache.kafka.common.security.plain.PlainLoginModule required username="admin" password="admin-secret" user_admin="admin-secret";

Right now the data is being transfered from the old Kafka setup to new one.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Furkan YIlmaZ

79297436

Date: 2024-12-20 13:58:39
Score: 3
Natty:
Report link

You can follow this doc, I had a similar issue and it worked out for me

https://docs.docker.com/desktop/setup/sign-in/

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aayaan Hasnain

79297431

Date: 2024-12-20 13:56:39
Score: 3.5
Natty:
Report link

Também gostaria de saber resolver isso. Pois comecei trabalhar com Bootstrap e vi que na URL sempre vem assim: (www.exemplo.com.br/#exemplo).. ao invés de (www.exemplo.com.br/exemplo). Gostaria de deixar dessa segunda forma.

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

79297428

Date: 2024-12-20 13:55:38
Score: 1
Natty:
Report link

For my case, only this command solved the issue:

cd android && ./gradlew --stop
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Mustapha GHLISSI

79297419

Date: 2024-12-20 13:52:38
Score: 2
Natty:
Report link

I got this solution from a site

I’d same challenge. Adding the following solved to wp-settings.php line 353 solved it.

require ABSPATH . WPINC . ‘/class-wp-block-metadata-registry.php’;

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

79297402

Date: 2024-12-20 13:46:35
Score: 6.5 🚩
Natty: 5
Report link

i have the same problem with sim 7600 some time it sending message and sometime it stuck with this error

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

79297399

Date: 2024-12-20 13:44:34
Score: 1
Natty:
Report link

Azure Functions Consumption Plan does not come with a Service Level Agreement (SLA). Here's a detailed explanation of why that is and what it means for you:

  1. Azure Functions Consumption Plan – No SLA The Consumption Plan is a serverless compute model, which means:

Azure automatically scales the resources based on demand (i.e., function execution events). You only pay for what you use — charged based on the number of executions, execution time, and memory consumption. Due to the dynamic, on-demand nature of the Consumption Plan, Azure does not provide a formal SLA. The reason is that resources are allocated and deallocated dynamically, and there's no guarantee on resource availability, execution times, or even whether functions will be executed immediately when triggered.

  1. Why No SLA for Consumption Plan? The Consumption Plan offers flexibility and cost-efficiency, which are its primary benefits. However, there are some inherent trade-offs:

No dedicated resources: Your function app is run on shared infrastructure with other customers' workloads. Variable performance: The execution time and cold-start times can vary, especially if your function app hasn't been used recently or if there’s high demand in the region. Scalability: Azure dynamically scales your function app based on traffic, but during periods of high demand, there could be delays in scaling. 3. Availability and Reliability in the Consumption Plan: While Azure Functions Consumption Plan does not offer a formal SLA, Azure provides certain guarantees about the availability of the platform. These include:

Uptime: Azure aims for high availability of all services, including serverless functions, but no SLA guarantees are offered for serverless workloads in the Consumption Plan. Cold Starts: Cold starts may occur when your function app has been idle for a while, leading to an initial delay when processing a new request. This is common with the Consumption Plan and isn't covered by an SLA. 4. Alternatives with SLA: If your application requires an SLA for availability and performance, you can consider the following Azure Functions pricing plans that do offer SLAs:

Premium Plan: The Premium Plan allows you to run your function apps on dedicated VMs, provides VNET Integration, and offers a guaranteed SLA of 99.95% availability. This plan is more suited for production workloads that require predictable performance and high availability. App Service Plan: The App Service Plan (Standard, Isolated, and other variants) also offers a 99.95% SLA. This plan provides dedicated VMs for your function apps, allowing for more consistent performance and guaranteed availability. 5. Azure SLA for Premium Plan & App Service Plan: Premium Plan SLA: 99.95% availability for the Premium Plan. App Service Plan SLA: 99.95% availability for apps running in the App Service Plan (including Function Apps). These plans are typically better suited for workloads that need higher availability, consistent performance, and guaranteed SLAs.

  1. How to Improve Reliability in Consumption Plan: Even without an SLA, you can still improve the reliability and performance of functions running on the Consumption Plan:

Design for resilience: Implement retry logic for transient errors. Minimize cold starts: Use techniques like Always On (in Premium or App Service plans) to reduce cold starts. Monitor and optimize: Leverage Application Insights and Azure Monitor to track performance and troubleshoot issues in real time. Summary: The Azure Functions Consumption Plan does not come with an SLA. If you need an SLA, consider moving to the Premium Plan or App Service Plan, both of which offer 99.95% availability. The Consumption Plan is suitable for low-cost, serverless applications where high availability and guaranteed performance are not critical. Let me know if you need more infor

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

79297398

Date: 2024-12-20 13:43:34
Score: 3.5
Natty:
Report link

I'm using Powershell to substitute tail -f linux command.

Get-Content file.log -Wait -Tail 10

Because the file is constantly being written into, the command never ends.

The question is: is there any way to break the command and stay in powershell rather than killing the window.

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: MikeG

79297396

Date: 2024-12-20 13:43:34
Score: 0.5
Natty:
Report link

The way I understand it (in Kotlin at least) is that if you have a function that calls a lambda function and the lambda function has a "return" keyword, it would be liable to be interpreted as wanting to return also from the CALLING function:

So if I called my_lambda() from my_function() and there was a "return" in my_lambda(), the compiler would interpret it as a "return" from my_function() as well.

In Kotlin, you can allow non-local returns to return from the calling function by using the "inline" keyword or prevent them by using the "crossinline" keyword. Further details here.

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

79297380

Date: 2024-12-20 13:34:32
Score: 3
Natty:
Report link

I finally managed to fix things. You need to 'migrate' with the bench command, before bench start. I thought that was done automatically when you bench install an app.

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

79297378

Date: 2024-12-20 13:34:32
Score: 2.5
Natty:
Report link

Reinstall jdk17. If missing, add the jdk17 path to environmental variables in windows. Then run: flutter config --jdk-dir "path to the JDK 17". Then try to run flutter doctor again.

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

79297373

Date: 2024-12-20 13:31:31
Score: 1
Natty:
Report link

The documentation for the httpfs extension implies that globbing is only supported for s3. See https://duckdb.org/docs/extensions/httpfs/overview.html

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

79297370

Date: 2024-12-20 13:31:31
Score: 3.5
Natty:
Report link

Probably you are using the new outlook for windows. Outlook automation doesn't support new outlook

Try to use Outlook desktop application.

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

79297358

Date: 2024-12-20 13:26:30
Score: 1.5
Natty:
Report link

ActiveRecord::RecordInvalid will be triggered if you use save! or create! then you can inspect b.errors See https://api.rubyonrails.org/classes/ActiveRecord/RecordInvalid.html Instead of raising the exception you could do something like

if a.save
  redirect_to a
else
  render json: {errors: a.errors}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrew F

79297331

Date: 2024-12-20 13:15:28
Score: 2
Natty:
Report link

To fix the issue, avoid using fixed heights for the container. Replace height with min-height to set a minimum size while allowing the container to grow with its content. Additionally, to adjust the background image and prevent it from repeating, use background-size: cover;, which will make the image fit the container size without breaking the layout.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: José Manuel Tena

79297330

Date: 2024-12-20 13:15:28
Score: 1.5
Natty:
Report link

Here you need to add Pub/Sub Publisher permission to topic NEW_REVIEW. Here's how to fix it:

1. Go to the Google Cloud Console: Open the Google Cloud Console and navigate to your project that contains the Pub/Sub topic.

2. Find your Pub/Sub topic: Go to the Pub/Sub section and locate the topic projects/my-project/topics/gmb-reviews.

3. Edit permissions:

4. Add the service account:

New Principle

Now follow https://developers.google.com/my-business/reference/notifications/rest/v1/accounts/updateNotificationSetting

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

79297312

Date: 2024-12-20 13:06:26
Score: 0.5
Natty:
Report link

With newer Rails do this:

Table.where(id: [4, 5, 6]).update_all("field = 'update to this'")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: sekrett

79297301

Date: 2024-12-20 13:01:24
Score: 3
Natty:
Report link

Une alternative consiste à utiliser le module cutcutcodec à la place ou en plus de moviepy. Ils sont compatibles car tout deux pasés sur ffmpeg. Voici un example de comment enregistrer un canal alpha: https://cutcutcodec.readthedocs.io/latest/build/examples/advanced/write_alpha.html

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

79297289

Date: 2024-12-20 12:58:24
Score: 1.5
Natty:
Report link

Most libraries that I have seen popup over other content, so you probably need to build something from scratch.

It shouldn't be too hard to build something like this though. Either you can build a custom Widget that shows/hides the content, or you could put these options in an ExpansionPanel

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: jeffrey.d.m

79297285

Date: 2024-12-20 12:54:22
Score: 5
Natty:
Report link

I have a similar issue, I am getting different search results for the same query when using 2 different Google Maps API keys. The key setting I am adding in the next comment

screenshot_1 screenshot_2

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar issue
  • Low reputation (1):
Posted by: Dirk Kuyt

79297281

Date: 2024-12-20 12:51:21
Score: 0.5
Natty:
Report link

I checked the documentation, and the BottomSheet provides three events: Show, Dismissed, and Showing. Currently, I am using these events in the ViewModel to manage the page opacity. However, if these events are handled in the code-behind file, it eliminates the need to manually set the page opacity every time. I’ve tested this approach, and it works perfectly.

For those who prefer not to use the code-behind file, an even better solution is to create a custom BottomSheet base class. This way, the event handling can be centralized, and individual BottomSheets can simply inherit the event properties from the base class. I’ve tested this approach as well, and it works seamlessly.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Amina Tariq

79297279

Date: 2024-12-20 12:51:21
Score: 1.5
Natty:
Report link

Remove Show and add the "display" prop to the GridItem:

<GridItem area="aside" bg="gold" display={{ base: "none", lg: "block" }}>
    Aside
</GridItem>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: saff1x

79297271

Date: 2024-12-20 12:49:21
Score: 1
Natty:
Report link

react-bootstrap-typeahead has the TypeaheadRef in types @types/react-bootstrap-typeahead, just use it

import { AsyncTypeahead, TypeaheadRef } from 'react-bootstrap-typeahead';
...
const typeaheadRef = React.createRef<TypeaheadRef>();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: justthefox

79297270

Date: 2024-12-20 12:49:20
Score: 5.5
Natty:
Report link

We would like to inform you that the website may contain multiple files; therefore, it will be necessary to specify the file name.

Please let us know if you have more queries.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let us know
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Namrata Bose

79297261

Date: 2024-12-20 12:45:19
Score: 1
Natty:
Report link

I had the same issue. I un-installed the Web Deploy from "Add/Remove Programs". I then re-downloded Web deploy 4.0 (https://www.microsoft.com/en-us/download/details.aspx?id=106070) .

After that it all worked!

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ewald

79297260

Date: 2024-12-20 12:45:19
Score: 1
Natty:
Report link
        var query = _applicationDbContext.Conversations.AsQueryable();
        if (sortDirection == "asc")
            query = query.OrderBy(x => EF.Property<object>(x, sortColumn));
        else
            query = query.OrderByDescending(x => EF.Property<object>(x, sortColumn));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Антонина Хлусенкова

79297251

Date: 2024-12-20 12:42:18
Score: 1
Natty:
Report link

Check if the new Platforms tag is missing in your .csproj

<Configurations>Debug;Release;UnitTest</Configurations>
<Platforms>AnyCPU;x64;Win32</Platforms>

That should give you the x64 option

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

79297243

Date: 2024-12-20 12:39:16
Score: 8 🚩
Natty: 6
Report link

this is not an answer, sorry. Such a good idea. Is there anyway you can share a sample of the full code? Really wondering how you made it work and which cell on the sheet were you able to record the "Yes" response. Thank you.I am working on Slack and trying to have just the "Yes" response recorded on a specific CELL on my sheet.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (3): were you able
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Applearner

79297226

Date: 2024-12-20 12:28:14
Score: 2
Natty:
Report link

Research Summary: If you check the events in the CloudTrail you can easily find the deregister-job-definition events getting triggered. That causes the latest revision of the job-definition to go into inactive state and eligible for deletion after 90 days.

Further, CloudTrail Event's could help you to trace the issue was coming from the terraform.

How to fix the issue?

The fix is to explicitly add deregister_on_new_revision in the aws_batch_job_definition resource block of your terraform like below:

resource "aws_batch_job_definition" "test" {
  name = "tf_test_batch_job_definition"
  type = "container"

  .. 
  deregister_on_new_revision = false
}

Description:

deregister_on_new_revision - (Optional) When updating a job definition a new revision is created. This parameter determines if the previous version is deregistered (INACTIVE) or left ACTIVE. Defaults to true.

Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix the issue?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sarvat Mir

79297221

Date: 2024-12-20 12:26:13
Score: 2
Natty:
Report link

Yes. OpenMetrics is effectively Prometheus format with various additions/improvements. Although the majority of Dynatrace documentation talks about Prometheus, treat OpenMetrics as applying in the same way.

For clarity, Dynatrace does not query Prometheus servers, it only integrates with exporters directly at source that expose metrics in a Prometheus/OpenMetrics format and as such can take from any source exposing metrics in this format.

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

79297220

Date: 2024-12-20 12:26:13
Score: 0.5
Natty:
Report link

In my case, I just had to downgrade node:

$ npm install -g n
$ n 14.21.3 // you need to figure out what specific version you need
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: arrmani88

79297197

Date: 2024-12-20 12:19:12
Score: 1
Natty:
Report link

It isn't so hard at all:

>> numstrs = %w(zero one two three four)
=> ["zero", "one", "two", "three", "four"]
>> numints = (0..4).to_a
=> [0, 1, 2, 3, 4]
>> combarr = numints.zip(numstrs)
=> [[0, "zero"], [1, "one"], [2, "two"], [3, "three"], [4, "four"]]
>> combhash = combarr.to_h
=> {0=>"zero", 1=>"one", 2=>"two", 3=>"three", 4=>"four"}
>> invhash = combhash.values.zip(combhash.keys).to_h
=> {"zero"=>0, "one"=>1, "two"=>2, "three"=>3, "four"=>4}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: some one

79297195

Date: 2024-12-20 12:18:12
Score: 0.5
Natty:
Report link

I have found a different solution for this situation. For me, it was too complicated to make the data replacement in the @post_dump method because of custom-calculated attributes in the schema. I have used the SQL Alchemy make_transient function. To remove the modified object from the session. So no changes done to the object are reflected in the database. This way I can do any modification to the object and generate modified schema without the requirement to rewrite the whole @pre_dump function.

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

79297182

Date: 2024-12-20 12:13:10
Score: 5
Natty:
Report link

python. Here's the documentation https://docs.qgis.org/3.34/en/docs/user_manual/expressions/expression.html#id10

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

79297178

Date: 2024-12-20 12:12:10
Score: 2.5
Natty:
Report link

The pyav module, based on ffmpeg, is capable of recording videos with an alpha channel, provided the right codecs are specified. The 'moviepy' and 'cutcutcodec' libraries offer a higher-level interface for this purpose.

There is an example here: https://cutcutcodec.readthedocs.io/latest/build/examples/advanced/write_alpha.html

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

79297165

Date: 2024-12-20 12:06:08
Score: 2.5
Natty:
Report link

It turned out that AWS has flagged the account due to reports. I am just leaving this answer here so that if someone else faces the same situation, do not have to spent so many hours like me.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Tamil Vendhan Kanagarasu

79297163

Date: 2024-12-20 12:05:08
Score: 1.5
Natty:
Report link
:host ::ng-deep .mat-form-field-underline{
width: 0 !important;

}

This will work for sure

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

79297161

Date: 2024-12-20 12:05:08
Score: 1
Natty:
Report link

You can intercept using event target and define a name to the document target like this:

trigger(document, fileName) {
    window.addEventListener('beforeprint', (event) => {
        if (!event) return;
        event.target.document.title = fileName;
    });
    window.print();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: willianfrancas

79297159

Date: 2024-12-20 12:04:07
Score: 1.5
Natty:
Report link

This solution worked for me: remove PostBuildEvent in the csproj file then recreate the script in Visual Studio.

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

79297158

Date: 2024-12-20 12:04:06
Score: 4
Natty:
Report link

Have a look at this wiki article: https://github.com/NetTopologySuite/NetTopologySuite/wiki/Upgrading-to-2.0-from-1.x#interfaces

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

79297157

Date: 2024-12-20 12:03:06
Score: 0.5
Natty:
Report link

I had the same error and what solved it for me was removing the /bin part from the end of the JAVA_HOME path. Now the variable points to the whole java directory.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Semerkosa

79297144

Date: 2024-12-20 11:59:05
Score: 1.5
Natty:
Report link

The problem seems to be with esbuild's latest version 0.24.1

Downgrading to 0.24.0 will solve the error for now npm i -D [email protected]

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

79297138

Date: 2024-12-20 11:56:04
Score: 1
Natty:
Report link

To combine a Shinylive Shiny app right into a pkgdown article to your GitHub Pages site, follow those steps:

Prepare Your Shiny App: Ensure your Shiny app is efficaciously dependent with ui and server capabilities within the R/ folder and an app.R report within the root listing.

Deploy with Shinylive: Use the r-shinylive GitHub Action to installation your app. You can set this up with the aid of running:

usethis::use_github_action(url = "https://github.Com/posit-dev/r-shinylive/blob/moves-v1/examples/installation-app.Yaml")

Embed in pkgdown Article: In your pkgdown article (e.G., articles/my_article.Html), embed the Shinylive app the use of an iframe. Here’s an example of a way to do this:

Build and Serve: After making those adjustments, rebuild your pkgdown site using pkgdown::build_site() and push the changes to GitHub.

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

79297137

Date: 2024-12-20 11:56:04
Score: 1.5
Natty:
Report link

OAuth 2.0 for TV and Limited-Input Device Applications

This document explains how to implement OAuth 2.0 authorization to access Google APIs via applications running on devices like TVs, game consoles, and printers. More specifically, this flow is designed for devices that either do not have access to a browser or have limited input capabilities.

Read more

Also you can review the Allowed Scopes for the Drive API.

Reasons:
  • Blacklisted phrase (1): This document
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Patsytalk

79297136

Date: 2024-12-20 11:56:04
Score: 0.5
Natty:
Report link

The issue is Socket.IO transmits the auth data in the initial WebSocket handshake but If a proxy or load balancer strips these headers or modifies the handshake, the auth data may be lost.

Below is an example of how I used proxy-set headers in the ingress.yaml file:

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: my-ingress
  annotations:
    appgw.ingress.kubernetes.io/backend-protocol: "http" 
    appgw.ingress.kubernetes.io/request-timeout: "60" 
    appgw.ingress.kubernetes.io/proxy-set-header: "Upgrade $http_upgrade"
    appgw.ingress.kubernetes.io/proxy-set-header.Connection: "upgrade" 
spec:
  ingressClassName: azure-application-gateway 
  rules:
    - host: my-server-app.cloudapp.azure.com
      http:
        paths:
          - path: /
            pathType: Prefix
            backend:
              service:
                name: my-server-service
                port:
                  number: 3000

Refer to this link for details about Kubernetes annotations.

For the service.yaml, use the following configuration:

apiVersion: v1
kind: Service
metadata:
  name: socketio-service
spec:
  selector:
    app: socketio
  ports:
    - protocol: TCP
      port: 3000
      targetPort: 3000
  type: ClusterIP

Make sure add cors and ensure that CORS is configured to allow requests from all domains:

  path: "/nodeserver/socket.io/",
  cors: {
    origin: "*",  
    methods: ["GET", "POST"],
    allowedHeaders: ["my-custom-header"],
    credentials: true,
  },
});

Build the image, tag it with Azure Container Registry, and push it to the registry.

enter image description here Then, create the Kubernetes service using this guide. Use the ACR image to deploy the application to the AKS cluster via a YAML file.

Below is the sample deployment.yaml I used:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: socketio-server
  labels:
    app: socketio
spec:
  replicas: 2
  selector:
    matchLabels:
      app: socketio
  template:
    metadata:
      labels:
        app: socketio
    spec:
      containers:
      - name: socketio
        image:samopath.azurecr.io/newfolder2-app:latest

        ports:
        - containerPort: 3000
        env:
        - name: NODE_ENV
          value: production

enter image description here

Connect to your AKS cluster using Azure Cloud Shell, and run the application using Kubernetes. Follow this tutorial for more details.

Check the Deployment Status by using kubectl get deployment . Check Pod Status by using kubectl get pods

enter image description here Lists all services in the current namespace by kubectl get services. use kubectl expose deployment socketio-server --type=NodePort --port=3000 --target-port=3000 to exposing it as a NodePort service.

enter image description here

To Update the socketio-server service to use a LoadBalancer use kubectl patch service socketio-server -p '{"spec": {"type": "LoadBalancer"}}' enter image description here To view logs from a specific pod, use: kubectl logs socketio-server-865b857564-c2mxx

enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): this guide
  • Blacklisted phrase (1): this tutorial
  • Blacklisted phrase (1): this link
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Sampath

79297110

Date: 2024-12-20 11:46:02
Score: 3
Natty:
Report link

After some research I could figure out that for RDS Proxy for some reason you should specify the exact version of your MySQL.

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

79297106

Date: 2024-12-20 11:45:02
Score: 2.5
Natty:
Report link

here is a possible solution:

---
title: "Inline code inside asis"
date: "`r Sys.Date()`"
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

```{r}
x <- 5
```

```{r, results='asis', echo=FALSE}
cat(paste0("The square is ", x^2, ".")) # should show up as 'The square is 25'
```

When rendered the output is Rendered .Rmd

Did this solve your problem?

Viola

Reasons:
  • Whitelisted phrase (-2): solution:
  • RegEx Blacklisted phrase (1.5): solve your problem?
  • Probably link only (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: viols

79297102

Date: 2024-12-20 11:43:01
Score: 2
Natty:
Report link

It is not currently possible to expand variables in needs:parallel:matrix.

There's an open issue in gitlab's issues https://gitlab.com/gitlab-org/gitlab/-/issues/423553

You need to either write every job separate or generate an yml file on the fly with the variables set correctly.

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

79297095

Date: 2024-12-20 11:40:59
Score: 6 🚩
Natty: 4.5
Report link

I have the same problem with .Net 4.8 on Vultr VPS Windows Server 2016, 2019 My local Windows 10, 11 environment works The deploy code is exactly the same.

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