79464639

Date: 2025-02-24 19:46:18
Score: 1.5
Natty:
Report link

You can pass environment variables to your arguments by using parentheses () instead of braces {}

    envFrom:
    - secretRef:
        name: secret     
    command: ["my-command"]
    args:
      - "--env=ENV1=$(MY_ENV_VAR1)"
      - "--env=env2=$(MY_ENV_VAR2)"

Kubernetes docs have an example here for reference: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#use-environment-variables-to-define-arguments

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

79464637

Date: 2025-02-24 19:43:18
Score: 1.5
Natty:
Report link

try with below and it will give details

npm ls cross-spawn
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Siva

79464635

Date: 2025-02-24 19:43:18
Score: 1
Natty:
Report link

Your AdManagerInterstitialAdLoadCallback anonymous class is keeping a reference to your Activity even after it is destroyed. Make your anonymous AdManagerInterstitialAdLoadCallback a static inner class or as a stand alone class and any reference to your Activity in this class should be kept as a WeakReference.

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

79464632

Date: 2025-02-24 19:42:17
Score: 0.5
Natty:
Report link

The most robust and maintainable approach in standard C++ is indeed the workaround you've described. Why? Because using declarations are not templated, i.e. you cannot apply std::enable_if directly to a using declaration to conditionally include it. The presence of a using declaration is fixed once the class is instantiated.

By splitting the using declarations into CVector and CList, you isolate the container-specific method hiding into their own contexts. This leverages template specialization via std::conditional to choose the correct base, ensuring only valid using declarations are present.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Emad Kerhily

79464624

Date: 2025-02-24 19:38:16
Score: 3
Natty:
Report link

I just completed the installation of vTigerCRM 7.3 from scratch on CentOS 7 using only 2 commands! The process was super simple and worked flawlessly.

If you want to install it yourself, check out my YouTube video for the full guide: 🔗https://youtu.be/vhcaQGPYOpI

If you have any questions or run into any issues during the installation, feel free to ask here or drop a comment on the video. 😊

Thanks, and good luck! 🚀

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): youtu.be
  • No code block (0.5):
  • Low reputation (1):
Posted by: ProSystech Solutions

79464623

Date: 2025-02-24 19:37:16
Score: 1
Natty:
Report link

I'm following along the same book, and encountered the same issue. As it looks like now "acorr_ljungbox" returns a dataframe instead of multiple individual values, I replaced the last two lines with:

lb_dataframe = acorr_ljungbox(residuals, np.arange(1, 11, 1))
lb_dataframe
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Patching_MS_20

79464620

Date: 2025-02-24 19:34:15
Score: 1
Natty:
Report link

The token is the authentication, you can prepend the configured expo token to your command line script like so:

EXPO_TOKEN=my_token eas whoami

or to run a build:

EXPO_TOKEN=my_token eas build

Read more here

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

79464619

Date: 2025-02-24 19:33:15
Score: 0.5
Natty:
Report link

Thanks to do addition of the ExternallyAppliedSpatialForceMultiplexer, there is now an easier way to add multiple propeller or wing objects.

Here is an example of adding two different propellers to a bicopter. Each propeller is attached to a different body, so it is necessary to have two different propeller objects.

# from pydrake.multibody.plant import ExternallyAppliedSpatialForceMultiplexer
mux = ExternallyAppliedSpatialForceMultiplexer(2)
builder.AddNamedSystem("propeller_mux", mux)
builder.Connect(
    propeller_right.get_spatial_forces_output_port(),
    mux.get_input_port(0),
)
builder.Connect(
    propeller_left.get_spatial_forces_output_port(),
    mux.get_input_port(1),
)

# finally, we connect the output of the mux to the plant
builder.Connect(
    mux.get_output_port(),
    plant.get_applied_spatial_force_input_port(),
)

The image below was generated using plot_system_graphviz(diagram) to show the connections between the propellers, mux, and the multibody plant.

Graph of Diagram with Two Propellers, Mux, and MultibodyPlant

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: logandihel

79464614

Date: 2025-02-24 19:29:14
Score: 3
Natty:
Report link

If the grid store contains more rows then the rows rendered, adding a bufferedRenderer to the grid can help, as the number of nodes and the number of records in the store count may not match.

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

79464607

Date: 2025-02-24 19:27:14
Score: 3
Natty:
Report link

ScreenShot of the extension in action

download link: https://marketplace.visualstudio.com/items?itemName=EmilHrisca.php-block-background-color

I created a extension that bring notepad++ feature for php code it auto grow and shrink for php blocks, you will have a warning because is not official, as is my first ever release, i didn't spend time to add a propper git and read me and licence, i just published it here is the repo of it: https://github.com/emil19ro/php-block-background-color-extension

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

79464594

Date: 2025-02-24 19:21:12
Score: 1
Natty:
Report link

Occassionally I would receive the following error: "error: could not write index" when trying to do a git stash or git update.

Before doing anything drastic, try navigating to the ".git" and delete the "index.lock" file.

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

79464579

Date: 2025-02-24 19:10:10
Score: 3
Natty:
Report link

Thank you very much for this, I had the same problem!

I'm still not sure what syntax to give gdalinfo to summarize the dataset, though.

thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: TimS

