79465601

Date: 2025-02-25 06:39:44
Score: 3.5
Natty:
Report link

Could you give more details about this device - like hybrid or AAD joined? While the entries of Intune locations with old name here seems to be concerning, I still feel we need to look at DNS if it is hybrid or if there are any duplicate entries (with old name and new name) from the Intune/Entra portal that needs cleanup. You can try reenrolling the device, rather than directly cleaning from registry.

Hope that helps!

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • RegEx Blacklisted phrase (2.5): Could you give
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Prathista Ilango

79465589

Date: 2025-02-25 06:31:42
Score: 4.5
Natty:
Report link

Understanding OEM_PAID and OEM_PRIVATE Networks in Android: https://www.devgem.io/posts/understanding-oem-paid-and-oem-private-networks-in-android

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

79465582

Date: 2025-02-25 06:28:41
Score: 1
Natty:
Report link

Sometimes all you need to do is uninstall the extension, reload extensions, and reinstall. That's what worked for me.

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

79465580

Date: 2025-02-25 06:28:41
Score: 1
Natty:
Report link

consider these alternatives that might be more cost-effective:

Pre-populated Lookup Table: Create a table with common public email domains. Join your subscriptions_table with this lookup table to classify domains. This avoids AI calls altogether.

Rule-Based Classification: Develop a set of rules based on domain patterns (e.g., contains "gmail", ends with ".edu"). You can implement this using SQL within BigQuery.

Hybrid Approach: Use generative AI for a smaller subset of ambiguous domains that cannot be easily classified with rules or a lookup table.

General Best Practices

Start Small: Begin with a small sample of data to test your prompts and estimate costs. Monitor Usage: Track your token consumption closely using BigQuery's monitoring tools. Explore Alternatives: Always consider if simpler, non-AI solutions can achieve similar results. Stay Updated: Keep an eye on BigQuery's documentation for any pricing changes or new features that can help you optimize costs.

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

79465574

Date: 2025-02-25 06:26:40
Score: 2.5
Natty:
Report link

MERGE INTO employees e USING (SELECT 101 AS emp_code, 'John Doe' AS emp_name FROM dual) src ON (e.emp_code = src.emp_code) WHEN MATCHED THEN UPDATE SET e.emp_name = src.emp_name WHEN NOT MATCHED THEN INSERT (emp_id, emp_code, emp_name) VALUES (emp_seq.NEXTVAL, src.emp_code, src.emp_name);

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

79465566

Date: 2025-02-25 06:21:39
Score: 3
Natty:
Report link

In mysql config file (my.ini), commenting the "innodb_force_recovery = 1" part helped me solve the error. Make sure restart the server after making changes.

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

79465564

Date: 2025-02-25 06:20:39
Score: 0.5
Natty:
Report link

I have reviewed Zoom SDK documentation and your code, and I suspect that the meeting you are trying to join is not in active state, that might be the reason that you are not able to join.

Kindly do verify that, also if you are starting the meeting then make sure to provide zak (Zoom Access Key) token.

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

79465556

Date: 2025-02-25 06:16:38
Score: 1
Natty:
Report link

I encountered the same issue working on a Google Cloud Function to read from a BigQuery table.

I found this from google.cloud import bigquery ModuleNotFoundError: No module named ‘db_dtypes’ and they referenced using google-cloud-bigquery[all] instead of google-cloud-bigquery. I updated my requirements.txt file to use google-cloud-bigquery[all], and the error disappeared.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Adam Huffman

79465550

Date: 2025-02-25 06:12:37
Score: 3.5
Natty:
Report link

If you are using Windows then Command: for Copy: ctrl + fn + insert and ctrl + insert for past: ctrl + v

enter image description here

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

79465545

Date: 2025-02-25 06:10:37
Score: 1
Natty:
Report link

Here are coin collecting animation code. Code is animate the image in timer.

func animateCoin() {
    count = count + 1
    
    let moneyView = UIImageView(image: UIImage(named: "Your image name"))
    moneyView.frame = CGRect(x: 100, y: self.view.frame.size.height - 350, width: 100, height: 100)
    view.addSubview(moneyView)
    
    UIView.animate(withDuration: 1.0, animations: {
        moneyView.frame.origin.x = 250
        moneyView.frame.origin.y = 100
        AudioServicesPlaySystemSound(1122)
    }) { _ in }
}

func startCoinAnimation() {
    Timer.scheduledTimer(withTimeInterval: 0.1, repeats: true) { timer in
        self.animateCoin()
        if self.count == 10 {
            timer.invalidate()
            self.count = 0
        }
    }
}

Here is Demo link how animation look : https://www.youtube.com/watch?v=GR9hIpNeL-U

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: iOS Developer

79465543

Date: 2025-02-25 06:09:36
Score: 2.5
Natty:
Report link

Well, I navigated to this github link, npsql downloaded the msi file and installed it. I refreshed my browser and it worked.

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

79465534

Date: 2025-02-25 06:06:36
Score: 1
Natty:
Report link

Steps to make key.json file:

Key steps:

Access Google Cloud Console: Go to the Google Cloud Platform console.

Navigate to Service Accounts: Under "IAM & Admin", select "Service Accounts".

Select your Service Account: Choose the service account you want to access the key for.

Create a new key: Click "Keys" > "Add Key" > "Create new key".

Choose JSON format: Select "JSON" as the key type.

Download the file: Click "Create" to download the "my-key.json" file.

Uploading to Colab:

Open your Colab notebook: Access your Google Colab notebook.

Use the file upload feature: In the left sidebar, click on the folder icon to access the file explorer and select "Upload".

Select "my-key.json": Choose the downloaded "my-key.json" file from your computer.

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

79465532

Date: 2025-02-25 06:06:35
Score: 4
Natty: 4.5
Report link

Here is the curated list of providers https://github.com/learnk8s/free-kubernetes

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

79465523

Date: 2025-02-25 06:00:34
Score: 5.5
Natty:
Report link

Is there a way display weight and volume is same line.

For example: weight, volume or weight|volume

The above code helped me a lot.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Blacklisted phrase (1): helped me a lot
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: Navi

79465522

Date: 2025-02-25 05:58:33
Score: 2
Natty:
Report link

your problem most likely due to environment variables.

this is alternative answer. try to install nodejs using volta, because, volta will handle the variables. https://docs.volta.sh/guide/getting-started

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

79465521

Date: 2025-02-25 05:57:33
Score: 1
Natty:
Report link

For Class ID:

This ID must be unique across all from an issuer. This value needs to follow the format issuerID.identifier where issuerID is issued by Google and identifier is chosen by you. The unique identifier can only include alphanumeric characters, ., _, or -.

Google Wallet - Generic Class reference

For the issuerID, you can get it in your Google Pay & Wallet Console

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

79465517

Date: 2025-02-25 05:56:33
Score: 3
Natty:
Report link

