Newest Questions
24,167,750 questions
Best practices
0
votes
0
replies
3
views
Useful standard headers for AutoHotKey scripts?
I'm looking for the standard recommended way to start an AutoHotKey script. The first lines, that is, the header.
I've found these two on the AutoHotKey official forum:
#NoEnv ; no environment
#Warn ; ...
0
votes
0
answers
13
views
bash script error converting zip file to tar.gz (or tar.bz2)
I have the following bash script saved as a zip2tar executable.
#!/bin/bash
if [ "$1" = "j" ]; then
unzip -p $2.zip | tar -jcvf $2.tar.bz2 --files-from=-
else
unzip -p $2.zip |...
Best practices
0
votes
0
replies
24
views
Charge for shipping (WooCommerce)
On WooCommerce, I need to make sure that if there are products from a certain category in the cart, free shipping is not applied.
I currently manage shipping with Table Rate Shipping, and shipping is ...
Advice
0
votes
0
replies
20
views
What are some good websites for practicing Hindi typing besides TypingBits?
can anyone suggest some good websites for practicing Hindi typing? Currently I am using https://typingbits.com/ but I would like to try some other good platforms as well to improve my speed and ...
0
votes
0
answers
18
views
Confusing behaviour of 'hover' state for Unity UI Toolkit Buttons
I have the following setup:
btn.uxml:
<ui:UXML xmlns:ui="UnityEngine.UIElements" noNamespaceSchemaLocation="../../../UIElementsSchema/UIElements.xsd"
editor-extension-...
-1
votes
0
answers
19
views
Google app script web bowser open function needed
In app script i need a way a code that can open web browser with particular address with time based trigger, can it be possible, I would be highly obliged .
My project is required to open web browser ...
0
votes
1
answer
24
views
.NET ReadFromJsonAsync<List<T>>() throws JsonException when API response contains wrapper object
I am developing a layered .NET project with API, BLL, DAL, and UI layers.
The UI layer calls the API using a generic API repository built with HttpClient.
My project structure is roughly:
Core
└─ ...
Best practices
0
votes
1
replies
27
views
the best choice of managing data for my pinterest-like project
I'm building a Pinterest-like web application where users can create boards, save images (pins), and organize them with tags. Each pin has metadata such as title, description, image URL, author, and ...
-1
votes
0
answers
27
views
How can I restrict a user to passing in a const lvalue reference [duplicate]
I have a class which stores a const pointer to some external data. To get the pointer, the user passes in an object by reference. The object should be permitted to be const. Here's a minimum style ...
Best practices
0
votes
3
replies
46
views
What exercises improve problem-solving skills in programming?
I am currently learning programming and want to improve my problem-solving ability rather than just memorizing syntax or copying solutions.
I understand that strong programming skills come from being ...
Advice
0
votes
0
replies
18
views
How can I use NearbyConnections (as provided by Google Play Services) in conjunction with Unity to send data between players?
I've been running myself ragged trying to figure this out, since the documentation is rather sparse and the plugins are all somewhat out of date, but for a school project, I need to create a prototype ...
Best practices
0
votes
3
replies
48
views
Ways to loop through array of dictionaries containing a known pair of keys
I'm pretty new to Python and am trying to understand the different ways of achieving things.
I have an array of dictionaries with key value pairs:
a = [ { "Key": "K1", "Value&...
Best practices
0
votes
8
replies
33
views
What would be the best way to drop pandas dataframe rows based on an index condition with a MultiIndex?
I have a dataframe with two index levels from a stack operation, and I'd like to then drop rows based on a condition for the index. Currently, what I've got goes something like this:
import pandas as ...
Tooling
0
votes
2
replies
22
views
Claim my identity on Google knowledge panel
Claim my identity on Google knowledge panel for all of my platforms with new Gmail account lost all emails and phones connected to my platform pages I've been locked out of all my artists accounts and ...
0
votes
0
answers
20
views
Torbopack can't find dependency when developing with local package outside root directory
I have a monorepo (turborepo) with comments package. In my other project I want to import this package locally so that I have a hot reload. In my package.json I did:
"@my-scope/comments":...