Newest Questions
24,156,975 questions
0
votes
0
answers
2
views
Can font-size be set by unicode range?
I'd like to change the size of the symbols but they cannot be wrapped in additional HTML tags. Is there a way to target a unicode range when setting font-size? Such as,
span.name[...unicode range...] ...
0
votes
0
answers
3
views
DIV that stretches, but scrolls?
I'd like to make a DIV that stretches to fill all available vertical space within its parent DIV, but upon growing larger than that parent DIV—because of content inside of it, like images, or text—...
Advice
0
votes
0
replies
5
views
LNK File and Jump Lists
Context/Goal
I am currently finalizing a paper on Windows Shell artifact generation and wanted to share some experimental findings regarding the interaction between applications and `shell32.dll`. My ...
-1
votes
0
answers
9
views
Can't restore a Firefox session
Unfortunately, a Firefox session with thousands of windows crashed for me. I been trying to restore it without success so far. I tried to restore it using the well-known method (from https://www....
0
votes
0
answers
8
views
R - Modifying the spacing between graphs
When creating the bar chart below, the spacing between Jan and Feb is larger than the spacing between Feb and Mar. How can I increase/decrease the spacing between these graphs? bar_chart
The code used ...
Tooling
0
votes
0
replies
14
views
I want to deploy a large language model on AWS to interact with IoT devices
I've recently been working on a technical maintenance project involving IoT and AI large language models. A colleague suggested finding and comparing models on Hugging Face. I noticed there are many ...
0
votes
0
answers
24
views
Does the observable behavior of the program guaranteed by a single total order equal that of changing it to RMW operation that writes the same value?
Consider this example:
#include <atomic>
#include <thread>
int main(){
std::atomic<int> epoch = {0};
std::atomic<int> value = {1};
std::thread t1([&](){
epoch....
0
votes
0
answers
22
views
Why does my program run pefectly fine in QEMU, but crashes in bare metal?
What I have
I have a beginning of a kernel that runs fine in QEMU from an ISO file that I custom made, but when booting that same ISO file in bare metal from Ventoy the program crashes at mov cr0, eax,...
0
votes
0
answers
12
views
how to transparently proxy supabase auth v1 through express for white-label oauth branding?
i'm trying to mask my supabase project url (e.g. xyz.supabase.co) behind my own custom api domain (api.mydomain.com) to achieve cleaner oauth branding. specifically, i want the google/x "choose ...
0
votes
1
answer
20
views
ES6 quick way to activate
I did npm init -y and created an index.js but I am getting error when I do node index.js because of ES6 that I use. what is the quickest way to run this code without error.
Best practices
0
votes
7
replies
44
views
A python beginner needing help to set up python
How do I install Python and run a simple script on Windows 10? Getting ‘python not recognized’ error
I am a beginner in Python and have an assignment due on May 8. I need to set up Python on my ...
Advice
0
votes
0
replies
21
views
I need to make this method more recursive to make it expandable
I wrote a function that uses a list of characters, then returns a list of all permutations of those characters where no character is repeated of a given length. I eventually want to change it so that ...
Best practices
0
votes
1
replies
21
views
.NET MAUI App - How do you play music natively?
I've been developing games on Unity for 6 years, and now I've decided to try writing an app on .NET MAUI. I want to make a music player. That's the question - how do you natively play music on devices?...
1
vote
1
answer
19
views
Firebase Sign in with Apple returns invalid-credential despite valid Apple token (Flutter iOS)
I'm implementing Sign in with Apple on iOS using Flutter + Firebase Auth. Apple returns a valid token but Firebase rejects it with:
firebase_auth/invalid-credential — Invalid OAuth response from apple....
Tooling
0
votes
2
replies
23
views
How can a turn a dataframe that has a row for each pathogen test into having a row for just each tested individual
The data I'm working with is testing rodents for different pathogens. There were 60 rodents tested but each rodent was tested for 18 different pathogens and each pathogen test is listed as a different ...