79805750

Date: 2025-10-31 12:04:34
Score: 1
Natty:
Report link

They seem to have locked down the local storage approach to the following requirements: https://labelstud.io/guide/storage#Local-storage:~:text=Add%20these%20variables%20to%20your%20environment%20setup%3A

Alternatively, you could serve the images on a different port to ls (I don't see why changing ls port would do anything RE comments above) and paste the URL to the image in the task JSON. However, the challenge here is that it depends on your setup. For example if you're using a docker container for ls and another container for the image server, even when they're on the same network, ls can't see the images - this is the challenge I'm facing anyway.

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

79805738

Date: 2025-10-31 11:48:30
Score: 3.5
Natty:
Report link

I found that project - https://github.com/Suberbia/UltimateChatRestorer
probably it can help you somehow

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

79805733

Date: 2025-10-31 11:39:28
Score: 3.5
Natty:
Report link

Finally, Microsoft released a new version of the file fixing the situation. File was released inside KB KB5067036 of 10/28/2025.

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

79805725

Date: 2025-10-31 11:30:26
Score: 1
Natty:
Report link

Seems dynamically show or hide sidebar according to tab selection is not supported at the moment. Found this Note:

All content within every tab is computed and sent to the frontend, regardless of which tab is selected. Tabs do not currently support conditional rendering. If you have a slow-loading tab, consider using a widget like st.segmented_control to conditionally render content instead.

https://docs.streamlit.io/develop/api-reference/layout/st.tabs

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

79805719

Date: 2025-10-31 11:25:25
Score: 1
Natty:
Report link

Java isn’t missing any grammar rules. The Hungarian collation in OpenJDK follows the Unicode/CLDR standard, where accented letters (like É) are treated as secondary forms of their base letter (E). Because of this, the traditional Hungarian dictionary order (A < Á < B < C < Cs … E < É) is not applied by default.

No built-in Java Collator implements the full Hungarian dictionary alphabet.

If you need the real Hungarian dictionary order, you must use a tailored collation. For example, with ICU4J:

Collator coll = Collator.getInstance(new ULocale("hu@collation=dictionary"));

This collator follows the correct Hungarian dictionary rules, including treating E and É as separate letters.

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

79805716

Date: 2025-10-31 11:24:25
Score: 2
Natty:
Report link

Only one thing was missing :

<<this line >> import "dotenv/config";

i did npm i dotenv and added the above line

my connection was established after i ran this command : npx prisma db push

hope this information helps people looking for solutions online.

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

79805699

Date: 2025-10-31 11:13:21
Score: 3.5
Natty:
Report link

Thanks.

I do Not want to include the Page Content into the e.G Header.

just to be able to Open it from a Registered WP Navigation by adding a class to this navi in the backend.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ingozoell

79805694

Date: 2025-10-31 11:09:20
Score: 1
Natty:
Report link

it has to work , but some times on VM's it wont work,
that time you can add these simple lines which gets your work done..

    zip_content = await audio_zip.read()
    zip_buffer = io.BytesIO(zip_content)
    zip_buffer.seek(0)

do this at first,

then if file is read once and if you want to read it again them pass the same.

zip_buffer.seek(0)

before reading file, this will solve the issue..

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

79805693

Date: 2025-10-31 11:08:19
Score: 4.5
Natty:
Report link

I sent a review to Google and they seemed to fix the problem. Thanks for the help though

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: FichBickit

79805690

Date: 2025-10-31 11:06:19
Score: 2.5
Natty:
Report link

This has happened to me recently, I had to create a new virtual device and delete the old one

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

79805689

Date: 2025-10-31 11:05:18
Score: 2.5
Natty:
Report link

The element is still rendered in the document when we have the visibility set to hidden. We use `display: none` when we dont want the element to be rendered in the document.

https://developer.mozilla.org/en-US/docs/Web/CSS/visibility

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

79805688

Date: 2025-10-31 11:05:18
Score: 1.5
Natty:
Report link

To Fix the issue, you need to /etc/cron.allow

$ crontab -e
no crontab for user1 - using an empty one
crontab: no changes made to crontab
# cat /etc/cron.allow
user1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Namasivayam Chinnapillai

79805686

Date: 2025-10-31 11:02:18
Score: 0.5
Natty:
Report link

Use display:none; instead of visibility : hidden;.

#tx1, #tx2 { display:none; /*visibility : hidden;*/ }
<span id="ttt">
<span id="tp1">s<span id="tx1">P</span></span><span id="tp2">o<span id="tx2">T</span></span>
</span>

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

79805685

Date: 2025-10-31 11:00:17
Score: 0.5
Natty:
Report link

you should edit to a concise title which describes your question/issue

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

79805675

Date: 2025-10-31 10:45:14
Score: 1
Natty:
Report link

Icon="pack://siteoforigin:,,,/Resources/runtime-icon.ico"

The exception means that WPF could not load or locate theicon file when parsing the XAML.

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

79805674

Date: 2025-10-31 10:44:14
Score: 1
Natty:
Report link

For Windows services, the temporary files will likely be stored in c:\windows\systemtemp.

Older machines may possibly store these in c:\windows\temp, which would be equivalent to %TEMP% .

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Wolfgang Grinfeld

79805673

Date: 2025-10-31 10:42:13
Score: 4
Natty:
Report link

You mean "if constexpr"? https://www.learncpp.com/cpp-tutorial/constexpr-if-statements/

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Pepijn Kramer

79805663

Date: 2025-10-31 10:33:11
Score: 0.5
Natty:
Report link

What I ended up going with is adding a proc-macro = true crate to the project (which is already a bunch of crates in a trenchcoat anyway) and defining a wrapper around the macro:

// lib.rs
use proc_macro::TokenStream;

#[proc_macro]
pub fn obfuscate_from_env(input: TokenStream) -> TokenStream {
    let var_name = syn::parse_macro_input!(input as syn::LitStr).value();
    let value =
        std::env::var(&var_name).unwrap_or_else(|e| panic!("environment variable {var_name} is required: {e:?}"));

    quote::quote! {
        cryptify::encrypt_string!(#value)
    }
    .into()
}

Then I just have to call obfuscate_from_env!("NAME_VAR") and voilà!

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What I
  • Low reputation (0.5):
Posted by: Sibear Jo

79805661

Date: 2025-10-31 10:31:10
Score: 2
Natty:
Report link

This occurs because axios transforms parameters into a query string format and applies JSON serialization, which results in strings being enclosed in quotes.

Try customize the paramsSerializer in axios options

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

79805660

Date: 2025-10-31 10:31:10
Score: 2.5
Natty:
Report link

take a look into this project on GitHub. This is a fully implemented loopback and cross link virtual serial port driver for MacOS DriverKit
https://github.com/britus/VSPDriver

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

79805659

Date: 2025-10-31 10:30:10
Score: 3.5
Natty:
Report link

Sorry, found the solution myself. The event would have to be added to the user control itself, not the form code.

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

79805656

Date: 2025-10-31 10:29:10
Score: 2.5
Natty:
Report link

There are plenty of resources available on YouTube and Medium. Once you’ve completed the setup, I recommend using this website to learn more about working with Git: https://learngitbranching.js.org

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

79805654

Date: 2025-10-31 10:28:09
Score: 2
Natty:
Report link
async def upload_file(
    config_file: UploadFile = File(...),
    audio_files: list[UploadFile] = File(...)  
):

you can just use like this, no need of file: Upload

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

79805651

Date: 2025-10-31 10:24:08
Score: 2.5
Natty:
Report link

Are you sure no error message is appearing? If so, apply a divide-and-conquer approach: keep only the core functionality required for the app to run and comment out the rest. Then, reintroduce each part one by one, performing thorough testing at every step. This method will help you isolate the issue.

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

79805645

Date: 2025-10-31 10:22:08
Score: 0.5
Natty:
Report link

You are using an 4 year old version of SBCL. The current version of SBCL is 2.5.10.

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

79805644

Date: 2025-10-31 10:20:07
Score: 0.5
Natty:
Report link

You are probaby inserting invalid included segments parameter
Try this -

included_segments: ['Total Subscriptions']
Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: giorg

79805637

Date: 2025-10-31 10:14:05
Score: 2.5
Natty:
Report link

I read the documentation and fixed my problem with this solution. Thanks to @brendo234!

val headers = mutableMapOf<String, String>()
    val bundleId = //your package name // Sample: "com.sampleapp
    val referrer = "https://$bundleId"
    headers.put("Referer",referrer)
    binding.webview.loadUrl("https://www.youtube.com/embed/$videoId",headers)
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): youtube.com
  • Has code block (-0.5):
  • User mentioned (1): @brendo234
  • Low reputation (0.5):
Posted by: Yasin Ege

79805629

Date: 2025-10-31 10:05:02
Score: 2
Natty:
Report link

https://octopus.com/ not open-source, however there are Steps there.

A similar one of a Jira for deployments. https://handbook.octopus.com/getting-oriented

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

79805620

Date: 2025-10-31 10:00:00
Score: 0.5
Natty:
Report link

You should apply StandardScaler after train_test_split and fit it only on the training data. If you scale before splitting, the scaler learns the mean and standard deviation from the entire dataset — including the test set — which leaks information about unseen data and can make validation results unrealistically good. Fitting the scaler only on X_train ensures that scaling parameters reflect the same data distribution the model learns from, and applying that scaler to both X_train and X_test preserves a realistic, generalizable evaluation.

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

79805618

Date: 2025-10-31 09:55:59
Score: 0.5
Natty:
Report link
sample_dict = {"first_name": "Jane", "name_last": "Doe"}

# rename key "name_last" to "last_name"

sample_dict["last_name"] = sample_dict.pop("name_last")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Rajarshee Mitra

79805598

Date: 2025-10-31 09:40:55
Score: 1
Natty:
Report link

I wanted to look at QThread but I have read that threading is not recommended due to locks, race conditions, etc... and async is preferred. I am not very proficient in either of those though.
In any case, I was thinking of implementing a queue so that messages are stored and processed at their own rythm but if processing is too long and the queue doesn't get flushed fast enough, it will update my visuals with a delay. I would prefer to miss some messages I think.
I am thinking out loud. If anyone has dev experience on these kind of use cases please feel free to share.

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

79805595

Date: 2025-10-31 09:39:55
Score: 2.5
Natty:
Report link

On top of brendo234 as I cant comment..

Fixing with .htaccess

# Mods
<IfModule mod_headers.c>

Header always set Referrer-Policy: 'strict-origin-when-cross-origin'

</IfModule>
Reasons:
  • RegEx Blacklisted phrase (1): cant comment
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: masu

79805590

Date: 2025-10-31 09:32:53
Score: 2.5
Natty:
Report link
bcdedit /set testsigning on

enter image description here

enter image description here

reload /f
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rabbit_Drivers

79805589

Date: 2025-10-31 09:32:53
Score: 0.5
Natty:
Report link

This offical documentation answered this question:

Q: Why does this happen, and how can I fix it!?
A: When WPR puts together the .ETL trace file (WPR -stop MyTraceFile.etl ...), it finds each referenced native module, loads the module header, and reads the embedded signature of the debug information, thereby generating an "ImageId event" within the trace. Later, if WPA does not find a particular ImageId event within that trace then it cannot resolve those symbols, and it will report simply: MyModule!<Missing ImageId event>

Even if the trace was collected on a different machine, you can fix it, as long as you have access to the exact same version of that module:

...

That means generally you need pdb files corresponding to the binarys. If it is not available, you can try to generate .pdb from binary: https://github.com/rainers/cv2pdb

If this also not work, there is a way to access the original function address, with this address you can find source code line and function name in your familiar debugger:

  1. Use xperf command distributed with Windows Performance Toolkit to generate raw readable events in csv: xperf -i xxx.etl -o xxx.csv

  2. Open this csv file, search and located your interested specific event by type (eg. VirtualAlloc), timestamp or address, etc. You will get a sequence of stacks with raw function address info. The meaning of each column is shown at the top of csv.

  3. Use your debugger to get the source code corresponding to the address.

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Conor Hyde

79805587

Date: 2025-10-31 09:30:52
Score: 4.5
Natty:
Report link

Thank you for taking the time to reply @furas! I see you have seen my other post with my minimal example. Here it is for reference for others: Asynchronous listening and processing in a Pyside app

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @furas
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Antoine101

79805583

Date: 2025-10-31 09:25:51
Score: 1.5
Natty:
Report link

if the post to be edited is already published then
"edit_publish_post" else "edit_posts"

 $subscriber->add_cap('edit_published_posts')      
 $subscriber->add_cap('edit_posts');

and do logout once as it is saved in cache, sometimes wp does not update untill we login again

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

79805580

Date: 2025-10-31 09:24:50
Score: 1
Natty:
Report link

You can fix this by changing the ownership of the directory to your user.

Try running the following command in your terminal:

sudo chown -R $USER:$USER .

This command recursively changes the owner and group of the current directory (.) to your current user ($USER).

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

79805561

Date: 2025-10-31 09:07:46
Score: 6.5
Natty:
Report link

Thanks Mamta. Can you please give reference of Step 3 & 5

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can you please give
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Surodip

79805557

Date: 2025-10-31 09:00:43
Score: 4.5
Natty:
Report link

I used the function from this repository.

https://github.com/microsoft/ndis-driver-library/

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

79805554

Date: 2025-10-31 08:57:42
Score: 4.5
Natty:
Report link

https://github.com/i18next/i18next-cli/issues/83

new answer from adrai

you can install v1.19.0 to resolve this problem

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

79805553

Date: 2025-10-31 08:56:42
Score: 12
Natty: 7.5
Report link

I have the same problem. Have you been able to solve it somehow?

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1.5): solve it somehow?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: iOS Ninja

