79484911

Date: 2025-03-04 21:39:40
Score: 1
Natty:
Report link

You will need to specify the path to your OpenSSL config. To do this you can set the environment variable of the openssl.cnf file as follows:

Variable name: OPENSSL_CONF

Variable value: C:\Program Files\Git\usr\ssl\openssl.cnf

Also try to run cmd or powershell as admin.

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

79484908

Date: 2025-03-04 21:37:39
Score: 0.5
Natty:
Report link

Currently, PyTorch's pdist() doesn't have a built-in function to compute only specific rows of the distance matrix. This is PyTorch GitHub repository: https://github.com/pytorch/pytorch/issues this would be a better place to discuss and find a solution

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

79484892

Date: 2025-03-04 21:28:38
Score: 3
Natty:
Report link

Had this issue - uninstalling jupyter extensions solved it for me

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

79484879

Date: 2025-03-04 21:22:36
Score: 1
Natty:
Report link

Have you tried the business on behalf of flow https://developers.facebook.com/docs/marketing-api/business-manager/guides/on-behalf-of? This is the only clear Meta documentation I've seen in my searches for how a partner should gain access to client assets (e.g. ad accounts, pages). The partner would need to have its own business manager and developer account.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
Posted by: College Student

79484866

Date: 2025-03-04 21:12:34
Score: 2.5
Natty:
Report link

Debugging works fine when started without Turbopack/Turborepo. This is a Turborepo bug, and it is being resolved.

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

79484860

Date: 2025-03-04 21:07:33
Score: 2
Natty:
Report link

From the comment:

@Saddles Removing the ? solved it! I'm not familiar with that operator, and just copied it from the documentation - do you happen to know why that might have been causing issues? (I feel like this should be an answer, since it seems likely to me that others might run into a similar issue with adapting the provided example, could you please write it up into one and then I can mark it as best?)

Change:

  const protection = s.getProtections(SpreadsheetApp.ProtectionType.SHEET)[0];
  if (protection?.canEdit()) {
    protection.remove();
  }

To:

  const protection = s.getProtections(SpreadsheetApp.ProtectionType.SHEET)[0];
  if (protection.canEdit()) {
    protection.remove();
  }

TL;DR

As per remove():

  // Remove sheet protection from the active sheet, if the user has permission to
  // edit it.
  const sheet = SpreadsheetApp.getActiveSheet();
  const protection = sheet.getProtections(SpreadsheetApp.ProtectionType.SHEET)[0];
  if (protection?.canEdit()) {
    protection.remove();
  }

The example works. However, it's likely that the Optional chaining syntax isn't being detected when the script runs, causing the TypeError: protection.remove is not a function.

I recommend making sure that Enable Chrome V8 runtime is enabled in the project by going to its Project Settings, and if the issue doesn't clear by itself, even after the removal of ? in the code, submit a bug report to let Google know about the unusual behavior that's going on.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Saddles
  • Looks like a comment (1):
Posted by: Saddles

79484854

Date: 2025-03-04 21:05:32
Score: 3.5
Natty:
Report link

Probably your API key only enable Places API (New), while the library your using uses Places API (Legacy) endpoints.

https://developers.google.com/maps/documentation/places/web-service/place-autocomplete

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

79484852

Date: 2025-03-04 21:05:32
Score: 2
Natty:
Report link

Verify Language Mode in VS Code

Make sure VS Code is recognizing the file as a TypeScript React file. You can manually set the language mode by clicking on the language mode indicator in the bottom-right corner and selecting "TypeScript React".

After clicking on it, you can select the option "Configure File Association for '.tsx'...", then select Typescript JSX

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

79484851

Date: 2025-03-04 21:04:31
Score: 5
Natty: 5
Report link

For some reason, when OneTimeSetUp quit working...I changed it to Setup. Rebuilt...reran. Worked. Then changed it back. Maybe that could help?

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

79484849

Date: 2025-03-04 21:03:31
Score: 1
Natty:
Report link

OOP concepts, if used at all in this example, are only trivially used. So my answer to this question would be none, there are no OOP concepts demonstrated here.

You could argue that the existence of the Greeting class itself "demonstrates" an OOP concept, but only trivially so since it encapsulates no state and has no behaviors defined at the instance level (other than those inherited by Object). Similarly, you could argue that Greeting inherits from Object, but it's not really a "demonstration" of inheritance or polymorphism because it's a bit of a stretch to say that any caller could ever meaningfully leverage either of those concepts with the Greeting class.

Let's contrive an example where Greeting could be used polymorphically, for example, just to make the point. Since it only has a static main method, the only polymorphic uses of it would be if some other class was responsible for managing a bunch of random objects. Perhaps it is using these objects as thread locks, so it doesn't matter what type the object is so long as multiple threads all use the same one.

But since this isn't specific to Greeting, that means this particular class isn't a very good demonstration of that polymorphism. It's a demonstration of synchronizing on an object, which is not an OOP concept, but doesn't leverage polymorphism in any way.

So how can we change this example? We could say that a class is collecting main classes. We're writing some kind of startup manager that can invoke a main method so users can indirectly invoke a main method through this one class that might bring some benefits or extra capabilities, and to do its job, it needs to collect a bunch of classes that define a main method for some reason? In that case, since main(…) is a static method, the only thing this startup class could do is collect a bunch of main classes as Objects. This would be a trivial example of polymorphism, but it's still not that good because we might want to collect an instance of a main class, but the author of that main class adds a private constructor to prevent it from being instantiated. In that case, it's still a valid main class, but the idea of collecting instances won't work for this example, so we'd have to change our design to collect the Class objects of the main classes instead.

When it's even difficult to contrive any example of how this could be a demonstration of an OOP concept, I'd say it doesn't really demonstrate any of them. However, talking through why would probably score you some points in an interview setting.

Reasons:
  • Blacklisted phrase (1): how can we
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: severoon

79484836

Date: 2025-03-04 20:55:29
Score: 0.5
Natty:
Report link
df = df.sort_values(by=['store_nbr', 'product_sku', 'date'])
df['price_change'] = df.groupby(['store_nbr', 'product_sku'])['retail'].apply(lambda x: x != x.shift()).values
df['date_price_change'] = df['date'].where(df['price_change']).ffill()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jgonz1

79484834

Date: 2025-03-04 20:54:29
Score: 1
Natty:
Report link

Instead of using module.exports = { } use

export default { /*Config Contents*/ };

This may possibly cause internal issue with pm2's loader, in which case

export { /*Config Contents*/ };

Should suffice.

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

79484831

Date: 2025-03-04 20:52:28
Score: 1
Natty:
Report link

Here is a formula that can scale the data exponentially so that it gives an apparent smoother scaling between smallest and largest.

