79161502

Date: 2024-11-06 06:22:26
Score: 1.5
Natty:
Report link

Base URL is basically the connectors runtime url, mostly in local environment it is:

https(s)://localhost:8085/inbound/webhook ID
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AMAN SAURAV

79161500

Date: 2024-11-06 06:21:25
Score: 1
Natty:
Report link

I have resolved all these isssues by switching from the technology stack from HDP2.5 to standalone hadoop installation on my windows 11 machine. Becuase HDP2.5 had no more support available thats why unable to resolve the internal ips for datanodes while replicating. The following hdfs-site.xml and core-site.xml i have included in apache nifi installation directory that is

C:\nifi-1.28.0-bin\nifi-1.28.0\conf

core-site.xml

<configuration>
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9820</value>
</property>
</configuration>

hdfs-site.xml

<configuration>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
<property>
<name>dfs.namenode.name.dir</name>
<value>file:///C:/hadoopsetup/hadoop-3.2.4/data/dfs/namenode</value>
</property>
<property>
<name>dfs.datanode.data.dir</name>
<value>file:///C:/hadoopsetup/hadoop-3.2.4/data/dfs/datanode</value>
</property>
</configuration>

for hadoop installation i have reffered this tutorial:

https://apsaggu.wordpress.com/2023/06/29/installation-of-apache-hadoop-on-windows-11/

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Filbadeha

79161499

Date: 2024-11-06 06:20:25
Score: 1.5
Natty:
Report link

Here's a late answer for later Googlers.

You can use the bash-env-nushell module, which allows for import of arbitrarily complex Bash source.

Full disclosure: I am the author. Enjoy. 😊

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: tesujimath

79161497

Date: 2024-11-06 06:20:25
Score: 1
Natty:
Report link

I have resolved all these isssues by switching from the technology stack from HDP2.5 to standalone hadoop installation on my windows 11 machine. Becuase HDP2.5 had no more support available thats why unable to resolve the internal ips for datanodes while replicating. The following hdfs-site.xml and core-site.xml i have included in apache nifi installation directory that is

C:\nifi-1.28.0-bin\nifi-1.28.0\conf

core-site.xml

<configuration>
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9820</value>
</property>
</configuration>

hdfs-site.xml

<configuration>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
<property>
<name>dfs.namenode.name.dir</name>
<value>file:///C:/hadoopsetup/hadoop-3.2.4/data/dfs/namenode</value>
</property>
<property>
<name>dfs.datanode.data.dir</name>
<value>file:///C:/hadoopsetup/hadoop-3.2.4/data/dfs/datanode</value>
</property>
</configuration>

for hadoop installation i have reffered this tutorial:

https://apsaggu.wordpress.com/2023/06/29/installation-of-apache-hadoop-on-windows-11/

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Filbadeha

79161489

Date: 2024-11-06 06:17:24
Score: 3
Natty:
Report link

What commands did you use to check if keycloak-related tables are created in your database or not? The log you shared does not mean table not created. In my experience, keycloak creates tables after running such queries if tables do not exist.

In your keycloak database, can you run \dt and share the result?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Kikito

79161488

Date: 2024-11-06 06:17:24
Score: 2.5
Natty:
Report link

Simply replace array('') with NULL. please modify your query acording to the example. add your maps key after &key=

wp_enqueue_script('googleMap', '//maps.googleapis.com/maps/api/js?&key=', NULL, 1.0, true);

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

79161486

Date: 2024-11-06 06:15:23
Score: 2.5
Natty:
Report link

i believe as per LSTM guidelines are concerned, it works on tanh activation function by default... this is to account the usage of GPU as a default computational hardware with CPU. if you change that activation, GPU will not be used. Switch back to tanh, and check again.

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

79161484

Date: 2024-11-06 06:14:23
Score: 1
Natty:
Report link

Just add below line of code in your manifest application Tag and you are good to go.

 <application
 ..........
 ..........
 android:usesCleartextTraffic="true"

 </application>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rafay Rao

79161479

Date: 2024-11-06 06:11:20
Score: 8.5 🚩
Natty:
Report link

How to install the Mobilevlckit? I tried a lot of times.I am getting Framework 'MobileVLCKit.xcframework' not found this issue. How to fix this could you please share any solution?

Podfile


# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'liveStreamer' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
  pod 'MobileVLCKit', '~> 3.4.0'

  # Pods for liveStreamer

  target 'liveStreamerTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'liveStreamerUITests' do
    # Pods for testing
  end

end

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): could you please share
  • RegEx Blacklisted phrase (2): any solution?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How to in
  • Low reputation (1):
Posted by: Sankar Sankar

79161474

Date: 2024-11-06 06:06:19
Score: 0.5
Natty:
Report link

Try checking a database name exists under the name keycloak. The database endpoint you used jdbc:postgresql://qg_cms-db/keycloak says keycloak. I'm assuming you already created database called keycloak or your initial script does it (docker-entrypoint-initdb.d). But if it doesn't, the endpoint is pointing to a database that does not exist.

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

79161471

Date: 2024-11-06 06:06:19
Score: 4
Natty:
Report link

defaults delete com.zennaware.cornerstone3 HistoryCacheUsage

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

79161469

Date: 2024-11-06 06:05:16
Score: 9.5 🚩
Natty: 5.5
Report link

Did you find a solution to this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (1):
Posted by: Priyanshu Mallick

79161464

Date: 2024-11-06 06:03:15
Score: 1
Natty:
Report link