79805551

Date: 2025-10-31 08:52:40
Score: 1.5
Natty:
Report link

!jupyter lab clean - the only solution it worked for me!!

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

79805546

Date: 2025-10-31 08:37:37
Score: 0.5
Natty:
Report link

I got this from meson finds python3 binary, fails to find python3 dependency I had to install python3-devel. In my case (opensuse)

zypper in python311-devel
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Friedrich -- Слава Україні

79805538

Date: 2025-10-31 08:21:33
Score: 2
Natty:
Report link

@Mclayton why the backticks after the commas?
The Commas already work a line-breaker, adding the backticks only make everything harder.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Mclayton
  • High reputation (-1):
Posted by: sirtao

79805529

Date: 2025-10-31 08:09:30
Score: 3
Natty:
Report link

The ACK packets are constructed and sent directly by the NDIS filter driver in kernel mode, bypassing the application layer and Winsock stack entirely. All operations—including NBL allocation, payload filling, and transmission—are performed within the kernel to achieve minimal latency and maximum throughput.

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

79805524

Date: 2025-10-31 07:59:28
Score: 2
Natty:
Report link

I was facing the same problems
the problem is that visual studio 22 don't support .net 4.5 anymore so it doesn't have the 4.5 developer pack so you need to install vs 2019 because it will install the 4.5 developer pack and you can now use vs 2022 normally

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

