969 questions
0
votes
0
answers
187
views
ModuleNotFoundError: No module named 'yolo_predictions'
I made object detection using yoloV8 with Visual Studio Code and streamlit as a webapp. An error occurred when I ran the 1_YOLO_for_image file in the program from yolo_predictions import YOLO_Pred
...
0
votes
2
answers
522
views
ssh to private IP Azure VM from local bash or Azure CLI
I am not able to connect from local bash or Azure CLI (portal & local) to newly spinned up Ubuntu "Private" IP VM on Azure
Verified port 22 open for SSH from "Any" with higher ...
-1
votes
1
answer
62
views
HTML table not populating
I have created a web app using Google script. it currently works as I want with ne exception. On the web app I am trying to create a table that populates with the data from the google sheet and edit/...
0
votes
1
answer
676
views
Android & Webapp, call background refresh when mobile is locked
For an alert system following a reservation (private use), I would like my webapp to send a notification.
I want every X minutes an ajax call is made, checks if there is a new reservation and if so ...
-1
votes
2
answers
4k
views
external URL not working for streamlit app deployed using docker
I deployed my Streamlit app using docker, and when I run the container on a GCP VM where I did the docker build, it displays a network url and external url but when I try opening the external url, it ...
1
vote
1
answer
1k
views
how to deploy large sized deep learning model using streamlit?
I have saved an (.h5) model with size about 85GB. I am trying to build a webapp using streamlit. However, I face the problem or loading my model, as I can not upload it to github. I tried to shrink ...
0
votes
0
answers
1k
views
SyntaxError: multiple exception types must be parenthesized
so i am trying webapp2 first time with jinja2. Here is my code
import os
import jinja2
import webapp2
from jinja2 import Environment, PackageLoader, select_autoescape
JINJA_ENVIROMENT = jinja2....
0
votes
1
answer
111
views
has webapp2 been deprecated in app engine?
I've been trying to find a question like this for ages, couldn't find this so I'll ask it.
I have tried pip installing and PYTHONPATH but it hasn't worked
import webapp2
but every time it gives me:
...
0
votes
1
answer
89
views
How to use Web App approach when having functions run by editors on protected ranges, using Google Apps Scritps?
So, the spreadsheet contains multiple functions which run as the editors click on buttons.
Some of the functions bring data from other files, which editors don't have access to. So, data are brought ...
0
votes
0
answers
216
views
Google Apps Script require login for webapp url / path
I have an project in apps script for everyone and it has extra path
like
url/path1
url/path2
for that google apps script require an login to access the path
I have deploy web app as
Execute as me
...
0
votes
1
answer
328
views
Azure WebApp and docker-compose in Linux
I have a WebApp that runs in Linux Service Plan as docker-compose. My config is:
version: '3'
networks:
my-network:
driver: bridge
services:
web-site:
image: server.azurecr.io/site/site-...
0
votes
1
answer
385
views
How to pass variable to Django Paginator()'s per_page parameter so all album tracks can be displayed on one page?
I am building a web app music player using Django with Postgres as the database.
My setup right now displays the first song for each album. As one clicks through the play button, the view
changes to ...
0
votes
1
answer
602
views
Eclipse proposing me Webapp folder only, rather than webContent folder when creating an new project
I am a new learner of Java and JEE technology.
When I create a new web project, Eclipse proposes to me only the webapp folder rather than the webContent one, when creating a new dynamic web project.
...
0
votes
1
answer
606
views
Google sheet + Web app search specific column and return all matching rows
Anybody knows how can I amend the code below to only search from a specific column in Google sheet e.g. column J?
The code below works great and returns the entire row that matches the searchtext, but ...
0
votes
1
answer
129
views
Data is received at local environment but not in production in meteor js webapp
WebApp.connectHandlers.use('/hello', async (req, res, next) => {
let data = '';
await req.on('data', (chunk) => {
data += chunk;
});
console.log("data : ", data)...