=ARRAYFORMULA(if($E$39:$E$59="",,($E$39:$E$59 * 10^((RANK($E$39:$E$59, $E$39:$E$59, 1)-1)/10))))

In E39 to E59 are the original values. This formula should be placed in F39 which is the cell to the right of the topmost value. It works out the rank position for each value and multiply the original value by this exponent. It loses touch with the original values, but it gives a better looking chart in my opinion.

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

79484815

Date: 2025-03-04 20:46:27
Score: 3.5
Natty:
Report link

when you set property, make sure that value is case sensitive. for this property, proper value TRUE or FALSE. any other case would be ignored and not processed.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when you
  • Low reputation (1):
Posted by: Sergey Chaban

79484813

Date: 2025-03-04 20:45:27
Score: 1.5
Natty:
Report link

this recipe worked for me conda install conda-forge::libgdal conda install conda-forge::r-sf

i tried withour success installing udunits2, r-base and sf individually, but with the recipe above worked fine.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Felipe

79484812

Date: 2025-03-04 20:44:26
Score: 5
Natty: 4.5
Report link

For the community edition i was not able to access dbfs:Filestore. Thus i uploaded the local file to catelog->vloumes and loaded the data from the same path and it works.

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

79484810

Date: 2025-03-04 20:44:25
Score: 6 🚩
Natty: 4
Report link

Was this ever resolved? This was last year and I still only can access the predict method outside of the databricks playground.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • RegEx Blacklisted phrase (0.5): Was this ever resolved
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Was this
  • Low reputation (1):
Posted by: Montreaux Rodgers

79484806

Date: 2025-03-04 20:42:25
Score: 3
Natty:
Report link

There is the Burnikel-Ziegler algorithm. I implemented it in C++ recently in one of my personal projects from the Python version. Cf. https://github.com/python/cpython/issues/128709

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: P'tit Ju

79484789

Date: 2025-03-04 20:34:23
Score: 12 🚩
Natty: 6.5
Report link

Were you able to solve this? I am currently getting the same error.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pam G

79484787

Date: 2025-03-04 20:33:22
Score: 2
Natty:
Report link

Use pnpm instead of npm, you will save 100 hours a month believe me. Otherwise nextjs project creation is too slow.

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

79484777

Date: 2025-03-04 20:23:20
Score: 1
Natty:
Report link

you have two #header selectors and on the second one you still have margin added to it i would remove it

#header{ 
    margin-right: 10px;
    margin-left: 10px;
    font-size: xx-large;

}

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

79484763

Date: 2025-03-04 20:14:18
Score: 2.5
Natty:
Report link

Don't use this Red Hat Dependency Analytics kind of extension in vscode

check your package.json file it must not have any dependencies like "YourAppName":"file:"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 6040_Harsh Dewangan

79484758

Date: 2025-03-04 20:09:17
Score: 11 🚩
Natty: 6.5
Report link

I have a similar problem, and haven't seen this sort of thing addressed in guides to repeated measures multilevel models.

Did you find a solution?

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

79484757

Date: 2025-03-04 20:09:17
Score: 2
Natty:
Report link

Using just one table wouldn't work as when the stored procedure was executed three times, the table was being cleared each resulting in the data being cleared from the table on each execution. This made the days unavailable for future retrievals so I created three tables to hold the three sets of data and this solved the problem

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

79484751

Date: 2025-03-04 20:05:16
Score: 1
Natty:
Report link

Since hosted services are registered as singleton, one good approach may be to create a separate singleton class to hold the shared data. So your background service (MyService) can inject this class and update its state. Then you can use anywhere in your API to read this data.

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

79484740

Date: 2025-03-04 20:01:15
Score: 1
Natty:
Report link

The solution to the leap year problem I found was to change 02/29/YYYY to 02/28/YYYY. This is not a perfect solution, but it was the only thing I could think of.

Here is the foreign key I made to join to the calendar table

date_fk = 
IF(
    [Date].[MonthNo] = 2
    && [Date].[Day] = 29
    ,DATE([Date].[Year],2,28)
    ,[Date].[Date]
)

I welcome anyone to come up with a "solution" that does not require me to alter the data in the table. If anyone knows how to do this within a cumulative total measure itself that would be better.

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

79484735

Date: 2025-03-04 19:59:14
Score: 7.5 🚩
Natty: 5
Report link

I believe the correct equation should be:total += Y[ctr]/N * (np.cos(xctr2np.pi/N) + 1jnp.sin(xctr2*np.pi/N)). enter image description here

Does anyone know why the error increasing along the x-axis? Can anyone help to correct it? If using build in reverse FFT(ifft) function, this error tread diapered. But I need this manually compute reversed FFT method.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2): Does anyone know
  • RegEx Blacklisted phrase (3): Can anyone help
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user22248229

79484729

Date: 2025-03-04 19:57:13
Score: 1
Natty:
Report link

