79530955

Date: 2025-03-24 11:39:08
Score: 2.5
Natty:
Report link

So help me, Codd, no!

https://en.wikipedia.org/wiki/Boyce%E2%80%93Codd_normal_form

If you're really worried about the amount of time it takes for you to fetch data at this level, give MongoDB a try or learn another document-based DBMS... However, just know that most of the time, the only reason you need SQL over NoSQL is for data visualization.

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: imgnx

79530938

Date: 2025-03-24 11:28:06
Score: 1
Natty:
Report link

o que faltou foi voce se inscrever no topico antes de setar o call back e passar usando o ponteiro &:

&callback
 wifiMqttService.subscribe(topicMqttSetDistancia);
  wifiMqttService.subscribe(topicMqttSetInterval);
  wifiMqttService.setCallBack(&callback);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lucas Matheus

79530931

Date: 2025-03-24 11:26:05
Score: 1
Natty:
Report link

Modify your script to specify UTF-8 encoding explicitly:

import sys
sys.stdout.reconfigure(encoding='utf-8')  # Python 3.7+
print("\u03C0")

This ensures Python correctly outputs Unicode characters to the terminal.

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

79530926

Date: 2025-03-24 11:24:05
Score: 2.5
Natty:
Report link

Short answer: No

But your implementation is simple, elegant and easy to read, so it should be handled that way

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

79530924

Date: 2025-03-24 11:24:05
Score: 1.5
Natty:
Report link

Should work like that

bold_underline = wb.styles.add_style(:b => true, :u => true)

But i prefer use it like this

bold_underline = wb.styles.add_style b: true, u: true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: w1cked

79530921

Date: 2025-03-24 11:22:04
Score: 3
Natty:
Report link

I am working on react-native. And I had redeclared a function so I got this error. May be someone can encounter with same.

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

79530916

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

You can use the daysOfWeekHeight property:

daysOfWeekHeight: 30,

how to add distance between daysOfWeek and date #table_calendar: ^3.0.6

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eoiner

79530914

Date: 2025-03-24 11:20:04
Score: 4
Natty:
Report link

[Forms]![MainFormName]![SubFormName]!TextBoxName

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: sameer bhokare

79530908

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

I wanted to highlight an important missing factor which I was facing: Google wants the post data encoding to be in application/x-www-form-urlencoded format and not application/json format.

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

79530905

Date: 2025-03-24 11:16:03
Score: 2
Natty:
Report link

root@rpi:/etc/wpa_supplicant# vi wpa_supplicant.conf

ctrl_interface=/var/run/wpa_supplicant

update_config=1

eapol_version=1

ap_scan=1

fast_reauth=1

network={

mode=0

proto=RSN

key_mgmt=WPA-PSK

psk="12345678"

ssid="Router"

}

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

79530899

Date: 2025-03-24 11:13:02
Score: 0.5
Natty:
Report link

There is an upcoming feature in mice to re-use the imputation models, with the new tasks argument:

# install dev version of mice
remotes::install_github("amices/mice", ref = "imputation_models")
# train imputation models
trained <- mice(nhanes, tasks = "train", seed = 1, print = FALSE)
# generate synthetic test set for illustraion purposes
newdata <- data.frame(age = c(2, 1), bmi = c(NA, NA), chl = c(NA, 190), hyp = c(NA, 1))
# re-use the imputation models on the test set
filled <- mice(newdata, tasks = "fill", models = trained$models, seed = 1, print = FALSE)
# inspect imputed test set data
complete(filled, 2)
#>   age  bmi chl hyp
#> 1   2 27.2 229   2
#> 2   1 33.2 190   1

A vignette for this feature is available via https://www.gerkovink.com/miceVignettes/Imputation_models/imputation_models.html

Feedback on this feature is welcomed via https://github.com/amices/mice/discussions/697

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

79530891

Date: 2025-03-24 11:10:01
Score: 5.5
Natty: 5.5
Report link

The Oracle database is not concerned/tested in your example; is it?

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

79530887

Date: 2025-03-24 11:09:01
Score: 1.5
Natty:
Report link

Looks like there might be a compatibility issue or a broken package installation. Try uninstalling and reinstalling importlib-resources and neuralprophet using:

pip uninstall importlib-resources neuralprophet
pip install importlib-resources neuralprophet

Also, ensure you're using the correct Python environment. Let me know if that helps!

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

79530882

Date: 2025-03-24 11:07:01
Score: 3
Natty:
Report link

Cloud-based iCaaS integration streamlines data flow, enhances scalability, and ensures seamless connectivity for businesses embracing digital transformation and hybrid cloud solutions.

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

79530864

Date: 2025-03-24 10:55:58
Score: 1.5
Natty:
Report link

for next js 15 version

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  serverExternalPackages: ["pdfkit"],
};

export default nextConfig;

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

79530862

Date: 2025-03-24 10:55:58
Score: 2.5
Natty:
Report link
i found the problem thanks to real.
I2C1 -> CR1 |= (1<8) // Missed < sign
I2C1 -> CR1 |= (1<<8) This one do the work.
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ALI

79530858

