9,516 questions
0
votes
1
answer
146
views
Jest-Puppeteer test for a chrome extension - tests pass, but test suite fails due to the website needed
I have a chrome extension I'm building for work to test an external website that I have no control over. The website has lots of internal errors that cause my test suite to fail, although the tests ...
-1
votes
1
answer
54
views
Content is not adjusting with window size (width) css
I want to create a Dashboard where I see the sidebar on the left (green) and the content on the right (blue). I was able to split the content (right side) into classs .split-top, .split-bottom-left ...
2
votes
1
answer
143
views
Calculate slope over a variable window size, the size of which is dependent on values contained within the rows (Pandas/Python)
Thank you so much for any advice in advance.
I'm trying to calculate slope over windows in a dataset but I need the window size to be variable and dependent on values contained within the dataset.
To ...
2
votes
0
answers
247
views
In macOS how to create a window hover effect for titlebar?
This is the effect I am after, demonstrated in the QuickTime Player application.
As you move the mouse over the Window. The title bar and controls fade in. When you move away from the Window. The ...
0
votes
1
answer
250
views
Eror clearing File Explorer “Recent Files” History in Windows 11
enter image description herei did everything to try to fix it but I can't with normal methods that happened cause i changed my user folder name cause it had sign on it so some programs couldn't be ...
-1
votes
1
answer
248
views
Open pdf in new tab with right click option ' open in new tab'
function showPDF(pdfUrl) {
var iframe = document.getElementById("pdfFrame");
iframe.style.display = "block";
iframe.src = pdfUrl;
document.getElementById("...
0
votes
1
answer
214
views
How to change window size at runtime using Rust and SDL2?
I want to, eventually, make a graphics menu for a game in which among other things the user should be able to switch the game windows's resolution. What would be the correct way of going about doing ...
0
votes
1
answer
83
views
How to update content of child window (c++) even if window size does not change
The content of my application window is only updated when i change the window size.
Details:
I have a windows application written in c++ and compiled with mingw64.
Within WinMain, i do a CreateWindowW ...
0
votes
1
answer
159
views
Java (LWJGL) Window
I am currently trying to figure out make to make window for a java game (with lwjgl 3.3.3). Most of the tutorials I have come across are very outdated so some help (along with some slight explanations ...
0
votes
1
answer
92
views
Tkinter: Cursor Active on Window Beneath Tkinter Only
Im creating an Full Screen Overlay.
If you google "Twitch Overlay", you will understand what It will look like.
Whenever my Mouse is on top of the tkinter Image.
I am unable to click the ...
0
votes
2
answers
158
views
Problem coming while doing p4 sync on 70 machines from same client
There is a client on windows: "client_common" having following specififcation:
Client: client_common
Update: 2023/10/20 06:12:30
Access: 2023/11/17 02:07:31
Owner: PCS
Root: C:\farm\...
0
votes
1
answer
3k
views
Octave Showing Weird Output and Command Window not working
i Know i don't do something dumb, cause im working with Octave for years now.
I installed it on my new computer and the command window showed a weird output of differrent colored symbols. I installed ...
5
votes
2
answers
2k
views
How can I force the VS Code panel to be certain height on startup?
I think the title and image sum up the problem (this has been going on for years).
Any way to force the terminal window to have a fixed height (or percentage, e.g. 15%) when launching/restarting ...
2
votes
1
answer
667
views
JSDoc globalThis & Window object extend
I'm battling with JSDoc, trying to make it work with new properties on the window object.
I've tried both of the @typedef on the Window & globalThis solutions you see in the snippet, without any ...
-1
votes
1
answer
40
views
mingw64 Makefile:5: *** missing separator
I'm using mingw64 in Windows trying to invoke Makefile to run Go
but keep getting:
Makefile:5: *** missing separator.
This is the Makefile:
BINARY_NAME=celeritasApp.exe
## build: builds all binaries
...
0
votes
1
answer
296
views
Android: Get app window size, including cases of split view and pop-up view
I'm developing an Android app in Java using Android Studio and need to calculate the neto size of the app window (width and height, excluding the navigation and status bar).
It should be taken into ...
0
votes
0
answers
61
views
Is GetProcessMemoryInfo thread safe
I have an application with several threads running. The application has a safety feature where it has a memory limit. If it exceeds the allowed memory usage, it exits gracefully. This is meant to ...
-2
votes
2
answers
156
views
Get field value from another window in wpf (MVVM)
I want to cary my software that I developed in C# winform to WPF base on MVVM pattern. I'm just at the beginning and there are many problems to solve.
One of them is retrieving data from other window.
...
0
votes
0
answers
53
views
Why is window.close() not working if open() works?
I'm working on a big JavaScript project and I have this function in which I open a window and then close it using inputs in a form.
The problem is that, when I try to close the window I've already ...
3
votes
2
answers
471
views
How do I create a simple popup video in Python and close it?
I have a simple pokemon-battle type project I'm doing for a college but I want to add more visuals to it by adding small 2 sec animations that plays everytime a button is clicked. I thought about ...
0
votes
1
answer
775
views
Warning: Prop `className` did not match and window is not defined in Next 13 App Router
I have one headache with solving an error in Next.js 13 App Router.
Warning: Prop `className` did not match.
Server: "styled__HeadLink-sc-6589f63-0 fIOFTm"
Client: "styled__HeadLink-...
0
votes
0
answers
47
views
Pyspark Window using dates as boundary
I have a challenge in pyspark and I haven't really been able to find a good solution so far.
I need to sum values of six months for each line.
E.g.
Lets assume I have this:
ID
DATE
VALUE
1
2023-04-17
...
0
votes
0
answers
99
views
.NET 6.0 service runs flawlessly in debug, but fails when started from Service Manager
I have developed a service using .NET 6.0 that monitors a directory and interacts with an Odoo server. Everything works perfectly when I run it directly or debug it in Visual Studio. However, when I ...
-2
votes
1
answer
769
views
Clone a git project from window to mac
I want to clone a git project from window to mac.
I type the following command on my macbook:
git clone //<window-1-name>/Projects/<window-1-folder-path>
return a message:
fatal: ...
0
votes
1
answer
109
views
How to juggle between windows (game and pause window) in ncurses?
I am creating a game in C. I'm not playing it in stdscr, but in a win called basewin. I want, when the user press 'P', to open another window, called pausewin, and pause the game running on basewin. ...