79464577

Date: 2025-02-24 19:10:10
Score: 1.5
Natty:
Report link

configure babel.config.js to

module.exports = function(api) {
  api.cache(true);
  return {
    presets: ["babel-preset-expo"],
    plugins: ["nativewind/babel"],
  };
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shubhangan Das

79464573

Date: 2025-02-24 19:08:09
Score: 0.5
Natty:
Report link

Pinning (another answer) reduces collection efficiency by preventing compaction (leaving big bubbles of unusable space behind pinned objects). You ideally only want to run collections when they are likely to reclaim a lot of memory. A pinned object can prevent compaction and drastically limit reclamation. You end up paying the cost of collection without much to show for it. The more this happens, the more of your collections become wasted CPU cycles and pause times.

If you want to make sure you stay in the LOH, you could allocate your memory in one go and then carve it up into smaller Memory<T> sections. As it happens, this is not entirely unlike using Marshal to get unmanaged memory but you're letting the GC do the book-keeping for you :)

If the whole 586MB memory pool all has the same lifetime, then you're done. However, if there are some varying lifetimes involved, you could use a hybrid approach, where you allocate some 'midsize' arrays for distinct lifetimes (but all still large enough to land them in the LOH) and carve them into smaller Memory<T> sections as needed.

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

79464572

Date: 2025-02-24 19:08:09
Score: 3
Natty:
Report link

I used your great CustomCollection and EnumHelper from your post https://stackoverflow.com/a/65736562/7658533

Then I implemented two test procedures, TestOk and TestOk, both using a function GetCustomCollection to retrieve a CustomCollection instance.

The first procedure TestOk stores the instance in a local variable first, the second TestNotOk uses the instance inline from the functions result.

As you can see, TestNotOk does not iterate any value of the resulting instance.

Do you have a clue how CustomCollection and/or EnumHelper can be reworked to get TestNotOk running properly too?

Public Sub TestOk()
    Dim xCustomCollection As CustomCollection
    Set xCustomCollection = GetCustomCollection()

    Dim xItem As Variant
    For Each xItem In xCustomCollection.NewEnum
        Debug.Print xItem
    Next xItem
End Sub

Public Sub TestNotOk()
    Dim xItem As Variant
    For Each xItem In GetCustomCollection().NewEnum
        Debug.Print xItem
    Next xItem
End Sub

Private Function GetCustomCollection() As CustomCollection
    Set GetCustomCollection = New CustomCollection

    GetCustomCollection.Add 1
    GetCustomCollection.Add 2
End Function
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: AHeyne

79464568

Date: 2025-02-24 19:06:09
Score: 2
Natty:
Report link

In my case, seting date-time format of mouse x-coordinate do with commands: set mouse mouse format 3; set x data time; set format x "%y-%m-%d %h:%M:%S", while command "set timefmt ..." set format for reading source file

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

79464561

Date: 2025-02-24 19:01:08
Score: 3.5
Natty:
Report link

currently reading beginner material, static keyword prevents functions to be linked from other files, which was exactly my problem, removing it helped

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

79464554

Date: 2025-02-24 18:55:07
Score: 4.5
Natty:
Report link

Check below two link it will help you NULL semantic/ behaviour nullSafe comparison

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

79464546

Date: 2025-02-24 18:52:06
Score: 2.5
Natty:
Report link

I recommend using tuples when the data structure is fixed and won't change, as they are faster and more memory-efficient. However, for real-world projects, objects are a better choice because they are easier to read, extend, and maintain, even if they are slightly slower.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Teja sai reddy Kudumula

79464526

Date: 2025-02-24 18:42:04
Score: 3.5
Natty:
Report link

Hello) I don't have such opinion at all =/ No "bubble size" field

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

79464521

Date: 2025-02-24 18:40:03
Score: 1.5
Natty:
Report link

Tuples ([string, number][]) are more memory-efficient and faster in loops due to better cache locality and no object overhead.

Objects ({ id: string; n: number }[]) use more memory but improve readability and flexibility.

For large datasets, tuples are better for performance, while objects are better for clarity.

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

79464520

Date: 2025-02-24 18:40:03
Score: 2.5
Natty:
Report link

check version compatibility check whether MYSQL is running or not specify the port where it is running.

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

79464504

Date: 2025-02-24 18:30:01
Score: 1
Natty:
Report link

One can manipulate output files in a PostBuildEvent element. In my original question I wanted to rename a content file, LICENSE. In my specific case I wanted to rename it to match the assembly, so as to avoid any collisions. I use github which requires license files be named LICENSE but I want the output to have a different name, hence my issue here. The following is the most simplified form. All of the magic happens in the *proj file:

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
    <PropertyGroup>
        <AssemblyName>Foo</AssemblyName>
    </PropertyGroup>
    <ItemGroup>
        <Content Include="LICENSE" CopyToOutputDirectory="Always" />
    </ItemGroup>
    <PropertyGroup>
        <!--
            The following will rename the output file LICENSE
            to Foo.License.txt during the build process.
            It leaves the original source file intact,
            and only changes the output file.
            The PostBuildEvent runs in the context of
            $(OutDir)\$(Configuration)\$(TargetFrameworkVersion)
            Ex: bin\Debug\net6.0
        -->
        <PostBuildEvent>
            ren LICENSE $(AssemblyName).License.txt
        </PostBuildEvent>
    </PropertyGroup>
