111 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
2k
views
KVM Virtio-balloon: how to activate free page reporting feature on the device side?
I'm trying to get free page reporting running on my KVM guest (Ubuntu 22.04 server with custom kernel from upstream Linux 6.5). My host is Ubuntu 20.04 with 6.5 Linux. Free page reporting is listed as ...
0
votes
0
answers
185
views
I'm using tix Balloon and I want to make a hovering text which will change according to some variable
The problem is that when I change the message, the old message still appears and the new one is just shown above it. is there any way to fix it?
0
votes
2
answers
108
views
Is there a way to determine which balloon I clicked on?
I am writing a program in Delphi that displays fresh information in balloons.
Is there a way to determine which balloon I clicked on?
Like this:
sendername := 'Gert';
TrayIcon1.Visible := True;
...
-2
votes
2
answers
1k
views
a['regions'] KeyError in balloon.py
In the balloon.py file in Detectron2 samples, I get a KeyError of 'regions' whenever I run the balloon.py on my custom dataset. I figured something was wrong with the json file in the train folder, so ...
0
votes
1
answer
281
views
Balloon plots with colours based on value and with value number inside the dots
structure(list(Patients = c("LT2", "LT2", "LT2", "LT2", "LT2",
"LT2", "LT2", "LT2", "LT2", "LT2", &...
0
votes
1
answer
105
views
What will be the time complexity of the while loops whose iteration is not predictable?
I have this algorithm written where the while loop can vary from N to 0 depending on the input array, but we cannot give O(N*N) also because if the while loop is executed once for N times, then for ...
0
votes
1
answer
781
views
How to use Balloon or Tooltip with a image ? Tkinter Tix or another Tooltip
Hi I want to set inside the tooltip an image
Is this possible?
from tkinter import*
from tkinter.tix import*
from utils import get_path
root =Tk()
root.title('hola')
root.geometry("500x500")
...
-1
votes
1
answer
101
views
Non ascii characters in Balloon WinApi popup
I try to show a balloon popup with a Unicode text, but I always see a ??? characters inside. When the title (szInfoTitle) doesn't contain non-ascii characters everything works just fine.
And here is ...
MNie's user avatar
- 1,367
0
votes
1
answer
3k
views
Ballon plot by using ggplot2
I made a ballon plot using ggplot2.
Here is the code:
p6 <- ggplot(balloon, aes(x = factor(Clusters,level = level_cluster), y = factor(Gene_names, level = level_gene), size = log(counts), fill= ...
0
votes
1
answer
179
views
Does Google Map support <BalloonStyle><text> like Google Earth? [duplicate]
I am uploading kmls into Google Map (not Google Earth).
My KMLs contain polygons (county borders).
There is a different "styleurl" for each county. Right now I can control the content of the ...
0
votes
1
answer
273
views
CKEditor BalloonEditor Ajax Save
I'm playing around with CKEditor5 but couldn't get it to work. Here is my Code
<div name="content" id="editor" onblur="saveOnBlur(1,'alias')">
<p>Here goes the initial content of the ...
-2
votes
1
answer
2k
views
How to create Balloon Marker xib View in ios-charts?
i have XIB to display multiple data show on chart.
but i do't set ballon mark and when click last point screen cut in my XIB.
here attach to screenshot to better understand my issue.
Second image is ...
0
votes
1
answer
435
views
Problem with Ball when it bounces with brick (Arkanoid Game)
I'm building a Breakout Ball game like Arkanoid, and I have a big problem when ball collide with bricks. It happens when ball collide on the corner of brick (brickX,brickX) (brickX,brickX+brickLength) ...
1
vote
1
answer
1k
views
I'm trying to show balloon using balloon.js
I'm trying to show balloon using balloon.js.
https://urin.github.io/jquery.balloon.js/
Here is my code.
<div class="Wrap" style="background:#ccc; width:600px; height:1200px; margin:0 auto;">
...
0
votes
2
answers
1k
views
How to get the message from a PyQt5 notification message?
I'd like to write an application using PyQt5 that has various notification messages.
Is it possible to get the text from a balloon message when a user clicked on it?
I wrote a sample code that ...