Newest Questions
24,222,570 questions
0
votes
0
answers
4
views
What are the legal requirements for selling vape products online in Saudi Arabia?
I'm planning to start an online store that focuses on vape products and accessories, targeting customers in Saudi Arabia. I want to ensure I fully comply with local laws and regulations. Could someone ...
0
votes
0
answers
5
views
Building NN from scratch, why does my NN not memorize a small sample size of training data? It ends up being a class distribution
No matter which input I give it after training, it still spits the class distribution.. whereas if I just remove the hidden layer and use a single layer nn, it works much better.
I know the proper ...
0
votes
0
answers
4
views
How can I count the colleges per year?
How can I count the colleges per year? after filtering the data in publication_date
This is my raw data
[
{
"title": "CEIS",
"publication_date": "...
0
votes
0
answers
5
views
API Spec for graphql APIS
I am creating few new graphql APIs along with REST apis in my service usng go gqlgen. I am facing unique problem as REST apis have well defined openapi spec that can easliy be pulled into swagger ...
0
votes
0
answers
13
views
How do I fix my Python Interpreter and Venv?
Ive become super frustrated with this. Every time i run my program it just crashes and i know it has to do with the python interprter. even when my terminal is in the rigth venv it will just crash ...
0
votes
1
answer
13
views
converting a list of JSON key vaules to an array in Snowflake
I have an JSON object that looks as following:
{
"Lines": {
"1": "product a",
"4": "product b"
},
"order_no": "9999"
...
0
votes
0
answers
9
views
how to set "enable true hibernation" programmatically in android 6.0 system setting display
My app is running on a android6.0 device without physical button(back,home, menu buttons).
I need to optimize battery usage, but I can only reboot when device sleep.
if check this feature "enable ...
0
votes
0
answers
10
views
Cannot build Go program using GOTK3 on Debian
When I build my Go app I get these errors:
github.com/gotk3/gotk3/glib
/home/hugh/go/pkg/mod/github.com/gotk3/[email protected]/glib/gbinding_since_2_68.go:15:9: could not determine what C....
0
votes
0
answers
15
views
Arcpy manually assign class breaks
I want to have dynamic symbology by manually assigning values for class breaks:
≤ min
min - max
> max
I've come up with the function below, the issue is that it does not create the number of ...
0
votes
0
answers
11
views
"No existing trace found" error thrown in OpenAI Agents SDK
I am trying tutorial for OpenAI Agents SDK.
https://openai.github.io/openai-agents-js/guides/tracing/#default-tracing
github.com/openai/openai-agents-js/examples/nextjs/src/app/api/basic/route.ts
...
0
votes
0
answers
15
views
Firebase Studio does not work with Google Apps Script while previously idx use to work
Project IDX used to be standalone but it is nowadays part of Firebase Studio. Previously, I was able to use IDX with Google Apps Script following these steps:
Create a blank workspace on IDX.
...
-1
votes
0
answers
18
views
VSCode GitHub Copilot Add whole context instead of a portion of file
While using VSCode, sometimes some files got dependency and would need to send multiple files.
Currently the VSCode behavior is
It detects the active file and automatically send a part of the file to ...
0
votes
0
answers
15
views
OSM Tile Servers for commercial use
I was about to launch an android app for offline mapping providing OSM tile servers thinking that they are free for commercial use ,but I lately heard that they are not free for commercial use, Is ...
0
votes
0
answers
14
views
Why can't I create bitmap when I use 3ds max sdk (C#)?
When I create a Bitmap using C#, it always fails to create properly, the code referenced is the C++ version(code
// Crop bitmap
public static void CropBitmap(IPBBitmap InBitmap, float clipU, float ...
0
votes
0
answers
20
views
Does golang have a capacity limiter library?
The limiters I found are all rate limiters, which means that only n tasks are run in each period of time.
My scenario is that the execution time of each task is different, and I want to control the ...