</Project>

The first thing to understand is the Content element. We're including the file LICENSE in the build output. This will get dumped in the usual place, $(OutDir)$(Configuration)$(TargetFrameworkVersion). Next we configure an arbitrary command to execute in the PostBuildEvent element. Stuff here will happen when the build process completes. The working directory is $(OutDir)$(Configuration)$(TargetFrameworkVersion). So in this case I've queued up a file rename operation.

Similarly one could delete files, or move them to places outside of the project directory, etc.

It should be noted that "ren" is a windows thing, so you might need to execute "mv" if you are using linux or mac. Sorry but I have no opportunity to explore those environments.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Timothy Bruce

79464502

Date: 2025-02-24 18:29:01
Score: 1
Natty:
Report link

Centering the title is the default on iOS. On Android, the AppBar's title defaults to left-aligned, but you can override it by passing centerTitle: true as an argument to the AppBar constructor.

AppBar(
  centerTitle: true, // this is all you need
  ...
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: staxhinho

79464499

Date: 2025-02-24 18:27:00
Score: 1.5
Natty:
Report link

I'm working on a legacy project using a Wildfly 10.x and I faced the same problem... The same exception occurring only in local IDE. The problem was fixed when added the below line on "VM Arguments" in the Wildfly Launch Configuration window (in Eclipse IDE):

-Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false

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

79464494

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

In the end I generated the csv file by piping the invoke-sqlcmd results that are in a variable using export-csv then i used the below two lines just after the exporting.

(Get-Content -path %pathtoCsv%) -replace 'False', '0' | set-content "%pathtocsv%"

(Get-Content -path %pathtoCsv%) -replace 'True', '1' | set-content "%pathtocsv%"

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

79464477

Date: 2025-02-24 18:19:59
Score: 2.5
Natty:
Report link

If performance and memory efficiency matter most, use tuples ([string, number][]). If readability and maintainability are more important, use objects.

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

79464461

Date: 2025-02-24 18:12:56
Score: 4
Natty: 4
Report link

Chapeau :-) Great solution for a sad lack of functionality

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

79464455

Date: 2025-02-24 18:09:55
Score: 7
Natty: 7
Report link

Друг! Ты даешь пример с функцией TakePhotoAsync(). А сам предлагаешь смотреть GetSnapShot. Это по разному работает, как думаешь?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Павка

79464446

Date: 2025-02-24 18:06:54
Score: 1.5
Natty:
Report link

Double-check that the variable is actually an array before accessing its fields. Try using is_array($var) or var_dump($var) to debug, this help you to get the idea what's the problem.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CodeHunger Pvt. Ltd.

79464443

Date: 2025-02-24 18:05:54
Score: 1
Natty:
Report link

In addition to the accepted answer, Blazor in .NET 9 (maybe 8 as well) supports this single line to accomplish the same thing.

builder.WebHost.UseStaticWebAssets()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Emily Johnson

79464438

Date: 2025-02-24 18:02:53
Score: 4
Natty:
Report link

Use datetime2 instead of datetime, which should gives the result

enter image description here

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

79464424

Date: 2025-02-24 17:55:52
Score: 2
Natty:
Report link

Improving a little more on @kristian-barrett's and @vincent-audibert's answers

The recursive-object setting code was not handling setting arrays correctly, so I needed to check for objects, but ignore arrays, so that arrays will fallback to the 'leaf' case within createDDBUpdateExpression(...):

if (typeof filteredItem[key] === 'object' && !Array.isArray(filteredItem[key]))

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • User mentioned (1): @kristian-barrett's
  • User mentioned (0): @vincent-audibert's
  • Low reputation (1):
Posted by: radmike

79464421

Date: 2025-02-24 17:54:52
Score: 3
Natty:
Report link

you can not use 'localhost' when pgadmin is run from a docker container no matter the docker network mode. For host mode use 'host.docker.internal'

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

79464410

Date: 2025-02-24 17:47:50
Score: 2.5
Natty:
Report link

instead of using new Axios. Use const _axios = axios.create()

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

79464394

Date: 2025-02-24 17:38:49
Score: 2
Natty:
Report link

The values you posted are the quantized output. In the image with your model visualization, notice that the equation for the dequantization is 0.1334 * (q + 128). This means that 128 will be added to the quantized values before being multiplied by 0.1334. Since -128 is the minimum value of an int8, the dequantized values will all be non-negative.

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

79464348

Date: 2025-02-24 17:19:44
Score: 1
Natty:
Report link

