79543013

Date: 2025-03-29 09:05:19
Score: 0.5
Natty:
Report link

The BIT(1) field type is attractive as it only allows 0 or 1 in the database itself. The solutions that suggest TINYINT will allow values from -127 to 128 or 0 to 255 if unsigned. Indeed Laravel struggles with the data truncation error if sending a 0 or a 1, but, it's not Laravel's fault. The fault lies in PHP's PDO bindings. Here's a discussion about it.

PDOstatement (MySQL): inserting value 0 into a bit(1) field results in 1 written in table

Sadly the recommendation is to use TINYINT for the field value to avoid the data truncation error. I want to be clear for the sake of others reading about this that of course you can write code to handle this (converting true/false to 0, 1, etc.), but that will never protect you from someone making changes directly to the database. You should assume that is a possibility and design your schema accordingly, which is why the BIT(1) field type is attractive.

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

79543004

Date: 2025-03-29 09:03:18
Score: 1.5
Natty:
Report link

JS fiddle link has the following resources:

TweenMax.min.js ScrollMagic.min.js animation.gsap.min.js

These are not linked in your codepen. Add them to your codepen to get it working.

I already added the magicscroll.io library to my project and it did not work.

Make sure the html has the necessary links to cdn scripts as above.

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

79542984

Date: 2025-03-29 08:49:15
Score: 2
Natty:
Report link

You shared to few details, so the answer would be general:

When you login, you rely on web or api guard to retrieve user details, including database in your case.

At the same time jobs are running without authentication in background. Job just don't have authenticated user and his details.

How to solve?

I don't know your business logic, so hard to say which to choose

At glance, I would pass database name directly to job:

class MyCustomJob 
{
public function __construct(..., protected string $dbName = 'defaultDB') {}

/** other logic */

PS:

php artisan queue:all Xcompany is something custom I guess, so there could be also some problems

Reasons:
  • Blacklisted phrase (1): How to solve
  • Whitelisted phrase (-1): in your case
  • RegEx Blacklisted phrase (1.5): How to solve?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Oleg

79542979

Date: 2025-03-29 08:47:15
Score: 4
Natty:
Report link

There is now a solution for this:

@unnest_wider macro in TidierData.jl

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @unnest_wider
  • Low reputation (1):
Posted by: skuss

79542975

Date: 2025-03-29 08:40:13
Score: 3.5
Natty:
Report link

You can simply change the ports from the eclipse. Double click on the server under server tab change the port and run your application again.

enter image description here

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

79542965

Date: 2025-03-29 08:32:12
Score: 1
Natty:
Report link

See https://gstreamer.freedesktop.org/documentation/rtsp/rtspsrc.html?gi-language=c#rtspsrc:add-reference-timestamp-meta

You can set this option and rtspsrc will attach a meta object to buffers from where you can pull the NTP time from. This data will only be available once a NTP information has been send in stream (usually RTP SR).

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

79542956

Date: 2025-03-29 08:26:10
Score: 4.5
Natty:
Report link

Thank you, yes it worked with @soruce

@source '../components/src/';

thank you so much :D

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @soruce
  • User mentioned (0): @source
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Christian Munk-Nissen

79542948

Date: 2025-03-29 08:16:08
Score: 1
Natty:
Report link

In the end I just decided to go with the easiest and for me most flexible option by just ignoring the namespaces in the XML.

public class IgnoreNamespaceXmlTextReader : XmlTextReader
{
    public IgnoreNamespaceXmlTextReader(TextReader reader) : base(reader) { }