79805519

Date: 2025-10-31 07:49:25
Score: 3
Natty:
Report link

Starting with .NET 6 the C free is callable via NativeMemory.Free(Void*), see NativeMemory.Free(Void*)

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

79805515

Date: 2025-10-31 07:44:23
Score: 2.5
Natty:
Report link

What Are Digital Marketing Services and Why Are They Important?

Digital marketing services help businesses promote their products or services online through various strategies. In today’s digital world, online visibility is crucial for growth, and that’s where DigigrowlyMedia plays a major role — providing end-to-end digital marketing solutions to help brands grow faster.

Key Digital Marketing Services Offered by DigigrowlyMedia

1. Search Engine Optimization (SEO)

SEO helps your website rank higher on Google and other search engines. DigigrowlyMedia uses proven methods like:

2. Social Media Marketing (SMM)

Social media is where your audience spends most of their time. DigigrowlyMedia creates engaging social media campaigns to:

3. Pay-Per-Click Advertising (PPC)

Want quick leads? PPC advertising drives instant traffic. Their expert team manages Google Ads and Meta Ads to:

4. Content Marketing

Content is the backbone of every digital strategy. DigigrowlyMedia crafts high-quality blogs, infographics, and videos to:

5. Email Marketing

Email remains one of the most effective ways to nurture leads. Their personalized email campaigns help businesses:

6. Website Design and Development

A good website creates a lasting impression. DigigrowlyMedia designs modern, mobile-friendly websites that:

Why Choose DigigrowlyMedia?

If you want to enhance your online presence and grow your business effectively, DigigrowlyMedia is a reliable partner for all your digital marketing needs.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What Are
  • Low reputation (1):
Posted by: digigrowlymedia