.VIpgJd-ZVi9od-ORHb-OEVmcd{left:0;top:0;height:39px;width:100%;z-index:10000001;position:fixed;border:none;border-bottom:1px solid #6B90DA;margin:0;box-shadow:0 0 8px 1px #999}.VIpgJd-ZVi9od-xl07Ob-OEVmcd{z-index:10000002;border:none;position:fixed;box-shadow:0 3px 8px 2px #999}.VIpgJd-ZVi9od-SmfZ-OEVmcd{z-index:10000000;border:none;margin:0}.goog-te-gadget{font-family:arial;font-size:11px;color:#666;white-space:nowrap}.goog-te-gadget img{vertical-align:middle;border:none}.goog-te-gadget-simple{background-color:#FFF;border-left:1px solid #D5D5D5;border-top:1px solid #9B9B9B;border-bottom:1px solid #E8E8E8;border-right:1px solid #D5D5D5;font-size:10pt;display:inline-block;padding-top:1px;padding-bottom:2px;cursor:pointer}.goog-te-gadget-icon{margin-left:2px;margin-right:2px;width:19px;height:19px;border:none;vertical-align:middle}.goog-te-combo{margin-left:4px;margin-right:4px;vertical-align:baseline}.goog-te-gadget .goog-te-combo{margin:4px 0}.VIpgJd-ZVi9od-l4eHX-hSRGPd,.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,.VIpgJd-ZVi9od-l4eHX-hSRGPd:active{font-size:12px;font-weight:bold;color:#444;text-decoration:none}.VIpgJd-ZVi9od-ORHb .VIpgJd-ZVi9od-l4eHX-hSRGPd,.VIpgJd-ZVi9od-TvD9Pc-hSRGPd{display:block;margin:0 10px}.VIpgJd-ZVi9od-ORHb .VIpgJd-ZVi9od-l4eHX-hSRGPd{padding-top:2px;padding-left:4px}.goog-te-combo,.VIpgJd-ZVi9od-ORHb *,.VIpgJd-ZVi9od-SmfZ *,.VIpgJd-ZVi9od-xl07Ob *,.VIpgJd-ZVi9od-vH1Gmf *,.VIpgJd-ZVi9od-l9xktf *{font-family:arial;font-size:10pt}.VIpgJd-ZVi9od-ORHb{margin:0;background-color:#E4EFFB;overflow:hidden}.VIpgJd-ZVi9od-ORHb img{border:none}.VIpgJd-ZVi9od-ORHb-bN97Pc{color:#000}.VIpgJd-ZVi9od-ORHb-bN97Pc img{vertical-align:middle}.VIpgJd-ZVi9od-ORHb-Tswv1b{color:#666;vertical-align:top;margin-top:0;font-size:7pt}.VIpgJd-ZVi9od-ORHb-KE6vqe{width:8px}.VIpgJd-ZVi9od-LgbsSe{border-color:#E7E7E7;border-style:none solid solid none;border-width:0 1px 1px 0}.VIpgJd-ZVi9od-LgbsSe div{border-color:#CCC #999 #999 #CCC;border-right:1px solid #999;border-style:solid;border-width:1px;height:20px}.VIpgJd-ZVi9od-LgbsSe button{background:transparent;border:none;cursor:pointer;height:20px;overflow:hidden;margin:0;vertical-align:top;white-space:nowrap}.VIpgJd-ZVi9od-LgbsSe button:active{background:none repeat scroll 0 0 #CCC}.VIpgJd-ZVi9od-SmfZ{margin:0;background-color:#FFF;white-space:nowrap}.VIpgJd-ZVi9od-SmfZ-hSRGPd{text-decoration:none;font-weight:bold;font-size:10pt;border:1px outset #888;padding:6px 10px;white-space:nowrap;position:absolute;left:0;top:0}.VIpgJd-ZVi9od-SmfZ-hSRGPd img{margin-left:2px;margin-right:2px;width:19px;height:19px;border:none;vertical-align:middle}.VIpgJd-ZVi9od-SmfZ-hSRGPd span{text-decoration:underline;margin-left:2px;margin-right:2px;vertical-align:middle}.goog-te-float-top .VIpgJd-ZVi9od-SmfZ-hSRGPd{padding:2px;border-top-width:0}.goog-te-float-bottom .VIpgJd-ZVi9od-SmfZ-hSRGPd{padding:2px;border-bottom-width:0}.VIpgJd-ZVi9od-xl07Ob-lTBxed{text-decoration:none;color:#00C;white-space:nowrap;margin-left:4px;margin-right:4px}.VIpgJd-ZVi9od-xl07Ob-lTBxed span{text-decoration:underline}.VIpgJd-ZVi9od-xl07Ob-lTBxed img{margin-left:2px;margin-right:2px}.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed{color:#000}.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span{text-decoration:none}.VIpgJd-ZVi9od-xl07Ob{background-color:#FFF;text-decoration:none;border:2px solid #C3D9FF;overflow-y:scroll;overflow-x:hidden;position:absolute;left:0;top:0}.VIpgJd-ZVi9od-xl07Ob-ibnC6b{padding:3px;text-decoration:none}.VIpgJd-ZVi9od-xl07Ob-ibnC6b,.VIpgJd-ZVi9od-xl07Ob-ibnC6b:link{color:#00C;background:#FFF}.VIpgJd-ZVi9od-xl07Ob-ibnC6b:visited{color:#551A8B}.VIpgJd-ZVi9od-xl07Ob-ibnC6b:hover{background:#C3D9FF}.VIpgJd-ZVi9od-xl07Ob-ibnC6b:active{color:#00C}.VIpgJd-ZVi9od-vH1Gmf{background-color:#FFF;text-decoration:none;border:1px solid #6B90DA;overflow:hidden;padding:4px}.VIpgJd-ZVi9od-vH1Gmf-KrhPNb{width:16px}.VIpgJd-ZVi9od-vH1Gmf-hgDUwe{margin:6px 0;height:1px;background-color:#aaa;overflow:hidden}.VIpgJd-ZVi9od-vH1Gmf-ibnC6b div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd div{padding:4px}.VIpgJd-ZVi9od-vH1Gmf-ibnC6b .uDEFge{display:none}.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd .uDEFge{display:auto}.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd .fmcmS{padding-left:4px;padding-right:4px}.VIpgJd-ZVi9od-vH1Gmf-ibnC6b,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd{text-decoration:none}.VIpgJd-ZVi9od-vH1Gmf-ibnC6b div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:link div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:visited div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:active div{color:#00C;background:#FFF}.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:hover div{color:#FFF;background:#36C}.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd:link div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd:visited div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd:hover div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd:active div{color:#000;font-weight:bold}.VIpgJd-ZVi9od-l9xktf{background-color:#FFF;overflow:hidden;padding:8px;border:none;border-radius:10px}.VIpgJd-ZVi9od-l9xktf-OEVmcd{background-color:#FFF;border:1px solid #6B90DA;box-shadow:0 3px 8px 2px #999;border-radius:8px}.VIpgJd-ZVi9od-l9xktf img{border:none}.VIpgJd-ZVi9od-l9xktf-fmcmS{margin-top:6px}.VIpgJd-ZVi9od-l9xktf-VgwJlc{margin-top:6px;white-space:nowrap}.VIpgJd-ZVi9od-l9xktf-VgwJlc *{vertical-align:middle}.VIpgJd-ZVi9od-l9xktf-VgwJlc .DUGJie{background-image:url(https://www&google.com/images/zippy_minus_sm.gif)}.VIpgJd-ZVi9od-l9xktf-VgwJlc .TdyTDe{background-image:url(https://www&google.com/images/zippy_plus_sm.gif)}.VIpgJd-ZVi9od-l9xktf-VgwJlc span{color:#00C;text-decoration:underline;cursor:pointer;margin:0 4px}.VIpgJd-ZVi9od-l9xktf-I9GLp{margin:6px 0 0}.VIpgJd-ZVi9od-l9xktf-I9GLp form{margin:0}.VIpgJd-ZVi9od-l9xktf-I9GLp form textarea{margin-bottom:4px;width:100%}.VIpgJd-ZVi9od-l9xktf-yePe5c{margin:6px 0 4px}.VIpgJd-ZVi9od-aZ2wEe-wOHMyf{z-index:1000;position:fixed;-webkit-transition-delay:.6s;transition-delay:.6s;left:-1000px;top:-1000px}.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc{-webkit-transition-delay:0s;transition-delay:0s;left:-14px;top:-14px}.VIpgJd-ZVi9od-aZ2wEe-OiiCO{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;width:104px;height:104px;border-radius:50px;background:#FFF url(https://www.gstatic.com/images/branding/product/2x/translate_24dp.png) 50% 50% no-repeat;-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}.VIpgJd-ZVi9od-aZ2wEe-OiiCO-ti6hGc{-webkit-transform:scale(.5);transform:scale(.5);opacity:1}.VIpgJd-ZVi9od-aZ2wEe{margin:2px 0 0 2px;-webkit-animation:spinner-rotator 1.4s linear infinite;animation:spinner-rotator 1.4s linear infinite}@-webkit-keyframes spinner-rotator{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}}@keyframes spinner-rotator{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}}.VIpgJd-ZVi9od-aZ2wEe-Jt5cK{stroke-dasharray:187;stroke-dashoffset:0;stroke:#4285F4;-webkit-transform-origin:center;transform-origin:center;-webkit-animation:spinner-dash 1.4s ease-in-out infinite;animation:spinner-dash 1.4s ease-in-out infinite}@-webkit-keyframes spinner-dash{0%{stroke-dashoffset:187}50%{stroke-dashoffset:46.75;-webkit-transform:rotate(135deg);transform:rotate(135deg)}100%{stroke-dashoffset:187;-webkit-transform:rotate(450deg);transform:rotate(450deg)}}@keyframes spinner-dash{0%{stroke-dashoffset:187}50%{stroke-dashoffset:46.75;-webkit-transform:rotate(135deg);transform:rotate(135deg)}100%{stroke-dashoffset:187;-webkit-transform:rotate(450deg);transform:rotate(450deg)}}.VIpgJd-yAWNEb-L7lbkb html,.VIpgJd-yAWNEb-L7lbkb body,.VIpgJd-yAWNEb-L7lbkb div,.VIpgJd-yAWNEb-L7lbkb span,.VIpgJd-yAWNEb-L7lbkb iframe,.VIpgJd-yAWNEb-L7lbkb h1,.VIpgJd-yAWNEb-L7lbkb h2,.VIpgJd-yAWNEb-L7lbkb h3,.VIpgJd-yAWNEb-L7lbkb h4,.VIpgJd-yAWNEb-L7lbkb h5,.VIpgJd-yAWNEb-L7lbkb h6,.VIpgJd-yAWNEb-L7lbkb p,.VIpgJd-yAWNEb-L7lbkb a,.VIpgJd-yAWNEb-L7lbkb img,.VIpgJd-yAWNEb-L7lbkb ol,.VIpgJd-yAWNEb-L7lbkb ul,.VIpgJd-yAWNEb-L7lbkb li,.VIpgJd-yAWNEb-L7lbkb table,.VIpgJd-yAWNEb-

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: darbin behnam wood

79484721

Date: 2025-03-04 19:55:13
Score: 0.5
Natty:
Report link

This is caused by the TailwindCSS linter misinterpreting your mixin as a call to the Tailwind theme() function. If you are using VS Code, this issue shows how you can disable the error by modifying your settings:

{
  "tailwindCSS.lint.invalidConfigPath": "ignore"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Luke Caswell Samuel

79484719

Date: 2025-03-04 19:54:13
Score: 1.5
Natty:
Report link

Make sure all objects start at the top of the section and have the same heights.

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

79484714

Date: 2025-03-04 19:51:12
Score: 3.5
Natty:
Report link

Here are some links to documentation for using the Acumatica API:

Configuring the REST API

Sign In to the Service

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

79484710

Date: 2025-03-04 19:50:11
Score: 6 🚩
Natty: 5.5
Report link

Did you guys find a solution for the scrolling behavior similar to Instagram?

Reasons:
  • Low length (1.5):
  • 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: E Coutret

79484694

Date: 2025-03-04 19:41:09
Score: 3
Natty:
Report link

O erro é exatamente devido as repostas anteriores, você precisa especificar o service antes de fazer a chamada do método. Seja no controller:

    @Get('list')     
    async getAll(): Promise<CreateUserDto[]> {
        return this.service.getAll();
    }

//Observe que antes do método getAll(), estou especificando a instancia do service que é cujo o método pertence.

ou no próprio service ao chamar outro método externo:

 public getAll = async ():Promise<CreateUserDto[]> => {
        return this.repository.getAll();
    }
Reasons:
  • Blacklisted phrase (3): você
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jefferson Felipe

79484693

Date: 2025-03-04 19:41:09
Score: 1
Natty:
Report link

I think this is by design.

Security-related configuration settings generally lock themselves for safety reasons. For example, while we can disable Community Extensions using the SET allow_community_extensions = false, we cannot re-enable them again after the fact without restarting the database. Trying to do so will result in an error:

https://duckdb.org/docs/stable/operations_manual/securing_duckdb/overview#locking-configurations

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

79484692

Date: 2025-03-04 19:41:09
Score: 2
Natty:
Report link

Ok so I was experimenting around and found out that if you for example write:

cd("dir:/foldername")

Julia doesn't accept this and tells you that '/foldername' is an invalid escape sequence.

So in order to solve this just use '\\' instead of '/'

cd("dir:\\foldername")

And now if you check pwd() it will tell you that your current working directory is "dir:\\foldername"

So as a beginner it might be a little confusing but it's easy.

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

79484682

Date: 2025-03-04 19:36:08
Score: 1.5
Natty:
Report link

If you use https://bndtools.jfrog.io/bndtools/update-latest in Eclipse >> Help >> Install new software >> Work with.

Be sure to uncheck 'Only show the latest versions of software available'

Available Software with 'Only show the latest versions of software available' unchecked

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

79484677

Date: 2025-03-04 19:35:08
Score: 1.5
Natty:
Report link

Just remove

  1. "user_data_dir = os.path.expanduser("~\AppData\Local\Google\Chrome\User Data").replace("\","/")
  2. chrome_options.add_argument(f"--user-data-dir={user_data_dir}")"
  3. service = Service(executable_path="chromedriver.exe")

Those are not needed for the latest Selenium and keep everything to the basic defaults

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

79484675

Date: 2025-03-04 19:33:07
Score: 2.5
Natty:
Report link

I will write it here as well, hoping that it will see more people.

I tried everything but nothing helped. And you know what helped? CLEARING COOKIES!!! Just delete csrf_token from your cookies in the browser. That's it.

Hope it will save a couple of hours for you)

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

79484664

Date: 2025-03-04 19:26:06
Score: 2
Natty:
Report link

I tried a few things like install/reinstalling python extensions but the only thing that actually worked for me was to delete the app completely and cleanup https://code.visualstudio.com/docs/setup/uninstall#_clean-uninstall and then do a re-install.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brian Bolt

79484661

Date: 2025-03-04 19:26:05
Score: 8 🚩
Natty: 6
Report link

I'm having the same issue when deploying an Azure Document Intelligence resource using Terraform. If I create it manually within the Azure Portal, it shows up with the proper endpoint URL (https://.cognitiveservices.azure.com"), instead it's showing https://.api.cognitive.microsoft.com

Does anyone know how to resolve this when deploying via Terraform?

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

79484656

Date: 2025-03-04 19:22:04
Score: 3.5
Natty:
Report link

The problem was the micronaut-security-csrf enabled by default on DELETE requests.

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

79484654

Date: 2025-03-04 19:20:03
Score: 5
Natty: 3
Report link

and i dont have admin rights on my pc now what do i do my laptop locked 2 hours and it removed the admin rights am fucked up now

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sven svensoon

79484652

Date: 2025-03-04 19:20:02
Score: 7 🚩
Natty: 5.5
Report link

I am trying to do the same thing and i want to know if you successfully deployed it on cpanel.

Reasons:
  • Blacklisted phrase (1): i want to know
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): trying to do the same
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Solomon

