Newest Questions
24,237,343 questions
0
votes
0
answers
7
views
Is DATEFIRST's default value different for non-US English locales in SQL Server?
SQL Server has a DATEFIRST setting that determines the first day of the week for date calculations.
SELECT DATENAME(weekday, '2025-04-23') AS WeekdayName -- Wednesday
SET DATEFIRST 7 -- Sunday
...
0
votes
0
answers
6
views
Comments in between POSIX shell script's function name and its body, problem?
I wonder if I may use comments in between POSIX shell script's function name and its body? This appears not to throw any problem in shellcheck and runs in Dash / Bash, but searching for this ...
0
votes
0
answers
10
views
Google Sheets ArrayFormula needed to choose oldest and most recent data for each row (placement exam results)
Background info: Students are required to take a reading and math placement exam when entering our facility. After a certain amount of time, they take the post exam. Students may come numerous times ...
0
votes
0
answers
3
views
How to close the suggestionBuilder from a SearchAnchor via the SearchBas?
Problem: I have a SearchAnchor and a SearchBar within that Anchor. If I want to search for something, that isn't in the suggestionsBuilder it doesn't automatically exit the suggestionsBuilder, and I ...
0
votes
1
answer
6
views
Why is Postman not opening my request tabs?
While using Postman I have a ton of collections, each with their own requests under them, but whenever I try to open any of them (or create a new request) Postman simply does not react.
If I do Menu -&...
-1
votes
0
answers
6
views
The best way to deal with null values and outliers?
Im currently dealing with a DB that has some missing/incorrect values whats the best way to deal with it ?
*im using google colab and python
0
votes
0
answers
10
views
How to get the most value, id and timestamp for every day
Data
id
timestamp
value
225
2018-07-24 13:00:00
0
226
2018-07-24 18:33:32
196
227
2018-07-25 5:59:14
290
173
2018-07-05 8:16:14
258
228
2018-07-25 7:00:00
469
175
2018-07-07 6:00:00
0
176
2018-07-07 9:...
0
votes
0
answers
5
views
How to prevent downswipe inside a lazycolumn in a modal bottom sheet using jetpack compose?
I have created a normal modal bottom sheet. Inside the modal bottom sheet, I have a lazycolumn with items.
I have run into the problem that when a user scrolls to the top of the chat and drags ...
0
votes
0
answers
7
views
Generic way to register an object as a variable in another script?
I'm working in Unity and have a project with a number of "parts" that we've broken into several scenes. For example, traffic is in one scene, buildings another, trees and props another, etc....
1
vote
0
answers
15
views
Why does async/await sometimes lead to slower execution than raw Promises?
I've been working with JavaScript for a while and often prefer using async/await for readability. However, I recently ran into a situation where switching to raw Promises (using .then) actually ...
0
votes
0
answers
10
views
How to make getCredential() work in Java?
I'm in the process of adding phone number and google account sign-in to my app.
The phone number sign-in works great, but I cannot seem to make the google sign-in work, no matter what I do. (I even ...
-3
votes
0
answers
14
views
Android source is not compiled
The application source is not compiled, an error is displayed, and no Android apk output is given.
an error is:
com.android.tools.r8.internal.yw
Please help me
Thanks
0
votes
0
answers
12
views
VS Code 1.99 Remote-SSH fails due to old host kernel — is there a workaround?
I'm trying to connect from VS Code 1.99 (March 2025 release) to my Synology NAS (DSM 7.2.2) using the Remote - SSH extension, but since this update, I'm no longer able to connect. The connection fails ...
0
votes
0
answers
10
views
Google Calendar Push Notification - Body is empty?
I have setup a push notification for calendar events like so:
const response = await calendar.events.watch({
auth: authClient,
calendarId: 'primary',
requestBody: {
id: 'calendar-...
0
votes
0
answers
7
views
How can I show content presented inside a navigation link as FullScreen
From the Apple's example
struct FullScreenCoverItemOnDismissContent: View {
@State private var coverData: CoverData?
var body: some View {
Button("Present Full-Screen Cover With ...