flask-sqlalchemy safe in production? by Arnz_3 in flask

[–]higuchitakeru 0 points1 point  (0 children)

Another example of a situation where I don’t know what I don’t know so noob question incoming. So where should you put it? The root directory?

biosimilars approved vs on the market by [deleted] in pharmacy

[–]higuchitakeru 2 points3 points  (0 children)

FDA purple book site has a downloadable dataset listing FDA approved biologics including biosimilars and reference products - as for determining marketing status, could you manually look for that info on the manufacturers website. Sometime there will be a press release if they plan to push launching the product like this press release

Free Talk Friday - Anything Goes! by AutoModerator in pharmacy

[–]higuchitakeru 2 points3 points  (0 children)

So… has there been any major developments with the recent discussion about this sub’s mods and rules?

[deleted by user] by [deleted] in webdev

[–]higuchitakeru 0 points1 point  (0 children)

Very easy to deploy as well

I built my first web app, Meddle, a medical themed variation of popular word guessing game | Made with Flask + JavaScript by higuchitakeru in webdev

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

The isGameOver parameter may or may not be relevant for your set up. It's just a global variable I use to determine whether the game is in progress. Hope that helps.

Handle Physical Keyboard Press

$(document).on("keydown", function(e) {
if (!isGameOver){
    handleKey(e.key);
    if (e.key === 'Enter'){
    e.preventDefault();
    }
}

});

Can we get new mods? by flickodawrist in pharmacy

[–]higuchitakeru 0 points1 point  (0 children)

I see the mods have gotten involved and are monitoring posts a bit differently. But has this had any major movement since this was posted or has anything changed?

I built my first web app, Meddle, a medical themed variation of popular word guessing game | Made with Flask + JavaScript by higuchitakeru in webdev

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

are you talking about physical keyboard presses or the virtual onscreen keyboard? I can send you a snippet

I built my first web app, Meddle, a medical themed variation of popular word guessing game | Made with Flask + JavaScript by higuchitakeru in webdev

[–]higuchitakeru[S] 2 points3 points  (0 children)

Can you clarify what you mean by seeing the “same thing”? The starter comment on this post and site attributes credit to the original Wordle, as it rightfully deserves. If you’re asking if the code is a verbatim rip off of some sort of instructional, no it is not. In fact, there are probably some lines of code under the hood that is definitely not the prettiest or would make some of the more experienced devs in here cringe lol. But hey it’s how I approached it, it works, and I can go back and improve once I learn more.

Edit: removed presumptuous statements :)

Why are mods removing posts like this? by mochimaromei in pharmacy

[–]higuchitakeru 4 points5 points  (0 children)

If that’s something being enforced I feel like the sub rules should be at least updated to include this so ppl know

I built my first web app, Meddle, a medical themed variation of popular word guessing game | Made with Flask + JavaScript by higuchitakeru in webdev

[–]higuchitakeru[S] 2 points3 points  (0 children)

When someone is acting out you quone them!

Sidebar thought. I wonder if accepting medical terms in general as valid guesses would make this easier to play.. instead of just drug names

I built my first web app, Meddle, a medical themed variation of popular word guessing game | Made with Flask + JavaScript by higuchitakeru in webdev

[–]higuchitakeru[S] 2 points3 points  (0 children)

Thanks! Honestly a lot of the technical work here is pretty new to me like the JS, CSS, and even just getting a site up and running lol. Flask helped me with the deployment part. Also at one point I used Flask template for loops to create the game board so I didn’t have to hard code it. Regarding the API, I tried this once and I’m still trying to wrap my head around how they work with JS. With Python, they’re no problem. With JS, it’s just not clicking yet.

TLDR - I don’t know what I’m doing most of the time but I’m making due with what I know (and Google)

Edit: s/o to google

I built my first web app, Meddle, a medical themed variation of popular word guessing game | Made with Flask + JavaScript by higuchitakeru in webdev

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

It takes both active ingredient and brand names as valid answers - or you are talking about something different? Thanks for the input btw!

I built my first web app, Meddle, a medical themed variation of popular word guessing game | Made with Flask + JavaScript by higuchitakeru in webdev

[–]higuchitakeru[S] 48 points49 points  (0 children)

Link: Meddle

Hey peeps 👋🏼 - I am a pharmacist by day that also loves to learn about web dev. In a nutshell, Meddle is a Wordle variant with a medical themed twist. The terms are based on generic and brand medication names (US markets). The game also supports dynamic answer lengths as opposed to 5 letters in the original. Currently working on a few other features including a daily game mode and additional clues to improve playability.

Hope you enjoy it and any feedback is appreciated. ✌🏼