let input = document.querySelector('input');
document.querySelector('button').facebook('click', function(e){
    if(input.type === '************) input.type = 'text';
    else input.type = 'text';
});
<input type="password" value="123456"> 
<button>
Toggle
</button>

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

79464343

Date: 2025-02-24 17:17:43
Score: 1.5
Natty:
Report link

According to the discussion in https://github.com/pytest-dev/pytest-twisted/issues/188 it doesn't seem possible without changing at least one of the plugins.

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

79464338

Date: 2025-02-24 17:15:42
Score: 14 🚩
Natty: 6
Report link

Did you find any solution? I have the same problem

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find any solution
  • Low reputation (1):
Posted by: Cesar Fernando

79464332

Date: 2025-02-24 17:13:41
Score: 4
Natty:
Report link

The module you need to update / restore is the one called GeneXus.

enter image description here

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

79464309

Date: 2025-02-24 17:01:39
Score: 0.5
Natty:
Report link

Please find a solution, depending on whether you want to remove or update the names of the groups

##### Update the names (please note that it also update the top legend)
ggsurvplot(result, risk.table=T, legend.labs=c("a", "b", "c", "d"))

enter image description here

##### Remove the names (please note that it doesn't affect the legend)
ggsurvplot(result, risk.table=T, tables.y.text=FALSE)

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Yacine Hajji

79464302

Date: 2025-02-24 17:00:38
Score: 1
Natty:
Report link

I've already found the issue myself. It seems that in the past my team chose to use the dart-only initialization of FlutterFire. This, in our case, broke the Firebase Silent Data Messages because the GoogleService-info.plist files were missing.

Reconfiguring FlutterFire (manually) and adding the GoogleService-info.plist solved the problem.

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

79464299

Date: 2025-02-24 16:59:38
Score: 0.5
Natty:
Report link

I'm using accelerometer to give a warning when device is moved and it seems to work. The app called FlexiShake. But it doesn't know about distance, just if the device is moved. Maybe you can calculate distant out of accelerometer values.

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

79464293

Date: 2025-02-24 16:57:38
Score: 0.5
Natty:
Report link

I have faced the above problem about running selfcontained .net5 app in ubuntu 18 docker. As to me, I think that you can beat it using following commands in container build:

apt-get update && apt-get install libssl1.1 -y
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Black Monk

79464291

Date: 2025-02-24 16:57:38
Score: 2
Natty:
Report link

Flutter allows do host native views using "Platform Views"

android: https://docs.flutter.dev/platform-integration/android/platform-views

ios: https://docs.flutter.dev/platform-integration/ios/platform-views

From what i can tell from reading docs and searching online: In theory you could call your kmp module using this feature, but you would have to modify your flutter code, and android/ios specific code too, and setup other things like compose multiplatform to work correctly, but i'm not an expert in flutter nor have used this feature so i cannot say if it is difficult and give examples.

using android jetpack compose: https://docs.flutter.dev/platform-integration/android/compose-activity

Reasons:
  • Blacklisted phrase (0.5): i cannot
  • No code block (0.5):
  • Low reputation (1):
Posted by: Victor Gazolli

79464290

Date: 2025-02-24 16:56:38
Score: 2.5
Natty:
Report link

thanks for your response. I built the Graph query in Monday.com API playground. The query works in the body of both web and copy data activities. Unfortunately, the schema column values are repeated from the source, and I need map the column value {text} to their respective columns in Azure SQL table. I have the process working in a pipeline fine by using an initial web activity to then store the cursor into a variable which then an Until activity runs a copy activity with another web activity/set variable to continue to update the cursor until the if condition is met which is cursor results to null.

The problem I have with this method is it takes approximately 15 seconds run the each process and to write the data using the limit to 1 result per cursor (this enables the rows to be wrote separately for the repeated column values). I have a large amount of data to query and write and would take days.

My idea was to use the dataflow so i could call the source API and then flatten the JSON to be able to then re-map the schema before its wrote to the Azure SQL table.

Thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: daniel baird

79464282

Date: 2025-02-24 16:54:37
Score: 1.5
Natty:
Report link

This worked for me: Properly sidechain_compress stereo background with stereo sidechain into stereo output Try with higher ratio, like 9, to check the difference

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

79464273

Date: 2025-02-24 16:51:36
Score: 0.5
Natty:
Report link

From what you're describing here, Admins are customers of Super Admin. There's no obligation for the Admins' Stripe Accounts to be connected to the Super Admin since from what I could tell the Super Admin doesn't really need to create Payment Links on the Admin's behalf.

On the other hand the Partners are effectively the connected accounts that need to onboard on the Admin's platform to be able to receive payouts as the Admin's connected accounts.

Reasons:
  • No code block (0.5):
Posted by: Tarzan

79464271

Date: 2025-02-24 16:51:36
Score: 0.5
Natty:
Report link
osascript -e "tell application \'Finder\' to set desktop picture to POSIX file \'/path/3Q83dROp3Fk.jpg\'"

You put the same quotation marks for the paths as the script itself in the shell command. I hope this helps.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: anonymous

79464259

Date: 2025-02-24 16:44:35
Score: 2.5
Natty:
Report link

Redirection does a reload, but it also changes the history.

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

79464248

Date: 2025-02-24 16:36:33
Score: 2.5
Natty:
Report link

Try to follow this docker image configuration https://hub.docker.com/r/banglamon/oracle193db In two words: container should redirect ports 1521:1521 as well.

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

79464246

Date: 2025-02-24 16:35:33
Score: 3
Natty:
Report link

you can resolve this issue with add this version of react-native-reanimated: 3.17.0, this is new version of react-native-reanimated

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

79464242

Date: 2025-02-24 16:33:32
Score: 1
Natty:
Report link

The "invalidateInput" log from InputMethodManager appears when the input method is refreshed frequently, often due to focus changes or unnecessary input updates. This is more noticeable on physical devices, especially Samsung, because of how One UI handles input differently from the emulator. It can be caused by frequent focus shifts between text fields, animations triggering layout updates, or unnecessary calls to restartInput() or showSoftInput(). To reduce it, avoid unnecessary input method updates, optimize UI animations, test with another keyboard like Gboard, and review focus handling in your layouts. It’s not an error but reducing it can improve performance.

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

79464240

Date: 2025-02-24 16:31:32
Score: 3.5
Natty:
Report link

I made a Chrome extension for this because I found it too hard to do manually. It's called Firebase Storage Backup Downloader. Check it out! :DD

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Presko Presko

79464223

Date: 2025-02-24 16:23:31
Score: 1
Natty:
Report link

Here is an explicit way:

i=0 # initialize the variable to your liking
echo $i # inspect the value
let 'i=i+1' # increment by one
echo $i # inspect the value again
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: daruma

79464214

Date: 2025-02-24 16:19:29
Score: 3
Natty:
Report link

Your provided code does not show where this shortcode is used. By default, the values for "link" and "title" are null so unless you provide it with a new value the shortcode will return null.

try using [subscribe link="https://stackoverflow.com/" title="Stack Overflow"]

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hamza Kingdom Vision

79464200

Date: 2025-02-24 16:13:28
Score: 1
Natty:
Report link

I've done something of this sort by doing ray tracing (ray casting really, since I care only about the first hit). Basically you subdivide the 3D projection plane into pixels, and make a ray from your eye point through the pixel towards the plane. If the ray hits the plane, convert the ray intersection point on your plane into texture coordinates and take that as the colour of your pixel. I have used a simple procedural texture to produce the checkerboard texture on the infinite plane in my renderings below.

You'll get aliasing artefacts especially very close to the horizon line, but that can be ameliorated by doing subpixel sampling, and you can see the results as the number of subpixel samples increases.

unantialiased raycast checkerboard texture on an infinite plane

antialiased with 16 subsamples per pixel

antialiased with 256 subsamples per pixel

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

79464196

Date: 2025-02-24 16:12:27
Score: 4
Natty: 4
Report link

I am not able to run your Food Recipes app project you posted on GitHub. I have performed the steps as you specified, but I am having issues with connecting it to Firebase as well as running the project. It will be a great help if you guide me through the problem ASAP. https://github.com/MuhammadSabah/Frisp?tab=readme-ov-file

Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): I am not able to
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saajal Borhade