79805511

Date: 2025-10-31 07:41:22
Score: 4.5
Natty: 5
Report link

Same problem with me, I can't figure out how to do it.

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aditya Sharma

79805482

Date: 2025-10-31 07:01:12
Score: 1.5
Natty:
Report link

Try updating Windows to latest update or upgrade to newer version (Windows 11).

That's the only method that worked for me.

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

79805478

Date: 2025-10-31 06:58:11
Score: 2.5
Natty:
Report link

import React, { useState } from 'react'; import { Moon, Sun, Play, Pause } from 'lucide-react'; import { motion } from 'framer-motion';

export default function SleepApp() { const [isDark, setIsDark] = useState(true); const [isPlaying, setIsPlaying] = useState(false);

const toggleTheme = () => setIsDark(!isDark); const togglePlay = () => setIsPlaying(!isPlaying);

return ( <div className={min-h-screen flex flex-col items-center justify-center transition-all duration-500 ${isDark ? 'bg-gray-900 text-white' : 'bg-blue-100 text-gray-900'}}> <motion.h1 initial={{ opacity: 0, y: -20 }} animate={{ opacity: 1, y: 0 }} transition={{ duration: 0.6 }} className="text-4xl font-bold mb-8" > SleepWave 💤 </motion.h1>

  <motion.div
    initial={{ scale: 0.9, opacity: 0 }}
    animate={{ scale: 1, opacity: 1 }}
    className="bg-white/10 backdrop-blur-md p-8 rounded-2xl shadow-lg flex flex-col items-center"
  >
    <p className="text-lg mb-4">Som relaxante para ajudar você a dormir</p>

    <button
      onClick={togglePlay}
      className="p-4 bg-indigo-500 rounded-full shadow-md hover:bg-indigo-600 transition-all"
    >
      {isPlaying ? <Pause size={32} /> : <Play size={32} />}
    </button>

    <p className="mt-3 text-sm opacity-75">
      {isPlaying ? 'Reproduzindo som de chuva...' : 'Toque para começar a relaxar'}
    </p>
  </motion.div>

  <button
    onClick={toggleTheme}
    className="absolute top-6 right-6 p-3 rounded-full bg-white/10 hover:bg-white/20 transition-all"
  >
    {isDark ? <Sun size={24} /> : <Moon size={24} />}
  </button>

  <footer className="mt-10 opacity-60 text-sm">Feito por Maginata 🌙</footer>
</div>

); }

Reasons:
  • Blacklisted phrase (3): você
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Enzio Castro messias

79805461

Date: 2025-10-31 06:21:03
Score: 2
Natty:
Report link

The solution was to create a new iCloud key - the old one must have corrupted and no longer worked.

As soon as a new key was created it all worked instantly.

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

79805451

Date: 2025-10-31 06:14:01
Score: 0.5
Natty:
Report link

A crate version being "yanked" means that it is no longer available to use that specific version as a dependency. In this case, the numeric crate specifies that it requires the hdf5-sys crate at version "^0.3.2" as a dependency, which means that it needs a non-yanked version 0.3.n, where n is larger than or equal to 2. The hdf5-sys crate appears to have yanked all versions lower than 0.5.0, which means that crates.io cannot find a version that matches the requirement, giving you the error message.

As the numeric crate is unmaintained, the only solution you have would be to either use an earlier version of it that does not have a dependency on hdf5-sys (version 0.0.7 appears to be the latest version satisfying this), or switch to a more maintained n-dimensional vector math library, such as using ndarray with ndarray-linalg.

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

79805449

Date: 2025-10-31 06:13:00
Score: 2
Natty:
Report link

You can try this ADO extension which has a Team Insights section

Sprintreportpro

Team Insights

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ginu Raju

79805445

Date: 2025-10-31 06:08:59
Score: 3.5
Natty:
Report link

Hope the documentation is helpful:

https://github.com/microsoft/MSO-Scripts/wiki/Advanced-Symbols#missing-imageid-event

Generally you need pdb file corresponding to the binary. If it is not available, maybe you can try to generate pdf from binary:

https://github.com/rainers/cv2pdb

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

79805443

Date: 2025-10-31 06:06:59
Score: 3.5
Natty:
Report link

Thanks Bill. I have gone through your link and it will definitely help me in working with PostgreSQL. But here the scenario is to model and mimic the functionality of oracle procedure in Spring Data JPA do that it will not be hardly coupled with DB. I just connect to respective DB and process data using JPA entity models. So is it a good approach to write SQL queries in JPA/Hibernate Native queries and execute or any other way to model the procedure functionality in JPA framework.

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

79805442

Date: 2025-10-31 06:05:59
Score: 2.5
Natty:
Report link

It’s the more scalable and flexible design, especially for ERP/MES systems where new resource types or reporting needs often evolve. Centralizing makes it easier to query, audit, and extend the model later — at the cost of a bit more sync logic.

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

79805424

Date: 2025-10-31 05:28:51
Score: 3.5
Natty:
Report link

Perhaps you should try some free web tools; they might be able to help you. this url ilovepdfilovepdftoword

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

79805423

Date: 2025-10-31 05:26:50
Score: 3
Natty:
Report link

I got a mistake - i have created another function with same name on different script and used that script on same html page thats why this function will not run

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

79805419

Date: 2025-10-31 05:21:49
Score: 4
Natty:
Report link

<?xml version="1.0" encoding="UTF-8"?>

<PrintLetterBarcodeData uid="408937029261" name="Jabid" gender="M" yob="2006" co="S/O: Mohd. Kalu" house="B-1053" loc="Sanjay nagar" vtc="Jaipur" po="Shastri Nagar" dist="Jaipur" subdist="Jaipur" state="Rajasthan" pc="302016" dob="03/12/2006"/>

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jabid