Date: 2025-03-24 10:53:58
Score: 1
Natty:
Report link
En Racket, #fest faux et n'est pas identique à (). assocL'opérateur renvoie faux s'il ne trouve pas de correspondance : en raison des jeux de mots CL entre faux et la liste vide, cela signifie que cela (member ... (assoc ...))fonctionnera toujours. En Racket, ce ne sera pas le cas : vous devez vérifier si assocla correspondance a échoué.
Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: c.talarmin

79530847

Date: 2025-03-24 10:48:57
Score: 0.5
Natty:
Report link

I suppose you use this helm chart? If so have a look at the Parameter Reference. There are two specific values that set the replica count:

As you want to run jobs in parallel, enabling workers and setting replica to >=2 deploys two workers so jobs can run in parallel.

Updated values.yaml:

airflow:
  workers:
    enabled: true
    replica: 2
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: hobyte

79530840

Date: 2025-03-24 10:45:56
Score: 2.5
Natty:
Report link

Hi please check if you have added the jar file manually in your project and may also you have added dependency to your POM/Gradle file.

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

79530835

Date: 2025-03-24 10:43:56
Score: 2
Natty:
Report link

Ad-hoc Wi-fi connection was possible on windows desktop until Windows 7 edition. Ad-hoc Wi-fi connection is also relevant today using Linux desktop (ubuntu) with wpa_supplicant installed and a good wifi PCI installed. You can turn on hotspot configured with ssid and passphrase on phone1 and it can be connected from wifi settings on phone2. In this way you can make connection via wifi between 2 phones. This is technically AccessPoint Mode & Station Mode connection establishment.

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

79530832

Date: 2025-03-24 10:41:55
Score: 1
Natty:
Report link

Remove eas projectId inside app.json, it belongs to another expo account:

"extra": {
      "eas": {
        "projectId": "Your project id"
      }
    }

Regenerate a new one:

eas init
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Clare Mburu

79530819

Date: 2025-03-24 10:34:54
Score: 2.5
Natty:
Report link

Try to remove from providers FormBuilder and FormGroup. You shoud only add FormsModule and RectiveFormsModule in your module.

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

79530803

Date: 2025-03-24 10:27:52
Score: 1.5
Natty:
Report link
SELECT 
    fkey
FROM 
    your_table_name
WHERE 
    col1 = 'b'
GROUP BY 
    fkey
HAVING 
    COUNT(*) > 1;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: StackSurfer

79530795

Date: 2025-03-24 10:25:52
Score: 3.5
Natty:
Report link

I think you should try DataGridPro then. It has drag and drop feature

https://mui.com/x/react-data-grid/row-ordering/

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

79530784

Date: 2025-03-24 10:18:51
Score: 3
Natty:
Report link

To run a simple assembler on M1 Apple Silicon, you may need to use Rosetta 2 for compatibility with x86-based tools or install ARM-compatible assemblers like as, nasm, or llvm.

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

79530781

Date: 2025-03-24 10:18:51
Score: 1
Natty:
Report link

try to add required items in Gradle file

dependencies {
    implementation 'jakarta.jms:jakarta.jms-api:3.1.0'  
    implementation 'org.apache.qpid:proton-j-2:2.0.0-M8'  
}


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

79530775

Date: 2025-03-24 10:15:50
Score: 0.5
Natty:
Report link

Edit Project.Tests.csproj file

<Target Name="CopyWrapperDLL" BeforeTargets="Build">
    <Copy SourceFiles="..\Project\bin\Debug\net8.0\wrapper.dll"
          DestinationFolder="$(OutDir)" />
</Target>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: n___dv

79530767

Date: 2025-03-24 10:12:50
Score: 1.5
Natty:
Report link

I don't have privilege to use Office365Outlook, so I tried this with gmail SendEmail(V2) and it is working fine for me. I created small flow to call from button. I am getting 5 emails for each item from the gallery on pressing button.

Created Flow with two parameters subject an body.

Then Used Send email action for Gmail as shown in below screenshots

enter image description here

enter image description here

Add the flow in app as shown on left side and then On SendEmail button call the flow.

enter image description here

enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
Posted by: Almas Mahfooz

79530759

Date: 2025-03-24 10:09:49
Score: 3
Natty:
Report link

i am also suffering from the same issue but it is not solved even when the quotes are removed.

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

79530753

Date: 2025-03-24 10:08:49
Score: 3
Natty:
Report link

Sure! Just verify with a regular expresion, negate that regular expression and check in the parent property that the result count is zero.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roland Kölbel

79530752

Date: 2025-03-24 10:06:48
Score: 1.5
Natty:
Report link