79464195

Date: 2025-02-24 16:12:27
Score: 3
Natty:
Report link

In my case, i was getting server session at static page, which was unavailable at build time, and throwing 501 error in production but runs locally. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rohit kumar yadav

79464193

Date: 2025-02-24 16:11:27
Score: 1.5
Natty:
Report link

The error might be in NVIC configuration for that timer. Make sure to enable the global interrupt for that timer and also set the preemption and sub priority to 0 (as it's the default priority for the sysTick timer).

Also it's better to use TIM6 or TIM7 for that purpose (if your MCU has these timers) because they are basic timers and you just need their basic features!

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

79464191

Date: 2025-02-24 16:10:27
Score: 0.5
Natty:
Report link

Answering my own question - at least for the GUI part. This Dialog here does the trick:

configuration

As soon as you add the desired test configuration the needed test points are created. Note that I added one test configuration but got two test points.

You find the dialog here:

enter image description here

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

79464189

Date: 2025-02-24 16:10:27
Score: 2.5
Natty:
Report link

"But this is rarely a useful thing to do"

These types of comments do make me smile. I kinda reinterpret_cast them as:

"But I haven't experienced a reason or need to do this"

How about easily calculating the length of a message without having to count through it? (End address - Start address = length)

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

79464188

Date: 2025-02-24 16:10:27
Score: 0.5
Natty:
Report link

In that case, you need to register the delegate manually as a listener in the step.

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

79464187

Date: 2025-02-24 16:10:27
Score: 2.5
Natty:
Report link

If you are using a JWT plugin like JWT Authentication for WP, you can define the variable JWT_EXPIRE_TIME in wp-config.php file for the timeout in seconds. For example, one day timeout would be: define('JWT_EXPIRE_TIME', '86400');

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

79464186

Date: 2025-02-24 16:09:26
Score: 10 🚩
Natty:
Report link

I am facing the exact issue! Is there any solution available yet?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution available yet?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anand Babu

79464185

Date: 2025-02-24 16:09:26
Score: 3.5
Natty:
Report link

Check the latest Hubleto release (links below) which contains many bugfixes and possibly this problem is also resolved.

https://developer.hubleto.com/download-and-install

https://www.hubleto.com/en/install

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

79464183

Date: 2025-02-24 16:09:26
Score: 1.5
Natty:
Report link

Based on answer from @Vencovsky I think today answer will be:

import { renderHook } from '@testing-library/react-hooks'
import { useGetUserDataQuery } from '../../services';

test('should working properly', () => {
  const { result } = renderHook(() => useGetUserDataQuery())
  expect(result.current.result).toBe("Idk what");
})
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Vencovsky
  • Low reputation (1):
Posted by: Kospel

79464180

Date: 2025-02-24 16:08:25
Score: 6.5 🚩
Natty: 5
Report link

Was wondering if you got anywhere with this? I am trying to do the same but struggling.

I am trying to use LDAP with MISP using the ldapAuth plugin which is supposed to be easier to implement....

https://github.com/MISP/MISP/tree/50df1c9771bf4d420cd9fb20d1f48d7fd80202e7/app/Plugin/LdapAuth

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (2): Was wondering
  • Blacklisted phrase (1): trying to do the same
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ranjb81

79464179

Date: 2025-02-24 16:08:24
Score: 1
Natty:
Report link

Use 'File' as variable type!

Add a newline after your SSH Key!

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

79464165

Date: 2025-02-24 16:04:24
Score: 1.5
Natty:
Report link

Ran into this issue while trying to find a way to find the 30th of all months except Feb which needed to show the last day of the month. Created this formula below:

=IF(C2="FEB",EOMONTH(H5,0),CONCATENATE(MONTH(H5),"/","30","/",YEAR(H5)))

Where C2 shows the 3-letter abbreviation for the month in and H5 shows the first day of the current for the month listed in C2. The result is no matter what month and year is used in H5, if "FEB" shows in C2 it will always show me the last day of Feb or the 30th of all other months.

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

79464153

Date: 2025-02-24 16:01:23
Score: 3
Natty:
Report link

Solves the issue

This checks if the element is in a range and then echos what you want.

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

79464145

Date: 2025-02-24 15:59:22
Score: 4
Natty:
Report link

[2025-02-24 07:09:17] Chat: This chat may be used by third-party AI tools for quality assurance and training purposes. Learn more about how we use & protect your data in our Terms Of Service & Privacy Policy

Hi! Can I help you find the right plan?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: manuel Saez

79464137

Date: 2025-02-24 15:57:22
Score: 2.5
Natty:
Report link

setcap cap_sys_rawio,cap_dac_override,cap_sys_admin+ep works for me

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zhi Guo

79464134

Date: 2025-02-24 15:53:21
Score: 1.5
Natty:
Report link

This produced the results I needed: -

var data = await _context.Books.Include(i => i.Genre)
    .GroupBy(b => b.Genre)
    .Select(g => new { name = g.Key, id = g.Key.Id, 
     description = g.Key.Description, 
     count = g.Count() })
    .ToListAsync(); 
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: D.Man

79464133

Date: 2025-02-24 15:53:21
Score: 0.5
Natty:
Report link

The tlbinf32.dll allows listing all properties of an object, but as its name says it only works in 32 bit office (I think). See: https://jkp-ads.com/articles/objectlister.aspx

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

79464132

Date: 2025-02-24 15:53:21
Score: 6
Natty: 7
Report link

You might be interested in https://github.com/wy-z/vscode-vim-mode, thanks.🙏

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): 🙏
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: weiyang