79484634

Date: 2025-03-04 19:10:00
Score: 1.5
Natty:
Report link

setting => editor.stablePeek

check the box :)

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

79484611

Date: 2025-03-04 18:56:57
Score: 2.5
Natty:
Report link

I tried everything but nothing helped. And you know what helped? CLEAR COOKIES!!! Just delete csrf_token from your cookies in the browser. That's it.

Hope it will save a couple of hours)

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

79484608

Date: 2025-03-04 18:54:56
Score: 1.5
Natty:
Report link

If the line itself is bigger than available memory, you may use ReadBlock(Char[], Int32, Int32).

But if your data is of that magnitude, you will be very careful about out of memory errors.

Consider compiling your program in the x64 architecture, so your program can use more memories.

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

79484607

Date: 2025-03-04 18:53:56
Score: 2
Natty:
Report link

If you are not particularly interested in the why or how or even having possibly superfluous elements, the flake in this project helped me successfully dx serve the example app.

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

79484606

Date: 2025-03-04 18:53:56
Score: 0.5
Natty:
Report link

System: MacOS 15.3.1

In my case it was a very stupid mistake, I guess if you don't pass the path the os doesn't try to read the file

Failed:

test.py

Worked

./test.py
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Pall Arpad

79484599

Date: 2025-03-04 18:50:55
Score: 2
Natty:
Report link

