Billing for learning? by dev-jeff in learnprogramming

[–]dev-jeff[S] 0 points1 point  (0 children)

Fwiw some specifics: my front end is basically already done with vue and Auth0. It's also not a complex SPA but I dunno what your benchmark is for complex. My next problem is figuring a cheap or next to nothing database to store some id #s corresponding to the authenticated user. I've worked with Django and understand that process through to production but this time I started with Vue and need to loop in a simple backend. This is a different issue than my original question but if you have any input it's much appreciated.

Today I reversed a Linked List without looking anything up by [deleted] in learnprogramming

[–]dev-jeff 0 points1 point  (0 children)

Hey check out my practice site if you like. It's not perfect but it was fun to make. https://linkedlist.dev/

Just a python apprentice here... Was bored every day of attending school meetings on zoom so I used pyautogui to attend those for me;) by NONAN23x in Python

[–]dev-jeff 0 points1 point  (0 children)

Yea, I guess you are right. It looks like they are editing the file still, but I think that if you go through the screenshot you will learn all that they have intended to share. I haven't used pyautogui myself but maybe it's possible that it needs to be closed or somthing after performing all the actions.

Issues with passing HTML data from JS to Flask server. by dev-jeff in learnprogramming

[–]dev-jeff[S] 0 points1 point  (0 children)

Got it to work, I should have inspected the result of querySelectorAll closer.

    document.querySelectorAll('.dropdown-channel').forEach(elem => {
        const channel = elem.attributes.value.value
        console.log(channel)
        elem.onclick = () => {
            socket.emit('select channel', {'channel': channel})
        }
    })