    public override string NamespaceURI => string.Empty; // Ignores all namespaces
}

Not saying its the best solution, but for my use I think I can afford to do this.

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

79542934

Date: 2025-03-29 08:01:05
Score: 3
Natty:
Report link

I'm also Looking for the depandency for fetching review in Java 17 but still not able to find this library. And but i have fetched Review using RestTemplate

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

79542930

Date: 2025-03-29 07:56:04
Score: 0.5
Natty:
Report link

This problem mainly occurs for countries or IP addresses that are subject to software sanctions by Google and its subsidiaries.

First, obtain a VPN with an IP address that is not under sanctions. Then delete the "android/.gradle" folder from the project and also delete the main ".gradle" folder of the system from the following location:

Windows: C:\Users\YOURUSERNAME\.gradle

Linux: ~/.gradle/

After that, connect the VPN and run the project.

It will take a few minutes for Gradle to download, and the project will run correctly.

Good luck!

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

79542924

Date: 2025-03-29 07:49:02
Score: 1.5
Natty:
Report link

Great answer by pennyloafers at Godot forum - with "Own World 3D" and "Transparent BG" (and a directional light to shine at the hotbar cubes) it works now:

enter image description here

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

79542923

Date: 2025-03-29 07:48:02
Score: 1
Natty:
Report link

The code is too messy and I don't know where your professor taught JAVA, so I can't give you a clear answer, but I can give you an answer in the abstract.

MenuAdditional problems 1.

Use data structures: use arraylist 2.
Use arraylist as Instance Variable ( I think you're learning this level by Korean university standards, so you should be fine.)

Additional advice

- Avoid hard coding
( Your code seems too inefficient to me. You don't use object orientation in an object-oriented language).

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

79542921

Date: 2025-03-29 07:47:02
Score: 1
Natty:
Report link

This is caused by cheerio version 1.0.0-rc.3.

So, please run the below command:

npm install [email protected]

Then, go to package.json folder and in dependencies remove the ^ symbol from

"cheerio": "^1.0.0-rc.12"

Delete your node_modules folder, package-lock.json file and run below command:

npm install
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abhishek Gaonkar

79542907

Date: 2025-03-29 07:34:00
Score: 3
Natty:
Report link

If anyone is still looking for a way to generate the "Music User Token" and not the Developer Token, I have created a simple solution [here](https://shivz3232.github.io/apple-music-user-token-generator/)

[Code](https://github.com/Shivz3232/apple-music-user-token-generator)

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shivu D.G

79542906

Date: 2025-03-29 07:31:59
Score: 5.5
Natty:
Report link

any one can help how to get

&bg=
Reasons:
  • RegEx Blacklisted phrase (3): any one can help
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SalahEddine Sarkaf

79542904

Date: 2025-03-29 07:30:58
Score: 0.5
Natty:
Report link

In lean4, you use:

import Mathlib.Algebra.BigOperators.Basic

open Finset BigOperators

/- rest of code -/
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Luiz Martins

79542902

Date: 2025-03-29 07:27:58
Score: 1.5
Natty:
Report link

I had a similar problem. For me, it was caused by the incorrect functioning of the Owl Carousel with a display: flex block. When I changed this property on the parent block, the Owl Carousel started working correctly.

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

79542901

Date: 2025-03-29 07:24:57
Score: 3.5
Natty:
Report link

Check this video by Andrej Karpathy: video here

He has explained much of the autograd engine in as simple language as possible

He breaks down the computation graph and autograd concepts in the a miniature version called "micrograd", making it super easy to grasp how it all works under the hood. Trust me, after watching this, you’ll have a solid understanding of everything!"

Reasons:
  • Blacklisted phrase (1): Check this video
  • Blacklisted phrase (1): this video
  • No code block (0.5):
  • Low reputation (1):
Posted by: stark-user

79542894

Date: 2025-03-29 07:14:56
Score: 1.5
Natty:
Report link

if you are using flutter sdk : 3.24.5 or fimilar then just downgrade geolocator_android version then it automatically solved

geolocator_android: 4.6.1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Test Tester

79542893

Date: 2025-03-29 07:13:55
Score: 3
Natty:
Report link

Its in the nightly build on that same site

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

79542889

Date: 2025-03-29 07:10:54
Score: 5.5
Natty: 4.5
Report link

Hello is anyone help me to remove this type of page https://gyanyogbreath.com/?attachment_id=6924 from my website this page showing 404 error in aherf so my website health goes down i have website relate to 200 Hour Yoga Teacher Training in India

Reasons:
  • Blacklisted phrase (1): help me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chris

79542886

Date: 2025-03-29 07:00:52
Score: 1
Natty:
Report link

Fixed it by

var pageUrl = encodeURIComponent(window.location.pathname);
var timestamp = new Date().getTime();  // Unique value for each request
var apiUrl = `https://xyz-01.azurewebsites.net/api/HttpTrigger1?website=newwebsite&page=${pageUrl}&t=${timestamp}`;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: aquib.qureshi

79542876

Date: 2025-03-29 06:43:50
Score: 2
Natty:
Report link

Fixed in latest beta version of GitHub Desktop 3.4.19-beta1 as GIT_CONFIG_KEY_0 and similar params were removed in favor of GIT_CONFIG_PARAMETERS in #20198

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

79542875

Date: 2025-03-29 06:41:50
Score: 2
Natty:
Report link

"Record" is an abstract class from java.lang package introduced by java17 version and which is used to generate record-objects.

syntax of Record:

Record Record_name(paralist)

{

//record body

}

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

79542872

Date: 2025-03-29 06:37:49
Score: 3
Natty:
Report link

Some more information is required to understand the issue fully. I think you also need to add Background Mode capability. Try adding it.

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

79542865

Date: 2025-03-29 06:27:47
Score: 3
Natty:
Report link

could you please try with transports: ['websocket'] on the client side?

this.IO = io(AppConstants.socketBaseUrl, {
  query: { token:"blablabla...." },
  path: '/socket.io',
  withCredentials: true,
  transports: ['websocket'],
  secure: true,
});

refer Socketio Id Unknown

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Hulunlante Worku

79542855

Date: 2025-03-29 06:08:44
Score: 3
Natty:
Report link

I will solve this problem ! Dear Microsoft,

But need money. say your offer!

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

79542854

Date: 2025-03-29 06:07:44
Score: 1
Natty:
Report link

Everything work great In your bg script:

importScripts('/js/libs/socket.io.min.js')

socket = io(SERVER_URL, {
    transports: ['websocket'],
    path: '/socket.io',
    timeout: 10000
  });

  socket.on('connect', () => {
    console.log('[BG] ✅ Socket.IO
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wonchoe

79542839

Date: 2025-03-29 05:43:40
Score: 4
Natty:
Report link

Finally, After one week I found it:
https://npmjs.com/package/expo-alarm-module
It wasn't updated, So here my little update (You must use it manualy):
https://github.com/hamednazeri/expo-alarm-module/tree/expo-alarm-module-3

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

79542835

Date: 2025-03-29 05:40:39
Score: 2
Natty:
Report link

How to compress video to target size by Python?

c here my answer m8 and ur probs will be gone forever.

dont change res man... just set qality to the filezize u need.

https://github.com/TommyPerfect/videocomopress/releases/latest

here, this solves ur probs 4eva

import videoCommand
sizeWished = 50
timeMax = 599.0
videoCommand.doDropped(sizeWished, timeMax)
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TNP

79542834

Date: 2025-03-29 05:40:39
Score: 3
Natty:
Report link

NSE India frequently updates its anti-scraping mechanisms, which can include blocking IPs that make repeated requests

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

79542813

Date: 2025-03-29 05:11:34
Score: 1
Natty:
Report link

I think you need to make your viewModel object either @StateObject or @ObservedObject first and then inside your viewModel class make the property @Published to get updates on View.

struct InAppPurchaseView: View {
    @StateObject var viewModel = InAppPurchaseViewModel()
        var body: some View {
            VStack {
                if !viewModel.currentProgressInfo.isEmpty {
                    Text(viewModel.currentProgressInfo)
                } else {
                    Button() //and a few more buttons that calls actions to the viewModel
                }
            }
        }
}

@Observable
class InAppPurchaseViewModel: TransactionObserverDelegate {
    @Published var currentProgressInfo = ""
    //here is a lot of code that update currentProgressInfo, sometimes it is "" and sometimes "You did sth here".
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @StateObject
  • User mentioned (0): @ObservedObject
  • User mentioned (0): @Published
  • Low reputation (1):
Posted by: user30099620

79542812

Date: 2025-03-29 05:10:34
Score: 3.5
Natty:
Report link

I have a answer of your question, I have some steps for download and learn how to use this tool

1. Click on this link and know about this tool 2. If you have known about this to scroll down and click on download button and download this directly

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Aditya

79542810

Date: 2025-03-29 05:10:34
Score: 2
Natty:
Report link

https://docs.cdp.coinbase.com/api/docs/welcome

Make sure you can authenticate first. Then when you retrieve your JWT token it must be used for your next API call, and every different endpoint you call must be authenticated with a new JWT token.

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

79542804

Date: 2025-03-29 04:58:32
Score: 5.5
Natty:
Report link

Facing same issue, I have added Map also and option to start and stop location tracking but still apple is rejecting it.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Facing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ganesh Mohane

79542792

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

The Reason For This

  1. Folder with index.tsx

    When you create a folder (like admin) and include an index.tsx, the fs-routes engine uses that file to generate the route for /admin. Any additional files in that folder (such as users.tsx) aren’t automatically turned into child routes.

  2. Dot Notation Files

    The automatic route generation relies on a naming convention where the dot separates the parent and child route names. For example, admin.users.tsx clearly indicates a child route under /admin.

The Solutions For The Issue

  1. Use Dot Notation

    Move the users.tsx file out of the admin folder and rename it to admin.users.tsx. This will automatically generate the desired /admin/users route.

  2. Manually Nest Routes

    If you prefer to keep the folder structure for organization, you can keep your files in the folder and then manually define the nested routes inside admin/index.tsx by importing and rendering them as children routes.

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

79542786

Date: 2025-03-29 04:24:26
Score: 1
Natty:
Report link

Make sure the RabbitMQ server is up and ready to listen.

If the RabbitMQ server is in a docker container make sure the application container can communicate with the RabbitMQ container, also if you're using a docker compose file, keep in mind that RabbitMQ takes time to warm up even if you set the config "depends on" it'll still take time. if this is the case, try to run the RabbitMQ server separately make sure it is completely up and listening and see if the connection is established in the application.

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

79542781

Date: 2025-03-29 04:18:25
Score: 0.5
Natty:
Report link

Following up on David Koloski's answer, it appears that in the latest Win11 updates, Microsoft has given feature #41799415 the highest priority (so-called ImageOverride priority) -- meaning that they think it's such a fabulous bit of code that it shouldn't be disabled, even though it still causes the same problems as ever.

So after a lot of hunting around, I came up with another way to disable the feature, since ViveTool wasn't doing the trick any more: In regedit, I navigated to HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellHandwriting, and then set the EnabledState value to 0x0. After a reboot, the crashing stopped. The cost is that my computer is no longer able to accept handwriting with a pen in EDIT controls - a pretty negligible cost for most users I'd say...

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

79542780

Date: 2025-03-29 04:16:24
Score: 1
Natty:
Report link

sysctl vm.max_map_count

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What it
  • Low reputation (1):
Posted by: Dixit Kumar

79542778

Date: 2025-03-29 04:10:23
Score: 0.5
Natty:
Report link

To have the scrollview go under the nav bar, use a ZStack like this, with the nav bar after the scrollview.

ZStack(alignment: .top) {
    ScrollView {
        Spacer(minLength: 40)
        LazyVGrid{}
    }
    CustomNavBar(navTitle: "Newsfeed").background(.thinMaterial)
}
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: James Grote

79542774

Date: 2025-03-29 03:59:21
Score: 4.5
Natty:
Report link

Go to https://plaid.com/docs/link/returning-user/. Look under "Testing in Sandbox" and use the seeded phone numbers.

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

79542770

Date: 2025-03-29 03:52:20
Score: 2
Natty:
Report link

I've fixed the bug. It works now!
The reason that caused the functions didn't work is that the IWDG INT in stm32h5xx_it.c was commented.

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

79542746

Date: 2025-03-29 03:19:15
Score: 0.5
Natty:
Report link

For some reason defining the port as a string allow the plugin to work.

  reporter:
    grph:
      factory:
        class: org.apache.flink.metrics.graphite.GraphiteReporterFactory
      host: localhost3
      port: '2001'
      protocol: TCP
      interval: 10 SECONDS
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: german1410

79542735

Date: 2025-03-29 03:07:13
Score: 3.5
Natty:
Report link

From January 2025 now it is possible to install gdb directly on your mac

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

79542726

Date: 2025-03-29 02:48:10
Score: 3.5
Natty:
Report link

in 2021 later version,You can disable this function in Advanced Settings.

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

79542724

Date: 2025-03-29 02:44:10
Score: 1
Natty:
Report link

The issue is that your data has double quotes, causing it to be read as single column.

One way to fix this issue in VS code is :

pd.read_csv('INPUT.csv',delimiter=",")

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

79542706

Date: 2025-03-29 02:24:06
Score: 0.5
Natty:
Report link

After a good night of sleep and jumping back into trial and error today, I seem to have narrowed down what was causing the issue.

The solution appears to be a combination of removing .listRowBackground(Color.clear) from the ItemCellView.

List(viewModel.enabledCategories, id: \.self, selection: $selections.selectedCategory) { category in            
    ItemCellView(title: category.name, image: category.image)
        .listRowSeparator(.hidden)
        .listRowInsets(.init(top: 0, leading: 0, bottom: 0, trailing: 0))
//      .listRowBackground(Color.clear)
        .background(.clear)
        .buttonStyle(.plain)
}

Then also removing .listStyle(.plain) from the CustomListStyle modifier.

struct CustomListStyle: ViewModifier {
    func body(content: Content) -> some View {
        content
//            .listStyle(.plain)
            .listRowSpacing(10)
            .scrollIndicators(.hidden)
            .scrollContentBackground(.hidden)
            .background(Color.clear)
            .padding(.top, 10)
            .buttonStyle(.plain)
    }
}

Thank you to those who have contributed to this post, I appreciate the time and effort put in. Happy to have found a solution to this so I may move on and stop obsessing about it.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Taylor Anderson

79542705

Date: 2025-03-29 02:23:06
Score: 3
Natty:
Report link

Have you submitted your skill for review? I believe it is only available to the developer until approved by Amazon., I haven't gotten to that point on my skill, to know if there is more to it.

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

79542701

Date: 2025-03-29 02:20:05
Score: 4.5
Natty:
Report link
     M&A_gross_2025 M&A_net_2025 AMP_2025
cat                                      
code                                     
L32D           30.0         18.0     25.0
UBEO           70.0         47.0     50.0

How do I drop the row 'cat'?
Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30098819

79542698

Date: 2025-03-29 02:17:04
Score: 0.5
Natty:
Report link

I just fixed the same issue in my device, looks like the UTF-8 world wide support needs to be enabled.

Windows 11 fix: Go to Settings -> Time & Language -> Language & region -> Administrative language settings -> Change system locale -> Check the box for Beta: Use Unicode UTF-8 for worldwide language support -> click OK -> Restart your computer.

Works for me, good luck.

Reasons:
  • Whitelisted phrase (-1): Works for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Angel Nuñez

79542695

Date: 2025-03-29 02:11:03
Score: 3.5
Natty:
Report link

This is vert usefull for my e-discovery Solution software ShareArchiver.
Thanks for providing the information

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Share Archiver

79542689

Date: 2025-03-29 02:07:02
Score: 2.5
Natty:
Report link

not sure if you still need this but for the sake of others,

public static final Block BLOCK_NAME = registerBlock("block_name", settings -> new ExperienceDroppingBlock(UniformIntProvider.create(2,5), settings), Block.Settings.create().strength(3f).requiresTool()); // the 2,5 is the range of exp

Its shown on the Fabric github examples at this link on line 95, but using stair blocks

Reasons:
  • Blacklisted phrase (1): this link
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mai

79542688

Date: 2025-03-29 02:05:02
Score: 1.5
Natty:
Report link

Press Ctrl+Shift+L to open the prompt tab, then click the Show Chat History icon:

Show Chat History

Open any chat from the list:

Chat History List

Find Restore checkpoint button for every approved prompt within the opened chat:

Restore checkpoint

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

79542679

Date: 2025-03-29 01:52:00
Score: 0.5
Natty:
Report link

There are several issues with your current implementation:

Missing animation logic - You're creating static points but not animating them. You need to implement useFrame to create the ripple effect.

Outdated attribute syntax - Replace attachObject={['attributes','position']} with attach="attributes.position".

Camera positioning - Your camera at [100, 10, 0] is likely putting your view outside the area. Try [0, 30, 80] for a better angle.

Performance - 500×500 points (250k vertices) is extremely heavy. Start with 100×100.

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

79542675

Date: 2025-03-29 01:42:59
Score: 0.5
Natty:
Report link

For the sample shown try:

=B4*SUMPRODUCT((Sheet2!F$4:F$8=A4)*(Sheet2!H$3:J$3=C$2),Sheet2!H$4:J$8)

Assuming that the actual data may be extended through December modify the formula to read:

=B4*SUMPRODUCT((Sheet2!F$4:F$8=A4)*(Sheet2!H$3:S$3=C$2),Sheet2!H$4:S$8)

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

79542670

Date: 2025-03-29 01:34:57
Score: 1
Natty:
Report link

U need to add this to android/build.gradle

subprojects {
    afterEvaluate { project ->
        if (project.hasProperty('android')) {
            project.android {
                if (namespace == null) {
                    namespace project.group
                }
            }
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BodyKh

79542665

Date: 2025-03-29 01:28:56
Score: 3
Natty:
Report link

I open Google insights (page speed) and it tells where and what the issue is with CLS
https://pagespeed.web.dev/

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

79542663

Date: 2025-03-29 01:28:56
Score: 1
Natty:
Report link
const [isMessageVisible, setIsMessageVisible] = useState(true);


            setTimeout(() => {
                setIsMessageVisible(false);
            }, 8000);

<div className={`my-5 bg-gray-200 p-4 rounded-md text-black transition duration-700 ${isMessageVisible ? 'opacity-100' : 'opacity-0'} `}>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Thiago Humble

79542650

Date: 2025-03-29 01:15:53
Score: 6 🚩
Natty: 6
Report link

Are you able to make the lan* recieve any packet? Or ping one port to another?

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: Abc

79542640

Date: 2025-03-29 00:59:50
Score: 10.5 🚩
Natty: 6
Report link

I am trying to write an app which java desktop application uses Mapforge.. I have issue that market is moving slightly at difftzoom level. Can anyone please help me to solve this issue??

Is there any better option instead of Mapforge, I have to use offline map which can matk POIs as per user selection.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (3): please help me to
  • RegEx Blacklisted phrase (1.5): solve this issue??
  • RegEx Blacklisted phrase (0.5): anyone please help
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: chetan soni

79542636

Date: 2025-03-29 00:54:48
Score: 0.5
Natty:
Report link

I believe this is because you're passing collect: 'eventually_due' when creating the AccountLink. You should pass collect: 'currently_due' instead, or use collection_options.fields: 'currently_due' since Stripe's API reference doc mentions that the collect parameter is deprecated.

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

79542625

Date: 2025-03-29 00:43:47
Score: 2
Natty:
Report link
\begin{alignat*}{9}
      d &= \frac{1}{1 + 0.2316419x} &\quad&& a_1 &= 0.31938153   &\quad&& a_2 &= -0.356563782 \\
    a_3 &= 1.781477937              &\quad&& a_4 &= -1.821255978 &\quad&& a_5 &= 1.330274429
\end{alignat*}

enter image description here

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

79542620

Date: 2025-03-29 00:37:45
Score: 3
Natty:
Report link

Tools -> Options -> Environment -> Fonts and Colors -> Refactoring Suggestion

I changed both the foreground and background from "Default" to "Automatic" and I can at least see what I'm typing now. No idea how to turn it off entirely.

Before: before

After: enter image description here

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

79542613

Date: 2025-03-29 00:28:43
Score: 0.5
Natty:
Report link

What you need is https://github.com/mrts/django-admin-list-filter-dropdown. Although it's a bit old, I have it working in the latest Django LTS 4.2 without problems.

A more advanced module with more options that I also tested with Django 4.2 is https://github.com/saxix/django-adminfilters.

Both modules are published in PyPI so easy to install.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you
  • High reputation (-1):
Posted by: Mariano Ruiz

79542592

Date: 2025-03-29 00:00:39
Score: 3.5
Natty:
Report link

Run the installer in an administrator cmd. It will work then.

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

79542586

Date: 2025-03-28 23:50:37
Score: 2.5
Natty:
Report link

A bit late answer but for the fellow developers who would look for the answer in the futur, the reason is missing your .gitignore on the parent directory where the .vs is located so make sure to have a .gitignore file with the ".vs" inside

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

79542581

Date: 2025-03-28 23:38:35
Score: 2.5
Natty:
Report link

You need to click the "chart view" (as opposed to table view) button on the top left of your MLFlow home screen. See the attached screenshot

That will get you what you are looking for

enter image description here

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

79542578

Date: 2025-03-28 23:34:34
Score: 0.5
Natty:
Report link

after a lot of research I finally solved the problem.

my project setup is django for the backend and react for the frontend

in the frontend where you import axios for my case in the authslice.js include the line just before the rest of your axios

axios.defaults.withCredentials = true;

then in your settings.py include the following settings

CORS_ALLOWED_ORIGINS = [
    REACT_APP_URL,  
]

CORS_ALLOW_CREDENTIALS = True

SESSION_COOKIE_SECURE = True   # True is essential for same-site none to work
SESSION_COOKIE_SAMESITE = 'None' 

thanks! I hope you solve your issue

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wilson Zabron

79542573

Date: 2025-03-28 23:28:33
Score: 3
Natty:
Report link

I was able to figure out why this was occurring. Turns out all our target iceberg tables were created without partitions. Once we added the table partitions, this error went away.

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

79542571

Date: 2025-03-28 23:25:32
Score: 2
Natty:
Report link

Registry access need Administrator level !

So you Need to start Powershell as Admin !

look at this post for how to make an elevation thrugh a bach file.

A little late, but it could help somebody !

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

79542544

Date: 2025-03-28 22:57:26
Score: 5
Natty:
Report link

I have the resource loaded in the project properties.

enter image description here

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

79542542

Date: 2025-03-28 22:53:25
Score: 3.5
Natty:
Report link

OP is running the tests with through VSCode jest runner not cli. Known bug. https://github.com/jest-community/vscode-jest/issues/276

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

79542524

Date: 2025-03-28 22:40:23
Score: 0.5
Natty:
Report link

I modified your code and it will count multiple colors on the Active Range or Highlighted Cells based on the code given.

function countColoredCells() {
  const activeRange = SpreadsheetApp.getActiveRange();
  const activeSheet = activeRange.getSheet();
  const formula = activeRange.getA1Notation()
  const range = activeSheet.getRange(formula);
  const bg = range.getBackgrounds();

  let count = {};
  for (let i = 0; i < bg.length; i++) {
    bg[i].forEach(x => {
      const findObject = Object.keys(count).find((y) => { return y == x });
      count[x] = findObject ? count[x] + 1 : 1;
    })
  }
  console.log(count);
  return count
}

Sample Colored Cells:

Note: Image is for visibility only.

Sample Color Input

Sample Output:

{ '#00ffff': 3,
  '#0000ff': 4,
  '#ff0000': 7,
  '#ffff00': 6,
  '#00ff00': 1 }

Reference:

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

79542511

Date: 2025-03-28 22:28:20
Score: 4
Natty:
Report link

Line order really matter here!

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

79542504

Date: 2025-03-28 22:22:19
Score: 4.5
Natty:
Report link

Me sucedio algo similar cuando actualice de primeng 16 a primeng 17. Solución:

Eliminar los módulos obsoletos de app.module.ts, en mi caso: ❌ CodeHighlighterModule ❌ LightboxModule ❌ GMapModule

Despues recompilar con limpieza: ng cache clean rm -rf node_modules package-lock.json npm install

Tambien revisa en tu archivo "angular.json" la propiedad "aot: true", puedes colocarla en "false" compilar el proyecto con "ng-serve", despues puedes volver a la configuracion inicial "aot: true".

Reasons:
  • Blacklisted phrase (3): Solución
  • No code block (0.5):
  • Low reputation (1):
Posted by: Samuel Hernandez

79542503

Date: 2025-03-28 22:22:19
Score: 0.5
Natty:
Report link

I just made a library myself which shows notifications using built-in Linux/MacOS/Windows notification managers: OsNotifications. You can just install it via NuGet:

dotnet add package OsNotifications

To display a notification, just add the following code:

// Necessary for MacOS (you can change it to your own identifier)
Notifications.BundleIdentifier = "com.apple.finder";
// The first argument is necessary, the last two are not. The third argument is only used on MacOS
Notifications.ShowNotification("notification-title", "message", "extra-info");

Currently it only shows very basic notifications, but it works on the three OSes mentioned before. I will continue developing it according to the people's needs, so if anyone sees this and is missing a specific feature, just create an issue on GitHub.

Since you just want to do this in Windows though (your question is 5 years old, but I'll say it anyway), you can look at my code in the WindowsNotification project (part of the same library on GitHub).

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DemonExposer

79542498

Date: 2025-03-28 22:17:18
Score: 0.5
Natty:
Report link

Just so you know for someone thats searching on this topic if you use a custom Cursor thats added with P/Invoke using IntPtr you must use the DestroyCursor(yourCustomCursorHandle) Import function from "user32" when you are finished using the custom cursor and maybe want to reinitialize it later if you want to free the unmanaged resources:


[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]  // Destroy the unmanaged IntPtr cursor
private static extern bool DestroyCursor(IntPtr hCursor);

This will free the resources from the custom .ani or .cur file.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): user32
  • Low reputation (0.5):
Posted by: Yordan Voyvode

79542496

Date: 2025-03-28 22:15:17
Score: 0.5
Natty:
Report link

For anyone who is still wondering how to do this, I just made a library myself which shows notifications using built-in Linux/MacOS/Windows notification managers: OsNotifications. You can just install it via NuGet:

dotnet add package OsNotifications

To display a notification, just add the following code:

// Necessary for MacOS (you can change it to your own identifier)
Notifications.BundleIdentifier = "com.apple.finder";
// The first argument is necessary, the last two are not. The third argument is only used on MacOS
Notifications.ShowNotification("notification-title", "message", "extra-info");

Currently it only shows very basic notifications, but it works on the three OSes mentioned before. I will continue developing it according to the people's needs, so if anyone sees this and is missing a specific feature, just create an issue on GitHub.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DemonExposer

79542495

Date: 2025-03-28 22:15:17
Score: 4
Natty: 4.5
Report link

new link with the hints (old link was 404):

https://tomickigrzegorz.github.io/leaflet-examples/#13.svg-markers-width-legends

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Xavier de Pedro AjBCN

79542492

Date: 2025-03-28 22:15:17
Score: 3
Natty:
Report link

One option would be to hide the original field and create a custom field with the desired configuration.

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

79542489

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

Technically, you can't use Webpack Module Federation with a Flutter web build, as Flutter doesn't generate Webpack modules; it just gives static files like index.html, main.dart.js, and assets. This means Webpack cannot consume it like a regular remote module. The easiest and most dependable integration of Flutter as a micro front in Angular would be building the Flutter web app on its own and rendering it through an iframe inside an Angular routed component. You can still make use of postMessage for two-way communication between the Angular side and the Flutter side; this works well for most use cases. The separation is quite clean, and, honestly, to force Webpack federation with Flutter is just signing up for some headaches.

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

79542487

Date: 2025-03-28 22:10:16
Score: 3.5
Natty:
Report link

As I already recommended you in this answer https://stackoverflow.com/a/79541099/14605475, avoid to use all() if you are filtering by conditions or fetching with first().

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Raffaele Bertani

79542486

Date: 2025-03-28 22:10:16
Score: 3.5
Natty:
Report link

You have the solution here with config_path (you need to add the authentication information to the header in the hosts.toml file under your config directory) :

https://github.com/containerd/containerd/discussions/6468#discussioncomment-3713664

https://github.com/containerd/containerd/discussions/6468

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: José DE SOUSA

79542484

Date: 2025-03-28 22:09:15
Score: 1
Natty:
Report link

When I see this error on a dashboard and I open up the console, I also see an error in the console. I believe, but can't prove, that AWS deployed some bad javascript which is throwing an exception.

I have read elsewhere that it can be a permissions issue, but if it was, "...working with the same code earlier...", I assume that permissions aren't the problem.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When I
Posted by: Gregory Ledray

79542478

Date: 2025-03-28 21:59:13
Score: 6 🚩
Natty: 4.5
Report link

What is wrong with you people?!!

Someone close to me has been hacking me for more then 10 years and you guys are telling them how to do it or 'fix' their FAKE @$$ software whenever i get 1 step ahead you people tell them how to rehack me. Im a grown ass woman, i dont work for anyone and i dont go to school, and their hacking me claiming to be my 'administrator' so they can control and configure any device, account, phone number email etc. i get or make. How about u be part of the solution and not the problem!!!

HOW DO I GET THE FAKE SOFTWARE OFF MY PERSONAL, YES PERSONAL PHONE?! THIS HAS LITERALLY DESTROYED MY FAMILY, MARRIAGE AND NOT TO MENTION, MY REAL BUSINESS, I HAD! BECAUSE IM NOT ALLOWED TO HAVE AN ADMIN ACCOUNT. SO NOW THEY ALSO CONTROL MY DOMAIN AND BUSINESS ACCOUNTS/PLATFORMS AND HAVE ME AS AN EMPLOYEE OF MY OWNNNN BUSINESS!!!

So PLEASEEEE how do i get the Kernel off my phone and running scripts when i have no access to MY accounts they took over and locked me out of?!

Reasons:
  • Blacklisted phrase (1): HOW DO I
  • Blacklisted phrase (1): how do i
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (1):
Posted by: Stay at home Mom

79542476

Date: 2025-03-28 21:57:13
Score: 0.5
Natty:
Report link

There is not. However, I just made a library myself which shows notifications using built-in Linux/MacOS/Windows notification managers: OsNotifications. You can just install it via NuGet:

dotnet add package OsNotifications

To display a notification, just add the following code:

// Necessary for MacOS (you can change it to your own identifier)
Notifications.BundleIdentifier = "com.apple.finder";
// The first argument is necessary, the last two are not. The third argument is only used on MacOS
Notifications.ShowNotification("notification-title", "message", "extra-info");

Currently it only shows very basic notifications, but it works on the three OSes mentioned before. I will continue developing it according to the people's needs, so if anyone sees this and is missing a specific feature, just create an issue on GitHub.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DemonExposer

79542472

Date: 2025-03-28 21:53:12
Score: 0.5
Natty:
Report link

In case anyone reading this wants to do this cross-platform, I just made a library myself (for .NET 8 though) which shows notifications using built-in Linux/MacOS/Windows notification managers: OsNotifications. You can just install it via NuGet:

dotnet add package OsNotifications

To display a notification, just add the following code:

// Necessary for MacOS (you can change it to your own identifier)
Notifications.BundleIdentifier = "com.apple.finder";
// The first argument is necessary, the last two are not. The third argument is only used on MacOS
Notifications.ShowNotification("notification-title", "message", "extra-info");

Currently it only shows very basic notifications, but it works on the three OSes mentioned before. I will continue developing it according to the people's needs, so if anyone sees this and is missing a specific feature, just create an issue on GitHub.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DemonExposer

79542467

Date: 2025-03-28 21:48:11
Score: 0.5
Natty:
Report link

In case anyone reading this wants to do this cross-platform, I just made a library myself which shows notifications using built-in Linux/MacOS/Windows notification managers: OsNotifications. You can just install it via NuGet:

dotnet add package OsNotifications

To display a notification, just add the following code:

// Necessary for MacOS (you can change it to your own identifier)
Notifications.BundleIdentifier = "com.apple.finder";
// The first argument is necessary, the last two are not. The third argument is only used on MacOS
Notifications.ShowNotification("notification-title", "message", "extra-info");

Currently it only shows very basic notifications, but it works on the three OSes mentioned before. I will continue developing it according to the people's needs, so if anyone sees this and is missing a specific feature, just create an issue on GitHub.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DemonExposer

79542465

Date: 2025-03-28 21:47:11
Score: 0.5
Natty:
Report link

In case anyone reading this wants to do this cross-platform, I just made a library myself which shows notifications using built-in Linux/MacOS/Windows notification managers: OsNotifications. You can just install it via NuGet:

dotnet add package OsNotifications

To display a notification, just add the following code:

// Necessary for MacOS (you can change it to your own identifier)
Notifications.BundleIdentifier = "com.apple.finder";
// The first argument is necessary, the last two are not. The third argument is only used on MacOS
Notifications.ShowNotification("notification-title", "message", "extra-info");

Currently it only shows very basic notifications, but it works on the three OSes mentioned before. I will continue developing it according to the people's needs, so if anyone sees this and is missing a specific feature, just create an issue on GitHub.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DemonExposer

79542462

Date: 2025-03-28 21:46:10
Score: 1
Natty:
Report link

If you want to use a Windows application instead of a command-line utility, I use the free open-source utility Notepad++ to replace strings in huge text files. It made 15907 string replacements in MUCH less than a second in a 312 megabyte file. Notepad++ is not limited to text files.

Fwiw, I first tried the PowerShell approach, but Notepad++ was vastly faster and easier for my needs.

https://notepad-plus-plus.org/

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

79542461

Date: 2025-03-28 21:45:10
Score: 2
Natty:
Report link

I also had a similar problem (im a begginer so this could be wrong). I needed to remove bullets that were out of the screen, i tried deleting them, but it didn't work, so right before deleting them, i removed them form the list that had the bullets, and it worked!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Felipe Dorea

79542452

Date: 2025-03-28 21:41:09
Score: 1.5
Natty:
Report link

My copy command was close but off
COPY --from=publish /src/Client/.nuget/packages/microsoft.aspnetcore.components.quickgrid/9.0.1/staticwebassets /app/wwwroot/_content/Microsoft.AspNetCore.Components.QuickGrid/ did the trick.

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

79542445

Date: 2025-03-28 21:37:09
Score: 3
Natty:
Report link

@JuanR's answer is correct, but the downside of calling the new method directly is that it only works on Android T+. Use BundleCompat.getParcelable(Bundle, String, Class) from androidx.core to get the best available behavior regardless of Android version.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @JuanR's
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: star4z

79542441

Date: 2025-03-28 21:35:08
Score: 1
Natty:
Report link

I managed to find some Objective-C code to do it with, which can be P/Invoked through C#. Since it seems no-one has made a cross-platform library for this before (which I do find quite weird), I just made a library myself which shows notifications using built-in Linux/MacOS/Windows notification managers: OsNotifications. You can just install it via NuGet:

dotnet add package OsNotifications

Currently it only shows very basic notifications, but it works on the three OSes mentioned before. I will continue developing it according to the people's needs, so if anyone sees this and is missing a specific feature, just create an issue on GitHub.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DemonExposer

79542439

Date: 2025-03-28 21:34:08
Score: 2.5
Natty:
Report link

I know this is an older question, but for me it was something in my SQL code that is ok in a SQL Editor like SSMS or Aqua Data, but SSIS doesn't like it.

SSIS reads sql code in a single line. i.e. if you comment using -- to comment, SSIS will stop the code there and not read the rest of the code. If you comment with /**/, make sure you don't have any imbedded comments with in. (This was my recent problem.) I always comment my file name and file spec at the top of my SSIS SQL Commands. I had something like:

/*------FILE NAME

COLUMN1|COLUMN2|COLUMN3

SELECT * FROM TABLE t WHERE t.NAME LIKE '%TEST%' /*TEST RECORDS*/

------*/

The embedded comment /*TEST RECORDS*/ ran fine in my Oracle Editor, but it SSIS game me this out of sync error OP listed above. Once I changed it to:

/*------FILE NAME

COLUMN1|COLUMN2|COLUMN3

SELECT * FROM TABLE t WHERE t.NAME LIKE '%TEST%' (TEST RECORDS)

------*/

it ran without error.

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: JeniNoodle

79542431

Date: 2025-03-28 21:29:06
Score: 0.5
Natty:
Report link

5 and a half year old question, but with a thousand views, so it's clear that people still need this. I made a library which shows notifications using built-in Linux/MacOS/Windows notification managers: OsNotifications. You can just install it via NuGet:

dotnet add package OsNotifications

Currently it only shows very basic notifications, but it works on the three OSes mentioned before, which is apparently something no-one has done before (at least I couldn't find anything and this question hasn't been answered in more than 5 years). I will continue developing it according to the people's needs, so if anyone sees this and is missing a specific feature, just create an issue on GitHub.

This doesn't address the tray icon thing, but I hope this is better than nothing.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DemonExposer

79542425

Date: 2025-03-28 21:25:06
Score: 1.5
Natty:
Report link

If you have Nginx, only need to use:

sudo systemctl start nginx

Try and tell us!

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

79542421

Date: 2025-03-28 21:24:05
Score: 4
Natty:
Report link

Thank you both for answering, turns out, a simple restart solved the issue. If anyone else runs into this, try restarting your system first before diving into complex fixes lol.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: trabelsi wejden

79542419

Date: 2025-03-28 21:21:04
Score: 4.5
Natty: 4
Report link

I am running Xcode 16.2 and was working with the same code (from a tutorial). My code is identical to the fixed code above except that the SwiftUI "Hello World" template now ends with the following:

#Preview {

ContentView()

}

To initialize the color, this becomes:

#Preview {

ContentView(backgroundColor: .blue)

}

When I do this, I get no errors, but the canvas fails to build and the simulator also fails to build. Why is that?

Reasons:
  • RegEx Blacklisted phrase (1): I get no error
  • RegEx Blacklisted phrase (0.5): Why is that
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: John Sorensen

79542392

Date: 2025-03-28 21:04:00
Score: 4.5
Natty:
Report link

I ended up implementing an rpy ball spring: https://github.com/RobotLocomotion/drake/compare/master...krish-suresh:drake:ball_spring which is running faster than the linearbushing+ball constraints, unsure why exactly that is the case.

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