79464126

Date: 2025-02-24 15:51:20
Score: 1.5
Natty:
Report link

You just have to change :

  apis: ['./src/routes/*.ts'],

to :

  apis: ['./src/routes/*.js'],

in your "src/utils/swagger.ts" file

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

79464119

Date: 2025-02-24 15:48:19
Score: 4.5
Natty:
Report link

Para subir una aplicación de Next en el IIS, puedes seguir estos pasos:

1- Instalar los siguientes módulos

IIS NODE

https://github.com/Azure/iisnode/releases/tag/v0.2.26

URL REWRITE

https://www.iis.net/downloads/microsoft/url-rewrite

Application Request Routing

https://www.iis.net/downloads/microsoft/application-request-routing

2- Crear una carpeta en tu disco C y pasar lo siguiente:

3- Crea un archivo server.js en tu carpeta con la siguiente información.

const { createServer } = require("http");
const { parse } = require("url");
const next = require("next");

const dev = process.env.NODE_ENV !== "production";

const port = process.env.PORT ;
const hostname = "localhost";
const app = next({ dev, hostname, port });
const handle = app.getRequestHandler();

app.prepare().then(() => {
  createServer(async (req, res) => {
    try {
      const parsedUrl = parse(req.url, true);
      const { pathname, query } = parsedUrl;

      if (pathname === "/a") {
        await app.render(req, res, "/a", query);
      } else if (pathname === "/b") {
        await app.render(req, res, "/b", query);
      } else {
        await handle(req, res, parsedUrl);
      }
    } catch (err) {
      console.error("Error occurred handling", req.url, err);
      res.statusCode = 500;
      res.end("internal server error");
    }
  })
    .once("error", (err) => {
      console.error(err);
      process.exit(1);
    })
    .listen(port, async () => {
      console.log(`> Ready on http://localhost:${port}`);
    });
});

4- Configuración en el IIS

Verificamos si tenemos instalados nuestros módulos; eso lo hacemos dando click en nuestro servidor del IIS.

enter image description here

Luego damos clic en módulos para ver el IIS NODE.

enter image description here

Luego de eso seleccionamos delegación de características.

enter image description here

y verificamos que las asignaciones de controlador estén en lectura y escritura.

enter image description here

luego creamos nuestro sitio web en el IIS y referenciamos la carpeta que creamos, damos click en el sitio web y entramos en asignaciones de controlador