REPLACE VIEW UserInfo.Calendar_Date AS LOCK ROW FOR ACCESS

/* Developer: Daphne Hattingh

select CAST( Calendar_date AS DATE FORMAT 'YYYYMMDD') AS MyDate, TO_CHAR(MyDate,'YYYY') AS MyYear, TO_CHAR(MyDate,'MM') AS MyMonth, TO_CHAR(MyDate,'DD') AS MyDay, MyYear||MyMonth as MyYYMM_Char, MyYear||MyMonth|| MyDay as MyYYMMDD_Char, cast(MyYYMM_Char as integer) as MyYYMM_Int, cast(MyYYMMDD_char as integer) as MyYYMMDD_Int from Sys_Calendar.CALENDARTMP ;

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

79161460

Date: 2024-11-06 06:02:15
Score: 1.5
Natty:
Report link

like text(), innerText() also trims whitespace characters by default, but you can get the unchanged text by passing FALSE as argument $text = $crawler->filtrXPath('//body/p')->innerText(false);

https://symfony.com/doc/current/components/dom_crawler.html

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

79161443

Date: 2024-11-06 05:49:12
Score: 1
Natty:
Report link

If I use the first table "my_df", it will run "forever"

# pkgs
library(dplyr)
library(wqtrends)

# data from the question
my_df <- data.frame(
  station = c(50900149, 50900149, 50900149, 50900149, 50900149, 50900149),
  param = rep("chl", 6),
  value = c(1.4, 0.5, 1, 2, 2.1, 2.9),
  cont_yr = c(2024, 2024, 2024, 2024, 2024, 2024)
)

# filter to mimic the question
pdmod <- my_df %>%
  filter(station %in% 50900149) %>%
  filter(param %in% "chl")

# define knots (kts) = 5 to avoid getting stuck
pdgam <- anlz_gam(pdmod, trans = 'log10', kts = 5)
summary(pdgam)

could you please send a minimal example that is easy to follow? you can follow from my example

I am curious why most columns are constant in the first table, but in the 2nd the year has decimal values

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please send
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: pachadotdev

79161436

Date: 2024-11-06 05:44:11
Score: 4.5
Natty:
Report link

check my explaination

reborrowing makes scope of mut ref very narrow

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

79161426

Date: 2024-11-06 05:39:09
Score: 1.5
Natty:
Report link

This plugin use for same purpose - provide dictionaries by language and namespace. i18next-http-backend implements loading dictionaries via http. i18next-resources-to-backend leaves the method of obtaining the dictionary to your discretion. You can use them together using i18next-chained-backend.

Reasons:
  • Blacklisted phrase (1): This plugin
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ilya Molostov

79161421

Date: 2024-11-06 05:34:09
Score: 3
Natty:
Report link

Your content is very interesting. I am very impressed with your post. I hope to receive more great posts.German Trench Coat

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

79161420

Date: 2024-11-06 05:34:09
Score: 2.5
Natty:
Report link

Reports include HTTP request and response logs in-line, which makes troubleshooting and debugging easier

Refer - https://github.com/karatelabs/karate?tab=readme

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

79161417

Date: 2024-11-06 05:33:08
Score: 1
Natty:
Report link

In iOS, WKWebView doesnt support loading a local HTML file with remote resources directly using both loadFileURL(:allowingReadAccessTo:) & loadHTMLString(:baseURL:) in the same request.

However, you can achieve your goal by reading the local HTML file as a string, then using loadHTMLString(_:baseURL:) with the appropriate base URL to access both local and remote resources.

Here’s how:

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

79161416

Date: 2024-11-06 05:32:08
Score: 3.5
Natty:
Report link

So, the issue is, it does not calculate hours and break time deduction correctly when shift start time is in current day and shift end time is in next day. Any suggestion would be much appreciated.

This is because when a shift starts in one day and ends in the next, it complicates calculations, especially with break deductions. So, to fix this you would need to

  1. convert the start and end times into a continuous range of minutes, even when the shift crosses midnight.
  2. calculate breaks correctly based on the shift duration rules and adjust only if the break time overlaps with the working shift.

Try these 2 approaches and see if your issue is fixed. I didnt had enough time to implement a code snippet. So, i explained it here. If i get time i will update the solution here.

Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2): Any suggestion
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Aniket

79161414

Date: 2024-11-06 05:31:08
Score: 3
Natty:
Report link

<img src={require(../../images/${item.filepath}).default} />

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Edgar Rodrigo Chan Dzib Rodrig

79161407

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

The example in question is either incomplete, or has error. Must be the following:

OPENFILENAMEA open;
char buffer[2048];
buffer[0] = '\0';
// ...
open.lpstrFile = buffer;
open.nMaxFile = 2048;
// ...
BOOL selected = GetOpenFileNameA(&open));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dmitrycello

79161404

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

I think you can add some permission pop-up for giving allowed to use. I found that conversation you can check it out.

Also this page can help you either.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bekranker

79161400

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

Can You Please Give Me This Output In Flutter . Im expecting This Kind Of output For My Implementation So Please Can You Use And Give it For Flutter

Widget buildScrollableScale({ required int min, required int max, required int selectedValue, required ValueChanged onValueChanged, }) { return Container( height: 80, decoration: BoxDecoration( color: Colors.pink, borderRadius: BorderRadius.circular(8), ), child: ListView.builder( scrollDirection: Axis.horizontal, itemCount: max - min + 1, itemBuilder: (context, index) { int value = min + index; bool isSelected = value == selectedValue;

    return GestureDetector(
      onTap: () => onValueChanged(value),
      child: Container(
        width: 50,
        alignment: Alignment.center,
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Text(
              "$value",
              style: TextStyle(
                color: isSelected ? Colors.white : Colors.grey[300],
                fontSize: isSelected ? 24 : 18,
                fontWeight: isSelected ? FontWeight.bold : FontWeight.normal,
              ),
            ),
            Expanded(
              child: Container(
                width: 2, 
                color: isSelected ? Colors.white : Colors.grey[300],
              ),
            ),
          ],
        ),
      ),
    );
  },
),

); }

Currently Im Using like this

Reasons:
  • RegEx Blacklisted phrase (2.5): Can You Please Give Me
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can You Please Give Me This
  • Low reputation (1):
Posted by: harthik b

79161397

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

To force an Azure Pipeline task to use PowerShell Core (specifically PowerShell 7+), you can specify the pwsh command in your pipeline YAML. This ensures that the task runs in the context of PowerShell Core instead of Windows PowerShell.

Here’s how you can do it:

Example YAML Pipeline yaml

Copier jobs:

yaml

Copier steps:

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

79161394

Date: 2024-11-06 05:12:05
Score: 2
Natty:
Report link

Doc 1 : New home to home sales forecasts Doc 2 : Rise in home sales in July Doc 3 : Home sales rise in July for new homes Doc 4 : July new home sales rise • Tokenize, stopword, stemming, tf, df, cf, location(loc), idf, if*idf, Similarity Measure, vector space, dot product, rank the relevant doc.

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

79161385

Date: 2024-11-06 05:08:04
Score: 1.5
Natty:
Report link

Scheduling the dashboard to be delivered at a specific time would cache the results.

If there is variability within the dashboard such as liquid parameters then you could utilize aggregate awareness to build aggregate tables. This would still require to schedule a dashboard delivery for each variation ahead of time to trigger each aggregate table build.

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

79161382

Date: 2024-11-06 05:08:04
Score: 0.5
Natty:
Report link

I encountered the same issue, and I did add a next package in my project.

yarn add next

or

pnpm i next

And my console stopped complaining that. However, I got another error in my browser when I ran it. So that, I don't think it provides smooth support for a general Vue project.

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

79161377

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

The correct answer is to provide Colors.transparent to dividercolor.

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

79161375

Date: 2024-11-06 05:04:03
Score: 2
Natty:
Report link

Add CSS to the content tag. Give it the following property:

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

79161374

Date: 2024-11-06 05:03:00
Score: 6 🚩
Natty: 4.5
Report link

which type of load balancer i create to map lightsail instance explain breifly?

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): which type of
  • Low reputation (1):
Posted by: Kannan ArunaChalaSamy

79161371

Date: 2024-11-06 05:03:00
Score: 1
Natty:
Report link

Yep. These are public files generated by the vue build process. They are components of your app. Which is why you should never hard code secrets...

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

79161367

Date: 2024-11-06 05:01:00
Score: 3.5
Natty:
Report link

1 . First I hosted my api on IIS locally . ( If you having trouble doing it please refer to this tutorial : https://www.youtube.com/watch?v=Lt3wve_nb0g )

2 . Then I commented //app.UseHttpsRedirection(); this line using http redirection on my API's program.cs .

3 . Use your IP address instead of local host Instead of this => http://localhost:xxxx/API/ Use http://197.xxx.xx.x: xxxx

Hope these will work for you guys .

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Blacklisted phrase (1): youtube.com
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sahan Rajapaksha

79161349

Date: 2024-11-06 04:47:57
Score: 3.5
Natty:
Report link

i will never do Di's cain of mistake please back my I'd please do unban my I'd please 🥺 I will never do any mistake please back my I'd 🥺🥺😭😭😭😭😭😭

Reasons:
  • RegEx Blacklisted phrase (1): I will never do any mistake please
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: MOSTOFA Khan

79161343

Date: 2024-11-06 04:41:56
Score: 1.5
Natty:
Report link

From execution time perspective:

For every additional leading zero in the hash, it will approximately consume 16 times more. For e.g. finding one zero takes 10 ms, then finding 3 leading zeros should take 16^2 * 10 ms.

I have also published an article using Python in Medium to get leading zeros upto 10X faster.

You can visit here:

A Fast Approach to Finding Strings with Leading Zeros in SHA Hashes!

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

79161333

Date: 2024-11-06 04:34:55
Score: 1.5
Natty:
Report link

-[RTIInputSystemClient remoteTextInputSessionWithID:performInputOperation:] perform input operation requires a valid sessionID

I noticed this error shows up using Simulator when Connect Hardware Keyboard is enabled. To disable, go I/O > Keyboard > Connect Hardware Keyboard and use the onscreen keyboard.

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

79161332

Date: 2024-11-06 04:32:55
Score: 2.5
Natty:
Report link

reverse a wrong recharge on Jio, follow these steps: *Contact Customer Support: Call Jio customer care at 199 or 0. 9831_749_976 Explain your situation clearly, providing your mobile number reverse a wrong recharge on Jio, follow these steps: *Contact Customer Support: Call Jio customer care at 199 or 0. 9831_7499_76 Explain your situation

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

79161330

Date: 2024-11-06 04:30:54
Score: 4
Natty:
Report link

pyqt5 requires python version >= 3.8

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

79161317

Date: 2024-11-06 04:20:52
Score: 0.5
Natty:
Report link

For everyone who looks for an easy solution, here it is.

  function openModal() {
    var pu = document.getElementsByClassName('fd-focus-visible-applied');
    var modal = pu[0].getElementsByClassName('fd-modal');
    modal[0].classList.add('fd-is-open');
    
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mad

79161313

Date: 2024-11-06 04:11:50
Score: 1.5
Natty:
Report link

I switched Copilot to use the right arrow instead of tab so they wouldn't fight:

Under Tools > Options > IntelliCode > Advanced, tick Apply whole line completions on right arrow checkbox. Just note it's IntelliCode not Intellisense when navigating the options to get to the checkbox.

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

79161310

Date: 2024-11-06 04:09:50
Score: 1.5
Natty:
Report link

Use the parameter "debug": "all" in your request. Then you will get in the response a new property like "vectorSimilarity": "0.998" that goes from 0 to 1. In most cases you can then ignore keyword score, since vector search is very accurate. Semantic ranking is an overkill for most use cases.

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

79161306

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

GAME ID:2180369109399878406692T Original Seed: Encrypted Result:49db5864e0aa49220e5f9906bb35eaa822a494527de9705a5f0a582b02c794eb Encrypted Seed:390acd5f86727ea5adbc460ef9d816d5f83e36f122305bd87996c3eb3a049a15 Result:

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

79161300

Date: 2024-11-06 03:57:45
Score: 7 🚩
Natty:
Report link

https://www.facebook.com/maxime.therrien2?mibextid=ZbWKwL [email protected] maxime.therrien2

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: maxime.therrien2

79161294

Date: 2024-11-06 03:51:44
Score: 1.5
Natty:
Report link

You can try:

gene_space=[
    {'low': 0, 'high': 200},  # First gene: 0 to 200
    {'low': 0.5, 'high': 3} # Second gene: 0.5 to 3
],
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Walter T

79161285

Date: 2024-11-06 03:40:41
Score: 3
Natty:
Report link

The BookDemoApplication file location is incorrect, it should be outside the controller layer.At this point, the controller layer has not been detected

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

79161267

Date: 2024-11-06 03:26:38
Score: 2
Natty:
Report link

It's only the case when the "Jupyter: Variables" pane is open. A lot of variables are shown as loading endlessly. The problem might be that the variables are too big to show?

In such case you can try few things:

  1. Limit variable sizes in pane
  2. Before re-running the large cells you can selectively clear heavy variable from the namespace.
  3. Update VS code and extension

Reference

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

79161263

Date: 2024-11-06 03:23:38
Score: 2
Natty:
Report link

have you already tried this? How to Clear Flutter’s Build Cache? Sometimes it is due to either corrupted build files or build cache.

Just a friendly reminder, sometimes, it is better to clean and rebuild the project and test it first before building a prod app build.

Note: I did this when there was not direct issue with the source code that I've declared in my Flutter project codebase (.dart).

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

79161246

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

httpOnly means that the cookies are secure and they are inaccessible by the script.

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

79161242

Date: 2024-11-06 03:04:33
Score: 2
Natty:
Report link

You need to update your Flutter version to at least 3.24.0, to have PrivacyInfo.xcprivacy

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

79161234

Date: 2024-11-06 02:58:32
Score: 5.5
Natty:
Report link

Having the exact same issue!

Simple geometries are working but I cannot seem to load any of my .gltf files

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Having the exact same issue
  • Low reputation (1):
Posted by: Jared DiScipio

79161228

Date: 2024-11-06 02:52:31
Score: 0.5
Natty:
Report link

Remove the backdrop and leave the background content live

<Drawer
  hideBackdrop: true
  disableEnforceFocus: true, // Prevents focus lock in the drawer
</Drawer>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Fábio Zangirolami

79161217

Date: 2024-11-06 02:46:29
Score: 1
Natty:
Report link

Following on from @Scofield's solution for docker, here is a solution for ddev (assuming linux/macOS/WSL):

First, as before create an executable file

sudo touch /usr/local/bin/php
sudo chmod +x /usr/local/bin/php

Second, modify the contents of that file, inserting the following and save:

#!/bin/bash

ddev php $@

Third, add a reference to this newly created file to your settings.json as follows:

"php.validate.executablePath": "/usr/local/bin/php",

This key may already exist with an empty value, in which case, update it to match the above.

When complete the built-in PHP validation and debugging within VS Code should be possible without errors.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Scofield's
  • Low reputation (1):
Posted by: jacobupal

79161213

Date: 2024-11-06 02:43:27
Score: 10.5 🚩
Natty: 5.5
Report link

Tengo el mismo problema, quien sabe que solucion darle a este asunto

Reasons:
  • Blacklisted phrase (2): Tengo
  • Blacklisted phrase (2.5): solucion
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eduin Peñata Romero

79161195

Date: 2024-11-06 02:26:23
Score: 0.5
Natty:
Report link

What does your XMLGregorianCalendar look like?

XMLGregorianCalendar is a flexible beast in that each of its fields -- year, month, day, hour, minute, second and UTC offset -- may be defined or undefined (UTC offset is confusingly called timezone in XML parlance). To work with it we first need to know which fields are defined. You probably know that in your case, only you haven‘t told us. For a string containing date and time of day we need those. More precisely I should say that we need year, month, day, hour, minute and second. So I will assume that we have all of those. For UTC offset we either need it to be in the XMLGregorianCalendar (preferred), or we need to know which time zone was assumed when the XMLGregorianCalendar was constructed. Under all circumstances we need to know for which time zone to write the string.

java.time

I recommend that you use java.time, the modern Java date and time API, to the greatest extend possible for your date and time work. So my code includes converting XMLGregorianCalendar to a modern type, either OffsetDateTime or LocalDateTime depending UTC offset being defined in the XMLGregorianCalendar.

So a suggestion is:

    ZoneId defaultAssumedSourceZone = ZoneId.of("Europe/Tallinn");
    ZoneId desiredTargetZone = ZoneId.of("Asia/Kabul");
    DateTimeFormatter formatter = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT);

    XMLGregorianCalendar xgcal = DatatypeFactory.newInstance()
            .newXMLGregorianCalendar("2013-02-04T13:12:45+01:00");

    if (xgcal.getXMLSchemaType() != DatatypeConstants.DATETIME) {
        throw new IllegalStateException("We need year, month, day, hour, minute and second; got " + xgcal);
    }

    ZonedDateTime targetZdt;
    if (xgcal.getTimezone() == DatatypeConstants.FIELD_UNDEFINED) { // No UTC offset
        LocalDateTime dateTime = LocalDateTime.parse(xgcal.toString());
        ZonedDateTime sourceZdt = dateTime.atZone(defaultAssumedSourceZone);
        targetZdt  = sourceZdt.withZoneSameInstant(desiredTargetZone);
    } else { // UTC offset included; use it
        OffsetDateTime sourceDateTime = OffsetDateTime.parse(xgcal.toString());
        targetZdt  = sourceDateTime.atZoneSameInstant(desiredTargetZone);
    }
    String formattedDateTime = targetZdt.format(formatter);

    System.out.println(formattedDateTime);

When running this snippet in US English locale, output was:

2/4/13, 4:42 PM

It‘s not the format you asked for. Please consider it anyway. It‘s Java‘s built-in localized format for the locale, so it‘s likely to make the users in that locale happy. And it adjusts easily to other locales. Run in Spanish locale, for example:

4/2/13, 16:42

If your users insist on MM/dd/yyyy hh:mm for a reason that I cannot guess, specify that:

    DateTimeFormatter formatter
            = DateTimeFormatter.ofPattern("MM/dd/uuuu HH:mm", Locale.ROOT);

02/04/2013 15:42

Let‘s try the code with a XMLGregorianCalendar with undefined UTC offset too:

    XMLGregorianCalendar xgcal = DatatypeFactory.newInstance()
            .newXMLGregorianCalendar("2013-02-04T13:12:45");

2/4/13, 3:42 PM

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Whitelisted phrase (-1): in your case
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What do
  • Low reputation (1):
Posted by: Noah Smith

79161192

Date: 2024-11-06 02:24:23
Score: 2.5
Natty:
Report link

As @TylerH said in the comments, this problem bothers many users in VS 2022, and many users have reported this problem to the VS developer community. I believe that the relevant team is currently optimizing this problem, and when enough users report this problem, the team will prioritize it.

In addition, after my test, if you change the warning level, such as changing the warning level to 2, the warning of level 3 for unused variables will disappear, but the wavy line under the unused variables will also disappear. If you accept this suggestion, you can refer to this link.

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @TylerH
  • Low reputation (0.5):
Posted by: Cody Liang

79161178

Date: 2024-11-06 02:10:20
Score: 3.5
Natty:
Report link

Ace,

I am also facing this issue so I had used Node JS 18.16v You can also try if it works fine then it's good.

Reasons:
  • Blacklisted phrase (1): also facing this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dhruvin Mehta

79161176

Date: 2024-11-06 02:10:20
Score: 7.5
Natty: 7.5
Report link

Where to download nimble=3.7.13-3?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Where to
  • Low reputation (1):
Posted by: user28153725

79161174

Date: 2024-11-06 02:08:19
Score: 2
Natty:
Report link

the best way is to open your IDE on the same terminal where u had sourced the setup file before.

the package is'nt recognized outside ROS, as these are installed in the site-packages folder that lies within ros2 directory.

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

79161170

Date: 2024-11-06 02:05:19
Score: 0.5
Natty:
Report link

I can reproduce this issue. This issue happens on Windows, which may relate to [BUG] .net maui SkiaSharp crashe. The SkiaSharp.Extended.UI.Maui NuGet depends on SkiaSharp.Views.Maui.Controls NuGet, so it also crashes. Good news is the issue has been fixed in the latest version.

The workaround is to manually install the latest SkiaSharp.Views.Maui.Controls NuGet, and it works.

Here is the package I've installed

    <PackageReference Include="SkiaSharp.Extended.UI.Maui" Version="3.0.0-preview.7" />
    <PackageReference Include="SkiaSharp.Views.Maui.Controls" Version="3.0.0-preview.5.4" />

Here is the snippet of code

<skia:SKLottieView  WidthRequest="300" HeightRequest="300" Source="dotnetbot.json" RepeatCount="-1" />

Here is the result

enter image description here

Please let me know if you have any questions.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Liqun Shen-MSFT

79161148

Date: 2024-11-06 01:49:13
Score: 6 🚩
Natty:
Report link

I've typed your exact formulas into my version of Excel (365) and don't get the same problem. If I use the wildcards it returns yes, if not, it returns no - doing an exact search.

In your image we can't see all the rows. Your countif is for lines 2 through to 7. Is it possible p1234 is appearing further down in the list (say line 6 or 7)?

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): get the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mark Ramsey

79161143

Date: 2024-11-06 01:45:12
Score: 0.5
Natty:
Report link

The following line changes the world coordinate of the sphere but not its local position relative to the Vuforia image target.

sphere.transform.Position = targetTransform.position + localPosition;

You can replace it with:

sphere.transform.localPosition = targetTransform.position + localPosition;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ying Li - MSFT

79161132

Date: 2024-11-06 01:36:10
Score: 1
Natty:
Report link

Basically it gives you a head project for each platform, instead of using the "single project" approach with several target frameworks that .NET MAUI knows how to handle. on Single project you have something similar if you look at the Platforms folder, there you see some of the code you see in the several platform head projects.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: Rui Marinho

79161127

Date: 2024-11-06 01:33:10
Score: 2
Natty:
Report link

Cheers to @Kache for mentioning what should have been obvious: just base64 encode to send plaintext.

For future reference, this is how I did so.

Client-side:

tag   = base64.b64encode(tag)
nonce = base64.b64encode(nonce)
# tag and nonce are packed into the payload dictionary
requests.post(url, json=payload, verify="myShnazzyCertificate.pem")

Server-side:

payload = flask.request.json

# tag and nonce are unpacked from the above payload dictionary and then
tag        = base64.b64decode(tag)                                              
nonce      = base64.b64decode(nonce)

# ... tag and nonce are used successfully to decrypt data
Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Kache
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ryan Farber

79161125

Date: 2024-11-06 01:31:09
Score: 1.5
Natty:
Report link

The problem has been solved.

The root cause is not in parent and child, that named pipe also worked very well. The problem is that parent actually is a child too, it starts by another process by using subprocess.Popen(). Then, actually, we have a grandparent, parent, child. Between grandparent and parent, we have a pipe to communicate with each other, parent writes in it, and grandparent reads from it. This pipe get filled, then parent get blocked when writing, it can not read message from that named pipe as well.

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

79161123

Date: 2024-11-06 01:29:09
Score: 2.5
Natty:
Report link

hey mate i just finished a kivy app with stripe payments, everything works fine the only problem i am facing is when doing deployment im missing a requirement(buildozer.spec) to make it work as if i remove 'import stripe' in my code it works fine until i have to use the stripe funcion of course

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

79161122

Date: 2024-11-06 01:29:09
Score: 2
Natty:
Report link

You cannot import the pipe by itself, you must import the TranslateModule.

If you want to avoid having to import the TranslateModule for every component, you can import it into a shared module, and then import the shared module in your components. Surely there are other modules that you will also import for every component, so this at least cuts down on the repetition.

Checkout this existing answer for more info: https://stackoverflow.com/a/42082278/1892543

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

79161120

Date: 2024-11-06 01:29:09
Score: 1
Natty:
Report link

Make sure to turn on every services there are in service.msc

Hi, this is my case, i'm not an IT expert so i don't really understand why this works, but you can check it out. Error Message

First, Open "Run" box (Win + R), then type "service.msc" and press enter, it'll open a Services Form.

Next, find the services in the picture below, right click, choose "Properties" and press "Start". You need to Run these Services

I don't understand clearly, but it works for me, goodluck.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Whitelisted phrase (-1): works for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Thông Nguyễn Minh

79161112

Date: 2024-11-06 01:24:08
Score: 2
Natty:
Report link

Seems like after removing the TKOpengles,everything worked

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

79161111

Date: 2024-11-06 01:24:08
Score: 4
Natty:
Report link

When there's no explanation on docs, release note is where we should go.

Check this out: https://github.com/drizzle-team/drizzle-orm/releases/tag/0.36.0

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): When the
  • Low reputation (0.5):
Posted by: jjangga

79161109

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

JwtParser parser = Jwts.parserBuilder() .setSigningKey(secret) .build(); Claims claims=parser.parseClaimsJws(token).getBody();

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

79161102

Date: 2024-11-06 01:16:06
Score: 1
Natty:
Report link

You're using a relative path selection for the import.

Instead of using '../variables/' try using './variables/' with a single period like you have for your other imports.

Since you're in main.scss, when you use the relative path '../' it moves the folder lookup from styles/ to src/. And since there is no variables/ folder in src/, it throws the error.

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

79161095

Date: 2024-11-06 01:13:03
Score: 8 🚩
Natty:
Report link

Can you please elaborate on the Cluster Database Setup ? Is this a RAC Database ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please elaborate
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: munsidd

79161090

Date: 2024-11-06 01:06:02
Score: 1.5
Natty:
Report link

As @AKX commented, you'll need to test and tell us the time taken in different areas of your code. For example, the document indexing line, and the querying line.

You can try using a lighter LLM like Llama 2 7b Q4_K_M.
If using LlamaCPP, use model_kwargs={"n_gpu_layers": -1} to use GPU for faster inferences. For example:

llm_url = 'https://huggingface.co/TheBloke/Llama-2-7B-Chat-GGUF/resolve/main/llama-2-7b-chat.Q4_K_M.gguf'
llm = LlamaCPP(model_url=llm_url, temperature=0.7, max_new_tokens=256, context_window=4096, generate_kwargs = {"stop": ["", "[INST]", "[/INST]"]}, model_kwargs={"n_gpu_layers": -1}, verbose=True)

You can refer to my full working script I made a while ago that takes ~3 seconds to index documents, and ~5 seconds to see the first generated token. https://colab.research.google.com/github/kazcfz/LlamaIndex-RAG/blob/main/LlamaIndex_RAG.ipynb

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @AKX
  • Low reputation (0.5):
Posted by: kazcfz

79161089

Date: 2024-11-06 01:06:02
Score: 0.5
Natty:
Report link

When you look up the text, you can increase the specificity of the search to only search elements with the name class:

$(this).toggle($(this).find(".name").text().toLowerCase().indexOf(value) > -1)

I added a .find() call to the element which will narrow the scope of the .text() call to only elements with the name class.

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

79161086

Date: 2024-11-06 01:01:01
Score: 4
Natty: 4
Report link

Me too.I meet the same case. error code = 8 = ERROR_NOT_ENOUGH_MEMORY. I donn't know why.

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

79161073

Date: 2024-11-06 00:48:58
Score: 3
Natty:
Report link

You are the ficking master, i was lost the hopo to fix this problem and i found this post.

Thanks !!!!!!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Santiago Ramirez

79161067

Date: 2024-11-06 00:38:57
Score: 3
Natty:
Report link

Can anyone confirm if this is still the case? I haven't been able to find anything to show that it has changed. This seems like something that Microsoft would add; Duo has supported it for years.

This Microsoft thread also doesn't seem promising: https://learn.microsoft.com/en-us/answers/questions/1393122/api-for-microsoft-authenticator

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can anyone
  • Low reputation (1):
Posted by: Matt L

79161055

Date: 2024-11-06 00:29:55
Score: 0.5
Natty:
Report link

a little-known option concerns "out-of-bounds" cases. You can control what is done with lines of points that goes off-scales using

scale_x_continuous( oob = scales::oob_keep )

where oob_keep keeps any object that goes outside of the limits (here the horizontal limit).

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

79161051

Date: 2024-11-06 00:27:55
Score: 4.5
Natty:
Report link

I have similar issue when setting up on my mac M2, fixed by adding option:

gem install msgpack -v '1.4.2' -- --with-cflags=-Wno-error=incompatible-function-pointer-types

So I think you can try use the same version by replacing the version of above command to 1.4.4

Reasons:
  • Blacklisted phrase (1): I have similar
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have similar issue
  • Low reputation (1):
Posted by: user2500120

79161047

Date: 2024-11-06 00:22:53
Score: 4
Natty:
Report link

I needed to update the "Permitted scope for copy operations" configuration value to "From any storage account."

enter image description here

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: mrwnt10

79161041

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

Using fetch in a promise-returning function

const string = await loadTextFile('../foo.txt');

function loadTextFile(path){
    return new Promise((resolve, reject) => {
        fetch(path)
        .then(response => response.text(), reject)
        .then(data => resolve(data), reject);
    });
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SP4CEBAR

79161033

Date: 2024-11-06 00:15:52
Score: 1
Natty:
Report link

Google is your friend. See this question. You need something like this:

text = text.replace('\n', ' ')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: thomas.cloud

79161030

Date: 2024-11-06 00:11:51
Score: 1
Natty:
Report link

LWJGL is a lightweight game development library that does not contain a built in physics library. In order to get jumping and gravity to work only using JOML and LWJGL, you will need to create your own collision detection and physics integration code which is too complicated to be explained here. If you want to do that, there are plenty of books on the subject. However, if you are new to programing or do not have much interest in physics programing, I recommend finding an additional physics package or using a full game engine which includes physics code.

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

79161027

Date: 2024-11-06 00:09:50
Score: 3
Natty:
Report link

You could intercept the response of request(https://oddsservice.msw-mb-de.cashpoint.solutions/odds/getGames/10):

enter image description here

Or you could send the api request directly.

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

79161021

Date: 2024-11-06 00:05:49
Score: 1.5
Natty:
Report link

if I remove the setup in my in my .vue file I've got this error

What exactly do you mean by setup here?

The following does appear to be working correctly using the newest Nuxt version. I've just tried it on Stakblitz.

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

79161020

Date: 2024-11-06 00:05:49
Score: 1.5
Natty:
Report link
#![allow(unused)]

fn countdown(mut y: u8) -> u8 {
    let mut i = 0; 
    for  n in 1..y {
        println!("{}", n);
        i += n 
    }
    return i 
}

fn main() {
    let y = 3;
    println!("{} Liftoff!", countdown(y));
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Erider

79161009

Date: 2024-11-05 23:54:47
Score: 0.5
Natty:
Report link

That opton is the best cause will catch the value updated, instead of using 'keydown' who just gets the value without the last char typed

element.addEventListener("keyup", () => {
  console.log(element.value)
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Brian Santanaa

79161005

Date: 2024-11-05 23:50:47
Score: 1.5
Natty:
Report link

Solved: After too long days if debugging... Another usage of openssl within the application was influencing Qt's openssl usage. Using another lib internally was the easiest solution.

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

79161004

Date: 2024-11-05 23:50:47
Score: 1
Natty:
Report link

how would you replicate what the Java code above is doing but in an S3 context

Essentially all you need to do is this:

AmazonS3Client client = ...;
String bucketName = "...";
ObjectMetadata meta = client.getObjectMetadata(bucketName, path);

The getObjectMetadata call will fail if the path does not exist (throwing an Exception)

Ref: https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/s3/AmazonS3Client.html#getObjectMetadata-java.lang.String-java.lang.String-

Reasons:
  • Blacklisted phrase (1): how would you
  • Probably link only (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): how would you
  • High reputation (-1):
Posted by: AndrewL

79160996

Date: 2024-11-05 23:44:45
Score: 1
Natty:
Report link

This has been occurring several times a day for me this year (currently running VS version 17.9.2). I thought it was similar to previous experiences where restarting VS was the only thing that worked so that's what I've been doing.

However I just found that using Clean fixed it. First time I've actually found a use for the Clean function.

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

79160990

Date: 2024-11-05 23:40:44
Score: 1
Natty:
Report link

Why not a simple 1 liner df1 = df.select('*')

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why not a
  • High reputation (-1):
Posted by: human

79160986

Date: 2024-11-05 23:37:41
Score: 7.5 🚩
Natty: 5
Report link

I have the same situation. Do you have any progress or change?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: 이유창

79160984

Date: 2024-11-05 23:35:41
Score: 2.5
Natty:
Report link
  1. Verify the client side ssl configuration. Check if ssl mode is set properly.
  2. Check the certificate and permissions.
  3. Check ssl versions and campatability.
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: vijay karnati

79160974

Date: 2024-11-05 23:28:39
Score: 2.5
Natty:
Report link

There is a preview release of an openrewrite tool for SDK v1 -> V2 migration: https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/migration-tool.html Disclaimer, I found this was Googling and I haven't attempted to migrate a project yet. But perhaps it'll be helpful for somebody.

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

79160973

Date: 2024-11-05 23:28:39
Score: 0.5
Natty:
Report link

So the problem is that you are running many instances of your Step Function in parallel, and since they each call the same Lambdas you are ending up with a lot of simultaneous executions and hit the limit.

To avoid this, you should get rid of Function0 and instead wrap your current State Machine in a Map State which will execute the steps for each entry in your data JSON; Within the Map State definition you can then set a maximum concurrency, which will allow you to make use of the efficiency of running in parallel without going over your limits. You can then call the updated State Machine with your full data list, and it will handle the concurrency internally.

I don't work with CloudFormation directly, so I don't know how to achieve this in your configuration, but here is how you would implement something like this in CDK;

const lambda_func[n] = LambdaInvoke(...)

// Start with your current step function body
const inner_steps = lambda_func1.next(lambda_func2)
                        .next(lambda_func3)
                        .next(lambda_func4)
                        .next(lambda_func5)

// Wrap the steps in a Map state, each of which takes one element of the `data` list as input
const wrapped_sfn = new MapStep(
    stack,
    "Run Lambdas for each data element",
    {
        maxConcurrency: 20,
        itemsPath: JsonPath.stringAt("$.data"),
        itemSelector: {  // Wraps each item in its own JSON with the key "data", as in function0
            "data": JsonPath.stringAt("$$.Map.Item.Value")
        },
        resultPath: "$.processedData",
    }
);
wrapped_sfn.itemProcessor(inner_steps);

Doing the equivalent of this in your CloudFormation should enable you to run all the processes as you expect while ensuring none of your Lambdas exceed their concurrency limits.

Reasons:
  • Blacklisted phrase (1): how to achieve
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AngusB

79160965

Date: 2024-11-05 23:22:38
Score: 4
Natty:
Report link

The problem was that the servo was in velocity mode not position mode.

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

79160949

Date: 2024-11-05 23:14:36
Score: 4.5
Natty:
Report link

I have the same issue pgadmin4 version 8.12, I tried to set Results grid from Preferences -> Query Tool -> Results grid -> Columns sized by, but it still looks like the stacked view you shared.

It is a common issue https://github.com/pgadmin-org/pgadmin4/issues/7963

Rolling back to 8.10 seems to solve the issue.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Amr Nabeel

79160948

Date: 2024-11-05 23:13:36
Score: 0.5
Natty:
Report link

/p:CopyDebugSymbolFilesFromPackages=true works

dotnet publish /p:DebugType=Full /p:DebugSymbols=true /p:PublishSymbols=true /p:CopyOutputSymbolsToPublishDirectory=true /p:CopyDebugSymbolFilesFromPackages=true --configuration Debug --framework net8.0 -o /app
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Chip

79160946

Date: 2024-11-05 23:12:35
Score: 0.5
Natty:
Report link

Fun problem. Here's a c# version. I needed this for a mobile game that runs in a variety of resolutions. Couldn't find anything so I rolled my own. I was surprised by the complexity of this problem so posting this hoping it will save you some time if you need to drop some c# code into an existing project.

Example (using 10 character search radius):

int maxLineLength = 75;
var input = @"This extra-long paragraph was writtin to demonstrate how the `fmt(1)` program handles longer inputs. When testing inputs, you don't want them  be too short, nor too long, because the quality of the program can only be determined upon inspection of complex content. The quick brown fox jumps over the lazy dog. Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the Government for a redress of grievances.";
int maxLineCount = (int)(3.0 * input.Length / maxLineLength);
var result = UniformLineSplitting.Split(
    input, maxLineLength, 1, maxLineCount, UniformLineSplitting.Western);
Assert.AreEqual(
@"This extra-long paragraph was writtin to demonstrate how the `fmt(1)`
program handles longer inputs. When testing inputs, you don't want them
be too short, nor too long, because the quality of the program can only be
determined upon inspection of complex content. The quick brown fox jumps
over the lazy dog. Congress shall make no law respecting an establishment
of religion, or prohibiting the free exercise thereof; or abridging the
freedom of speech, or of the press; or the right of the people peaceably
to assemble, and to petition the Government for a redress of grievances.",
    result);
Reasons:
  • Blacklisted phrase (0.5): I need
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dynamicbutter