After 10+ years of generating the view on the server (PERL, JSP, Servlet), I'm coming down on the side of generating the view on the client, and putting a significant amount of energy into doing this in my latest project (using JavaScript - for example - and raw JavaScript in my case - by choice); however, Stackoverflow 'rules' suggest that posts that intend to generate discussion are not suitable/appropriate for this forum..

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Russell

79465516

Date: 2025-02-25 05:56:33
Score: 0.5
Natty:
Report link

This is a common practice for cloud providers, as the exact implementation details of rate limiting are often considered internal and subject to change.

You're right, the documentation on Vertex AI quotas primarily focuses on the what (the limits themselves) rather than the how (the specific algorithm for calculating and enforcing those limits). This is a common practice for cloud providers, as the exact implementation details of rate limiting are often considered internal and subject to change.

However, you can infer some general principles based on common rate-limiting strategies and the information available:

General Rate Limiting Principles

Sliding Window Rate Limiting: It's highly probable that Vertex AI uses a sliding window algorithm rather than fixed time windows. This means that the rate limit is calculated over a moving time interval, rather than discrete, fixed intervals.   For example, instead of resetting at the top of each minute, the system might calculate the number of requests or tokens consumed over the last 60 seconds. This provides a smoother and more flexible rate-limiting mechanism.   This aligns with your second scenario, where limits move as requests are made. Token Bucket Algorithm: Another common approach is the token bucket algorithm. In this model, a "bucket" is filled with "tokens" at a certain rate. Each request consumes a token, and when the bucket is empty, requests are rejected.   This allows for bursty traffic while still enforcing an average rate limit.   Per-Project and Per-Region Limits: Vertex AI quotas are typically enforced on a per-project and per-region basis. This means that your usage in one project or region won't affect your limits in another. Quota Increases: Google Cloud provides mechanisms to request quota increases for Vertex AI. This indicates that the limits are configurable and can be adjusted based on your specific needs.   API Specific Limits: The quota limits are also API specific. Meaning that different API's within Vertex AI will have their own seperate limits.   Why the Exact Algorithm Isn't Public:

Security and Abuse Prevention: Publishing the exact details of the rate-limiting algorithm could make it easier for malicious actors to circumvent the limits. Flexibility and Optimization: Google Cloud may need to adjust the algorithm over time to optimize performance and handle changing traffic patterns. Keeping the details internal allows for greater flexibility. Complexity: The systems that manage rate limiting within a large cloud platform are very complex. Providing a full explanation of them would be very difficult. What You Can Do:

Monitor Your Usage: Use the Google Cloud Console and Cloud Monitoring to track your Vertex AI usage and stay within your quotas.   Request Quota Increases: If you anticipate exceeding your quotas, submit a quota increase request through the Google Cloud Console.   Implement Retry Logic: In your application, implement retry logic to handle rate-limiting errors (e.g., HTTP 429 Too Many Requests). Optimize Your Requests: Minimize the number and size of your requests to reduce your consumption of tokens and other resources.

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

79465513

Date: 2025-02-25 05:54:32
Score: 3
Natty:
Report link

Oh goodness.... i've been on these for about a week now.... i was scared for my job. but now it's good after i uninstalled Language Support for Java(TM) by Red Hat. Thank you sooooo much @Jinto Joseph and @antrollingsid

although mine was showing The supplied phased action failed with an exception. A problem occurred evaluating settings 'android'. assert localPropertiesFile.exists() | | | false C:\Users\Emmanuel\Documents\BD\android\local.propertiesJava(0)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • User mentioned (1): @Jinto
  • User mentioned (0): @antrollingsid
  • Low reputation (1):
Posted by: Emmanuel Sharp

79465511

Date: 2025-02-25 05:52:32
Score: 4
Natty:
Report link

I want to use conditional formatting for replacing empty or blank cells in a column to dash and highlight formatting for non empty or dashed cells

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thekrayat Suwailim

79465491

Date: 2025-02-25 05:37:28
Score: 6 🚩
Natty: 6
Report link

Perhaps you should change executor handler number from 1 to 2?

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

79465488

Date: 2025-02-25 05:33:27
Score: 1.5
Natty:
Report link

Before adding a public IP, you need to attach your VPC to the Internet Gateway router. this will create a bridge between your VPC router and the IGW router. When you add a public IP it sits outside of your VPC on the IGW router, then AWS automation will Nat this to your VPC router with your EC2 private IP. When a request is sent from internet to your EC2. the public IP ends at the IGW router then the request its forwarded to your router then to your EC2 private IP. You can see the communication on the VPC flow logs: End user public IP reaching EC2 private IP. AWS documentation does not explain all this.

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

79465487

Date: 2025-02-25 05:32:27
Score: 1.5
Natty:
Report link

After updating firebase_messaging from ^14.6.9 to ^15.0.0 and firebase_core from ^2.17.0 to ^3.0.0, the issue was resolved. There was no need to add a module interface, and the project build successfully.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Machhindra Neupane

79465486

Date: 2025-02-25 05:31:26
Score: 3
Natty:
Report link

Well, the Problem was XML Files loading and everything else stopped.

So which means there was a Code problem.

user@ubuntu:~/backend$ docker logs 5d6e26ae2686

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/

 :: Spring Boot ::                (v3.3.3)

