User:Johnrdorazio: Difference between revisions

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
No edit summary
Line 26: Line 26:


== Testing Syntax Highlighting ==
== Testing Syntax Highlighting ==
<nowiki><syntaxhighlight lang="python" line></nowiki>
<syntaxhighlight lang="python" line>
 
def quick_sort(arr):
def quick_sort(arr):
 
  less = []
less = []
  pivot_list = []
 
  more = []
pivot_list = []
  if len(arr) <= 1:
 
    return arr
more = []
  else:
 
    pass
if len(arr) <= 1:
</syntaxhighlight>
 
return arr
 
else:
 
pass
 
<nowiki></syntaxhighlight></nowiki>


[[it:Utente:Johnrdorazio]]
[[it:Utente:Johnrdorazio]]

Revision as of 13:08, August 19, 2021

I am a priest in the diocese of Rome, Italy.

I have served as pastoral assistant in a few roman parishes:

  • Martyrs of Uganda parish
  • Saint Galla parish
  • Saint Linus parish

I have also served as university chaplain at Roma Tre University.

Currently I am serving at the Diocesan Pilgrimage Office "Opera Romana Pellegrinaggi".

I have always enjoyed programming and web development, and I have become fairly well versed in PHP, Javascript, Java, VB.NET with a little bit of C++. I enjoy electronics, and science in general, and would like to put these talents at the service of the Church.

So I have created the BibleGet Project and API.

I have created a Liturgical Calendar API.

I curate a few websites.

And now, I would like to create this encyclopedia about the influence of the Gospel and of the Word of God on human culture.

Testing LilyPond scores

\relative c'' { \time 4/4 \key c \major c4 g8 g a4 g r b^> c^> r \bar "|." } \addlyrics { Shave and a hair -- cut: two bits. }

Testing Syntax Highlighting

def quick_sort(arr):
  less = []
  pivot_list = []
  more = []
  if len(arr) <= 1:
    return arr
  else:
    pass