med-mastodon.com is one of the many independent Mastodon servers you can use to participate in the fediverse.
Medical community on Mastodon

Administered by:

Server stats:

354
active users

#reference

5 posts5 participants0 posts today
Continued thread

MiniGladys --

A Wikipedia-based quick research tool to find reference information and recent news about Wikipedia topics.

Also creates keyword-based RSS feeds for continued information monitoring and related topics for more extensive searches. A cut down, less complex version of MegaGladys.

megagladys.com/mg/

#Wikipedia #Wikidata #reference #CurrentEvents

6/x

megagladys.comMiniGladys - Quick Wikipedia-Based Search and Reference

Encyclopedia Of Natural Hazards by Peter T. Dobrowsky, 2013

A compendium of critical, timely and very detailed information and essential facts regarding the basic attributes of natural hazards and concomitant disasters. Contains contributions from an international portfolio of almost 300 specialists whose range of expertise addresses over 330 topics pertinent to the field of natural hazards.

link.springer.com/referencewor

@bookstodon
#books
#nonfiction
#NaturalHazards
#reference
#Springer

Still having fun with class scoping rules

def f_ok(f):
">>> f_ok(1).G.y # 1"
class F:
g = f
class G:
y = f
return F

def f_mok(f):
">>> f_mok(1) # NameError: name 'f' is not defined"
class F:
f = f
class G:
y = f
return F

def f_nok(f):
">>> f_nok(1) # NameError: name 'y' is not defined"
y = f
class F:
g = f
class G:
y = y
return F

#python#plt#eval