79805417

Date: 2025-10-31 05:18:48
Score: 0.5
Natty:
Report link

List.Generate to the rescue:

merge_loop = List.Generate(
    () => #"Renamed Columns2",
    (tbl) => Table.IsEmpty(Table.SelectRows(tbl, each [OBJECT_ID] = _TargetFolder)),
    (tbl) => let
        #"Merged Queries" = Table.NestedJoin(tbl, {"OBJECT_ID"}, AllFolders, {"PARENT_ID"}, "AllFolders", JoinKind.LeftOuter),
        #"Expanded AllFolders" = Table.ExpandTableColumn(#"Merged Queries", "AllFolders", {"OBJECT_NAME", "OBJECT_ID"}, {"OBJECT_NAME.1", "OBJECT_ID.1"}),
        #"Added Custom" = Table.AddColumn(#"Expanded AllFolders", "Path.1", each [Path]&"\"&[OBJECT_NAME.1]),
        #"Removed Other Columns" = Table.SelectColumns(#"Added Custom",{"Path.1", "OBJECT_ID.1"}),
        #"Renamed Columns" = Table.RenameColumns(#"Removed Other Columns",{{"OBJECT_ID.1", "OBJECT_ID"}, {"Path.1", "Path"}})
    in
        #"Renamed Columns"
),
non_empty_tbl = Table.SelectRows(
    List.LastN(merge_loop, 1){0},
    each [OBJECT_ID] = _TargetFolder
),
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kb2136

79805416

Date: 2025-10-31 05:15:47
Score: 2.5
Natty:
Report link

If you want something simple use #.k or #,k depending what you use for for 1000 separator.

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

79805410

Date: 2025-10-31 04:55:43
Score: 3
Natty:
Report link

You can view it through this link appifan or itmacom. So, if you upload the video to your own server, it should play on Android devices without issue. However, if you don't want to upload it to a server, the only workaround is to download the video and upload it to your YouTube channel, which will remove the restrictions. Finally, you can embed the newly uploaded video into your page, replacing the restricted one.

Reasons:
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lee jeson

79805409

Date: 2025-10-31 04:54:43
Score: 0.5
Natty:
Report link

Excellent question about your online typing test application! Here's a practical solution for counting correct words typed.

For comparing text and counting correct words, the basic approach is straightforward:

1. Get the original text from the first textarea

2. Get what the user typed in the second textarea

3. Split both strings into word arrays using whitespace as delimiter

4. Compare word by word at matching positions

5. Count the matches to determine accuracy

Implementation considerations:

Decide whether capitalization should matter for your test. Think about how you want to handle punctuation. Consider how to treat multiple spaces between words. Determine if contractions should be single or multiple words.

For performance metrics, track the elapsed time and compare it against the accuracy score.

This word-by-word comparison method is the standard foundation used in most typing applications and online typing practice systems.

To understand professional implementations, research how typing practice websites are built. Sites built with typing practice features typically demonstrate multiple modes with detailed performance tracking and user feedback. They show best practices for building typing practice applications with comprehensive metrics.

Start with implementing this basic word comparison logic. Test it with different inputs. Then progressively add features like real-time accuracy feedback, performance calculations, and detailed error reporting.

Good luck with your typing test!

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

79805407

Date: 2025-10-31 04:51:42
Score: 8
Natty: 7
Report link

Same question here, any chance to get it resolved?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • RegEx Blacklisted phrase (1): Same question
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Linh Vu

79805398

Date: 2025-10-31 04:37:38
Score: 5.5
Natty:
Report link

Gracias a la respuesta de:

Vijay Mohan RangarajuApr 6 at 12:54

Hey @user29023248, thanks a lot for your tip! I did try restricting RestControllerAdvice annotation using basePackages as you suggested — it was a solid direction. But even after that, Swagger still wasn’t loading properly. That’s when ChatGPT suggested using the Hidden annotation on our error handler methods to prevent Swagger from processing them. Once Idid that, everything worked perfectly. Your view on this helped me to solve this issue. Appreciate your input — it definitely helped me get on the right track!

pude encontrar el error, me di cuenta que cuando globalizas los errrores en los controllers o exceptions, haces que el verdaderos errores no aparezcan, pero con un solo

@RestControllerAdvice(basePackages = "com.uni.dev.demo.controller")

que me ayudo a controlar especificamente donde hacer

las exception

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): Gracias
  • RegEx Blacklisted phrase (2): encontrar
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @user29023248
  • Low reputation (1):
Posted by: Jhoseph Duort

79805395

Date: 2025-10-31 04:32:37
Score: 2
Natty:
Report link

As per https://issues.apache.org/jira/browse/KAFKA-19607?jql=project%20%3D%20KAFKA%20AND%20text%20~%20%22Mirrormaker%22%20ORDER%20BY%20created%20DESC,, MM2 will only replicate consumer offsets if the consumer is still active or has reached the end of the partition.

If the consumer has lag, the offset translation to the target cluster can be inaccurate, and will be worse when the consumer is further away from the end of the topic (i.e. has high lag)

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

79805391

Date: 2025-10-31 04:26:36
Score: 3
Natty:
Report link

For anyone looking, I got accented characters to work in Ubuntu 25.10 after going to Language Support and changing my Keyboard input method system to XIM instead of Ibus. Ibus is known not to be compatible with Wine.

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

79805390

Date: 2025-10-31 04:21:35
Score: 0.5
Natty:
Report link

The debugger is stopping at “weird” places because the compiler inlined/optimized template/device functions (and/or you don’t have device debug symbols), so source binary mapping is not 1:1.