As so often, the problem was not in but in front of the computer :-(

Once the keys are generated (ssh-keygen) you need to share the public one with each user ($ ssh-copy-id username@remote-user-IP) AND must do this for each user using this, so in particular yourself AND root!

I may have made a typo when adding key as root, and not notice this failure, and therefor there was no key access for root :-(.

Sorry for this confusion.

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

79530751

Date: 2025-03-24 10:06:48
Score: 1.5
Natty:
Report link

It looks like cv2 only like detecting keycodes for letters/characters and numbers and returns 0 for anything that isn't one (ESC is an exception).

The delete key returns 0. You cannot use it.

Also, you're not going to be able to detect any key presses right now with your code, as cv2 requires a window open to detect key presses.

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

79530746

Date: 2025-03-24 10:06:48
Score: 3
Natty:
Report link

For anyone finding this in the future, it's probably best to start with the following documentation.

Trustet Execution Environment (TXT) https://en.wikipedia.org/wiki/Trusted_Execution_Technology

Trusted Platform Module (TPM) https://en.wikipedia.org/wiki/Trusted_Platform_Module

Trusted Platform Module (TPM) Overview: https://www.intel.com/content/www/us/en/business/enterprise-computers/resources/trusted-platform-module.html

Trusted Execution Technology (TXT) https://www.intel.com/content/www/us/en/developer/articles/tool/intel-trusted-execution-technology.html

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

79530742

Date: 2025-03-24 10:03:48
Score: 3
Natty:
Report link

"If you're looking for the latest APK mods, I highly recommend apkbitlifemod.com! I’ve used their site, and it’s the best for downloading mods. Fast, reliable, and easy to use.

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

79530738

Date: 2025-03-24 10:01:47
Score: 0.5
Natty:
Report link

Confirmed as spring boot bug in https://github.com/spring-projects/spring-boot/issues/44849

Sadly, no fix can applied to all classes, but to minimize the changes, we can either:

a. Use @Autowired to make constructor not used for property binding:

class CustomA @Autowired constructor(
    var y: String = "",
    var z: String = "",
) : Base()

b. Declare subclass with only default constructor

class CustomA : Base() {
    var y: String = ""
    var z: String = ""
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: minh tri Vo

79530726

Date: 2025-03-24 09:56:46
Score: 3
Natty:
Report link

If you're looking for reliable rubbish removal services, I highly recommend Near Way UK! I've used them, and they are the best at what they do. Fast, efficient, and always professional. <a href='https://www.near-way.co.uk/'>Near Way UK Rubbish Removal</a>

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

79530724

Date: 2025-03-24 09:55:46
Score: 0.5
Natty:
Report link

Did you create a REST service that will serve as the catalog?

According to the trino documentation youv'e shared, you need to connect to the REST service
iceberg.rest-catalog.uriREST server API endpoint URI (required). Example: http://iceberg-with-rest:8181
According to your example, you're connecting to the GCS bucket that isn't a REST service.

iceberg.rest-catalog.uri=https://storage.googleapis.com/<bucket_name>/thelook_ecommerce/iceberg (is this correct?)

This is an example project for a REST Catalog service: gravitino.apache you'll need to have such service to connect Trino to GCS.

To my understanding, Google has not yet exposed a REST API endpoint in its various methods of managing ICEBERG. ICEBERG on BigQuery options

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: nadavw

79530719

Date: 2025-03-24 09:53:45
Score: 2
Natty:
Report link

To improve the extraction of English questions from scanned UPSC PDFs using OCR (Optical Character Recognition), ensure high-quality scans with clear text and minimal distortion. Use advanced OCR tools like Tesseract or Adobe Acrobat for better accuracy. Pre-process the PDFs by enhancing contrast and removing noise. Post-OCR, review the extracted content to correct formatting errors and ensure accuracy in question extraction. Utilize machine learning models to enhance text recognition for complex formats.

UPSC Study Hub provides resources and tools for effective question extraction and preparation materials to assist in streamlining your study process.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Upsc study Hub

79530718

Date: 2025-03-24 09:53:45
Score: 2.5
Natty:
Report link

!!!!!!!!!!!!!!!!!!!!!!!!!!! TERRAFORM CRASH !!!!!!!!!!!!!!!!!!!!!!!!!!!! Terraform crashed! This is always indicative of a bug within Terraform. Please report the crash with Terraform[1] so that we can fix this. When reporting bugs, please include your terraform version, the stack trace shown below, and any additional information which may help replicate the issue. [1]: https://github.com/hashicorp/terraform/issues !!!!!!!!!!!!!!!!!!!!!!!!!!! TERRAFORM CRASH !!!!!!!!!!!!!!!!!!!!!!!!!!!! panic: interface conversion: interface {} is *cty.unknownType, not bool goroutine 51 [running]: runtime/debug.Stack() runtime/debug/stack.go:26 +0x5e github.com/hashicorp/terraform/internal/logging.PanicHandler() github.com/hashicorp/terraform/internal/logging/panic.go:84 +0x16a panic({0x3262580?, 0xc0027ca750?}) runtime/panic.go:785 +0x132 github.com/zclconf/go-cty/cty.Value.True({{{0x3e81b88?, 0xc0001a19c0?}}, {0x319ca20?, 0xc000cfc6f0?}}) github.com/zclconf/[email protected]/cty/value_ops.go:402 +0xd3 github.com/zclc

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Filler text (0.5): !!!!!!!!!!!!!!!!!!!!!!!!!!!
  • Filler text (0): !!!!!!!!!!!!!!!!!!!!!!!!!!!!
  • Filler text (0): !!!!!!!!!!!!!!!!!!!!!!!!!!!
  • Filler text (0): !!!!!!!!!!!!!!!!!!!!!!!!!!!!
  • Low reputation (1):
Posted by: Ravula Spoorthy

79530715

Date: 2025-03-24 09:51:45
Score: 1
Natty:
Report link

Trying to solve the signal subtraction analytically for s1-s2=0,

exp(-1j*8*pi/lambda*(V^2*ta*time_delay)/R) = 1 ;

Base on the parameters that are fixed, it might be easier for you to solve this equation.

PS: This is my first answer so forgive me if it is too crude.

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

79530713

Date: 2025-03-24 09:48:44
Score: 11
Natty: 7
Report link

i have the same question.

do you know how to do this?

Reasons:
  • Blacklisted phrase (1): i have the same question
  • RegEx Blacklisted phrase (2.5): do you know how
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same question
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user27890784

79530703

Date: 2025-03-24 09:45:43
Score: 1
Natty:
Report link

let charSpace = 0;
let dim = doc.getTextDimensions(strValue);
if (align === 'justify' && neededWidth > dim.w && (dim.w / neededWidth ) > 0.8 ) {
 charSpace = (neededWidth - dim.w) / strValue.length;
} 
doc.text(strValue, xCoord, yCoord, {charSpace });

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

79530695

Date: 2025-03-24 09:43:41
Score: 9.5 🚩
Natty: 4.5
Report link

Have you found the root cause?

If yes, could you share the solution to obtain the correct data payload?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share the solution
  • RegEx Blacklisted phrase (2.5): Have you found the root cause
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Xiaoxiong Yin

79530687

Date: 2025-03-24 09:39:41
Score: 0.5
Natty:
Report link

There is a simpler syntax:

dtgrouped2[dt2, ':='(Amount1 = Amount1,
                     Amount2 = Amount2),
    on = .(Unique = Unique1, MonthNo > StartDate, MonthNo <= EndDate)]

dtgrouped2
    MonthNo Unique Total Amount1 Amount2
      <int> <char> <int>   <int>   <int>
 1:       1    AAA    10       7       0
 2:       1    BBB     0      NA      NA
 3:       2    CCC     3      NA      NA
 4:       2    DDD     0      NA      NA
 5:       3    AAA     0       3       2
 6:       3    BBB    35      NA      NA
 7:       4    CCC    15      NA      NA
 8:       4    AAA     0       3       2
 9:       5    BBB    60      NA      NA
10:       5    CCC     0      NA      NA
11:       6    DDD   100      NA      NA
12:       6    AAA     0      NA      NA
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Kaare

79530674

Date: 2025-03-24 09:32:39
Score: 3
Natty:
Report link

I found a workaround which was to use my query to insert into a temp table and then select from the temp table, which completed correctly.

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

79530672

Date: 2025-03-24 09:30:39
Score: 2.5
Natty:
Report link

just to support this. Myself and others have also reported a significant uptick in duplicate orders with woocommerce since last week. We initially thought it was PayPal-related but have also seen similar issues with Stripe.

Here are a few mentions of this problem I have found from last week. I believe they're all related.

https://wordpress.org/support/topic/duplicate-orders-double-charging-customers/

https://wordpress.org/support/topic/duplicate-orders-customers-being-charged-twice/

https://wordpress.org/support/topic/customers-being-charged-twice-creates-duplicate-orders/

https://github.com/woocommerce/woocommerce-paypal-payments/issues/3231

https://www.upwork.com/freelance-jobs/apply/have-double-orders-coming-through-for-woocommerce-Started-few-days-ago_~021902816864695707834/

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

79530669

Date: 2025-03-24 09:30:39
Score: 1.5
Natty:
Report link

As gsutil is deprecated now, here is newer version using gcloud command:

see https://cloud.google.com/storage/docs/using-object-versioning

gcloud storage buckets update gs://BUCKET_NAME --versioning
gcloud storage buckets describe gs://BUCKET_NAME --format="default(versioning_enabled)"
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nightingale7

79530663

Date: 2025-03-24 09:26:38
Score: 3.5
Natty:
Report link

In my case, I was using VSCode and restarting it solved my issue

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

79530660

Date: 2025-03-24 09:25:38
Score: 0.5
Natty:
Report link

With such a jump in product versions it would be difficult to narrow down a specific change that has caused the differences that you are seeing.

I'm not sure why checksums would have changed - it is the CRC32 of the file so should be consistent between runs and across machines. Likewise, I'm unsure why on one machine the dev folder wasn't being picked up despite being specified

It does sound like an annoying issue has been resolved though, in that the location was configured but not honored as well as the checksums being different.

I think that, if you are sure the migrations haven't changed then you should run repair to get the new checksums into the Schema History Table.

You can also set locations for a specific environment using environment overrides: https://documentation.red-gate.com/fd/environment-flyway-namespace-277578926.html

For disclosure, I'm a developer working for Redgate on Flyway

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

79530648

Date: 2025-03-24 09:19:37
Score: 0.5
Natty:
Report link

Disabled plug in dataLabels works for me.

plugins:{
    datalabels: {
        display: false
    }
}
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ZooboMe23

79530647

Date: 2025-03-24 09:19:37
Score: 1.5
Natty:
Report link

The version mismatch between express and @types/express can lead to the "No overload matches this call" error in TypeScript. Specifically, this issue arises when you’re using express v4 alongside @types/express v5.

The root cause is that the type definitions in @types/express v5.x are designed for express v5.x, which may not be fully compatible with express v4.x.

To fix the issue, it’s recommended to align the versions of express and @types/express to ensure compatibility.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nguyên Nguyễn Ngô Hoàng

79530642

Date: 2025-03-24 09:17:36
Score: 1
Natty:
Report link

Running expo prebuild and then editing the podfile with the coroutine fix as described in this thread solved the initial bug: https://github.com/facebook/folly/issues/2297

The proceeding 'undeclared identifier' errors were originating from the react-native-navigation library. As this package isn't completely necessary for my project I have just removed it.

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

79530641

Date: 2025-03-24 09:17:36
Score: 0.5
Natty:
Report link

Use can also use Coroutines with lifecycleScope to lunch network call in background thread

In Activity the best way to call retrieveInfo() inside onCreate or OnResume method

// Call suspend function safely  here inside coroutine scope
lifecycleScope.launch{
  val info = retriveInfo()
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jaspalsinh Gohil

79530640

Date: 2025-03-24 09:17:36
Score: 2.5
Natty:
Report link

99.9% is impossible, and, more, it's a sign of over-fitting.

But... to improve your results, we must to know more about the dataset. How is it balanced ? How many example ? It's the first step before the fine tuning of any model.

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

79530638

Date: 2025-03-24 09:16:35
Score: 4
Natty:
Report link

YAWS needs Docroot dir. Even yaws is working only as backend server.

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

79530633

Date: 2025-03-24 09:13:35
Score: 1
Natty:
Report link
function pprueba(url){
console.log("Prueba : "+url);
console.log("Pruena 2 :"+window.location.href);
console.log("Pruena 3 :"+google.script.run.getScriptUrl());
console.log("Pruena 4 :"+window.location);
console.log("Pruena 5 :"+$(this).attr('href'));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: อภิวัช มะสาทานัง

79530625

Date: 2025-03-24 09:10:34
Score: 1
Natty:
Report link

This is coming in very late but i am sure you already have this resolved. I am leaving this just incase someone else has this issue. There are some things to check when this happens. i.e(The cookies not getting set properly in the browse)

  1. check if the tracking scripts are added correctly on y our production website.
  2. check if the referral id you added to the link exists as a promoter.
  3. FirstPromoter sets its cookies on the primary domain so if you are using a sub domain of vercel,ngrok, azure etc that would not work as expected.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Maxwell

79530621

Date: 2025-03-24 09:09:34
Score: 5.5
Natty: 5
Report link

Is it possible to modify the padding of a single tab heading in react-navigation's Material Top Tabs? If yes, how can it be done? Here’s a screenshot for reference: [![enter image description here]] 1] 1

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Ankit Pandey

79530615

Date: 2025-03-24 09:06:33
Score: 2.5
Natty:
Report link

Throwing exceptions are just expensive. I'd rather use result pattern implementation like https://www.nuget.org/packages/DeepCode.Return/ or even we can implement one by our self. its not that hard to understand. Impoves readerbility too. (but some complex nugets might do the opposite)

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

79530613

Date: 2025-03-24 09:05:33
Score: 2.5
Natty:
Report link

I think it's because you have an oldest version of PowerShell.

The latest version actually available is the 7.5.0.

Make sure to have it updated and then you can try to execute the command again.

You can download it from the official github repository of PowerShell : https://github.com/PowerShell/PowerShell/releases/tag/v7.5.0

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

79530611

Date: 2025-03-24 09:05:33
Score: 1.5
Natty:
Report link

You can open up %LocalAppData%\Google\AndroidStudio2024.3\log\idea.log (where 2024.3 should correspond with your GS version), search for "dl.google.com" and then find actual cause of your problem

To me, it's changed and faulty "Temp" folder (I changed it to ramdisk several years ago) and java simply can't r/w files on that ramdisk, thus making it display as "unavailable"

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

79530610

Date: 2025-03-24 09:05:33
Score: 0.5
Natty:
Report link

Pylint might not be picking up the .venv correctly. Try running:

PYTHONPATH=. uv run pylint . 

Or modify your pyproject.toml:

[tool.pylint.MASTER] 
init-hook='import sys; sys.path.append(".venv/lib/python3.12/site-packages")'

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

79530608

Date: 2025-03-24 09:02:32
Score: 1.5
Natty:
Report link

in settings.json
add :"scm.showHistoryGraph": false

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmed Shaker

79530606

Date: 2025-03-24 09:00:32
Score: 3
Natty:
Report link

CRS dev-on-duty here. Someone opened an issue in the ModSecurity GitHub repository. Was that you? In any case, please follow the discussion there: https://github.com/owasp-modsecurity/ModSecurity/issues/3355

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

79530594

Date: 2025-03-24 08:54:29
Score: 12 🚩
Natty:
Report link

Can anybody help me please?

– Reyer Sneller

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can anybody help me
  • RegEx Blacklisted phrase (2): help me please
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Can anybody help me please
  • Low reputation (1):
Posted by: Reyer Sneller

79530582

Date: 2025-03-24 08:50:28
Score: 2
Natty:
Report link

Thank you very much for your answer :)

I have already read Microsoft's documentation on a TabView within a title bar. The problem lies with the system caption buttons. I prefer to use my own caption buttons, and that's exactly where the issue arises. When I set a MinWidth for the tab strip footer, the tabs no longer overlap the caption buttons.

However, I end up with a strange effect where the tabs do not reduce their width correctly. The "+" symbol doesn't stay at the caption button, but instead stays earlier and then bugs out, moving in small steps until it reaches the caption button, and then it stops.

I haven't seen this behavior in browsers, for example. In browsers, the "+" stays directly next to the caption buttons, and only then do the tabs start to lose width.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pain Nncera

79530581

Date: 2025-03-24 08:50:28
Score: 2
Natty:
Report link

How do i fix this error

ta": {}\n}' 03-24 11:29:44.742 8051 8129 E ReactNativeJS: 'SecureStore get item error: ', { [Error: Call to function 'ExpoSecureStore.getValueWithKeyAsync' has been rejected. 03-24 11:29:44.742 8051 8129 E ReactNativeJS: → Caused by: The 2nd argument cannot be cast to type expo.modules.securestore.SecureStoreOptions (received class com.facebook.react.bridge.ReadableNativeMap) 03-24 11:29:44.742 8051 8129 E ReactNativeJS: → Caused by: java.lang.NullPointerException] code: 'ERR_UNEXPECTED' } 03-24 11:29:44.747 8051 8129 W ReactNativeJS: { [Error: Call to function 'ExpoSecureStore.deleteValueWithKeyAsync' has been rejected. 03-24 11:29:44.747 8051 8129 W ReactNativeJS: → Caused by: The 2nd argument cannot be cast to type expo.modules.securestore.SecureStoreOptions (received class com.facebook.react.bridge.ReadableNativeMap) 03-24 11:29:44.747 8051 8129 W ReactNativeJS: → Caused by: java.lang.NullPointerException] code: 'ERR_UNEXPECTED' } 03-24 11:29:44.748 8051 8129 I ReactNativeJS: 'eeorrr', '{\n "pathRoot": "/client/sign_ins",\n "status": null,\n "supportedIdentifiers": [],\n "supportedFirstFactors": [],\n "supportedSecondFactors": null,\n "firstFactorVerification": {\n "pathRoot": "",\n "status": null,\n "strategy": null,\n "nonce": null,\n "message": null,\n "externalVerificationRedirectURL": null,\n "attempts": null,\n "expireAt": null,\n "error": null,\n "verifiedAtClient": null\n },\n "secondFactorVerification": {\n "pathRoot": "",\n "status": null,\n "strategy": null,\n "nonce": null,\n "message": null,\n "externalVerificationRedirectURL": null,\n "attempts": null,\n "expireAt": null,\n "error": null,\n "verifiedAtClient": null\n },\n "identifier": null,\n "createdSessionId": null,\n "userData": {}\n}'

Reasons:
  • Blacklisted phrase (1): How do i
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): How do i fix this
  • Low reputation (1):
Posted by: D-Code-ojijo

79530573

Date: 2025-03-24 08:48:28
Score: 2.5
Natty:
Report link

In nginx, the default maximum allowed size of the client request body is only 1m:

https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size

so, you should change it bigger:

client_max_body_size 100m;
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tyg Liu

79530570

Date: 2025-03-24 08:45:27
Score: 1
Natty:
Report link

I tried with your collection with some changes and it is working fine, see below steps.

Step1: created two variables varText1 and varText2 and use them in collection, Button code.

enter image description here

Step 2: Set Items property of Gallery to colEmptyTab and mapped Index,Col1 and Col2 fields, inserted one more TextInput field and mapped it with Col4. On Right Arrow key add the code.

enter image description here

Step 3:

enter image description here

Step 4: Enter value in TextInput column for col4 and press right arrow button, it will clear collect and save with new values. I just did with one row.

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: Almas Mahfooz

79530569

Date: 2025-03-24 08:45:27
Score: 1
Natty:
Report link

You might need to set PYTHONPATH to specify your root directory (Import outside toplevel).

Create a ~/.pylintrc file and change the /path/to/root to your root.

[MASTER]
init-hook='import sys; sys.path.append("/path/to/root")'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fritz Robinson

79530568

Date: 2025-03-24 08:44:27
Score: 1.5
Natty:
Report link

According to pygccxml FAQ, this feature is not currently supported.

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

79530559

Date: 2025-03-24 08:40:26
Score: 2
Natty:
Report link

You need to add some parentheses:

export default withVercelToolbar()(nextConfig)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: 8128

79530556

Date: 2025-03-24 08:40:26
Score: 3
Natty:
Report link

I have this problem when load video from S3. The problem is video codec. Browser not support all codec, recommend is H264. In my case video have extension ".mp4" but codec is mp4v (you can view this with VLC media play or any apps, library supported), then browser throw an above error. If you can control file export format, take a look the export codec may help you. Gud luck!

Reasons:
  • Blacklisted phrase (1): I have this problem
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trần Minh

79530547

Date: 2025-03-24 08:38:25
Score: 5.5
Natty: 4
Report link

I'm having the same issue. Tested with the example provided in the instructions: https://github.com/Azure-Samples/azure-spring-boot-samples/tree/main/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server

This endpoint, http://localhost:8082/webapiB/clientCredential, is only protected after adding the code specified in option 2.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: Nils Anders Hvinden

79530544

Date: 2025-03-24 08:35:25
Score: 2.5
Natty:
Report link

@mirek: the reason is the number 5.515 is actually not 5.515 inside Python. It can be checked with the decimal module:

print(decimal.Decimal(5.515))

The result is 5.51499999999999968025576890795491635799407958984375

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @mirek
  • Filler text (0.5): 999999999999
  • Low reputation (1):
Posted by: SHC

79530538

Date: 2025-03-24 08:34:24
Score: 2
Natty:
Report link

use null in dataset.data values and set skipNull: true in chart options

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

79530534

Date: 2025-03-24 08:31:24
Score: 1.5
Natty:
Report link

Just escape each backslash with a slash...

{...
"commandLineArgs": "/nologo /b \"$solutiondirectory$/\/\$projectname$/\/\start.scr/\""
...}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CikoXp

79530525

Date: 2025-03-24 08:27:23
Score: 2
Natty:
Report link

This error occurs when a child class in Angular TypeScript has properties or methods that are incompatible with the base class. Ensure that property types in the child class match those in the base class. Also, verify that overridden methods return the correct types and constructors call super() properly. Checking imports and type definitions can help resolve the issue.

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

79530514

Date: 2025-03-24 08:24:22
Score: 3.5
Natty:
Report link

You can check parseurl() function from the source code downloaded from wget_source_code.

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

79530511

Date: 2025-03-24 08:23:22
Score: 2.5
Natty:
Report link

You can find manuals for Intel Xe GPUs at: https://www.x.org/docs/intel/DG1/

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

79530509

Date: 2025-03-24 08:22:21
Score: 2.5
Natty:
Report link

If you're dealing with SSL certificate issues in development, this guide might help:

How to Ignore SSL for React Native Android & iOS

Just be sure to fix this before going live to keep your app secure.

Reasons:
  • Blacklisted phrase (1): this guide
  • Low length (1):
  • No code block (0.5):
Posted by: Vicky Ahuja

79530506

Date: 2025-03-24 08:20:21
Score: 2
Natty:
Report link

Typically, for very large amounts of business data: A de-normalized DB or large table would be suitable for analysis.

Relational DB for transactions vs Denormalised DB for analytics. (Rule of thumb)

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

79530492

Date: 2025-03-24 08:15:20
Score: 3
Natty:
Report link

python manage.py collectstatic

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Morteza Mousavi

79530486

Date: 2025-03-24 08:13:19
Score: 1
Natty:
Report link

Apparently I was using the correct data type and everything was correct, however the SQL Server Management Studio truncates the output when querying a nvarchar(max), varchar(max), and such fields, this caused a confusion with not only myself but also the customer where they assumed the data was truncated on storage.

Use of a different database tool showed that the data was correct and complete, regardless what Microsoft's own software declared.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: JRSofty

79530483

Date: 2025-03-24 08:13:19
Score: 2
Natty:
Report link

In case you want to avoid bonding and if you have access to the device code and want a stable identifier, you could also expose your own identifier via the custom advertising data.

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

79530482

Date: 2025-03-24 08:12:19
Score: 0.5
Natty:
Report link

Settings

"jupyter.interactiveWindow.textEditor.executeSelection": true

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • High reputation (-1):
Posted by: Minxin Yu - MSFT

79530474

Date: 2025-03-24 08:10:19
Score: 0.5
Natty:
Report link

As I found out, the problem is in the postgrest settings. Namely, the application schema is not included in the settings for working through postgrest. I managed to fix this by adding the following to the compose.yaml for postgrest:

environment:
  - PGRST_DB_SCHEMAS=workspace_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, public, postgrest

where is workspace_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx - the schema of your application in the tooljet_db database

I haven't found how to make the setting work with all the new apps, so I'll have to add settings for each app. it works for:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Filler text (0.5): xxxxxxxx
  • Filler text (0): xxxxxxxxxxxx
  • Low reputation (1):
Posted by: Nazim Ua

79530469

Date: 2025-03-24 08:08:18
Score: 0.5
Natty:
Report link

Actually I've found a workaround that without performance issue. I keep the collection in memory and compare it each time there is a change.

But I cannot base this on the count of named items as some can be added/deleted.

I get all items like this

async function getNamedItems(ctx:Excel.RequestContext):Promise<NamedCell[]>{
    var namedItemsColl : NamedCell[] = [];
    const namedItems : Excel.NamedItemCollection = ctx.workbook.names.load('items');
    
    await ctx.sync();

    for (let i = 0; i < namedItems.items.length; i++) {
        var namedCell : NamedCell = new NamedCell;
        namedCell.name = namedItems.items[i].name;
        namedCell.range = namedItems.items[i].value;
        namedItemsColl.push(namedCell);
    }

    return namedItemsColl;
}

And here is how I compare :

var namedItems: NamedCell[] =[];

    await getNamedItems(ctx).then(result => namedItems = result);

for (let i = 0; i < namedItems.length; i++) {            
        if(namedCollection.find(x => x.name == namedItems[i].name) ==null)
        {
            namedcoll = new CellChangeDataClient;
            namedcoll.changeType = Excel.DataChangeType.rangeEdited;
            var nameItem : CellNameUpdate = new CellNameUpdate;
            nameItem.change='added';
            nameItem.name = namedItems[i].name;
             nameItem.range = namedItems[i].range;
            namedcoll.namedItems = nameItem;
            changesArray.push(namedcoll);
        }
    }
    var tempCell: NamedCell|undefined;

for (let i = 0; i < namedCollection.length; i++) {            
        tempCell= namedItems.find(x => x.name == namedCollection[i].name);
        if(tempCell == undefined)
        {
            namedcoll = new CellChangeDataClient;
            namedcoll.changeType = Excel.DataChangeType.rangeEdited;
            var nameItem : CellNameUpdate = new CellNameUpdate;
            nameItem.change='deleted';
            nameItem.name = namedCollection[i].name;
            namedcoll.namedItems=nameItem;
            changesArray.push(namedcoll);
        }
        else if(tempCell.range != namedCollection[i].range)
        {
            namedcoll = new CellChangeDataClient;
            namedcoll.changeType = Excel.DataChangeType.rangeEdited;
            var nameItem : CellNameUpdate = new CellNameUpdate;
            nameItem.change='updated';
            nameItem.name = tempCell.name;
            nameItem.range = tempCell.range;
            namedcoll.namedItems=nameItem;
            changesArray.push(namedcoll);
        }
    };           
Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: FlorentS

79530463

Date: 2025-03-24 08:03:18
Score: 3.5
Natty:
Report link

use wireshark

  1. find your post request
  2. See the MIME Multipart Data parser enter image description here
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: lei zhang

79530452

Date: 2025-03-24 07:56:16
Score: 0.5
Natty:
Report link

If the filename is not in the content dispostion of the file part some HTTP or REST servers don't recognize the multipart file uplaod correctly. Add the part like this:

upload.addFormData("source", source, new MediaType("application", "pdf"), "test.pdf");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TomWolk

79530450

Date: 2025-03-24 07:55:16
Score: 3
Natty:
Report link

So I tried every suggestion and I basically did dependency injection wrong and I just went and re-did everything and got it to work, I tried making a generic services for type T and having a generic database repo and I think that I did not do it properly

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

79530434

Date: 2025-03-24 07:47:14
Score: 2
Natty:
Report link

The compiler will look up for the .hpp file relative to the path of the .cpp where you're including it. So when doing

#include "bitmap_image.hpp"

check if the .hpp is in the same physical folder as the .cpp is other wise you must provide the relative path to the .hpp file in the #include"../???/" preprocessor statement.

Reasons:
  • Blacklisted phrase (1): ???
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: bynx

79530433

Date: 2025-03-24 07:47:14
Score: 2.5
Natty:
Report link

well... It turns out the problem was with me not being careful in reading the http header as @bogdanoff pointed out (thank you very much for the pointer! ^^)

I'm not aware as I use this site to convert from curl to fetch, I should disable the clean headers checkbox to make all headers imported

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @bogdanoff
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ReYuki

79530432

Date: 2025-03-24 07:46:14
Score: 2.5
Natty:
Report link

Display the last name and job title of all employees who do not have a manager.

select last_name, job_id as "job_title" from employees where manager_id=null;

is it right querry

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

79530424

Date: 2025-03-24 07:42:13
Score: 2
Natty:
Report link

You may try to manually attaching the debugger or tweaking the launchSettings.json file should resolve the "No symbols loaded" error.

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

79530418

Date: 2025-03-24 07:39:13
Score: 0.5
Natty:
Report link

Tebako attempts to locate your MSys installation by calling

which sh 

but fails with Could not find MSystem /usr/bin

Do you execute

ridk enable ucrt64

before

tebako setup ... or tebako press ...

?

ridk enable works for the current terminal session only. You have to do it every time you start new session.

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

79530416

Date: 2025-03-24 07:38:12
Score: 2.5
Natty:
Report link

For anyone who stumbles upon this now, boto may have not supported using simple python dicts to persist json (via Map type) but boto3 does as long as you use the Resource type client.

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

79530415

Date: 2025-03-24 07:38:12
Score: 2.5
Natty:
Report link

Use globalScope.launch{ } block.

call your post method within this block. It prevents running methods on main Thread.

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

79530410

Date: 2025-03-24 07:36:12
Score: 2.5
Natty:
Report link

The problem wasn't in the email format it was wrong kind of format so this
$NewContact.Email1Address = $user.'E-mail Address isn't the same as
$NewContact.Email1Address = "$($user.'E-mail Address')" (that's the correct)

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

79530408

Date: 2025-03-24 07:34:10
Score: 8 🚩
Natty:
Report link

I tried @Shant Dashjian's solution but I am getting the following exception.

"main" java.lang.reflect.InaccessibleObjectException: Unable to make field transient java.lang.Object[] java.util.ArrayList.elementData accessible: module java.base does not "opens java.util" to unnamed module @2a139a55

Here is my piece of code, could you please help me?

import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;

public class ArrayListExample {
    public static void main(String[] args) throws Exception  {
        List l = new ArrayList<>();
        l.add(1);
        System.out.println(cap(l));
        
    }
    public static int cap(List a) throws Exception {
        Field f = ArrayList.class.getDeclaredField("elementData");
        f.setAccessible(true);
        return  (( Object[] ) f.get(a)).length;
    }
}
Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): could you please help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Shant
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Aakash Sirohi