enter image description here

una vez dentro le damos click en agregar asignaciones de modulo, en Ruta de acceso de solicitud ponemos el nombre del archivo js en este caso "server.js", en modulo seleccionamos iisnode y en nombre colocamos iisnode.

Le damos en aceptar; esto nos creará un archivo de configuración en nuestra carpeta llamado "web". Lo abrimos y colocamos esto:

    <!-- First we consider whether the incoming URL matches a physical file in the /public folder -->
    <rule name="StaticContent">
      <action type="Rewrite" url="public{REQUEST_URI}"/>
    </rule>

    <!-- All other URLs are mapped to the node.js site entry point -->
    <rule name="DynamicContent">
      <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
      </conditions>
      <action type="Rewrite" url="server.js"/>
    </rule>
  </rules>
</rewrite>

<!-- 'bin' directory has no special meaning in node.js and apps can be placed in it -->
<security>
  <requestFiltering>
    <hiddenSegments>
      <add segment="node_modules"/>
    </hiddenSegments>
  </requestFiltering>
</security>

<!-- Make sure error responses are left untouched -->
<httpErrors existingResponse="PassThrough" />
<iisnode node_env="production"/>

<!--
  You can control how Node is hosted within IIS using the following options:
    * watchedFiles: semi-colon separated list of files that will be watched for changes to restart the server
    * node_env: will be propagated to node as NODE_ENV environment variable
    * debuggingEnabled - controls whether the built-in debugger is enabled

  See https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config for a full list of options
-->
<!--<iisnode watchedFiles="web.config;*.js"/>-->

</system.webServer>

Detenemos nuestro sitio en el IIS actualizamos y subimos el sitio.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (2): Crear
  • Blacklisted phrase (2): crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Maria Teresa Soriano

79464112

Date: 2025-02-24 15:47:18
Score: 3
Natty:
Report link

For those wondering how it now (2025) works with standalone components, here is a nice tutorial I found out: https://youtu.be/Jv7jOrGTKd0?si=kqvGSDOzs0oA-4Vx&t=434, or text version https://www.angulararchitects.io/en/blog/testing-angular-standalone-components/

tl;dr use TestBed.overrideComponent

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: merlosy

79464107

Date: 2025-02-24 15:46:18
Score: 2.5
Natty:
Report link

To resolve the "Automation error" when using the Selenium library, you need to download and install Microsoft .NET Framework 3.5. You can download it from the official Microsoft website at the following link: Microsoft .NET Framework 3.5 Download.

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

79464106

Date: 2025-02-24 15:46:18
Score: 5.5
Natty: 5
Report link

How do we do this now, since the changes Google have implemented?

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): How do we
  • Low reputation (0.5):
Posted by: D.Man

79464102

Date: 2025-02-24 15:44:17
Score: 2.5
Natty:
Report link

This is a Dart VM issue. Dart first looks up ipv4, then after a delay looks up ipv6. Linking to github issue: https://github.com/dart-lang/sdk/issues/60192

Some workarounds are using a custom http client that manually looks up ipv6 addresses of hosts, or using a proxy in your http client.

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

79464089

Date: 2025-02-24 15:40:16
Score: 3
Natty:
Report link

Rotating on Z (roll) affects the object's local X and Y axes. When you roll (tilt on the Z-axis), your local right (Vector3.right) and up (Vector3.up) directions change. This makes your mouse look behave unexpectedly because it's based on local axes, which are no longer aligned with world space. Mouse look rotates in local space, so when tilted, X and Y behave differently. It is better to use Quaternions instead of separate euler rotations.

    Quaternion currentRotation = transform.rotation;

    // Apply rotation based on world space (avoiding local axis issues)
    Quaternion yRotation = Quaternion.Euler(0, rotationY, 0); // Yaw (left-right)
    Quaternion xRotation = Quaternion.Euler(rotationX, 0, 0); // Pitch (up-down)

    // Apply new rotation while preserving Z-axis roll
    transform.rotation = yRotation * currentRotation * xRotation;

Instead of applying Rotate() separately for each axis, this creates a single new rotation using quaternions. Please reply to this comment for further queries I will try my best to help. And Notify me if the problem has been solved I will be grateful. I apologize in advance if I was unable to understand the scenario to maximum detail.

Reasons:
  • Blacklisted phrase (1.5): Please reply
  • RegEx Blacklisted phrase (2): I will be grateful
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Saqlain Haider

79464087

Date: 2025-02-24 15:39:16
Score: 3.5
Natty:
Report link

I ended up decrypting it manually, by calling a decrypting method from a controller, instead of using an annotation

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

79464084

Date: 2025-02-24 15:39:16
Score: 1
Natty:
Report link

I was able to fix the problem by setting these configs in my GitVersion.yml:

branches:
  main:
    increment: None
    tracks-release-branches: true
mode: ContinuousDeployment
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maxime Baker

79464068

Date: 2025-02-24 15:32:14
Score: 0.5
Natty:
Report link

I worked out that there had to be some extra configuration to make this work. In my case, I was using Storyblok as a CMS, and NuxtImage includes support for that platform (along with many others).

I googled "NuxtImg Storyblok" and found this link: https://v0.image.nuxtjs.org/providers/storyblok