Quick steps to fix (do these in your Debug build)

  1. Build with device debug info and disable device optimizations:

    • nvcc: add -G (Generate debug info for device) and disable optimizations for CUDA code.

    • Only use -G for local debug builds (it drastically changes code/performance).

  2. Build host with debug info and no optimizations:

    • MSVC: C/C++ → Optimization = Disabled (/Od) and Debug Info = /Zi.

    • Clean + full rebuild.

  3. Force a non-inlined function where you want a reliable breakpoint:

    • Use noinline on the functions you debug:

      • GCC/Clang/nvcc: attribute((noinline))

      • MSVC: __declspec(noinline)

    • Example:
      device host attribute((noinline)) TVector3<T> operator+(...) { ... }

  4. Start the correct debug session in Nsight:

    • Use “Start CUDA Debugging” / Nsight CUDA debug to hit device code. The normal VS debugger only handles host.
  5. Verify symbols and sources:

    • Check Modules window / Nsight logs to ensure PDB / debug symbols for the binary are loaded and match source files.
  6. Short-run kernel for easier stepping:

    • Run a tiny grid (1 block, 1 thread) while debugging so it’s reproducible and easier to step.
Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Luis Yuman

79805387

Date: 2025-10-31 04:15:34
Score: 1
Natty:
Report link

Here are the top skills to master in 2025 for better career growth:

For more useful contents visithttps://www.coursera.org/in/articles/high-income-skills

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

79805386

Date: 2025-10-31 04:13:33
Score: 3
Natty:
Report link

You can use "gfxcapture".

https://ffmpeg.org/ffmpeg-filters.html#gfxcapture

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

79805376

Date: 2025-10-31 03:42:26
Score: 4.5
Natty: 4
Report link

So can anyone tell me how it worked for you? I am just sending Original_url and some message saying checkout my blog. but its not scraping properly. just adding the link , no short description, title or the featured image.

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (2.5): can anyone tell me how
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: palash motghare

79805372

Date: 2025-10-31 03:40:25
Score: 1
Natty:
Report link

Add this dependency to your pom.xml file

                    <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>5.3.7.Final</version>
                    </dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user3898276

79805368

Date: 2025-10-31 03:27:22
Score: 2.5
Natty:
Report link

Open Git Bash and enter - git update-git-for-windows

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

79805366

Date: 2025-10-31 03:17:20
Score: 1.5
Natty:
Report link

@Kaz, Thank you for introducing the #: notation and the circle notation. As you said, gensym can be omitted in many macros, without creating many different uninterned symbols that share the same names.

In cotontrast, in the sortf macro, different #:NEW1 symbols should be used, and get-setf-expansion already makes a new uninterned #:NEW1 whenever it's used. In sortf, the number of #:NEW1 symbols is proportional to the number of arguments that are passed to sortf. Therefore, sortf cannot use the fixed number of symbols that can be generated by the #: notation.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Kaz
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dhnam

79805363

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

Flutter developers using Android Studio may encounter a common warning message related to the Flutter Device Daemon Crash, specifically advising to "Increase the maximum number of file handles available." This issue can disrupt the development workflow, but fear not: there is a straightforward solution. In this article, we'll guide you through the steps to fix this warning and get your Flutter project back on track.

In windows open the Registry Editor
Navigate to Below Path: 

HKEY_LOCAL_MACHINE
  └── SYSTEM
      └── CurrentControlSet
          └── Services
              └── WebClient
                  └── Parameters
                      └── FileSizeLimitInBytes 
            
Change Hexadecimal [ffffffff] --> Decimal [4294967295]
Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Happy Sinha

79805360

Date: 2025-10-31 03:04:17
Score: 0.5
Natty:
Report link

Flutter developers using Android Studio may encounter a common warning message related to the Flutter Device Daemon Crash, specifically advising to "Increase the maximum number of file handles available." This issue can disrupt the development workflow, but fear not, as there is a straightforward solution to address this problem. In this article, we'll guide you through the steps to fix this warning and get your Flutter project back on track.

In windows open the Registry Editor
Navigate to Below Path: 

HKEY_LOCAL_MACHINE
  └── SYSTEM
      └── CurrentControlSet
          └── Services
              └── WebClient
                  └── Parameters
                      └── FileSizeLimitInBytes 
            
Change Hexadecimal [ffffffff] --> Decimal [4294967295]
Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Happy Sinha

79805358

Date: 2025-10-31 02:58:15
Score: 0.5
Natty:
Report link

Similar to https://stackoverflow.com/a/24811490/2251785, but I can't find those urls from official doc. Here are the source code archive URLs from GitHub's documentation, using github/codeql as an example.

You can install any zip file directly with this:

pip install https://github.com/github/codeql/archive/refs/heads/main.zip

Ref: https://docs.github.com/en/repositories/working-with-files/using-files/downloading-source-code-archives#source-code-archive-urls

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Hunger

79805347

Date: 2025-10-31 02:09:06
Score: 3
Natty:
Report link

I had this issue recently, I rolled back to 3.8.0 and it seems there is better handling in that version for my specific PDFs

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

79805346

Date: 2025-10-31 02:05:05
Score: 3.5
Natty:
Report link

I'm prefer one option by using Autodesk Design Collaboration: https://help.autodesk.com/view/COLLAB/ENU/?guid=Design_Collab_Schedule_Regular_Publishing

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

79805343

Date: 2025-10-31 01:57:03
Score: 2.5
Natty:
Report link

Try adding

ocsp_fail_open=True,
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Masoud Kameli

79805340

Date: 2025-10-31 01:47:01
Score: 1
Natty:
Report link

