med student here: Reducing immunosuppressant not something to be taken lightly for kidney transplant patients. I was shocked when I read that sentence.
this is pubmed. Most papers that are funded by NIH research are available on pubmed if the main publisher gives access to the full text (after some set embargo period...usually around a year).
Med student here: oftentimes the attendings who are googling are usually doing it because the patient's symptoms don't fit with the most common illness "scripts" we develop in our mind and have ready for the 90% of patients who walk in the door. The google is a quick sanity check to see if these symptoms are within the range of "normal" for the most likely differential diagnoses (i.e. list of most likely diagnoses based on the patient's presentation).
That or those symptoms are exceptionally vague or uncommon enough that they warrant a quick refresher on google for leads on additional questions we should ask of patients (the most common offender here is rashes/skin lesions imo since they can literally be a manifestation of super simple "oh you just changed your shampoo" to "you have a rare autoimmune condition"...asking a comprehensive history from patients can help determine what tests to order).
I'm honestly surprised it managed to output hex and still be sensible. what part of the training corpus even has long form hex values that isn't just machine code?
Yes. Doctors in the US have to get a certain amount of Continuing Medical Education (CME) credits (usually done by attending conferences and lectures).
Med student here. My guess is the following:
So with CF your pancreas can’t secrete many of the enzymes that are necessary to actually digest food. You can take medications to help with that digestion, but regardless, you aren’t actually getting all the calories in your food with CF because it isn’t making its way into your body (notably patients with CF have steatorrhea which is fat in their stool because they can’t absorb a lot of fat from their foods like a non-CF patient). The med helps the pancreas recover some of its ability to secrete digestive enzymes and so patients can now eat and get more from their food. The issue is that there needs to be a recalibration in terms of how much patients are eating. Previously a 2000 calorie diet may not have gotten them so far because they didn’t absorb much of it, but now they’re absorbing a lot more of it. Plus increased work of breathing with CF expends more calories compared to a non-CF patient (and patients on this drug).
I’m more trying to see what the utility of stable diffusion (or just the text to image problem) in the long term. Right now people can play around with making weird art pieces and maybe it will be integrated into design tools...but then what?
Eg with other AI problems out there I can see a potential application to medicine, self driving cars etc, but I just don’t see what the bigger goal of this is going to be.
I don't think it's mission:impossible for some people...but for people such as myself, my editor really gave a sense of external accountability + pressure to finish. If I didn't have an editor, I'm 90% sure I would have stopped around 2 chapters in and tabled it for some other time (read as: never touched it again). Also, there are perks to having a formal publisher: you have reviewers, copy editors, and formatters who really make sure that things are really standardized. That really allowed me to focus on writing.
Surprised this isn't higher up. Crohn's was formally named/created as its own clinical entity in 1932 and the paper shows one of its graphs (Fig 1) starting in the 1940s. I doubt 8 years was enough for awareness to get out to the entire physician community about the existence of the disease and there were probably a lot of misdiagnosed cases in its early days (since crohn's has a clinically diverse presentation).
Fully agree with this. The fact that the "hello world" program involves the use of several keywords (public static void main String[] args System.out.println) that students will have no idea about until 1-2 months later is not ideal. Compare that to python "print('hello world')" is very intuitive.
I had to teach web dev to students who were coming straight out of the intro courses that used Eclipse and yeah...everything that the author is saying here is right and these IDEs do a disservice to them. A surprising amount of students don't have an idea of working around the command line, file systems, and in general develop poor debugging skills (and, in turn, poor programming skills since they're used to eclipse etc filling in everything for them).
I think a good middleground is the IDE that CS50 has their students use. It gives them exposure to the command line and allows them to actually debug on their own. Of course, utilization of that IDE in intro CS courses means that these courses won't be using java anymore (and I frankly have no idea why it's still a mainstay of cs courses to this day).
"You are free to code native JS". this really does seem like a simple/obvious statement, but I've been in the position where I've taught JS to beginners and holy crap...the amount of people that think they need to know React to do something as simple as a counter is absolutely insane. I think that the space of intro to web dev has been polluted by people pushing frameworks/libraries onto people when really just simple dom manipulation would do the trick.
I think the issue the article was getting at is that the idea of the hammer is considered "obsolete"/useless by the experts in the field, leading those experts to push tool making factories onto beginners who really don't need it for their purpose (but don't know the wiser since they're new to woodworking after all).
https://kraulis.wordpress.com/2015/11/04/why-do-so-many-scie... Also an interesting read about how the central dogma was never really meant to be presented in teh way that it is currently presented (really was meant to focus on "information" flow starting at DNA rather than show a definitive guide to the transformations between these molecules in a cell).
Despite using python for the past 4 years, it still takes me several tries to set up packages and imports correctly when I make them myself. Honestly, I wish that python had an import system similar to JS (where you can just say “I want this file” <insert path to file> and specify the exports yourself). For me, it just feels more intuitive and less “magic”-like when dealing with custom scripts you want to import.
I think it’s just because HN isn’t really a community that has many consistent themes/cohesion. It’s very active but only on individual news items rather than across posts.
But I think if the mods could potentially put up a link for donating to something, it’d get decent traffic. I just wouldn’t expect that initiative to arise organically from the user base and get significant traction.
Yep. I still use it for side one-off projects here and there. For me, there's just something so convenient about being able to make a html page that you can drop in a quick CDN link for jquery and not have to worry about compiling, webpack, create-react-app etc. I'll still use React when something is a larger project with a ton of moving parts, but otherwise I stick with jquery.
As for why I'm not using the native DOM api's...I could, but haven't gotten around to learning that syntax since I'm very used to jquery (being specific, if I want to do things that are more complicated than selecting an element + changing its properties, the native API is more complicated). jquery is just a nice default.