Remove the ChromeDriverManager code bit as this is not required for the latest Selenium and remove options.add_argument("--user-data-dir=/tmp/selenium-user-data").

Run it in incognito mode and see if that works.

You need to keep everything basic and at its default.

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

79484597

Date: 2025-03-04 18:50:55
Score: 1
Natty:
Report link

I can't say anything specifically about ECMAScript, but there is a Python wrapper around Google's re2 library. https://pypi.org/project/google-re2/

There are a few "gotchas" on the pip page, but for the most part you can just "import re2 as re" and replace the re package. It is much faster for certain expressions. I went from matches taking so long they had to be cancelled to half a second.

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

79484596

Date: 2025-03-04 18:49:55
Score: 2
Natty:
Report link

Shift + mouse wheel press worked for me (I have a pretty old MINGW32 version -- rxvt --help says it is 2.7.2).

Reference: https://mingw-users.narkive.com/et4tDCOd/copy-paste-on-mingw-msys

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

79484585

Date: 2025-03-04 18:42:54
Score: 3
Natty:
Report link

I found a solution, here:

To disable multi-factor authentication:

  1. Go to Azure Active Directory Properties page (https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/Properties).
  2. On the bottom of the page, choose Manage Security defaults, and in the Enable Security defaults pane, set Enable Security defaults toggle to No.

enter image description here

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

79484584

Date: 2025-03-04 18:41:54
Score: 1
Natty:
Report link

Simply GO HERE

https://nodejs.org/en/download

and it is totally spelled out and automated.

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

79484581

Date: 2025-03-04 18:41:54
Score: 3
Natty:
Report link

If your simulation does not need to model any of the higher-layer functionality of DSRC (like channel hopping and service advertisements), you should be okay with using the INET Framework's 802.11 model in 802.11p mode. See the Veins_INET subproject - e.g., at https://github.com/sommer/veins/blob/veins-5.2/subprojects/veins_inet/examples/veins_inet/omnetpp.ini#L14 - for how to do that.

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

79484570

Date: 2025-03-04 18:33:52
Score: 1.5
Natty:
Report link

I found the issue. There was a history table that tracked changes to the table I was inserting into and had replicated the fields from the main table, with trigger that inserted all of the data from the main table row whenever a row is created, changed, or deleted. I had updated the character limit in the main table but not the history table, and so the triggered query to the history table was what was failing. I was able to update the history table to match the updated fields in the main table and the query went through successfully.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: B. Allred

79484563

Date: 2025-03-04 18:30:51
Score: 0.5
Natty:
Report link

The only way I found of disabling sounds caused by native Windows dialogs (for example, when deleting a file) is to switch to VSCode's built in dialogs, which are always silent.

Add this to user preferences JSON:

"window.dialogStyle": "custom"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tikolu

79484560

Date: 2025-03-04 18:30:50
Score: 5
Natty: 4.5
Report link

Any updates on this issue? I would also like to know if we can disable or better yet, edit the "final status" response message.

Reasons:
  • Blacklisted phrase (1): Any updates on
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shawn

79484554

Date: 2025-03-04 18:26:50
Score: 2.5
Natty:
Report link

It is possible via the console if you move the assets into a new bucket & delete the old one.

How to:

  1. Create your new S3 bucket
  2. Go to old S3 bucket & select all objects
  3. Under actions there is a move (or copy) option
  4. Move them
  5. Delete the old bucket

enter image description here

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

79484547

Date: 2025-03-04 18:22:49
Score: 1.5
Natty:
Report link

This is not supported by the current CLI implementation.

I have submitted a feature request via the vscode GitHub repository, which has been accepted as a candidate for the backlog. If you agree that this could be a useful feature, please upvote (+1/"👍") the issue description.

Link to feature-request issue; https://github.com/microsoft/vscode/issues/242489

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: wyndhamwynne

79484543

Date: 2025-03-04 18:19:48
Score: 0.5
Natty:
Report link