Since you downloaded the latest Eclipse (2025-09), it's possible that Eclipse hasn't fully caught up with Java 25 yet, even if it officially supports it. Eclipse's support for a new Java version often lags behind the JDK's release. One thing you could try is ensuring you have the latest version of Eclipse installed (including any updates for the Java tools).

Also check the java 25 JDK Path in eclipse.ini file

Try setting the -vm parameter directly to the Java 25 JDK instead of a specific library within it.

In your eclipse.ini file, it should look something like this:

make sure this is in different line than -vmargs, and ther are no extra spaces.

Check Java Version Using Eclipse Console:

Once you have made these changes you can check what Eclipse is using by openning the eclipse console and running this commend in the Eclipse IDE treminal or checkking the version in the console:

This will confirm if the environment is pointing to Java 25 or still using the older version.

Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aashutosh Thapa

79805338

Date: 2025-10-31 01:45:00
Score: 2.5
Natty:
Report link

i'm no expert and cant even connect to anything ran in kuberneties, but it runs a shit load of crap, proxy servers and stuff that is pointless to just run a container, save yourself the headache and drp it

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

79805335

Date: 2025-10-31 01:19:56
Score: 0.5
Natty:
Report link

I just uploaded nextcrumbs to github for this purpose.

Next.js isn't necessary but there is a feature that will allow the breadcrumbs to be automatically created using usePathName from next/navigation

You can find the package here.
https://github.com/ameshkin/nextcrumbs

https://www.npmjs.com/package/@ameshkin/supercrumbs

npm i @ameshkin/supercrumbs
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: phpwebdev

79805316

Date: 2025-10-31 00:14:42
Score: 2
Natty:
Report link

To dump DataRow row contents to a string I use

string.Join(", ", row.ItemArray)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MattR

79805304

Date: 2025-10-30 23:32:33
Score: 2
Natty:
Report link

I tried the patch above, but that did not quite fix the same issue, so I downloaded the newer contents of MagicWord.php file from the right side of

https://gerrit.wikimedia.org/r/c/mediawiki/core/+/122449/1/includes/MagicWord.php#686

as given by @blacksunshineCoding above, uploaded it to overwrite my MagicWord.php (after first saving a copy) and that fixed the issue.

Unfortunately the subsequent purge broke my session and even after various attempts (cookies, adding cache settings to LocalSettings.php) I can't log in with this browser due to "There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Go back to the previous page, reload that page and then try again." but I can see my wiki media site again with all browsers even though my MediaWiki is very very old, and I can log in and change it with other browsers.

If you have this issue, I recommend doing the purge with a browser you don't use.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @blacksunshineCoding
  • Low reputation (1):
Posted by: timtak

79805295

Date: 2025-10-30 23:12:29
Score: 4.5
Natty:
Report link

Must the side menu be fixed in position?

If not, you can simply wrap the menu and the main content in a container and use CSS Grid to handle the layout. This ensures the main content area correctly fills the remaining space and can scroll independently.

<div class"wrapper">
  <div class="left-menu"></div>
  <div class="body-wrapper"></div>
</div>
.wrapper {
  display: grid;
  width: 100%;
  /* Use height: 100vh or 100dvh to make it full screen, or 100% 
     if its parent already has a defined height. */
  height: 100vh; 
  /* The grid columns: 'auto' sizes the menu to its content, 
     '1fr' gives the remaining space to the body. */
  grid-template-columns: auto 1fr;
  /* Prevents the entire grid from adding a scrollbar if inner content is too wide. */
  overflow: hidden; 
}
/* Restore scrolling behavior in the main body content. */
.body-wrapper { overflow: auto }

If the menu must be fixed, please clarify your requirements so I can provide a solution tailored to that constraint.

Reasons:
  • RegEx Blacklisted phrase (2.5): please clarify your
  • RegEx Blacklisted phrase (1.5): fixed in position?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: TDJ.dev

79805293

Date: 2025-10-30 23:08:27
Score: 2
Natty:
Report link
from PIL import Image, ImageDraw, ImageFont
import random

# Escala y dimensiones
scale = 10  # 1 cm = 10 px
width_px = 183 * scale
height_px = 35 * scale

# Crear imagen de fondo blanco
visual = Image.new("RGB", (width_px, height_px), (255, 255, 255))
draw = ImageDraw.Draw(visual)

# Fuente para etiquetas
try:
    font = ImageFont.truetype("arial.ttf", 15)
except:
    font = ImageFont.load_default()

