Have you added the required manifest declarations to indicate that you support messaging notifications?
"This webpage was reloaded because it was using significant energy safari" reloads the pages and disrupts the conversation in the page. I think it is general and chronic issue in Safari. Is there any solution and anyone experiencing the same problem?
you can read the csv file like pandas python syntax using my lib https://github.com/hima12-awny/read-csv-dataframe-cpp
I'm having the same problem when installing flash-attn
on Windows. Unfortunately PyTorch no longer support conda installation!
I know too little about xml.... Found this: stackoverflow.com/questions/64243628/….
Looks like I had a namespace...
xml_ns(doc) output "d1"
now running
>xml_find_all(doc, "//d1:t") #finds the text nodes!
Thanks Leon Unfortunately it still doesn't work, I inserted in the Manifest:
<uses-permission android:name="android.Manifest.permission.WAKE_LOCK"/>
<receiver android:name=".MyReceiver" android:exported="true" android:enabled="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</receiver>
I made the receiver like this:
[BroadcastReceiver(Name= "MyReceiver", Enabled = true,Exported =true)]
[IntentFilter(["com.google.firebase.MESSAGING_EVENT"])]
public class MyReceiver : BroadcastReceiver
{
public override void OnReceive(Context? context, Intent? intent)
{
if (intent != null && context!=null)
{
Intent serviceIntent = new(context, typeof(NotificationMessagingService));
if (Build.VERSION.SdkInt >= BuildVersionCodes.O)
{
Android.App.Application.Context.StartForegroundService(serviceIntent);
}
else
{
Android.App.Application.Context.StartService(serviceIntent);
}
Intent main = new(context, typeof(MainActivity));
context.StartActivity(main);
}
}
}
I also tried to insert the full name in the Receiver name, with no success.
The Messages I send are of this type:
Message message = new()
{
Data = new Dictionary<string, string>()
{
{"xxx","xxx"},
{"yyy","yyy"}
},
Topic = "gggg'
};
Do you have any other suggestions?
Tanks.
@Jalpa, is the middleware AND ErrorBoundary needed to be able to handle all unhandled exceptions? e.g., does this depend on the render mode? does it handle circuit errors (eg, temporary & full Blazor disconnects), errors in razor components, errors in controllers, errors in the DB?
How do I refresh the related UI after passing data into a server component in Next.js 15 (without full page refresh)? Problem I'm working with Next.js 15 and trying to update a server component's UI after a client component triggers a server action.
Here's the simplified setup: Client Component
'use client';
import { updateText } from './parent_comp';
export default function ClientComp() {
const handleClick = async () => {
await updateText('devtz007'); // Sends new data to the server
};
return (
<button
onClick={handleClick}
style={{ color: 'black', background: 'coral' }}
>
Send Text
</button>
);
}
Server Component + Action
'use server';
import ClientComp from './client_comp';
import { revalidatePath } from 'next/cache';
let text = 'initial text';
export async function updateText(newText: string): Promise<string> {
text = newText;
// revalidatePath('/example_page'); // This re-renders the page, but I want a
more targeted update!
return text;
}
export default async function ParentComp() {
return (
<>
<p style={{ color: 'green', backgroundColor: 'coral' }}>
Received Text: {text}
</p>
<ClientComp />
</>
);
}
What I’ve Tried
revalidatePath() works but refreshes the entire page. I updated my
code to use revalidateTag() and added cache tags like textUpdate:
// Server action with revalidateTag
export async function updateText(
newText: string,
options: { next: { tags: string[] } },
) {
if (options.next.tags.includes('textUpdate')) {
text = newText;
revalidateTag('textUpdate'); // Should trigger the related components
}
}
And the component:
export default async function ParentComp() {
return (
<>
<p style={{ color: 'green', backgroundColor: 'coral' }}>{text}</p>
<ClientComp />
</>
);
}
Issue
Received Text
) or the whole page?What you want may be to "Mute inline plotting" as described here https://docs.spyder-ide.org/current/panes/plots.html
what LLM provider are you using?
Its is a loading issue I think so but not sure I have also face same issues
Were you able to resolve this? I have multiple data disks to add to this, any suggestions for the data disk and attachment code?
It looks like this param does not cover Direct buffer memory OOME.
See this post: -XX:+ExitOnOutOfMemoryError ignored on 'java.lang.OutOfMemoryError: Direct buffer memory'
I have the same issue, only terrain shadow are deep dark while objects are fine; suggestion by aidangig does not affect these dark shadows on terrain but only other's shadows. by trying various parameters, terrain shadows act like Penumbra tint is checked... any suggestions are welcome, thanks :)
your Rust code looks fine and the error is not related to the SurrealDB Rust SDK itself. Could you please provide more information?
did anyone got anything on this? Any solution / help would be greatly appreciated.
@Chriag Sheth - NEVER use a static class to store user information. The reason is the static data is NOT user specific. Every user is going to be using the exact same dictionary. This means users are going to see and modify each others' data.
Autoconfiguration classes should not enable Component Scanning, as stated in the official Spring documentation.
See https://docs.spring.io/spring-boot/reference/features/developing-auto-configuration.html#features.developing-auto-configuration Note in paragraph “Location Auto-configuration Candidates”. The correct way should make use of @Import
which is the import for PlanApi java object?
Did you figure out how to make the code work?
You need to create a wrapper or method that will catch the exception and locate the element again as shown below:
I have the same issue, and solved with the same solution. Very nice!
Các ký hiệu trên mainboard cho người mới bắt đầu
https://phanrangsoft.com/blog/cac-ky-hieu-tren-mainboard-cho-nguoi-moi-bat-dau/
I've found the source of error. With this configuration you should have deploy from gh-pages branch:
When disabling trimming for android in release mode the aab file works as expected.
thank you @nnatter It's working
I want text field for each line item in the cart and entered value should be displayed for order in admin . How we can achieve this.
I'm facing the same issue. Did you solve this by any chance? what was the cause and how to fix it? thanks
since it should adjust on screen size you should be able to use the onchange=[(e) => set screen.width(e.target.value)} however i am unsure of this solution but implementing the onchange e handler should maybe work?
I recently have the same problem and I have not changed anything in my auth or Livewire component.
I use Laravel 12 myself, but my code is otherwise similar.
Have you found a solution yet?
you are waiting 60 seconds for your content? I would say the problem is in your api instead of frontend, can you in anyway batch your requests, so you are sending more requests in order to receive smaller responses?
Looks like we found a solution by setting up consent mode, following these instructions:
https://www.youtube.com/watch?v=MqAEbshMv84
it was extension Indent Rainbow that has been enabled
Df["x"] = df1.y
Why I am getting this error while assigning a column as new column
same issue here, network_access enabled in extension toml setting, but still got error
We can make use of the fs module. Here's the link to use it.
Configuration example for SSL implementation using fs module
Чи можна пробачити зраду?
Зрада — це слово, яке болить навіть тоді, коли його лише вимовляєш. Воно асоціюється з болем, розчаруванням, втратою довіри. Але чи завжди зраду потрібно карати осудом? Чи можна її пробачити?
Кожна людина хоча б раз у житті переживала момент зради — від друзів, близьких, коханих. Це рана, яка довго не гоїться. Але життя складне й неоднозначне. Іноді зрада — це не просто злий умисел, а наслідок слабкості, страху або помилки. Тоді виникає інше питання: якщо людина щиро кається, чи варто дати їй шанс?
Пробачити — не означає забути. Це радше внутрішній вибір: не дозволити болю керувати собою, а дати можливість зцілитися. Прощення не звільняє зрадника від відповідальності, але звільняє нас від тягаря ненависті. Пробачити — це вияв сили, а не слабкості.
Однак пробачення можливе лише тоді, коли є щирість, усвідомлення провини та бажання змінитися. Якщо зрада повторюється — це вже не помилка, а свідоме зневажання почуттів. У такому разі прощення стає самообманом.
Отже, зраду можна пробачити, але не кожну і не завжди. Усе залежить від обставин, щирості людини та нашої здатності розрізнити слабкість від зневаги. Іноді прощення — це шлях до внутрішнього миру, а іноді — крок назад. Важливо не тільки пробачати інших, а й не зраджувати себе.
Having the same issue, but my ticket got closed and was told it's a duplicate ticket of a ticket 8 years old. As if the same issue and fix from 8 years ago is going to be valid.
I'd expect the lovely people on this site with down vote your issue and this will also get closed. They get a little power trip with the Admin button.
guethis is guest yser user guestst
did u got an solution for this
Did you find any solution to this problem? Now I Have the same issue.
When I change Any CPU to ARM64 is does not give error but is it correct way.And I make all changes in XCode Also I remove all pair files and re-pair my windows to mac.
I’m experiencing the same issue! It seems like SKPaymentQueue.defaultQueue.storefront.countryCode
is cached. Even after changing the App Store country by switching Apple IDs, it still returns the wrong country code. Have you managed to solve this issue?
I started solving the same problem yesterday. Did you manage to solve it somehow?
Explain the process clearly, i also trying to do the same thing
[FrameworkServlet.java:534] : Context initialization failed com.google.inject.internal.util.$ComputationException: java.lang.ArrayIndexOutOfBoundsException: 14659
we are facing same issue while starting up the application
and we are using java 11 to building the warfile and samw warfile
we deployed in dev2 and UAT but same branch 7.8.8 branch deployed in Dev its working fine with 7.8.8 and 7.8.7 not working getting same issue
can i ask what the results of this project I have nearly project of youres
Pls show what error you are getting. Share the log for it.
I wonder how can we iterate for other lines can you please give me an example for that?
did you find any answer to this?
Hello,Have you found a solution,brother
I face the same issues. Has anybody found any solutions?
I start a new project (maui .net8), i change the svg files (Colors, etc.) and in android everything works but in IOS the purple .NET icon & splash screen remains the same when i run app in local device.
Has anybody resolved this?
Is there any way to convert rdf:PlainLiteral to string, the exception thrown by the swrl built-ins
@christopher moore, thanks for your response
@Imran, How to replicate the same postman process in python. i am not able to get proper documentation on using confidentialclient library from msal.
Following your feedback, I looked at the ConsumeKafkaRecord and I think that yes you're right I could apply the following Flow: ConsumeKafkaRecord(ScriptedReader, CSVWriter) => MergeContent => UpdateAttributes => PutFile.
1/ In the ConsumeKafkaRecord, I'd like to use a ScriptedReader to convert and modify the json message and a CSVWriter to write the new message.
2/ MergeContent to merge the stream files.
3/ UpdateAttributes to change the file name.
4/ PutFile to write the file
The only problem is the header I want to write to the CSV file, as I only want one header.
Do you agree with this flow?
Thanks a lot.
Here is a demo given by react flow on how to download a diagram as image https://reactflow.dev/examples/misc/download-image
I too faced a similar issue when using parallel stream API.
Below is the scenario; I have a list of transaction objects in reader part of a spring batch , when this list if passed to processor, used parallel stream to process the transaction object in a multi threaded mode. but unfortunately, the parallel stream is not consistent. it is skipping the records at times.
Any fix added in java.util.stream API?
Thank you for outlining the issue you’ve been experiencing with the sheet metal bends and the beveling on the edge of the bend line. I understand that this slight bevel is causing a double cut during the laser cutting process, which can be quite challenging.
Regarding your question about using the InventorServer API, we will study the feasibility of extracting just the top or bottom face of the flat pattern using the API in combination with Forge. To better understand your specific situation and provide the most accurate solution, we would appreciate it if you could provide more details, such as:
The specific version of Inventor you are using.
Any sample data set or files where the beveling issue is occurring (if non-confidential and permissible).
Any additional context on how you are currently exporting the flat pattern via DataIo.
A video demonstrating the issue would be particularly helpful.
Once we have more information, we can explore possible solutions and API functionalities to address the problem.
Looking forward to your response.
Thanks and regards,
Chandra shekar G
Developer Advocate
Autodesk Platform Services (formerly Forge)
Stay updated with Autodesk Platform Services!
DevCon 2025 goes to Amsterdam! Join us - https://autode.sk/4eWNw66
Follow us on LinkedIn | YouTube
Subscribe to our Newsletter | Explore Tutorials & Code Samples
Join our Upcoming Events
Like your post, thanks for sharing
Creating and Publishing React Npm Packages simply using tsup https://medium.com/@sundargautam2022/creating-and-publishing-react-npm-packages-simply-using-tsup-6809168e4c86
https://rajrock38.medium.com/lost-your-uncommitted-changes-in-git-there-is-a-fix-2357ef58466 thank me later for sharing answer
For large log files, I found this AI-powered debugging tool that automates
Did you ever find the answer to this? I am struggling with this presently.
Running your script directly in the R console (instead of within RStudio) might help, as RStudio can sometimes introduce additional memory overhead or restrictions. Are you on Windows?
check out mine sudoku solver , it handle such as error
thank you very much Magdalena. we realize that the CSS isnt influencing the export and adding the styling via attributes does the trick
best regards
edwin
I have the same problem, if i change any configuration with the visual tool it brokes the file. Any suggestion?
Thanks for this. It helped me configure my application.
currently in the same situation. Was there a solution? If so, can you please share with me?
Thanks!
Can we add IP range in the allowed IPs list instead of individual IPs?
Vxcdgxvdfgrghbhggbhhfl http://10.0.0.91:3000/hook.js
@Rajkumar Gaur solution worked for me. Additionally I had to enable deploy keys in https://github.com/organizations/MYORGANIZATION/settings/deploy_keys
Can you post your pipeline, or share the yaml steps? Generally, these are some steps I follow:
All these tasks of type DotNetCoreCLI@2.
can you confirm if this below azure policy worked for you?
I'm experiencing very similar issues with a similar setup. Did you find a solution or some more information on the cause?
can someone help me to find the password of this hash $bitlocker$0$16$cb4809fe9628471a411f8380e0f668db$1048576$12$d04d9c58eed6da010a000000$60$68156e51e53f0a01c076a32ba2b2999afffce8530fbe5d84b4c19ac71f6c79375b87d40c2d871ed2b7b5559d71ba31b6779c6f41412fd6869442d66d
You need to use @Body annotation to receive the body. Something like @Body String body. Request.getBody() will be null in Micronaut as it loads this data asynchronously.
Refer:
https://stackoverflow.com/a/75704413 https://micronaut-projects.github.io/micronaut-docs-mn1/1.1.x/guide/#requestResponse https://micronaut-projects.github.io/micronaut-docs-mn1/1.1.x/guide/#bodyAnnotation
I have the same problem, I changed it to db.all and it returns an array and works
I am trying to use the codes above in my theme's functions.php file, but all it does is to create a critical error. Am I adding it wrong? Thanks!
screenshot in url:
why not use a different email it might work.
Thanks @howlger for answering in the comments. Basically:
Is this an Eclipse bug?
No. It's a Lombok bug. Reported at https://github.com/projectlombok/lombok/issues/3830.
Is there any way this can be solved by tweaking Eclipse preferences?
No.
Follow up question....Im on mac and having simlar issues. Want to try the solution above but uncertain of the directories to make an attempt. Can anyone give a bit more detail to this?
I already have insight face installed (it fails to load in comfyui) and the .whl file fails to build.
All help appreciated.
Solution id like to use:
sudo apt-get install build-essential libssl-dev libffi-dev
mkdir temp
cd temp
git clone https://github.com/deepinsight/insightface/ .
pip3 install wheel setuptools
pip3 install -r requirements.txt
cd python-package
python3 setup.py bdist_wheel
pip3 install dist/insightface-0.7.3-cp311-cp311-linux_x86_64.whl
HERE's the startup showing where the error:
(base) mo-ry@Mac-Studio ~ % cd /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI
(base) mo-ry@Mac-Studio ComfyUI % python3.11 main.py
[START] Security scan
[DONE] Security scan
## ComfyUI-Manager: installing dependencies done.
** ComfyUI startup time: 2025-03-10 13:23:33.297
** Platform: Darwin
** Python version: 3.11.11 (main, Dec 11 2024, 10:25:04) [Clang 14.0.6 ]
** Python executable: /opt/homebrew/Caskroom/miniconda/base/bin/python3.11
** ComfyUI Path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI
** ComfyUI Base Folder Path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI
** User directory: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user
** ComfyUI-Manager config path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user/default/ComfyUI-Manager/config.ini
** Log path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user/comfyui.log
Prestartup times for custom nodes:
0.8 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/ComfyUI-Manager
Checkpoint files will always be loaded safely.
Total VRAM 131072 MB, total RAM 131072 MB
pytorch version: 2.6.0
Set vram state to: SHARED
Device: mps
Using sub quadratic optimization for attention, if you have memory or speed issues try using: --use-split-cross-attention
ComfyUI version: 0.3.26
ComfyUI frontend version: 1.11.8
[Prompt Server] web root: /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/comfyui_frontend_package/static
objc[53520]: Class AVFFrameReceiver is implemented in both /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/av/.dylibs/libavdevice.61.3.100.dylib (0x108f983a8) and /opt/homebrew/Caskroom/miniconda/base/lib/libavdevice.60.3.100.dylib (0x3147d0800). One of the two will be used. Which one is undefined.
objc[53520]: Class AVFAudioReceiver is implemented in both /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/av/.dylibs/libavdevice.61.3.100.dylib (0x108f983f8) and /opt/homebrew/Caskroom/miniconda/base/lib/libavdevice.60.3.100.dylib (0x3147d0850). One of the two will be used. Which one is undefined.
### Loading: ComfyUI-Manager (V3.30.3)
[ComfyUI-Manager] network_mode: public
### ComfyUI Revision: 3238 [9aac21f8] *DETACHED | Released on '2025-03-09'
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json
Traceback (most recent call last):
File "/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/nodes.py", line 2147, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 936, in exec_module
File "<frozen importlib._bootstrap_external>", line 1073, in get_code
File "<frozen importlib._bootstrap_external>", line 1130, in get_data
FileNotFoundError: [Errno 2] No such file or directory: '/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface/__init__.py'
Cannot import /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface module for custom nodes: [Errno 2] No such file or directory: '/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface/__init__.py'
Import times for custom nodes:
0.0 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/websocket_image_save.py
0.0 seconds (IMPORT FAILED): /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface
0.0 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/comfyui_instantid
0.1 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/ComfyUI-Manager
0.7 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/comfyui_faceanalysis
Starting server
To see the GUI go to: http://127.0.0.1:8188
# my code
import random
from threading import Thread
import time
import os
from inputimeout import inputimeout, TimeoutOccurred
# todo inputs
b = input("press enter to start")
lowest_numb = input("lowest number")
highish_numb = input("highish_numb")
time_for_qus = int(input("time for question"))
print(type(time_for_qus))
def ask_question():
ran_1 = random.randint(int(lowest_numb), int(highish_numb))
ran_2 = random.randint(int(lowest_numb), int(highish_numb))
print(f"{ran_1}x{ran_2}", end="")
try:
answer = inputimeout("", time_for_qus)
except TimeoutOccurred:
print("Times up!!!")
ask_question()
ask_question()
my goal is to make a multiplication game, but i am having trouble canceling the input
function
can you help?
PS. please respond
if you solved the problem please share the solution
did you figure out how to delete the unwanted white layer behind the custom tab bar?
I have the same issue:
Did you ever figure this out?
I am having similar, but my app hangs on the index.html file. So I just get the loading page. Hard refresh and all is good
If in the first example I already know the name of the group "test" and I want to know only the blocks contained in this group. How do I modify the example?
another question, is it possible to select a block and know which group it belongs to?
thanks
Mrz
I see it's been a while since this was discussed, but I wanted to ask—has anyone tried integrating Twilio IVR with a CRM for better call tracking and workflow automation? I'm curious if handling call routing based on real-time CRM data has worked smoothly for anyone. Also, any thoughts on handling Twilio’s concurrency limits when scaling up a virtual call center?
Sorry this is put as an answer as I can't comment due to the rep requirement, but I think you need to use the GraphQL API instead of REST.
I didn't find the ".git" folder on my project. I can see the ".gitattributes" and ".gitignore". please help me
How did you come to this conclusion? "Somehow this generates an error when Googlebot tries to index the pages and the error causes the Nuxt client-side code to show the 404 page."
We're currently having the same issue after upgrading Nuxt 3.9.3 to Nuxt 3.15.4 and upgrading major versions;
"@nuxtjs/i18n": "9.1.5",
"@nuxtjs/sitemap": "^7.2.4",
Is it possible to define different primary color set for dark and light mode in app.config.ts ? How it is done?
i don't know if u could resolve this issue. If so, how did u do it?
The answer with most vote just works like charm. Thanks for the help
I'm having the same issue. Did you find any solution?
Bump
I have the same problem, how you resolved it??
Did you manage to find a solution? Am I experiencing the same problem?
Well i used curl and included my session cookie, that worked for now :)
Give me crush report screenshot