CREATE PROCEDURE solution() BEGIN WITH RECURSIVE ordered_requests AS ( SELECT seat_no, request, person_id AS request_person_id, ROW_NUMBER() OVER ( PARTITION BY seat_no ORDER BY request_id ) AS rn FROM requests ), cte AS ( SELECT seat_no, status AS current_status, person_id AS current_person, 0 AS rn FROM seats UNION ALL SELECT c.seat_no, CASE WHEN o.request = 1 THEN CASE WHEN c.current_status = 0 THEN 1 ELSE c.current_status END ELSE CASE WHEN o.request = 2 THEN CASE WHEN c.current_status = 0 THEN 2 WHEN c.current_status = 1 AND c.current_person = o.request_person_id THEN 2 ELSE c.current_status END ELSE c.current_status END END AS current_status, CASE WHEN o.request = 1 THEN CASE WHEN c.current_status = 0 THEN o.request_person_id ELSE c.current_person END ELSE CASE WHEN o.request = 2 THEN CASE WHEN c.current_status = 0 THEN o.request_person_id WHEN c.current_status = 1 AND c.current_person = o.request_person_id THEN c.current_person ELSE c.current_person END ELSE c.current_person END END AS current_person, c.rn + 1 AS rn FROM cte c INNER JOIN ordered_requests o ON c.seat_no = o.seat_no AND o.rn = c.rn + 1 ) SELECT seat_no, current_status AS status, current_person AS person_id FROM ( SELECT seat_no, current_status, current_person, ROW_NUMBER() OVER ( PARTITION BY seat_no ORDER BY rn DESC ) AS rn_rank FROM cte ) t WHERE rn_rank = 1 ORDER BY seat_no; END

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

79484535

Date: 2025-03-04 18:15:46
Score: 1
Natty:
Report link

It might have to do with the host parameter. You need to use the Eu - version of the sendgrid api for eu based subusers.

I was using php and had to change the code like this.

$sendgrid = new \SendGrid($_your_sendgrid_key, [
'host' => 'https://api.eu.sendgrid.com' ]);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nikomh

79484534

Date: 2025-03-04 18:15:46
Score: 0.5
Natty:
Report link

There is no Need to pass csrf token

Look : InertiaJS Docs

Laravel automatically includes the proper CSRF token when making requests via Inertia or Axios. However, if you're using Laravel, be sure to omit the csrf-token meta tag from your project, as this will prevent the CSRF token from refreshing properly.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sublan Mustafa

79484532

Date: 2025-03-04 18:14:45
Score: 1.5
Natty:
Report link

Take a screenshot or video of the failure so you can see where it has failed on the page.

There are a couple of reasons why you would get that error

  1. There is a overlay or wrapper blocking the element and you will need to close or remove it
  2. The element is disabled and you will need to enable it
  3. The element is not in the viewport so you will need to scroll to it or maximize the window or change the browser resolution - aim to have a consistent browser resolution across all browsers.
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: DeLaphante

79484529

Date: 2025-03-04 18:13:45
Score: 2.5
Natty:
Report link

You can just export an app screenshot to a PowerPoint slide in PowerApps by using the "PowerAutomate" integration to...capture that..screenshot. Then save it directly into a PowerPoint presentation...

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

79484527

Date: 2025-03-04 18:11:44
Score: 4
Natty:
Report link

Veins 5.3 does not build when OMNeT++ is built with OSG (3D scene) support. This should be fixable by moving line 32 of https://github.com/sommer/veins/blob/veins-5.3/src/veins/visualizer/roads/RoadsOsgVisualizer.h#L32 to after the "#pragma" statement

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

79484526

Date: 2025-03-04 18:11:44
Score: 1.5
Natty:
Report link

For those (like me) who followed Oo.oO's and John Appleyard's advice and have been updating makefiles or changing fortran installations for the past 7-8 years, GNU finally made -static-libquadmath a link option.

gfortran -static-libgfortran -static-libquadmath

Apparently it is kept separate from -static-libgfortran because of licensing issues.

See: https://gcc.gnu.org/git/gitweb.cgi?p=gcc.git;h=745be54bd6634fe63d6be83615e264c83d2ae9f9

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Simon J George

79484519

Date: 2025-03-04 18:06:43
Score: 0.5
Natty:
Report link

Either try what Dalta suggested or try to use '@'

import SignUp from '@/components/signUp';
import Login from '@/components/login';

The '@' creates a shortcut, like a nickname, for a specific folder in your project, making it easier to find files.

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

79484516

Date: 2025-03-04 18:05:43
Score: 3.5
Natty:
Report link

to be continuing to work on so many of the time ⌚ i fail about the problem issue.but its a not good for user.im tryinr to contact you for the next few days. https://www.youtube.com/watch?v=HS1o1N10giI it not soulation it.https://www.youtube.com

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Monti Gomes

79484512

Date: 2025-03-04 18:05:43
Score: 1.5
Natty:
Report link

Rather than having control of devices specified by a programming language, the interfaces to devices are handled by libraries. The organizations that specify the C and C++ standards are different from the organizations that specify libraries for graphics and sound. Thus, the official C and C++ standards do not mention libraries such as Cairo, GTK and wxWidgets since those libraries are specified by other organizations. (This is also the case for other programming and scripting languages. For example, the standard for Ruby does not cover Rails because Rails has a separate standard.)

Also, there are organizations that give alternate or supplementary standards for C and C++. In addition to the ISO standard for C, the POSIX standard for C specifies things strategically neglected by the ISO standard. Each of these standards has advantages.

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

79484504

Date: 2025-03-04 18:01:42
Score: 4
Natty: 4.5
Report link

The web page at https://i.instagram.com/challenge/?next=/api/v1/notifications/badge/ could not be loaded because:

net::ERR_HTTP_RESPONSE_CODE_FAILURE

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

79484500

Date: 2025-03-04 17:59:41
Score: 0.5
Natty:
Report link

I added a new option button for testing and it didn't seem to have the same problem.

Then I noticed I'd not set the 'GroupName" for the new option button. When I did that, the behavior reverted to what you're seeing.

Seems like the option button GroupName is somehow being applied across worksheets, which (I thought) shouldn't be the case.

Confirmed that in a new workbook with a single option button on each of two sheets and the same GroupName assigned to each one - clicking on one clears the other if it was set. So - you need different group names for each set of related option buttons on each sheet.

Edit - not a new thing... From 2005: https://www.excelforum.com/excel-programming-vba-macros/476859-groupname-for-optionbutton.html

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • High reputation (-2):
Posted by: Tim Williams

79484498

Date: 2025-03-04 17:58:40
Score: 7.5 🚩
Natty: 4
Report link

@Arihant Godha - Please share details to resolve this issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Arihant
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Subba Reddy

79484497

Date: 2025-03-04 17:58:40
Score: 1
Natty:
Report link

I was just able to get Eventbridge to accept this rule:

"stoppedReason": [{
      "anything-but": {
        "wildcard": "Scaling activity*"
      }
    }, {
      "anything-but": "Essential container in task exited"
    }]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andrew Aschenbrener

79484488