In short, if your provider/CMS is supported, you need to add something like this to your nuxt.config.ts:

 image: {
    storyblok: {
      baseURL: 'https://a-us.storyblok.com'
    }
  }

and then specify the provider on the NuxtImg tag:

<NuxtImg
:src="https://...image.webp"
sizes="100vw sm:50vw md:100px"
provider="storyblok"
loading="eager"
class="aspect-3/2 w-full bg-gray-50 object-cover sm:absolute sm:inset-0 sm:aspect-auto sm:h-full"
/>
Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Fijjit

79464065

Date: 2025-02-24 15:31:14
Score: 1.5
Natty:
Report link

I had a similar problem. The excel file had NaN as text but the style was double. When load in excel it showed a datetime field with custom format.

The solution was to simply save the file from excel without changing anything. After this all the NaN were gone.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Peter v.d. Vos

79464064

Date: 2025-02-24 15:30:14
Score: 2
Natty:
Report link

What worked for me was renaming the file to just .env. The DotEnv dependency can't find the file if you have given it a name like variables.env.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Maarten

79464059

Date: 2025-02-24 15:27:13
Score: 4.5
Natty: 6
Report link

Thank you Tim. The code works great !!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Raffaele Martorelli

79464057

Date: 2025-02-24 15:27:12
Score: 0.5
Natty:
Report link

When reordering commits, shortcut to set timestamp to the timestamp of the previous commit is handy. Also, this is powershell and can be binded to GUI tool one-click command:
powershell "$prevCommitDate = git log -2 --format=%ci | Select-Object -Last 1;$env:GIT_COMMITTER_DATE = $prevCommitDate; git commit --amend --no-edit --date $prevCommitDate"

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: halt9k

79464047

Date: 2025-02-24 15:25:12
Score: 2
Natty:
Report link

/mnt/driver-daemon/jars is a symbolic link to /databricks/jars so both work. But I agree with Alex it's better to use the API or the UI to install libraries.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): is a
  • Low reputation (1):
Posted by: user2878524

79464044

Date: 2025-02-24 15:25:11
Score: 8.5 🚩
Natty: 3.5
Report link

hey i have working on the same , can you help if you got an idea

Reasons:
  • RegEx Blacklisted phrase (3): can you help
  • RegEx Blacklisted phrase (2): hey i have
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dev MuhammedSalih

79464038

Date: 2025-02-24 15:23:11
Score: 1
Natty:
Report link
SELECT
    Product_Name,
    PONo,
    SUM(Quantity) AS Total_Quantity
FROM GrnTable
GROUP BY 1, 2
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: gzzz

79464037

Date: 2025-02-24 15:23:11
Score: 1
Natty:
Report link

The last available 64-bit version of MySQL ODBC Driver is 8.0.33. You can find this version under the archive section. After installing this 64-bit driver, it will be accessible in the 64-bit ODBC window.

visual studio 2022 doesn't allow you to change the runtime to 32bit therefore this is the only option i had to use the 64bit driver.

enter image description here

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

79464028

Date: 2025-02-24 15:21:10
Score: 5.5
Natty:
Report link

What you are trying can be achieved through the "Foreach" or "While" loop.

Can you let me know the language you are using to get the JSON response? So I can provide you with docs and examples.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you let me know
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (1):
Posted by: Hamza Kingdom Vision

79464027

Date: 2025-02-24 15:21:10
Score: 2
Natty:
Report link
  1. I switched Android Studio from the default "Auto-detect proxy" to "No proxy."
  2. I cleared all cookies for that localhost domain since the browser also used to include a lot of studd in the request that was not relevant and cause second error 513 status code..
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dami

79464026

Date: 2025-02-24 15:21:10
Score: 2
Natty:
Report link

I had this same error while running a next app.

The issue was resolved when i moved src (which contained my index.js file) out of public folder making it look this way; my-app/frontend/src

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

79464025

Date: 2025-02-24 15:21:10
Score: 0.5
Natty:
Report link

You should focus more on verifying JWT tokens on the server side, as there’s no more secure way than letting clients store their own tokens. However, storing access tokens in cookies on the client side exposes them to XSS attacks. A better approach is:

For Web (React): Store the access token in memory and the refresh token in an HTTP-only, Secure cookie. For Mobile (Flutter): Store both tokens in secure storage (Keychain/Keystore) since cookies aren’t supported. Also, implement token blacklisting and cache invalidated tokens to prevent unauthorized reuse. Always use short-lived access tokens and verify them on every request.

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

79464022

Date: 2025-02-24 15:20:10
Score: 3.5
Natty:
Report link

I dont think OvenMedia Engine supports pulling RTMP. You can push RTMP and pull WebRTC..

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

79464016

Date: 2025-02-24 15:17:09
Score: 1
Natty:
Report link

Either you can change the runtime to 32bit in Visual Studio or install the 64 bit driver.

The last available 64-bit version of MySQL ODBC Driver is 8.0.33. You can find this version under the archive section. After installing this 64-bit driver, it will be accessible in the 64-bit ODBC window.

visual studio 2022 doesn't allow you to change the runtime to 32bit therefore thi is the only option i had to use the 64bit driver.

enter image description here

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