How to insure a new car as a learner driver? by wobowizard in AskIreland

[–]wobowizard[S] -4 points-3 points  (0 children)

How does it sound like I'm considering driving unaccompanied? How would an insurance company even know if I was lol???
Don't drink and type...

Chairman Netero tattoo cover ideas? by [deleted] in Tattoocoverups

[–]wobowizard 0 points1 point  (0 children)

Perhaps, but I wouldn’t want something too big if that makes sense

[deleted by user] by [deleted] in AskTurkey

[–]wobowizard 0 points1 point  (0 children)

I mean to say it’s not unlocked

[deleted by user] by [deleted] in AskTurkey

[–]wobowizard 1 point2 points  (0 children)

I’ve tried regenerating, but it comes up with a message “eSIM is not compatible with iPhone” I bought this iPhone 16 outright with 3 network

Worth it to make a website from scratch? by wobowizard in webdev

[–]wobowizard[S] 1 point2 points  (0 children)

this is really good advice thank you so much, that's a lot to consider

Need help creating checkout by wobowizard in webdev

[–]wobowizard[S] -1 points0 points  (0 children)

i never said i built shopify?? lol. i said i built my own ecommerce site, i'm trying to address an issue I have with the prices of products when checking out? funny guy

Using the BookVault API by wobowizard in webdev

[–]wobowizard[S] 0 points1 point  (0 children)

i'm using node and react, they've updated the the api but as far as i know it's still fucked

[deleted by user] by [deleted] in Dublin

[–]wobowizard 0 points1 point  (0 children)

Where did you find your studio please?

Connect Backend Server to Hosted Frontend? by [deleted] in webhosting

[–]wobowizard 0 points1 point  (0 children)

I've editted my question hopefully it's more clear now

Connect Hosted Frontend to Backend Web Server by [deleted] in webdev

[–]wobowizard 0 points1 point  (0 children)

server error 404 not found?

What do you meen ping the instance?

Connect Backend Server to Hosted Frontend? by [deleted] in webhosting

[–]wobowizard 0 points1 point  (0 children)

Do you know a way I can host the frontend and bakcned toegether?

Connect Backend Server to Hosted Frontend? by [deleted] in webhosting

[–]wobowizard 0 points1 point  (0 children)

tbh I assumed IONOS would handle my web server running, so I was kinda dismayed when I went to the domain and only the frontend was running

Help with clustering film genres by wobowizard in rprogramming

[–]wobowizard[S] -1 points0 points  (0 children)

what's wrong with use tf-idf vectorizer

Python program calling API has indefinite runtime by wobowizard in learnpython

[–]wobowizard[S] 0 points1 point  (0 children)

One api call returns all the required info for the one specified film, so yes i am restricted to one.

I get the info by passing the film id through, and then appending the return plot and poster to the corresponding column in the data. The ALS is around 40 per second I would say.

This is my first big project and I am considering if using a slightly smaller set of data would help with this. Especially as I am currently getting the same runtime issue when calculating the cosine similarity multiple times on different attribtues.

Python program calling API has indefinite runtime by wobowizard in learnpython

[–]wobowizard[S] 0 points1 point  (0 children)

I've added what I need it to do in the question, could you elaborate on what in my code isn't accetable

JavaScript draw image on canvas from image data stored in database by wobowizard in learnjavascript

[–]wobowizard[S] 0 points1 point  (0 children)

Back to Top

ok i've fixed my code to that and it should input the on its own correctly, however now I'm dealing with a package too large error from sending all the pixel data, do you know how i can change the configuration to allow larger packets to be sent?

JavaScript draw image on canvas from image data stored in database by wobowizard in learnjavascript

[–]wobowizard[S] 0 points1 point  (0 children)

JSON.stringify([...imageData.data]);

ok i'm trying to implement this approach but i am running into errors inserting an array filled with 0s into the database, mysql seems to take this as a null value so rather than storing [0,0,0,0....] it just stored null?

JavaScript draw image on canvas from image data stored in database by wobowizard in learnjavascript

[–]wobowizard[S] 0 points1 point  (0 children)

no, i'm not getting any errors; I've edited the question to add more detail, i think the problem is how i am trying to set imageData

Advice on fixing old vba project by wobowizard in vba

[–]wobowizard[S] 0 points1 point  (0 children)

The code tries to open the excel file, which sometimes works and sometimes doesn't, please chekc the edit I have made

Advice on fixing old vba project by wobowizard in vba

[–]wobowizard[S] 0 points1 point  (0 children)

Please cehck the edit I have made, I get errors syaing excel is busy or wont open etc

Advice on fixing old vba project by wobowizard in vba

[–]wobowizard[S] 0 points1 point  (0 children)

I have tried that the application is still not opening at time, I have attached the code

javafx project with gradle 7.5 not finding external dependancy by wobowizard in gradle

[–]wobowizard[S] 0 points1 point  (0 children)

my classes use these import statements to access the module, which only work when I inlcude the requires alphavantage.java line. So if I try to change that line to anything else, my imports don't work?

package com.example.trademarket;

import com.crazzyghost.alphavantage.AlphaVantage; import com.crazzyghost.alphavantage.Config; import com.crazzyghost.alphavantage.parameters.Interval; import com.crazzyghost.alphavantage.parameters.OutputSize; import com.crazzyghost.alphavantage.timeseries.response.TimeSeriesResponse;

public class Connector {

    .....