# Datos de fotos (tipo, tamaño cm, posición cm)
photos = [
    ("G1",16,22,2,2),("G2",14,20,20,2),("G3",18,18,38,2),("G4",16,22,56,2),
    ("G5",14,20,74,2),("G6",16,22,92,2),("G7",18,18,110,2),("G8",16,22,128,2),
    ("G9",14,20,146,2),("G10",16,22,164,2),
    ("G11",14,20,2,25),("G12",16,22,20,25),("G13",18,18,38,25),("G14",16,22,56,25),
    ("G15",14,20,74,25),("G16",16,22,92,25),("G17",18,18,110,25),("G18",16,22,128,25),
    ("G19",14,20,146,25),("G20",16,22,164,25),
    ("M1",10,13,5,15),("M2",10,13,20,15),("M3",10,13,35,12),("M4",10,13,50,15),
    ("M5",10,13,65,12),("M6",10,13,80,15),("M7",10,13,95,12),("M8",10,13,110,15),
    ("M9",10,13,125,12),("M10",10,13,140,15),("M11",10,13,155,12),("M12",10,13,170,15),
    ("M13",10,13,5,28),("M14",10,13,20,28),("M15",10,13,35,28),("M16",10,13,50,28),
    ("M17",10,13,65,28),("M18",10,13,80,28),("M19",10,13,95,28),("M20",10,13,110,28),
    ("M21",10,13,125,28),("M22",10,13,140,28),("M23",10,13,155,28),
    ("P1",7,10,8,7),("P2",7,10,23,7),("P3",7,10,38,7),("P4",7,10,53,7),("P5",7,10,68,7),
    ("P6",7,10,83,7),("P7",7,10,98,7),("P8",7,10,113,7),("P9",7,10,128,7),("P10",7,10,143,7),
    ("P11",7,10,158,7),("P12",7,10,173,7),("P13",7,10,8,22),("P14",7,10,23,22),("P15",7,10,38,22),
    ("P16",7,10,53,22),("P17",7,10,68,22),("P18",7,10,83,22),("P19",7,10,98,22),("P20",7,10,113,22),
    ("P21",7,10,128,22),("P22",7,10,143,22),("P23",7,10,158,22),("P24",7,10,173,22),
    ("P25",7,10,8,33),("P26",7,10,23,33),("P27",7,10,38,33),("P28",7,10,53,33),("P29",7,10,68,33),
    ("P30",7,10,83,33),("P31",7,10,98,33),
    ("Mi1",5,5,12,12),("Mi2",5,5,27,12),("Mi3",5,5,42,12),("Mi4",5,5,57,12),("Mi5",5,5,72,12),
    ("Mi6",5,5,87,12),("Mi7",5,5,102,12),("Mi8",5,5,117,12),("Mi9",5,5,132,12),("Mi10",5,5,147,12)
]

# Función para color aleatorio
def random_color():
    return tuple(random.randint(100, 255) for _ in range(3))

# Dibujar fotos con color y etiqueta
for code, w_cm, h_cm, x_cm, y_cm in photos:
    x0 = x_cm * scale
    y0 = y_cm * scale
    x1 = x0 + w_cm * scale
    y1 = y0 + h_cm * scale
    fill_color = random_color()
    draw.rectangle([x0, y0, x1, y1], outline=(0,0,0), width=2, fill=fill_color)
    text_w, text_h = draw.textsize(code, font=font)
    draw.text((x0+(x1-x0-text_w)/2, y0+(y1-y0-text_h)/2), code, fill=(0,0,0), font=font)

# Guardar imagen final
visual.save("collage_visual.png")
print("Collage visual generado: collage_visual.png")
Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Keilyn

79805281

Date: 2025-10-30 22:49:23
Score: 0.5
Natty:
Report link

Use imports_passed_through when importing activities into workflow code:

with workflow.unsafe.imports_passed_through():
    import test_activity

See https://docs.temporal.io/develop/python/python-sdk-sandbox#passthrough-modules for more info.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Maxim Fateev

79805275

Date: 2025-10-30 22:40:20
Score: 7 🚩
Natty:
Report link

Thanks for using Django MongoDB Backend. Would you mind creating an issue here: https://jira.mongodb.org/projects/INTPYTHON/issues/INTPYTHON-809?filter=allopenissues ?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Would you mind
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Alex

79805272

Date: 2025-10-30 22:33:18
Score: 1
Natty:
Report link

Procedure bindings of parameterized derived types with KIND type parameters need to be implemented for the various distinct sets of values with which the KIND type parameters will be instantiated, and they really need to be collected into a generic type-bound procedure to be useful in practice. You could also implement a TBP for a KIND PDT using an unlimited polymorphic PASS dummy argument, but that just moves the problem from compilation time to run time without adding any more flexibility.

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

79805266

Date: 2025-10-30 22:19:15
Score: 2.5
Natty:
Report link

I have been trying to do that and this is what I have been able to do:

enter image description here

You can find the code in my repo: https://github.com/omrastogi/dsa_questions/blob/master/cs5800-Algorithms/binary_search_trees/bst_visualization.py

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

79805264

Date: 2025-10-30 22:17:14
Score: 4
Natty:
Report link

by listening to fetch requests

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

79805262

Date: 2025-10-30 22:16:12
Score: 7.5 🚩
Natty: 5
Report link

@user31405354, How would you slim down the image with a multi-stage build if you need to remove dependencies only used in one workspace's member which is not required for the image you're trying to build ?

Reasons:
  • Blacklisted phrase (1): How would you
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @user31405354
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Olivier Belhumeur

79805259

Date: 2025-10-30 22:13:11
Score: 2.5
Natty:
Report link

I had been trying to render similar binary search tree. Here is what I have:

enter image description here

The code for this can be found in my github repo: https://github.com/omrastogi/dsa_questions/blob/master/cs5800-Algorithms/binary_search_trees/bst_visualization.py

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

79805257

Date: 2025-10-30 22:09:10
Score: 3.5
Natty:
Report link

For now you will have to build on python=3.12 or lower. If that doesn't work please let me know.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: mmann1123

79805254

Date: 2025-10-30 22:03:09
Score: 4
Natty:
Report link

💥 Player sejati gak cuma main, tapi menang. Lo udah di Jo777 belum? 😉

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

79805252

Date: 2025-10-30 22:02:08
Score: 2
Natty:
Report link

The problem is with blazor server. It uses signalr internally. With adding an other signalr.client it conflict and click button stop working. For me webasesenly worked with signalr.client

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

79805250

Date: 2025-10-30 22:00:08
Score: 3
Natty:
Report link

@Barmar, Thank you for the explanation about compiler optimization. As you said, calling the car function sounds more expensive than referencing a literal or a variable.

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

79805248

Date: 2025-10-30 22:00:08
Score: 2
Natty:
Report link

What seems to currently work is:

address = self.base_address + line_number.virtualAddress

Here I am using virtualAddress instead of addressOffset.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: user14773854