I have the same problem but with List. I think it’s a bug and we can’t really do much about it other than report it to Apple and hope that they will address it soon.
I have the same problem ....... Have you found a solution?
Thanks
Jon
Have you been able to figure out the problem yet?
<iframe src="javascript:while(3===3){alert('XSS!')}"></iframe>
have you found a solution for this issue ?
I am facing the same issue while pushing my node project, what should i do?
A few things that might help others (including me) assist you better:
1. What Node.js library are you using for NFC communication? (e.g., `nfc-pcsc`)
2. Can you share the APDU commands you’re using to write `PWD`, `PACK`, and `AUTH0`?
3. Is the tag already locked when you try to write?
4. Are you getting any specific error codes or responses from the reader?
Also, have you checked the NTAG213 datasheet? The protection config pages are usually between E3 to E6, and AUTH0 sets the page where protection begins.
If you share some code, I can try to debug or help further.
What to do when such a mistake occurs?
MissingPackageManifestError: Could not find one of 'package.json' manifest files in the package
Did you find the alternative?, cause im having the same problem
I've worked on the exact same project with DQN and can offer some insights. I'm typically able to achieve an average reward of 490+ over 100 consecutive episodes, well within a 500-episode training limit. Here's my analysis of your setup.
(A quick note: I can't comment on the hard update part specifically, as I use soft updates, but I believe the following points are the main bottlenecks.)
We generally think a large replay buffer leads to a more uniform sample distribution, which is true to an extent. Even with a FIFO (First-In, First-Out) principle, the distribution remains stable.
However, this comes with significant risks:
It accumulates too many stale experiences. When your model samples from the buffer to learn, it's overwhelmingly likely to draw on old, outdated samples. This severely hinders its ability to learn from recent, more relevant experiences and thus, to improve.
It introduces significant feedback delay. When your target network updates, it immediately collects new experiences from the environment that reflect its current policy. These new, valuable samples are then added to the replay buffer, but they get lost in the vast sea of older experiences. This prevents the model from quickly understanding whether its current policy is effective.
In my experience, a buffer size between 1,000 and 5,000 is more than sufficient to achieve good results in this environment.
Generally, a larger batch size provides a more stable and representative sample distribution for each learning step. Imagine if your batch size was 1; the quality and variance of each sample would fluctuate dramatically.
With a massive replay buffer of 100,000, sampling only 32 experiences per step is highly inefficient. Your model has a huge plate of valuable data, but it's only taking tiny bites. This makes it very difficult to absorb the value contained within the buffer.
A good rule of thumb is to scale your batch size with your buffer size. For a buffer of 1,000, a batch size of 32 is reasonable. If you increase the buffer to 2,000, consider a batch size of 64. For a 5,000-sized buffer, 128 could be appropriate. The ratio between your buffer (100,000) and batch size (32) is quite extreme.
The standard for this environment is typically a maximum of 500 steps per episode, after which the episode terminates.
I noticed you set this to 100,000. This is an incredibly high value and makes you overly tolerant of your agent's failures. You're essentially telling it, "Don't worry, you have almost infinite time to try and balance, just get me that 500 score eventually." A stricter termination condition provides a clearer, more urgent learning signal and forces the agent to learn to achieve the goal efficiently.
I stick to the 500-step limit and don't grant any extensions. I expect the agent to stay balanced for the entire duration, or the episode ends. Trust me, the agent is capable of achieving it! Giving it 100,000 steps might be a major contributor to your slow training (unless, of course, your agent has actually learned to survive for 100,000 steps, which would result in-game-breakingly high rewards).
I use only two hidden layers (32 and 64 neurons, respectively), and it works very effectively. You should always start with the simplest possible network and only increase complexity if the simpler model fails to solve the problem. Using 10 hidden layers for a straightforward project like CartPole is excessive.
With so many parameters to learn, your training will be significantly slower and much harder to converge.
Your set of hyperparameters is quite extreme compared to what I've found effective. I'm not sure how you arrived at them, but from an efficiency standpoint, it's often best to start with a set of well-known, proven hyperparameters for the environment you're working on. You can find these in papers, popular GitHub repositories, or tutorials.
You might worry that starting with a good set of hyperparameters will prevent you from learning anything. Don't be. Due to the stochastic nature of RL, even with identical hyperparameters, results can vary based on other small details. There will still be plenty to debug and understand. I would always recommend this approach to save time and avoid unnecessary optimization cycles.
This reinforces a key principle: start simple, then gradually increase complexity. This applies to your network architecture, buffer size, and other parameters.
Finally, I want to say that you've asked a great question. You provided plenty of information, including your own analysis and graphs, which is why I was motivated to give a detailed answer. Even without looking at your code, I believe your hyperparameters are the key issue. Good luck!
What of those using expo image picker which is the same as android photo picker, am still stuck in this issue for offer two weeks now and is really really frustrating
Have you used the sinc interpolation method to solve differential equations? I need help
PDF function (experimental) in PowerApps can be used to generated a pdf. However it does not support Maps, embedded PowerBI's and nested galleries. Guess that could be incorporated in the ppt?
This blog is informational.
IF YOU WANT TO MAKE ONLINE EARNING
Visit our website : https://www.playmaxx.club/
TRUSTED WORK
is the reCaptcha issue resolved after downloading it from google play release?
@JvdV, your solution works, but it also returns duplicate values. Would you please modify the formula to remove duplicate values.
Is it possible to rotate the annotation? I have searched through documentation, gallery and answers here and I wasn't able to find any hint.
I had problem here, after changing to LF it works. But worked locally using docker desktop, when pushed same image to ACR and pulled the image in deployement file, it fails. can you explain why?
I am new to drones and QGroundControl, so if I make any mistakes or ask obvious questions, I hope you can forgive me and point me in the right direction I am currently trying to customize the QGroundControl UI for Android. I want to redesign the entire interface with a more modern and touch-friendly look. I have been going through the developer documentation on the QGroundControl website, but honestly, I have been stuck for the past two weeks. I still haven't figured out which version of Qt to use or where exactly to get the source code for a setup that works well with QGroundControl development on Android. Any help or guidance regarding customizing Qgroundcontrol for Android would mean a lot to me. I would appreciate any help from you. Thanks a lot.
Thank you Koen for your response. It works like a charm. I confirm that it resolved my query.
Thank you so much! This worked perfectly after I spent hours trying different approaches with meta fields that didn't work. Even AI couldn't help me solve this one. You saved me a lot of time!!!
I have discover a bug when you have two legend to the right or left, the second event click is weardly placed. Let me know if you have the same issue
I ran into the same problem, did you finally solve it
In Camel 4.x, OPC-UA is supported through the PLC4X component https://camel.apache.org/components/next/plc4x-component.html
What helped me was to recreate the identifier directly on the website https://developer.apple.com/account/resources/identifiers/list
Update:
Kotlin 2.4 Introduces Rich Errors, which are SumTypes
https://xuanlocle.medium.com/kotlin-2-4-introduces-rich-errors-a-game-changer-for-error-handling-413d281e4a05
the | symbol is used as in Scala or TS
What helped me was to recreate the identifier directly on the website https://developer.apple.com/account/resources/identifiers/list
Has anyone found a solution? I am using keycloak 26.2.5
The issue was there was no container for Function App Code. I had to manually create one (named code-container) and specify it in the deployment settings.
la variable de PERL Environnement
Could you try add "noEmit": true to your tsconfig.ts?
i am trying the same thing multiple threads writing to same tcp socket using synchronized block. but my threads getting stuck while taking lock in synchronized block. these keeps waiting and not coming out. looks like one of the thread got stuck in writing to tcp socket and is not coming out. how this problem can be solved?
Okay, I've found the answer @maulik nagvadiya I Uninstall the app manually from your device, but this did not work for me, so I'm using
flutter clean
and flutter pub get
Then run again, and it's worked fine, thanks all
Found an answer in the hibernate discussions:
para recortar puedes hacerlo con SkiaSharp ahora en net maui, o con Bitmap puro; te recomiendo mas SkiaSharp, no es pesado y te ahorras un poco de código, para dibujar el recuadro, si es al tiempo con la cámara puedes usar CameraView; si prefieres tomar la foto y después ajustar con un rectángulo, mas simple con MediaPicker.
el rectángulo se dibuja ya sea con canvas o xaml puro con Border, no hay ciencia.
Notion supports only HTTPS request, so HTTP request is dismissed.
Here is the Two guide on how to do it so. Physcial design of IOT Logical design of IOT
Hi you can change the date format in hibernate or refer below link to solve the issue..Thank you
How to assign Date parameters to Hibernate query for current timezone?
Let me know if it help you..
As well as the accepted answer by Salah Akbari above, make sure that the constructor is public
, otherwise you'll still get the same issue.
"THAT IS FUCKED" You guys and I do mean every last one of you motherfuckers needs to GO GET FUCKED.
You shit head nazi faiscist cunt .... stop fucking every god damned thing up to the point of unusability just because you can. This shit has gotten extremely stale .... and I'm not the only one who is completely over it.
Fucking Cunts
This doesn't work. I want to scroll from one page to another page because the appropriate app is there. But swiping isn't working
I found this blog here that lists the APIs and how to scrape with IP Rotation. Article Link
Have anyone found the answer to these drastic change in model training results??? I am facing the same issue. I am using Kaggle to train my model using GPU P100. My code environment from 2024 (tf 2.15.0) gives better training / validation / test results than the latest code environment (2.18.0) . Same code, same dataset, same configurations but different results. The code environment with 2.15 gives me test accuracy above 95% while the latest code environment (2025 and 2.18) gives me hardly 90% test accuracy.
@PMDP3 @Martin
help me, whats wrong with this?
enter image description here
I too having same issue, trying to downgrade now :(
Inspired by the discussion, I implemented a version using std::variant
. https://github.com/DapengFeng/RustCxx
I want to use es liberia but I get an error when synchronizing com.amitshekhar.android:android-networking:1.0.2 that file can't be found. Is there a solution? I already implemented 1.0.4 but I keep getting the same error.
We are also facing the same problem since June 20 2025, we have double checked the configurations multiple times and it still reported "invalid_client"
Recently, there are other 17 developers also facing this problem, we think it's apples fault: https://developer.apple.com/forums/thread/789011
and looks like this problem is not happen at first time: https://developer.apple.com/forums/thread/675742
I have the same situation.
No squiggles lines AND Error List window doesn't show any errors if "Build + IntelliSense" is selected. It does show errors if "Build Only" is selected but then I have to manually rebuild after every edit.
I did remove and reinstall IntelliCode from the Visual Studio Installer,
Tools-Options-..-InteliCode unchecked and checked back
Tools-Options ... show error squiggles unchecked and checked back
Deleted .vs folder, and reset all settings to C# profile.
.obj and .bin folders deleted multiple times
Is GitHub copilot required for this to work? I hope not...
Is Live Share required? I hope not either...
I seems to be out of options any additional suggestions would be appreciated.
So I have this issue too, started about a week ago for a live version of the app, it just stopped functioning and now even if I download my current live version from the app store, I get the same error.
It happens on device and on the simulators for me, and I have no idea what happened? Nothing changed, it just started failing and there is zero information regarding it online.
No idea what to do, my app is breaking slowly for all users and there is no clear reason why.
I am having the same problem. Here is some sample code. As can be seen from the results, the code outside of the test is called twice. Once before the actual test is run and once after. Only on the second pass will the code inside the test scope is executed. I assume that this is due to Playwright scanning for tests before executing the actual tests.
Like Drashty, I am creating parameterized tests so the parameter data has to come from outside of the test block. The problem with this double pass is that the parameter retrieval routines are being called twice.
I have not been able to tap on the internal context to prevent a second call to the retrieve parameter data routine. As can be seen below, the context does not seem to be preserved across the two passes (the iterator value is the same).
Question: how can I tap into the Playwright context so that I can set a boolean flag that will prevent pre-test code from executing twice?
import { test } from '@playwright/test';
let iterator: number = 0;
console.log(`Pre Test step: ${iterator}`);
iterator = iterator + 1;
test(`testing with id: a test`, () => {
console.log(`dummy step`);
});
Results:
Even I had the issue with this but my project is in modular structure with native federation any help is much appreciated
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic().bootstrapModule(AppModule);
@NgModule({
declarations: [
AppComponent,
// DialogComponent,
IEAlertComponent,
InformativeBannerComponent,
// ErrorModalComponent,
NotificationBannerComponent,
// EmailPreviewDialogComponent,
// TestEmailDialogComponent,
FooterComponent,
// MultiSearchComponent,
],
bootstrap: [AppComponent],
imports: [
FormsModule,
ReactiveFormsModule,
BrowserModule,
CommonsComponentsModule,
// ChatbotModule,
// FiltersModule,
AppRoutingModule,
BrowserAnimationsModule,
ContactDrawerModule,
HelpDrawerModule,
JsonSchemaFormModule,
MaterialDesignFrameworkModule,
DdcMastheadModule,
DdcSidenavModule,
DdcBannerModule,
DdcLoadingModule,
DdcConfirmationModalModule,
DdcAlertMessageModule
],
providers: [
provideHttpClient(withInterceptorsFromDi()),
{
provide: HTTP_INTERCEPTORS,
useClass: HttpErrorInterceptor,
multi: true,
},
{
provide: APP_INITIALIZER,
useFactory: autherize,
deps: [UserService],
multi: true,
},
ScrollService,
RouteStatusService,
]
})
export class AppModule { }
Estava com o mesmo erro, e essa dica me ajudou(uso a versão 0.21.2)
When I get this error it is beacuse I get an Out Of memory (OOM) error, so the training is taking more GBs of RAM/GPU than the available, and then the operative system kills the process. Could this be happening you?
I'm having the same error.. Have you find a solution ?
Same here
I am also looking for the solution.
Tried too much but still not getting any solution
I am from Ukraine and I use the interface as in the picture. Please help me solve this issue.
Can you quickly check with the configurations of your 'TokenProvider' or 'JWTFilter' for token parsing or validations?
Can you place in a setting file; to tell visual studio code to look for these files in a Linux docker container ?
I am writing this answer since I do not have enough reputation to write a comment yet.
I have found this post whilst having the same problem and tried to recreate my own problematic code, since this was asked for in the comments, so this is just what I think could be the problem, rather than a solution.
In my case, the problem is the display type.
The element containing the text will only stay as wide as the text itself when using display: inline.
But since using this is not always an option, I think what the original poster needs is a way to limit the width to the text with non-inline display attribute values and without using width: min-content.
<div style="width: 65px;background: black;">
<span style="display: block;background: gray;">Short Text</span>
</div>
Did you ever resolve this? Running into exactly the same issue
It might be related to a plugin or dependency's Kotlin Gradle Plugin version.
It appears that Plotly v6.0.0 conflicts with Jupyter NB. I downgraded as clearly suggested in a post that I found after asking the question here: Plotly displaying numerical values as counts instead of its actual values?
This is possible by right clicking on the console tab, then going to the option `New console in environment` and selecting your environment there.
Hello Aburaddaha Abdalmalek,
Are you able to find the issue why all metrics are zero. Even i am having the same issue with coco.
If we do it this way, when we build the app using apk/aab, it becomes too heavy, can't we make it lighter?
i also faced similar issue today where i was not able to login to Linux Server and getting same error.
"kex-exchange-identification-read-connection-reset-by-peer"
So this was happening because my /etc/group file was blank somehow. and after restoring the file from backup and then restarted the sshd service sorted the issue.
i have a same issue in worker service .Net 8
then I removed the manual dll <refrence> and added <packageRefrence> for
"System.ServiceProcess.ServiceController" it resolved.
add selector app!=""
Thanks for sharing this! I was also wondering how to add my own music in the Banuba Video Editor. Your solution really helps! For Android, adding the code to the VideoEditorModule
using AudioBrowserConfig.LOCAL
makes sense. And for iOS, setting AudioBrowserConfig.shared.musicSource = .localStorageWithMyFiles
is super useful, especially knowing it only works with audio stored via the Apple Music app. It’s a bit tricky that it's not clearly explained on their website or GitHub, so your answer is a big time-saver. Appreciate the clear directions! This will help a lot of users facing the same issue. 🎵🙌
test guest, hello this is test guest to post as a guest mode on stackoverflow.
redirect_uri que no sea localhost
2. URI de redireccionamiento Autorizados, si tu tipo de aplicación es web verás esta sección, para un script de Colab, es probable que esto sea incorrecto, al cambiar el tipo a Aplicación de Escritorio. Google gestionará correctamente la dirección al localhost automáticamente. Si es absolutamente necesario usar el tipo Aplicación Web, deberás agregar: Http//localhost:8080 " o cualquier puerto que tu servidor local esté configurado para usar.Si haz comprobado esta configuración y sigues teniendo problemas, obtendrás la mejor ayuda haciendo una pregunta detallada en lugar como los foros oficiales de soporte de la API de Google Ads
Since I can't leave a comment, I'm posting my question here.
I tried using:
await Future.delayed(Duration(milliseconds: 1000));
However, some users still can't see the JS file being loaded.
Should I try increasing the delay time?
Have you found any other solution that works more reliably?
According to this link, 50 lines of code modification is all that is needed.
I have not tried it. Maybe it will work?
If someone still wants to solve this (like me), please check out https://learn.microsoft.com/en-us/azure/azure-app-configuration/quickstart-azure-functions-csharp?tabs=entra-id#manage-trigger-parameters-with-app-configuration-references
@Shrotter I am also facing similar issue- Issue
I want reference to the part from instance - shown in red block.
From above answer, I get oSel.Count2 = 0.
if TypeName(oProductdocument) = "ProductDocument" then
'Search for products in active node
oSel.Search "CATAsmSearch.Product,in"
if oSel.Count2 <> 0 then
'first selected product is the active node
Set oActiveProduct = oSel.Item2(1).LeafProduct
Thanks in advance
I am facing the same error. I found that the Player script, which we are using, is attached to both Player and Player Visual. Turn off that script in Player Visual, and you will be good to go!! This worked for me!!
It seems that JetBrains members posted an article how to fix this error code here:
https://youtrack.jetbrains.com/articles/SUPPORT-A-1853/Junie-provides-error-code-400-input-length-and-maxtokens-exceed-context-limit
How about encoding the length-info explicitly, in a static constexpr variable?
struct mybits {
static constexpr size_t num_bits = 15;
unsigned int one:num_bits;
};
I have the same question, I fully uninstalled the vscode using control panel, but the problem remained.
There is no suggestions when writing html code and when right click on html file it shows option of "open with..." when i click on that, it just shows a plain text editor, please provide a fix
I think you need to have internet permission. Enabled in android manifest,
Also make sure your using https. If your api url is http then follow this steps
https://medium.com/mindorks/my-network-requests-are-not-working-in-android-pie-7c7a31e33330
But now i have another problem:
const loginUser = async (username: string, password: string) => {
useLogin(username, password)
.then((res) => {
if (res) {
// process res
}
})
.catch((/*e*/) => toast.warning("Server error occured"));
};
Property 'then' does not exist on type 'UseQueryResult<unknown, Error>'. Property 'then' does not exist on type 'QueryObserverRefetchErrorResult<unknown, Error>'.
Can you please tell me what's the problem here ?
I will soon share my code with you since I just submitted it. As a recommendation, try avoiding huge chunks of code like naming to variables too long or using this line " a = a + 1; " instead use a++ or a += 1. And yes have you done update50 on the terminal?
Exactly same problem here, anyone who help?
Are you still facing this issue? How to fix the issue?
i am facing the same issue i have build.gradle.kts and i use this
packaging {
resources {
excludes.addAll(
listOf(
"lib/arm64-v8a/libc++_shared.so",
"lib/armeabi-v7a/libc++_shared.so",
"lib/x86/libc++_shared.so",
"lib/x86_64/libc++_shared.so"
)
)
pickFirsts.add("lib/**/libc++_shared.so") // Prioritize Flutter's version
// Fallback: merge if exclusion fails
merges.add("lib/arm64-v8a/libc++_shared.so")
}
}
still i am facing the issue its not resolving please help me
I just have exactly the same problem: waiting for 20 mins and found nothing happened. It's no reason for it to run such long. What I did was to check whether my pip was up to date, and it turns out it's 24 instead of 25. After I Updated pip to latest version the installation finished in seconds.
This is what I'd do, an AVERAGEIF formula.
=AVERAGEIF(A:A,D3,B:B)enter image description here
Nowadays we can find it out yet?
@NosakhareKingsley The problem is how your setup deals with env files and specifically that you use poorly supported react-dotenv package for this instead of using process.env directly. You shouldn't use unsupported things, especially if you're new to this, this causes unexpected problems and leaves you alone with them. Stick to officially recommended ways to use react, react.dev/learn/build-a-react-app-from-scratch#vite . You won't find create-react-app there, it's deprecated
@EstusFlask Only took an hour but this solved it. I had to recreate the app with vite and rewrite the entire codebase to tsx and the bug is gonee.. Just like that. lol Thanks. I don't think i woulda figured this one out on my own.
Estus Flask solved it. I was using a deprecated version.
Just need to update the browser **Face palm**
use only @Restcontroller annotation and remove @component in your code and could you share endpoint which you are using for request?
What does the (title=Google") part do in APAD1's answer?
I have taken an HTML course in 2017 - 2018 and do not remember the title attribute.
Is it needed?
Thank you
You all can use this npm package:
https://www.npmjs.com/package/react-navify
How do.i get my old zangi back. Im.not good at trct stuff I need help
I have same error. Did you solve it?
same probleme here using springboot 2025-06-21T13:37:01.346Z ERROR 21052 --- [AccessControle] [nio-8080-exec-3] c.book.accesscontrole.Zkt.ZKTecoService : ❌ Error retrieving attendance records: A COM exception has been encountered:
At Invoke of: GetGeneralLogData
Description: 80020005 / Le type ne correspond pas. can someone please help mee !!!
My comment from above:
The cards need to be removed from the dependency array so the useEffect is executed only once. Otherwise you say that useEffect should be updated whenever cards changes but the useEffect will also update cards so it creates an infinite loop.
You stated above that you changed the dependency array and it did not work. You also pass setCards to your list component. Probably your list component changes cards which causes your FavoriteHikes to be rendered again. This then renders your List component again which will in fact change cards again and create another infinite loop
I created you a working example you can play around with below.
If you want to elaborate on why you passed setCards to your List component I can help you further
import { useState, useEffect } from 'react'
function List({ cards }) {
return <ul>
{cards.map((card) => (
<li key={card.id}>
<h2>{card.name}</h2>
<p>{card.location}</p>
<p>Length: {card.miles} miles</p>
</li>
))}
</ul>
}
function App() {
const [cards, setCards] = useState([]);
useEffect(() => {
const asyncFunction = async () => {
const response = await fetch("https://67f56264913986b16fa4640a.mockapi.io/hikes")
const data = await response.json()
const filteredData = data.filter((data) => data.favorite == true);
setCards(filteredData)
}
asyncFunction()
}, [])
return (
<div id="favorite-hikes-div">
<div>Navbar</div>
<h1 id="favorites-header">Favorite Hikes</h1>
<List
cards={cards}
/>
<div>Footer</div>
</div>
)
}
export default App
You are a new user and got some downvotes which is probably frustrating. As @estus-flask mentioned you do not have a minimal working example. Please provide one that means something similar to what I have above. It should include a main component, your list components and remove unnecessary components like NavBar and footer and replace them with empty divs or remove them entirely. Otherwise your question is great. it has a somewhat fitting title, you described what you tried in the past and your problem is clear. If you add this mve I will give you an upvote.