JFrame Window size

I’m trying to visualise a Plan for Busservices. For that I need to create a Graphic Panel that is at least 2900 Pixels wide (to show 24h, 1 Pixel = 30sec). First I tried it with a “normal” JFrame, but this didn’t want to create a window wider as my Monitor even tho i set … Read more

GitHub folders have a white arrow on them

I have recently pushed to github, and see a white arrow on one of my folders. and when i click on the folder, it does not open it. On my local machine, it has contents, but in github i cannot access them. What does this mean? Symptom Check if locally you have a .git/ sub-folder … Read more

How to return a value if cell meets all criteria?

I have this budget sheet I am making. A big thing is I want to see what is due throughout the month. (Chart on Bottom). I have all the accounts listed via query and I’ve been trying to write a formula that would read the name of the account and match it to the tables … Read more

CoreData: Request was cancelled because the store was removed from the coordinator

I am working with CoreData and WidgetKit. I would like to implement a NSPersistentCloudKitContainer into an interactive widget. However, when the user makes a change over the widget, the container does not sync the data until the user launches the app. I noticed an error: error: CoreData+CloudKit: -NSCloudKitMirroringDelegate resetAfterError:andKeepContainer:: <NSCloudKitMirroringDelegate: 0x12f36e8e0> – resetting internal state … Read more

Cycle2 JS center active slide

Using Cycle 2 (https://jquery.malsup.com/cycle2/) I am trying to make the active slide centered – by default it is the left of 3 slides that is active (x3 visible) data-cycle-carousel-visible=”3″ so my caption doesnt match with the centred slide. Any help much appreciated 🙂 body { font-family: Arial, sans-serif; font-style: normal; font-size: 18px; line-height: 22px; margin: … Read more

Coroutine Freeze on Google Auth Sign In

I seem to be having issues implementing coroutines into my jetpack compose android app. It freezes on .await(). Code: @OptIn(ExperimentalMaterial3Api::class) @Composable fun LoginScreen(navController: NavController) { lateinit var auth: FirebaseAuth auth = FirebaseAuth.getInstance() auth.signOut() //More UI in between Button( //UI onClick = { val email = userState.toString() val password = passwordState.toString() if(email.isNotEmpty() && password.isNotEmpty()){ //CALL HERE … Read more

Pass data between view models in SwiftUI

I have a parent view and a child view. Both the parent and child view have their own view model. In the child view, the user can make a selection which is saved in a [String]. I want to use the values from the child view’s [String] in the parent view. What would the best … Read more

How can i revers Clickup Dock with nginx?

I want use this Clickup Doc on my homepage but return 504 badway. But it return 502 badway. I try it: server { server_name sub.domain.com; proxy_max_temp_file_size 0; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; add_header ‘Content-Security-Policy’ ‘upgrade-insecure-requests’; location / { proxy_pass https://doc.clickup.com/31186101/p/h/xqq5n-104/739a5a0867b76cb; uwsgi_param Host $host; uwsgi_param X-Real-IP … Read more