2025-02-25 13:08:00 - Starting BackendApplication v0.0.1-SNAPSHOT using Java 17-ea with PID 1 (/app/app.jar started by root in /app)
2025-02-25 13:08:00 - The following 1 profile is active: "test"
2025-02-25 13:08:02 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2025-02-25 13:08:02 - Finished Spring Data repository scanning in 189 ms. Found 24 JPA repository interfaces.
2025-02-25 13:08:03 - Bean 'webServiceConfigSoap' of type [com.backend.backend.addons.smart_meter.config.WebServiceConfigSoap$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected into a currently created BeanPostProcessor [annotationActionEndpointMapping]? Check the corresponding BeanPostProcessor declaration and its dependencies.
2025-02-25 13:08:03 - Bean 'org.springframework.ws.config.annotation.DelegatingWsConfiguration' of type [org.springframework.ws.config.annotation.DelegatingWsConfiguration$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [annotationActionEndpointMapping] is declared through a non-static factory method on that class; consider declaring it as static instead.
2025-02-25 13:08:03 - Supporting [WS-Addressing August 2004, WS-Addressing 1.0]
2025-02-25 13:08:04 - Tomcat initialized with port 8080 (http)
2025-02-25 13:08:04 - Initializing ProtocolHandler ["http-nio-0.0.0.0-8080"]
2025-02-25 13:08:04 - Starting service [Tomcat]
2025-02-25 13:08:04 - Starting Servlet engine: [Apache Tomcat/10.1.28]
2025-02-25 13:08:04 - Initializing Spring embedded WebApplicationContext
2025-02-25 13:08:04 - Root WebApplicationContext: initialization completed in 3299 ms
2025-02-25 13:08:04 - HHH000204: Processing PersistenceUnitInfo [name: default]
2025-02-25 13:08:04 - HHH000412: Hibernate ORM core version 6.5.2.Final
2025-02-25 13:08:04 - HHH000026: Second-level cache disabled
2025-02-25 13:08:05 - No LoadTimeWeaver setup: ignoring JPA class transformer
2025-02-25 13:08:05 - HikariPool-1 - Starting...
2025-02-25 13:08:05 - HikariPool-1 - Added connection ConnectionID:1 ClientConnectionId: 128acbed-92c3-4650-b5ed-e8cd5370b87c
2025-02-25 13:08:05 - HikariPool-1 - Start completed.
2025-02-25 13:08:08 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2025-02-25 13:08:08 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2025-02-25 13:08:09 - Hibernate is in classpath; If applicable, HQL parser will be used.
2025-02-25 13:08:09 - Successfully executed sql script.
2025-02-25 13:08:10 - Resolved watchPath: /mnt/clouhes/
2025-02-25 13:08:10 - folderToWatch path: /mnt/clouhes
2025-02-25 13:08:10 - archiveFolder path: /mnt/clouhes/archived
2025-02-25 13:08:10 - Directory already exists: /mnt/clouhes
2025-02-25 13:08:10 - Directory already exists: /mnt/clouhes/archived
2025-02-25 13:08:10 - Processing existing XML files in: /mnt/clouhes
2025-02-25 13:08:10 - Found existing XML file: /mnt/clouhes/minutely2502222121_11548_0.xml
2025-02-25 13:08:23 - Processed 100 SmartMeter records so far.
2025-02-25 13:08:39 - Processed 200 SmartMeter records so far.
2025-02-25 13:09:02 - Processed 300 SmartMeter records so far.
2025-02-25 13:09:25 - Processed 400 SmartMeter records so far.
2025-02-25 13:09:46 - Processed 500 SmartMeter records so far.
2025-02-25 13:10:18 - Processed 600 SmartMeter records so far.
2025-02-25 13:11:04 - Processed 700 SmartMeter records so far.
2025-02-25 13:11:44 - Processed 800 SmartMeter records so far.
2025-02-25 13:12:27 - Processed 900 SmartMeter records so far.
2025-02-25 13:12:54 - Spent time: 4.73 minutes
Moved file to archive: /mnt/clouhes/archived/20250225/minutely2502222121_11548_0.xml
2025-02-25 13:12:54 - File archived: /mnt/clouhes/minutely2502222121_11548_0.xml
2025-02-25 13:12:54 - Found existing XML file: /mnt/clouhes/minutely2502221521_12695_0.xml
2025-02-25 13:13:00 - Processed 100 SmartMeter records so far.
2025-02-25 13:13:02 - Processed 200 SmartMeter records so far.
2025-02-25 13:13:05 - Processed 300 SmartMeter records so far.
2025-02-25 13:13:07 - Processed 400 SmartMeter records so far.
2025-02-25 13:13:12 - Processed 500 SmartMeter records so far.
2025-02-25 13:13:14 - Processed 600 SmartMeter records so far.
2025-02-25 13:13:19 - Processed 700 SmartMeter records so far.
2025-02-25 13:13:23 - Processed 800 SmartMeter records so far.
2025-02-25 13:13:27 - Processed 900 SmartMeter records so far.
2025-02-25 13:13:30 - Processed 1000 SmartMeter records so far.
2025-02-25 13:13:35 - Processed 1100 SmartMeter records so far.
2025-02-25 13:13:39 - Processed 1200 SmartMeter records so far.
2025-02-25 13:13:42 - Processed 1300 SmartMeter records so far.
2025-02-25 13:13:44 - Processed 1400 SmartMeter records so far.
2025-02-25 13:13:47 - Processed 1500 SmartMeter records so far.
2025-02-25 13:13:50 - Processed 1600 SmartMeter records so far.
2025-02-25 13:13:53 - Processed 1700 SmartMeter records so far.
2025-02-25 13:13:56 - Processed 1800 SmartMeter records so far.
2025-02-25 13:14:01 - Processed 1900 SmartMeter records so far.
2025-02-25 13:14:05 - Processed 2000 SmartMeter records so far.
2025-02-25 13:14:10 - Processed 2100 SmartMeter records so far.
2025-02-25 13:14:14 - Processed 2200 SmartMeter records so far.
2025-02-25 13:14:17 - Processed 2300 SmartMeter records so far.
2025-02-25 13:14:19 - Processed 2400 SmartMeter records so far.
2025-02-25 13:14:24 - Processed 2500 SmartMeter records so far.
2025-02-25 13:14:27 - Processed 2600 SmartMeter records so far.
2025-02-25 13:14:30 - Processed 2700 SmartMeter records so far.

It's working as intended here Loading XML Files and all.

And Here I tried netstat.

user@ubuntu:~/backend$ docker exec -it backend_app netstat -tulpn | grep 8080
user@ubuntu:~/backend$

Here I made an intentional path error to see what happens.

user@ubuntu:~/backend$ docker logs fd39d0d688ad

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/

 :: Spring Boot ::                (v3.3.3)

2025-02-25 13:19:39 - Starting BackendApplication v0.0.1-SNAPSHOT using Java 17-ea with PID 1 (/app/app.jar started by root in /app)
2025-02-25 13:19:39 - The following 1 profile is active: "test"
2025-02-25 13:19:41 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2025-02-25 13:19:41 - Finished Spring Data repository scanning in 180 ms. Found 24 JPA repository interfaces.
2025-02-25 13:19:42 - Bean 'webServiceConfigSoap' of type [com.backend.backend.addons.smart_meter.config.WebServiceConfigSoap$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected into a currently created BeanPostProcessor [annotationActionEndpointMapping]? Check the corresponding BeanPostProcessor declaration and its dependencies.
2025-02-25 13:19:42 - Bean 'org.springframework.ws.config.annotation.DelegatingWsConfiguration' of type [org.springframework.ws.config.annotation.DelegatingWsConfiguration$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [annotationActionEndpointMapping] is declared through a non-static factory method on that class; consider declaring it as static instead.
2025-02-25 13:19:42 - Supporting [WS-Addressing August 2004, WS-Addressing 1.0]
2025-02-25 13:19:43 - Tomcat initialized with port 8080 (http)
2025-02-25 13:19:43 - Initializing ProtocolHandler ["http-nio-0.0.0.0-8080"]
2025-02-25 13:19:43 - Starting service [Tomcat]
2025-02-25 13:19:43 - Starting Servlet engine: [Apache Tomcat/10.1.28]
2025-02-25 13:19:43 - Initializing Spring embedded WebApplicationContext
2025-02-25 13:19:43 - Root WebApplicationContext: initialization completed in 3314 ms
2025-02-25 13:19:43 - HHH000204: Processing PersistenceUnitInfo [name: default]
2025-02-25 13:19:43 - HHH000412: Hibernate ORM core version 6.5.2.Final
2025-02-25 13:19:43 - HHH000026: Second-level cache disabled
2025-02-25 13:19:44 - No LoadTimeWeaver setup: ignoring JPA class transformer
2025-02-25 13:19:44 - HikariPool-1 - Starting...
2025-02-25 13:19:44 - HikariPool-1 - Added connection ConnectionID:1 ClientConnectionId: facf366b-49ba-4a18-9011-3fd2f42f6787
2025-02-25 13:19:44 - HikariPool-1 - Start completed.
2025-02-25 13:19:47 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2025-02-25 13:19:48 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2025-02-25 13:19:48 - Hibernate is in classpath; If applicable, HQL parser will be used.
2025-02-25 13:19:48 - Successfully executed sql script.
2025-02-25 13:19:50 - Resolved watchPath: /mnt/clouhed/
2025-02-25 13:19:50 - folderToWatch path: /mnt/clouhed
2025-02-25 13:19:50 - archiveFolder path: /mnt/clouhed/archived
2025-02-25 13:19:50 - Processing existing XML files in: /mnt/clouhed
2025-02-25 13:19:50 - Either watch or archive folder does not exist. Skipping file processing.
2025-02-25 13:19:50 - Global AuthenticationManager configured with UserDetailsService bean with name authService
2025-02-25 13:19:51 - Starting ProtocolHandler ["http-nio-0.0.0.0-8080"]
2025-02-25 13:19:51 - Tomcat started on port 8080 (http) with context path '/'
2025-02-25 13:19:51 - Started MdmBackendApplication in 13.09 seconds (process running for 14.287)
2025-02-25 13:19:51 - Processing existing XML files in: /mnt/clouhed
2025-02-25 13:19:51 - Either watch or archive folder does not exist. Skipping file processing.
2025-02-25 13:19:51 - Given path does not exist: /mnt/clouhed

And the Port is here. Assigned.

user@ubuntu:~/mdm-backend$ docker exec -it backend_app netstat -tulpn | grep 8080
tcp        0      0 :::8080                 :::*                    LISTEN      1/java
user@ubuntu:~/mdm-backend$

So, The Problem was Backend was dropping everything else while loading or parsing XML files. I think. So, I am talking to the Developers to fix this error.

And Last thing what to do with the Question? Do I delete it or something?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Star

79465483

Date: 2025-02-25 05:28:26
Score: 1
Natty:
Report link

Had this issue and driven me crazy, this is pretty much stupidity of NetSuite error messages.. you never know what to do.. For myself it was needed to change header from SuiteScruipt 2.x to 2.1

Hope this helps someone..

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

79465475

Date: 2025-02-25 05:23:24
Score: 0.5
Natty:
Report link

use .toLocaleString() you will find more about it on w3 schools but it is quite efficient when you want to do number formatting you can use us for seamless conversion ....however regexp is also a good approach here you can read about it

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

79465471

Date: 2025-02-25 05:21:24
Score: 2
Natty:
Report link

There are two types of image compression techniques Lossy and Lossless. Lossy Technique will remove the the details of the image permanently and can't be reversed which means the decompressed image will not be identical to the original image. Whereas Lossless will compress the image without affecting the quality of the image, allowing the original image to be fully restore after decompression.

JPEG Bitmap.CompressFormat.JPEG is always a Lossy compression, which means some details are discarded. If you want to compress the image and retrieve it in the same form without any loss in quality try using PNG Bitmap.CompressFormat.PNG or WEBP Lossless Bitmap.CompressFormat.WEBP_LOSSLESS instead

for reference:- Does BitmapFactory.decodeFile() file decompress the JPEG image when decoding it?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Rishav Mukherjee

79465470

Date: 2025-02-25 05:20:24
Score: 1
Natty:
Report link

I'm maintainer of JupyterLab extension called Package Manager. It provides GUI for managing packages. The code for extension is available at https://github.com/mljar/package-manager

You can list all packages with versions: list packages in Jupyter

You can filter packages by name, delete or add a new feature in the manager. You can read more about the list feature in Jupyter in the article.

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

79465466

Date: 2025-02-25 05:15:23
Score: 2
Natty:
Report link

One More Possible Solution, which seems clean

  1. Open File in Visual Studio Code
  2. In bottom right corner, check for LF
  3. Click and change it to CRLF and save file

This will change file to crlf

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

79465452

Date: 2025-02-25 05:01:20
Score: 2
Natty:
Report link

Hello @Ahmad Faizan if you using livewire 3 then try this

<script>
    Livewire.hook('morph.updated', ({ component, el }) => {
        $('#select_state_update_country').select2({
           width: '100%',
        });
    })
</script>
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Ahmad
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Rupesh Gondariya

79465446

Date: 2025-02-25 04:57:19
Score: 4
Natty: 5
Report link

Yo here in 2025 and adding myself as a user worked as last comment suggested!!

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

79465437

Date: 2025-02-25 04:51:18
Score: 2.5
Natty:
Report link

Deleting the node module and restart the system works for me.

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

79465432

Date: 2025-02-25 04:47:17
Score: 2
Natty:
Report link

FIX: I absolutel detest Satanic Microsoft evil crap But I respect Stackoverflow. so if you poor souls like me are forces to work for a IT company in love with That evil company then here is finally a fin fix:

THIS IS TO DO WITH MFA Microsoft dont seem to be able to tell you that anywere But if Edge has lost its MFA auth - you need to sign in and out and Setup the MFA again. Then the rest of these satanic sharepoint folders will sync..

BUT FOR GODS SAKE move to Google if you are forced for a business that needs email and sharing stupid document crap.

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anthony Blomfield

79465428

Date: 2025-02-25 04:45:17
Score: 2.5
Natty:
Report link

After doing even more searching, I tried getting the emulator to reboot (not just saving state and shutting down), and lo and behold that worked. After the emulator restarted, it was able to make API calls over https.

Leaving this here in cause anyone else runs into the same issue.

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

79465419

Date: 2025-02-25 04:40:16
Score: 2
Natty:
Report link

If you add the scrollview and give 4 corner constraint then it will give the ambiguity error. here are steps how we fix this issue.

Step 1: Add ScrollView to the ViewController XIB or storyboard Add constraints to all four corners.

Step 2: Add a UIView inside the UIScrollview and add constraints with the scrollView to all four corners.

Step 3: Set equal width between the UIView and the scrollView. Add height to the UIView (If the height is greater than the height of the device, It automatically becomes scrollable). Now view inside scrollview have 6 constraints.

Step 4: Add the other UI whatever you want inside uiView.

Here are live demo watch: https://www.youtube.com/watch?v=nvNjBGZDf80

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hardika Vachhani

79465418

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

Downgrade to the recent working version

npm install [email protected]
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: iamJohnvesly

79465405

Date: 2025-02-25 04:29:14
Score: 1.5
Natty:
Report link

I was having the same problem. It turns out there is a low_memory parameter to BERTopic. I set low_memory = True when defining my model and that solved it for me!

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

79465404

Date: 2025-02-25 04:27:13
Score: 1
Natty:
Report link

If it doesn't HAVE to be a scatter plot, the general consensus is to just use bubble. basically, the exact same code but use bubble instead of scatter plot

sysuse auto2, clear
gen weight2 = sqrt(weight)
twoway bubble price mpg, size(weight2)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bailey

79465392

Date: 2025-02-25 04:17:11
Score: 1.5
Natty:
Report link

In VS Code you can re-arrange your Keybinding to avoid conflict of these extension functions

Ctrl Shift P > type Open Keyboard Shortcut > type Tab and change to your preference

enter image description here

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

79465373

Date: 2025-02-25 04:05:09
Score: 1.5
Natty:
Report link

Adding a series check before calling of the function variablePie() helped.

if (!Highcharts.Chart.prototype.addSeries) {
  variablePie(Highcharts);
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: abhikarsh gupta

79465360

Date: 2025-02-25 03:57:07
Score: 0.5
Natty:
Report link

I found How to pass variables into shell script : r/shortcuts and there is screenshot which suggests that you can put variables in script and it will copy/paste values automatically:

Image from answer on Reddit (author: Infamous_Pea6200):

RUN SHELL SCRIPT on MacOS

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

79465354

Date: 2025-02-25 03:53:06
Score: 1
Natty:
Report link

here's what worked for me

Yeah, this issue can be frustrating because even after updating your manifest, Google Play Console still flags the error. The problem is likely an older app bundle that’s still active on a test track, even if that track is paused. Google Play still considers it “active,” which is why you're seeing the warning.

follow the steps here: https://stackoverflow.com/a/79453095/10613082

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Elie Danhash

79465349

Date: 2025-02-25 03:49:06
Score: 2
Natty:
Report link

don't know why but i try python "C:\Python39\Scripts\cppclean" <path> and it works

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

79465347

Date: 2025-02-25 03:48:05
Score: 3.5
Natty:
Report link

Switching to the theme powerlevel10k solves my problem.

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

79465341

Date: 2025-02-25 03:45:04
Score: 2
Natty:
Report link

Turns out I needed to add a DNS resolver to AWS DNS under the server block:

server {
    resolver 169.254.169.253 valid=10s;
}

After that, the issue never happened again.

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

79465333

Date: 2025-02-25 03:38:03
Score: 2
Natty:
Report link

For the cardTitle, you may want to try and use the wideLogo. Somehow adding this hides the cardTitle. See Google Wallet Generic Pass

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

79465322

Date: 2025-02-25 03:28:02
Score: 1
Natty:
Report link

All of your code looks fine from the standpoint of not freezing up. I Put it in a playground and it works fine, I think maybe a chrome browser popup or something freezing your computer. Look for any popups in your chrome toolbar maybe. It seems like maybe an auto fill, or a passwords not secure popup.

https://playcode.io/2271645

Code seems fine though.

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

79465321

Date: 2025-02-25 03:27:02
Score: 0.5
Natty:
Report link
public Mono<ResponseEntity<Mono<Void>>> noContentMethod()
 {
  return Mono.just(ResponseEntity.status(HttpStatus.CREATED)
         .body(<your service call which returns Mono<Void>))
 }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: wherath

79465318

Date: 2025-02-25 03:25:01
Score: 0.5
Natty:
Report link

All Object-Oriented Languages (i.e. Java, C#, etc.) that connect to a queue manager require 'inquire' privileges on the queue manager and 'inquire' privileges on any queues that are opened by the application.

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

79465311

Date: 2025-02-25 03:16:59
Score: 2.5
Natty:
Report link

bull shit!! Stack overflow!!

bull shit!! Stack overflow!!

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

79465305

Date: 2025-02-25 03:09:58
Score: 4
Natty:
Report link

How to get where set time out in 30 seconds

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Zongbin Tu

79465296

Date: 2025-02-25 02:58:56
Score: 2
Natty:
Report link

bindingApp chef and I don't know what I was thinking for the first one I thought it was the b part 〽️ and I think it was just a bit more than I don't know what I was doing with you 😞😞 I don't know what I mean and I have no idea what I was doing with the b and I have a lot of work in it and it was just me and you were in the office and we were going on it to chist to wazifit to chist to the first one I had in the tree and it was a red lion yy

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

79465280

Date: 2025-02-25 02:48:54
Score: 0.5
Natty:
Report link

Error 403 means - Permission Denied

This error means your application is trying to access the Gemini Pro Vision API, but it doesn't have the necessary permissions. The "ACCESS_TOKEN_SCOPE_INSUFFICIENT" message specifically indicates that the service account being used lacks the required scopes (permissions)

Try below to resolve:

Authenticate your Streamlit Cloud application with GCP is to use a service account:

Create a Service Account:

Go to the Google Cloud Console. Navigate to "IAM & Admin" -> "Service Accounts." Click "Create Service Account." Give your service account a descriptive name (e.g., "streamlit-gemini-vision"). Grant the service account the "Vertex AI User" role (or a more specific role if you prefer). This role provides the necessary permissions to use the Gemini Pro Vision API. Click "Continue" and then "Done." Create a Service Account Key:

Find the service account you just created in the list. Click the three dots (Actions) and select "Manage Keys." Click "Add Key" -> "Create New Key." Choose "JSON" as the key type. Click "Create." This will download a JSON file containing the service account's credentials. Keep this file secure! Store the Key as a Streamlit Secret:

Go to your Streamlit Cloud application's dashboard. Click the three dots (Settings) and select "Secrets." Copy the entire contents of the downloaded JSON key file. In the Streamlit Secrets section, create a new secret with the name GOOGLE_CREDENTIALS (or any name you prefer). Paste the JSON content into the value field. Click "Add."

Modify Your Streamlit Application:

In your Python code, you need to load the credentials from the Streamlit secret and use them to authenticate with the Gemini Pro Vision API. Use the google-auth library to load the credentials.

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

79465277

Date: 2025-02-25 02:43:52
Score: 9.5 🚩
Natty:
Report link

I want answers too. Have you solved it now?

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • RegEx Blacklisted phrase (1.5): solved it now?
  • RegEx Blacklisted phrase (1): I want
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: suli

79465274

Date: 2025-02-25 02:40:52
Score: 0.5
Natty:
Report link

Keystore#load expects the value of password to be an empty character array (i.e., new char[0]) when the PKCS12 file uses no password.

It is unclear from the documentation what the purpose of passing null as the value of password is.

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

79465263

Date: 2025-02-25 02:31:50
Score: 2
Natty:
Report link

i am working on the same ,what i am looking is do we need to parse the formdata when retrieving it

    const submitForm = (event: React.FormEvent) => {
    event?.preventDefault();
//without parsing showing me [Spread types may only be created from object 
 types.ts(2698)
]
    const prevFormData = JSON.parse(localStorage.getItem("templateFormData"));
// but after parsing it showing this erro [Argument of type 'string | null' is not assignable to parameter of type 'string'.
  Type 'null' is not assignable to type 'string'.ts(2345)]
    const updatedFormData = {
      ...prevFormData,
      headerColor,
      primaryColor,
      textColor,
      logo,
      fileName,
    };
    
  };

how to use the formData again?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: ashish singh Negi

79465248

Date: 2025-02-25 02:17:48
Score: 1
Natty:
Report link

The reason you're getting the fake worker and the warning is because you're importing pdf.worker.min.js in your HTML file. What you should be doing instead is setting

GlobalWorkerOptions.workerSrc = './pdf.worker.min.js'

as kca notes. But also remove the HTML script import.

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

79465244

Date: 2025-02-25 02:14:47
Score: 1
Natty:
Report link

To see a cumulative sum of the user story points in a new column, you may add a roll-up column of Sum of Story Points in your team's Backlogs view.

Here’s an example of how the cumulative sum would appear:

roll-up

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

79465233

Date: 2025-02-25 02:04:45
Score: 4.5
Natty: 5
Report link

Thanks for your contribution.

I have tried to add password to an xlsx successfully. However, there are some problems when adding password to xls/csv excel files.

May I know if the msoffcrypto can support xls/csv?

Thanks. Ricky

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: R.Chung

79465227

Date: 2025-02-25 01:56:44
Score: 1.5
Natty:
Report link

change the query code from

results = collection.query(query_embeddings=[query_embedding], n_results=1)

to

results = collection.query(query_embeddings=[query_embedding], n_results=1, include=["embeddings"])

would fix the problem

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

79465224

Date: 2025-02-25 01:53:43
Score: 1
Natty:
Report link

The correct way of doing it according to the docs is

---
if(notFound) {
   return Astro.rewrite("/404");
}
---
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Carlos Dubón

79465210

Date: 2025-02-25 01:39:41
Score: 1
Natty:
Report link

You can achieve this by utilizing the tasks available through the JFrog - Azure DevOps Marketplace Extension.

JFrogTasks

Please note that these tasks are part of a third-party extension, so they will need to be installed before they can be used in your pipelines, as they are not included among the built-in tasks provided by Azure DevOps.

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

79465206

Date: 2025-02-25 01:36:40
Score: 2
Natty:
Report link

Inputs: A1, A0 ┌──────────────┐ A1 ─────────► MAND (A1, A1, 0) ───► S2 └──────────────┘

              ┌──────────────┐
 A0 ─────────► MAND (A0, A0, 0) ───► S0
              └──────────────┘

              ┌──────────────┐
 A0 ─────────► MAND (A0, 0, 0) ───► A0'
              └──────────────┘

              ┌──────────────────────┐
 A1, A0' ───► MAND (A1, A0', 0) ───► S1
              └──────────────────────┘

              ┌──────────────┐
 A1, A0 ────► MAND (A1, A0, 0) ───► S3
              └──────────────┘
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (1.5):
  • Filler text (0.5): ──────────────
  • Filler text (0): ─────────
  • Filler text (0): ──────────────
  • Low reputation (1):
Posted by: Ezekiel Muema

79465199

Date: 2025-02-25 01:30:39
Score: 4
Natty:
Report link

Is that a known issue - that with the flex consumption plan you can't deploy from github actions to azure? (my local machine is windows).

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is that a
  • Low reputation (1):
Posted by: jm007

79465185

Date: 2025-02-25 01:17:36
Score: 3
Natty:
Report link

If using NVIDIA GPUs, just head to the NVIDIA Developer site to check the suitable CUDA version for your GPU (https://developer.nvidia.com/cuda-gpus), install the right CUDA version. After that, just follow the installation instructions and you'll be good for training models using GPU.

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

79465183

Date: 2025-02-25 01:16:35
Score: 1.5
Natty:
Report link
from turtle import Turtle, Screen

timmy_the_turtle = Turtle()
for _ in range(4):
    timmy_the_turtle.forward(180)
    timmy_the_turtle.left(90)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marc Ngefacbright

79465178

Date: 2025-02-25 01:09:34
Score: 4.5
Natty:
Report link

what you need to install

This worked. You can get it from

https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170

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

79465171

Date: 2025-02-25 01:02:32
Score: 1.5
Natty:
Report link

For the sake of completeness there's ruby-toolbox/Rails_Class_Diagrams and besides rails-erd it mentions railroady which looks abandoned, but still works now (at least with rails 8 and graphviz 12)

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

79465166

Date: 2025-02-25 01:00:32
Score: 2
Natty:
Report link

110010 110010 110001 1100001 1100101 1110010 101110 1000001 1110010 1100011 1101000 1101001 1110110 1100101 111101 101000 110010 110010 110010 110001 1100001 1100101 1110010 111101 1100010 1100010 1100010 1100001 111101 110001 111000 110111 110001 111000 110111 110001 111000 110111 110001 111101 1101 1010 100000 101000 1000001 111101 110010 110110 101110 101110 110000 110001 101001 1001 1001001 110111 1001001 110111 1001001 110111 1101 1010 101000 1000001 111101 110010 110110 101110 101110 110001 101001 1001 1001001 1010100 1001001 1010100 1001001 1010100 1101 1010 101000 1000001 111101 110000 110001 101001 1001 1010010 110111 1010010 110111 1010010 110111 1101 1010 101000 1000001 111101 110001 101001 1001 1010010 1000111 1010010 1000111 1010010 1000111 1101 1010 101000 1000001 111101 110000 101001 1001 1010011 1001000 1010011 1001000 1010011 1001000 110010 1101 1010 101000 1000001 111101 110001 101100 100000 1000001 111101 110010 110111 101001 1001 1000101 1101 1010 101000 1000001 111101 110000 101100 100000 1000001 111101 110010 110110 101001 1001 1000110 1101 1010 1000011 1110010 1100101 1100001 1110100 1100101 111010 1110000 1110010 1101111 1100111 1110010 1100001 1101101 1100001 111101 100000 1100010 1100010 1100010 1100001 111101 11100010 10000110 10010001 11100010 10000110 10010011 1001 11100010 10000110 10010001 11100010 10000110 10010011 1101 1010 101000 1000001 111101 110001 101001 1001 1010010 1000111 1010010 1000111 1010010 1000111 1000001 1101 1010 101000 1000001 111101 110010 110110 101110 101110 110000 110001 101001 1001 1001001 110111 1001001 110111 1001001 110111 110001 1101 1010 101000 1000001 111101 110000 110001 101001 1001 1010010 110111 1010010 110111 1010010 110111 110001 1101 1010 101000 1000001 111101 110000 101001 1001 1010011 1001000 1010011 1001000 1010011 1001000 1000010 1101 1010 101000 1000001 111101 110010 110110 101110 101110 110001 101001 1001 1001001 1010100 1001001 1010100 1001001 1010100 1011010 1101 1010 101000 1000001 111101 110001 101100 100000 1000001 111101 110010 110111 101001 1001 1011001 1101 1010 101000 1000001 111101 110000 101100 100000 1000001 111101 110010 110110 101001 1001 1011010 1101 1010 100011 110111 1101 1010 110001 111000 110111 110001 111000 110111 110001 111000 110111 110001 111101 111000 110011 110101 110011 110111 110100 110110 110110 110011 101001 1101 1010

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Steven Cano rios

79465160

Date: 2025-02-25 00:55:31
Score: 1
Natty:
Report link
#include <stdio.h>
#include <unistd.h>

/*buff_size can vary depending on the buffer you want to write*/

int main(void){
    var[] = "Customized Error String\n";
    buff_size = 1024;

    write(1,var, buff_size);
    return (0);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Obed Adu-Gyamfi

79465157

Date: 2025-02-25 00:55:31
Score: 5
Natty:
Report link

Please see the image below. Stackoverflow is not allowing to put a short question with the image.

ALB HSTS attribute

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

79465150

Date: 2025-02-25 00:50:30
Score: 1.5
Natty:
Report link

My first answer wasn't as reliable as I'd like. "Ren" could error out in a few build scenarios which are not terribly unlikely. So the following is a bullet-proof fix.

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
    <PropertyGroup>
        <AssemblyName>Foo</AssemblyName>
    </PropertyGroup>
    <ItemGroup>
        <Content Include="LICENSE" CopyToOutputDirectory="Always" />
    </ItemGroup>

    <Target Name="RmLicense" AfterTargets="Clean" Condition=" '$(OutDir)' != '' ">
        <Delete ContinueOnError="false"
            Files="$(OutDir)\$(AssemblyName).License.txt"
        />
    </Target>
    <Target Name="MvLicense" AfterTargets="Build" Condition=" '$(OutDir)' != '' ">
        <Move ContinueOnError="false"
            SourceFiles="$(OutDir)\LICENSE"
            DestinationFiles="$(OutDir)\$(AssemblyName).License.txt"
        />
    </Target>
</Project>

There are two build tasks, one which executes after a Clean operation, and the other after a Build operation. During the clean operation the renamed output file (if present) is deleted. It is during the build operation that we rename the output file. Note there is a condition. I don't fully understand why, but during the build process there is a time when the $(OutDir) is empty, and no such file will be found. Now we can't just blindly ignore errors (ContinueOnError="true") because during normal operation we want to know if there is a problem here; a missing file or inability to rename the file is an exceptional condition which should correctly break the build. So we skip the operation in the event the $(OutDir) is empty but otherwise perform our work.

I've tried this in multiple projects and it works just fine, so I'm very happy with this. Many thanks to @JonathanDodds for pointing me in the correct direction.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @JonathanDodds
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Timothy Bruce

79465149

Date: 2025-02-25 00:49:29
Score: 1.5
Natty:
Report link

Modeling: A rope bends relatively easy about its two transverse axes whereas it is much stiffer to twisting along the rope. One way to speed simulation is for each rigid body to be connected to its neighbor by a 2 degree-of-freedom UniversalJoint (with appropriate stiffness and damping) so the highly-stiff twist is not a degree of freedom.

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

79465140

Date: 2025-02-25 00:45:28
Score: 4
Natty:
Report link

No longer a warning, an error now.

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

79465114

Date: 2025-02-25 00:20:24
Score: 3
Natty:
Report link

ChatGPT is actually pretty good at this if you ask it to help you format a JSON file, you can tell it things like

"I want all of the brackets {} and [] to be on their own lines for readability"

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: jeff curley

79465101

Date: 2025-02-25 00:09:22
Score: 1.5
Natty:
Report link

I was faced with the same problem and implemented RawRepresentable support, as described in @Evman's answer and it worked fine for me for about a year. But then I was getting warnings/errors about adding protocol support for both a type and protocol that were outside my control. see my question on apple's dev forums: https://developer.apple.com/forums/thread/774437

I ended up creating a structure that contains my dictionary. This met my need of the being usable with the @AppStorage modifier.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • User mentioned (1): @Evman's
  • User mentioned (0): @AppStorage
  • Low reputation (1):
Posted by: zespri

79465098

Date: 2025-02-25 00:07:22
Score: 0.5
Natty:
Report link

GitHub Enterprise is completely walled from GitHub.com (try to use your username/password from one to login to the other - it will fail).

Additionally relevant is that they aren't always identical from a technical standpoint. Updates and API changes roll out on different timelines, there are some API differences, etc. This would obviously cause problems if you were trying to access one via the API for the other.

Lastly, you have a higher rate limit on your companies Github because they have vetted you and trust you for access to their stuff. They also know who you are and have an employment relationship with you - i.e. if you decide to maliciously use these limits you will get disciplined or fired. GitHub as no such relationship with you and is tasked with managing access to the assets of 3rd parties on GitHub.com, not just their own. I see no reason to expect that your company would somehow be able to grant you higher limits on GitHub.com unless you work for Microsoft or a partner.

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

79465083

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

My thanks to all who responded. The solution turned out to be quite simple. I replaced the 2 'convert' commands at the end with this one.

convert $1 -alpha set -virtual-pixel transparent -distort Perspective "$exp" -background $pxl -| xv -
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user985675

79465071

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

I've gotten around this for now by implementing the guidance on this reddit thread. Basically, I refactored all the logic from the task into a service object, and then the Rake task becomes a single line call that I leave untested. It's probably a better architectural solution, but my OCD doesn't like leaving the task untested, even if it's just a single line, because it's production critical. Oh well.

It still doesn't really answer when/why/how the rakefile runs when running the test suite, but not a single file of tests, why the rake tasks loaded in the rakefile don't persist and need to be re-loaded (but apparently constant definitions do persist), how to load a task in tests without incurring this warning, and why this popped up in Rails 8.0 but was silent in Rails 7.

Anyways, I'll leave this answer as not accepted for a good long time in case someone else has insight on the core questions.

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

79465069

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

I worked around it in python using GDAL Driver. If you want to export it as a file. I'm not sure it'll work as variable in node.js, but there it is: let rows = await con.all(COPY (SELECT geometry FROM duckdata LIMIT 10) TO 'my.json' WITH (FORMAT GDAL, DRIVER 'GeoJSON'));

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

79465061

Date: 2025-02-24 23:40:16
Score: 2
Natty:
Report link

In my case, this was caused by my forgetting to call preventDefault on form submission.

I haven't dug into to understand exactly why this manifested as an AuthRetryableFetchError, but leaving this here in case it can save someone else some time diagnosing.

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

79465060

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

change in the file NewCommand.php where you can find it at C:\Users**\AppData\Roaming\Composer\vendor\laravel\installer\src

from $name = mb_rtrim($input->getArgument('name'), '/\'); into $name = rtrim($input->getArgument('name'), '/\');

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

79465058

Date: 2025-02-24 23:37:16
Score: 2.5
Natty:
Report link

you can eject expo for using bare workflow (custom devclient) which will allow you to use all packages which use native module like react-native-pdf or react-native-pdf-renderer. You can find how to do it in expo documentation.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Peniel M'bailly

79465054

Date: 2025-02-24 23:36:15
Score: 2
Natty:
Report link

I just now had a similar problem. Removing the post_status parameter from the wp_query arguments solved this for me.

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

79465053

Date: 2025-02-24 23:35:15
Score: 2
Natty:
Report link

2025 update, deno compile supports --include which lets you include arbitrary files into the bundle and access them via Deno.readTextFile(import.mega.dirname + "/myfile.html);

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

79465052

Date: 2025-02-24 23:35:15
Score: 3
Natty:
Report link

You can read into some pre-allocated buffer through archive_read_open_memory.

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

79465048

Date: 2025-02-24 23:31:14
Score: 3.5
Natty:
Report link

Change the second “name” to number i had same problem

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

79465031

Date: 2025-02-24 23:21:13
Score: 1
Natty:
Report link
function flatObject(obj, prefix = '') {
    let result = {};

    Object.entries(obj).map(([key, value]) => {
        let recursionResponse = {};
        const nextPrefix = prefix ? `${prefix}.${key}` : key;

        if (value && typeof value === 'object') {
            if (Array.isArray(value)) {
                recursionResponse = flatObject(Object.assign({}, value), nextPrefix);
            }

            if (value instanceof Set) {
                recursionResponse = flatObject(Object.assign({}, Array.from(value)), nextPrefix);
            }
            
            if (value instanceof Map) { 
                recursionResponse = flatObject(Object.fromEntries(Array.from(value)), nextPrefix);
            }
            
            if (value.constructor === Object) {
                recursionResponse = flatObject(value, nextPrefix);
            }

            result = Object.assign(result, recursionResponse);

        } else {
            result[nextPrefix] = value;
        }
    });

    return result;
}
Reasons:
  • RegEx Blacklisted phrase (1.5): fix ?
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andrii Halychanivskyi

79465025

Date: 2025-02-24 23:17:12
Score: 1
Natty:
Report link

Use HTMLHeading elements instead of Markdown.

Given the following GitLab Flavored Markdown (GLFM):


 <h2>Table of Contents</h2>

The HTMLHeading element `<h2>` will not appear in GLFM's \[TOC\].

[TOC]

## Visible Heading 2 appears in the \[TOC\].

### Visible Heading 3 also appears in the \[TOC\].

<h4>This HTMLHeading element will _not_ appear in the \[TOC\].</h4>

<h4>This HTMLHeading element will _not_ appear in the \[TOC\], either.</h4>

### Visible Heading will appear.

Gitlab will render:

Rendeded GLFM with HTML Headings excluded

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

79465013

Date: 2025-02-24 23:07:09
Score: 1
Natty:
Report link

Make a __init__.py file inside the directory so Python will treat that directory as a package
(that __init__.py can be empty)

P.S: run the code anyway if you still had any import error and look if it fixed or not

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

79465012

Date: 2025-02-24 23:07:09
Score: 1
Natty:
Report link

After updating the Dependency of material the issue was resolved. Below is the latest Dependency which i have used

implementation 'com.google.android.material:material:1.12.0'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vinay shetty

79465011

Date: 2025-02-24 23:07:09
Score: 4
Natty:
Report link

CC BY-SA 2025.2.24.23038

I AM THAT I AM

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

79465010

Date: 2025-02-24 23:06:09
Score: 1
Natty:
Report link

The main difference is that Server Components render all of your HTML on the server, so when someone visits your page, the post data is already in the delivered HTML. That makes it more SEO-friendly because search engines can see the full content right away.

On the other hand, Client Components fetch data in the browser once the page is loaded, which can delay when crawlers get the actual post content (though modern crawlers can often handle JavaScript).

When to use each approach?

Server Components (SSR): If your content can be pre-rendered and SEO is important. The server handles data fetching and returns ready-to-index HTML.

Client Components: If you need to fetch data based on user interactions or real-time updates. This approach is more flexible for dynamic or highly interactive applications, but you may sacrifice some immediate SEO benefits.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Jairo Py

79465006

Date: 2025-02-24 23:03:08
Score: 4.5
Natty:
Report link

It's disappointing that for 5 days no one even tried to help me solve the problem. A total disappointment.

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maki Wien

79465004

Date: 2025-02-24 23:02:08
Score: 1.5
Natty:
Report link

Wajeeh Hasan, could you please expand on your last statement:

Last, Do a API call and save that data into this _person.

I was able to create the model, add the scoped service and inject into the parent component, but when I inject into child component the value is null.

This is the command I used to set the variable in the parent component. _studentpass.studentId = Convert.ToString(studentId);

I used the following in the child component, and it was null. studentId = _studentpass.studentId

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

79464997

Date: 2025-02-24 22:59:07
Score: 0.5
Natty:
Report link

I spent all week looking for the answer to pre-filling hidden fields in Google Forms, and found the answer in another post.

Here's how to do it

The link will look similar to this: https://docs.google.com/forms/d/e/<your form id>/viewform?usp=pp_url&entry.798192315=Foo1&entry.798192331=Foo2

In this example, entry.798192315 relates to the first field, and entry.798192331 relates to the second field.

Replace the values of Foo1 and Foo2 with the values you want to inject as hidden fields, as shown below (I've used UserID and ResponseID).

https://docs.google.com/forms/d/e/<your form id>/viewform?usp=pp_url&entry.798192315=MyUserID&entry.798192331=ThisResponseID

Finally, you need to add &pageHistory=0,1,2 to the end of the URL, this indicates that the form will have 3 sections.

https://docs.google.com/forms/d/e/<your form id>/viewform?usp=pp_url&entry.798192315=MyUserID&entry.798192331=ThisResponseID&pageHistory=0,1,2

Now when the user fills the form and clicks submit, the hidden field data will be stored in the form response.

I spent all week looking for the answer to pre-filling hidden fields in Google Forms, and found the answer here: https://stackoverflow.com/a/79299369/29738588

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Stewart Collins

79464996

Date: 2025-02-24 22:58:06
Score: 7
Natty: 8.5
Report link

Can someone please tell me what any of this means and what's it is for? Because I'm not doing these things to my phone I don't even know what they are???? I just found them in my files and would like answers.... Please

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (2.5): Can someone please tell me what
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can someone please
  • Low reputation (1):
Posted by: Fuk Luv

79464990

Date: 2025-02-24 22:54:05
Score: 2.5
Natty:
Report link

To fix this error, you need to run the wmpiexec file, which is located in the bin folder. In the application window that will open, specify the path to the executable file (.exe) you want to run and click execute.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Єгор Антоненко

79464987

Date: 2025-02-24 22:52:05
Score: 2
Natty:
Report link

I had the same issue. You have to update your Java to version >=21.

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

79464984

Date: 2025-02-24 22:52:05
Score: 3
Natty:
Report link

Based on public documentation for creating custom training jobs there are 4 main points we must follow for us to successfully run a custom training job.

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