Mircea Puta

Mircea Puta (February 1, 1950 July 26, 2007) was a Romanian mathematician, the 1983 recipient of the Simion Stoilow Prize of the Romanian Academy.[1] He is the author of over 190 articles and two books.[1]

Puta started his undergraduate studies at West University of Timișoara 1969, graduating in 1974. He earned his Ph.D. degree in 1979, under the supervision of Dan Papuc, after which he joined the faculty at his alma mater, becoming a Professor in 1993.

Bibliography

  • Puta, Mircea (1993). Hamiltonian Mechanical Systems and Geometric Quantization. Mathematics and its Applications. 260. Dordrecht: Kluwer Academic Publishers Group. ISBN 0-7923-2306-8. MR 1247960.
  • 2001 (with Mircea Craioveanu and Themistocles M. Rassias) Old and new aspects in spectral geometry, ISBN 1-4020-0052-9
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.