Date: 2025-03-04 17:54:39
Score: 0.5
Natty:
Report link

I tried to implement the above method, but as mentioned in a couple of comments, the probe wasn't being called when I wanted to transmit (it was being called once when everything started up, but then not again, perhaps because there wasn't a new buffer on the src pad of the queue, just the one being buffered?)

My solution was to hook up a blocking probe with no callback, and then when I wanted to unblock, I would remove the probe, and hook up a signal on the queue's underrun signal so that when the queue was drained I would block it up again, ready for the next time I wanted it to flow (if you wanted it to just keep on flowing you'd not need to do this).

First step (as given in the answer by @prabhakar-lad)

auto * pad = gst_element_get_static_pad(_queue, "src");
gulong blocking_pad_id = gst_pad_add_probe(pad, (GstPadProbeType)(GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_BLOCK), NULL, NULL, NULL);

Then when I want things to flow again (the below code is untested, I've torn it out from my project, so it might need tweaking):

gulong connection_id = g_signal_connect(_queue, "underrun", G_CALLBACK(on_queue_underrun), this)
gst_pad_remove_probe(pad, blocking_pad_id);

void on_queue_underrun(const GstElement * queue, MyElement & self)
{
    // Remove the under-run signal hook-up - otherwise I kept on adding more and more signals and it went wrong.
    g_signal_handler_disconnect(queue, self._blocking_pad_id);
    // Do stuff here to put in the new blocking pad
}

Remember to unref your pads as needed (I've missed it out here for brevity)

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Gemms

79484484

Date: 2025-03-04 17:51:39
Score: 2
Natty:
Report link

This is not supported by the current CLI implementation.

I have submitted a feature request via the vscode GitHub repository, which has been accepted as a candidate for the backlog. If you agree that this could be a useful feature, please upvote (+1/"👍") the issue description.

Link to feature-request issue; https://github.com/microsoft/vscode/issues/242489

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: wyndhamwynne

79484483

Date: 2025-03-04 17:51:39
Score: 2
Natty:
Report link

You can create "fillable" forms with FPDF. See script # 93 at http://www.fpdf.org/en/script/ex93.pdf A fillable form allows the reader to enter text on your PDF form and save it. They could type in their name, address, etc. Usually the fillable box is highlighted or shaded in blue.

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

79484480

Date: 2025-03-04 17:49:38
Score: 1.5
Natty:
Report link

To detail what I said in the comment, the solution would look like this:

score_analysis.py

from dataclasses import dataclass, field

from .json_serialization import *
from .domain import *


class MatchAnalysisDTO(JsonDomainBase):
    name: str
    score: Annotated[HardSoftDecimalScore, ScoreSerializer]
    justification: object


class ConstraintAnalysisDTO(JsonDomainBase):
    name: str
    weight: Annotated[HardSoftDecimalScore, ScoreSerializer]
    matches: list[MatchAnalysisDTO]
    score: Annotated[HardSoftDecimalScore, ScoreSerializer]

rest_api.py

async def setup_context(request: Request) -> EmployeeSchedule:
    json = await request.json()
    return EmployeeSchedule.model_validate_json(json)

@app.put("/schedules/analyze")
async def analyze_timetable(employee_schedule: Annotated[EmployeeSchedule, Depends(setup_context)]) -> dict:
    return {'constraints': [ConstraintAnalysisDTO(
        name=constraint.constraint_name,
        weight=constraint.weight,
        score=constraint.score,
        matches=[
            MatchAnalysisDTO(
                name=match.constraint_ref.constraint_name,
                score=match.score,
                justification=match.justification
            )
            for match in constraint.matches
        ]
    ) for constraint in solution_manager.analyze(employee_schedule).constraint_analyses]}

Note: This is an example of a solution. Adapt it for your needs.

Please let me know if this was useful.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Diallo Francis Patrick

79484467

Date: 2025-03-04 17:43:37
Score: 1.5
Natty:
Report link

I think that you type the wrong location of the component directory. I assume that you're in the page.tsx file (the file that display the actual page). Try to write this: import SignUp from '../components/signUp' and ../components/login .

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

79484463

Date: 2025-03-04 17:42:37
Score: 1
Natty:
Report link

I think that the VarInt prefix is the number of bytes where:

Also, about line terminators, LF (\n) is usually used. CR (\r) is not commonly used.

I hope this helps! 😀

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nathaniel the Student

79484455

Date: 2025-03-04 17:39:36
Score: 1.5
Natty:
Report link

I have been able to reproduce this with "Year" as an integer. Probably the neatest solution is just to cast the column to character

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: setophaga

79484454

Date: 2025-03-04 17:39:36
Score: 2
Natty:
Report link

That is a security pop up from chrome and cannot be controlled by Selenium as the URL and message states that it is asking to launch a native application hosted on the local machine.

You will need to manually click that or incorporate a windows or mac automation tool such as AutoIt to do it.

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

79484449

Date: 2025-03-04 17:37:36
Score: 2
Natty:
Report link

I've used @Operation(hidden = true) and it worked perfect for each endpoint org.eclipse.microprofile.openapi.annotations.Operation;

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

79484445

Date: 2025-03-04 17:37:36
Score: 1.5
Natty:
Report link

You can also use give a numeric argument to C-x o to jump ahead (or backwards for negative numbers) multiple windows.

For example, to select the previous window, press Alt type -1, then release Alt and type C-x o.

References:

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

79484444

Date: 2025-03-04 17:36:35
Score: 4
Natty: 4
Report link

For v_data_type use TEXT instead RAW, this solves problem

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

79484440

Date: 2025-03-04 17:36:34
Score: 6.5 🚩
Natty: 6
Report link

@Ugur MULUK

I have found your answers about this issue helpful when naively predicting time series. Now I understand I must do some clever work to the features to avoid the regressor's cheating issue.

I like your suggestion of switching to a binary (or multi-class) classification for predictions. I'm testing it right now. But my question is: How can I make further predictions with my binary/multi-class model?

Now I don't have prices as labels and I need to go beyond one single prediction.

Any suggestion would be very welcomed. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2): Any suggestion
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Ugur
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: ElCharly64

79484438

Date: 2025-03-04 17:35:34
Score: 2
Natty:
Report link

You should use @eq in your query

Employee(manager_id: Int @eq ): [Employee] @find
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: drxp21

79484437

Date: 2025-03-04 17:35:34
Score: 1
Natty:
Report link

It worked after reinstalling postgres and deleting the folder

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Jason

79484435

Date: 2025-03-04 17:34:34
Score: 1
Natty:
Report link

The original statement is correct: useTemplateRef is not reactive for arrays, as of Vue 3.5, but this may change in a future version.

See this helpful discussion with a Vue team member about the topic: https://github.com/orgs/vuejs/discussions/12989

It seems like this was a design mistake that they intend to correct.


Not trying to be pedantic here, but @tao's answer is not quite right, and I want to clarify because it could confuse someone.

itemRefs is updated (e.g reactive). But it's always updated 1 render cycle after list has changed. Wrap your console.log in nextTick (imported from 'vue') and the numbers will match:

itemRefs is not reactive. Indeed, itemRefs will have the expected value after a nextTick. But the "show code snippet" example works because you are watching the list source (which is truly reactive) and it ultimately determines how many itemRefs there will be. But if you were to just watch itemRefs as the source, it would not work.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @tao's
Posted by: V. Rubinetti

79484427

Date: 2025-03-04 17:31:33
Score: 0.5
Natty:
Report link

friend.

Apparently, even when using RDS in the free tier, if you're using a non-private VPC, you'll be charged for the use of the IPv4, since the public IPv4 addresses are not free when used with RDS, only with EC2 instances.

I was facing the same problem, found this answer here: [https://repost.aws/questions/QUGjraaPYUQLmVOvUph0NWgQ/charged-on-free-tier-for-vpc][1]

Hope this helps you.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jp-bruno

79484426

Date: 2025-03-04 17:30:33
Score: 2
Natty:
Report link

DDL – Data Definition Language.

DQL – Data Query Language.

DML – Data Manipulation Language.

DCL – Data Control Language.

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

79484424

Date: 2025-03-04 17:30:33
Score: 2.5
Natty:
Report link

solution uninstall react 19 npm uninstall react react-dom try to run this command npm install react@18 react-dom@18 npm i web-vitals npm install --save-dev ajv@^7 it will solve the problem

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

79484415

Date: 2025-03-04 17:27:32
Score: 2
Natty:
Report link

Take a look at the kbase at https://community.progress.com/s/article/How-to-perform-a-simple-GET-request-using-the-HttpClient .

There are more, similar, examples at https://community.progress.com/s/article/Is-there-an-HTTP-client-for-OpenEdge

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

79484408

Date: 2025-03-04 17:26:31
Score: 1
Natty:
Report link

My friend well, this question been asked 6 years ago, I think definitely you solve your problem, so for the people who stuck with the same problem you can fix via below tactics.

Updated ClearCanvas Function:

function ClearCanvas(sColour) {
    DebugMessage("Clear Canvas");
    const context = oCanvas.getContext('2d');

    // Clear the canvas
    context.clearRect(0, 0, oCanvas.width, oCanvas.height);

    // Set the background color
    oCanvas.style.background = sColour; // Update the canvas background
}

A few things to be kept in mind

  1. Ensure oCanvas is properly defined and refers to the element.
  2. Instead of "____", pass a valid CSS color string (e.g., "red", "#ff0000", "rgba(255, 0, 0, 0.5)", etc.).

I hope it will help others to get rid of these problem

Reasons:
  • Whitelisted phrase (-1): hope it will help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): stuck with the same problem
  • Low reputation (0.5):
Posted by: CodeHunger Pvt. Ltd.

79484404

Date: 2025-03-04 17:23:31
Score: 1.5
Natty:
Report link

When I was developing my Core Web Vitals extension, I realized the difference and now always use only local metrics at the very beginning of development.

  1. Google Search Console uses real user data (Field Data) from the Chrome User Experience Report (CrUX), which collects metrics from users in real-world conditions. These metrics are highly averaged, as they take into account data from users with different devices and internet speeds. Additionally, they are aggregated by groups of URLs rather than individual pages.

  2. PageSpeed Insights displays both Lab Data (e.g., slow 4G and a mid-performance device) and Field Data. Lab Data is measured in a controlled environment and may not reflect real user conditions.

  3. Your local data, which you can check in the extension (Core Web Vitals Test) or directly in the browser under the Performance tab, is calculated specifically for each page you visit. These local measurements also contribute to the data used in CrUX.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Anton Georgiev

79484402

Date: 2025-03-04 17:22:31
Score: 3
Natty:
Report link

Say if in Test if we have other jobs which we don't want to give access to. Then how can it be configured?

Test Test/dev1 Test/other Test/dev2

requirement is to be only able to access dev1 and dev2 jobs and not other job.

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sevda Krithika Sharma

79484396

Date: 2025-03-04 17:17:30
Score: 1.5
Natty:
Report link

Assuming that Client in Keycloak is configured with OpenID Connect. First - Got to : Realm -> Realm Settings -> Endpoints. Endpoints will be at the bottom of Realm Settings page. Open 'OpenID Endpoint Configuration' link & from there pick the 'token-endpoint' url. Second - Clients -> Client ID -> Settings From here pick the client ID. Clients -> Client ID -> Credentials From here pick the Client Secret Third - Use the correct username & its password. Fourth -

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

79484389

Date: 2025-03-04 17:14:29
Score: 2
Natty:
Report link

For some processes, Ctrl-\ on macOS has the same behavior as Ctrl-Break on Windows. It appears to be a "kill -3".

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

79484386

Date: 2025-03-04 17:13:28
Score: 2
Natty:
Report link

"BUILD_AOSP_KERNEL=1" is deprecated and only adding "--kernel_package=@//aosp" seems not to for me too ..but I found this in one of the other kernel build scripts and this seems to work: --config=no_download_gki

e.g.: ./build_DEVICE.sh --kernel_package=@//aosp --config=no_download_gki

Clean builds will also not download any prebuilts anymore.

https://android.googlesource.com/kernel/devices/google/akita/+/a67ed82dbf3baabcf9d5e256284961f4aa1949f7%5E%21/#F0

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

79484383

Date: 2025-03-04 17:13:28
Score: 0.5
Natty:
Report link

Did you check this doc: WinAppDriver in CI with Azure Pipelines?

  1. WinAppDriver supports self-hosted agents only. (HostedVS2019 and HostedVS2017 are not available)
  2. and you need to enable interactive mode: Interactive vs. service
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • High reputation (-2):
Posted by: Shamrai Aleksander

79484376

Date: 2025-03-04 17:10:27
Score: 5
Natty:
Report link

Sounds like the dismissal of the permission dialog retriggers the onResume of your Activity/Fragment. In that case, it would make sense that checkPermissions() gets called and you are stuck in the B branch of your code as the shouldShow...Rationale will only fire once as @Edric confirmed.

You can override onPause() to verify this.

"But I want to support a "corner case", whereby the user continues to refuse until they give up and delete the app (I know, I know, bear with me here...)"

This sounds like you would want the infinite loop that you are getting?

What is exactly the problem with the behaviour you are seeing and what is the behaviour you are looking for? Do you want to show the explainDialog on a loop instead of the requestPermissions dialog?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Edric
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Sjors de Haas