User:Johnrdorazio: Difference between revisions

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
 
(10 intermediate revisions by the same user not shown)
Line 2: Line 2:


I have served as pastoral assistant in a few roman parishes:
I have served as pastoral assistant in a few roman parishes:
* Martiri dell'Uganda parish
* Martyrs of Uganda parish
* Santa Galla parish
* Saint Galla parish
* San Lino parish
* Saint Linus parish


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


Currently I am serving at the Diocesan Pilgrimage Office.
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 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.
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 [https://www.bibleget.io BibleGet Project].
So I have created the [https://www.bibleget.io BibleGet Project and API].


I have created a [https://www.johnromanodorazio.com/LiturgicalCalendar Liturgical Calendar calculator].
I have created a [https://www.johnromanodorazio.com/LiturgicalCalendar Liturgical Calendar API].


I curate a few websites.
I curate a few websites.
Line 23: Line 23:
== Testing LilyPond scores ==
== Testing LilyPond scores ==


<score>\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. }</score>
<score vorbis="1" midi="1">\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. }</score>
 
== Testing Syntax Highlighting ==
<syntaxhighlight lang="python" line>
def quick_sort(arr):
  less = []
  pivot_list = []
  more = []
  if len(arr) <= 1:
    return arr
  else:
    pass
</syntaxhighlight>
 
== Testing MobileDetect tags ==
In this very moment you seem to be using a <mobileonly>mobile</mobileonly><nomobile>desktop</nomobile> device.
 
Here is an html structure with block elements that should only show on mobile, using <code>&lt;mobileonly&gt;</code> tag:
<mobileonly>
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A MOBILE DEVICE!</div>
</mobileonly>
 
Here is a similar html structure with block elements that will only show on mobile, using <code>&lt;onlymobile&gt;</code> tag:
<onlymobile>
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A MOBILE DEVICE!</div>
</onlymobile>
 
Here is a block element that should only show on desktop, using <code>&lt;nomobile&gt;</code> tag:
<nomobile>
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A DESKTOP DEVICE!</div>
</nomobile>


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

Latest revision as of 08:17, February 15, 2024

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

Testing MobileDetect tags

In this very moment you seem to be using a mobiledesktop device.

Here is an html structure with block elements that should only show on mobile, using <mobileonly> tag:

I AM A MOBILE DEVICE!

Here is a similar html structure with block elements that will only show on mobile, using <onlymobile> tag:

I AM A MOBILE DEVICE!


Here is a block element that should only show on desktop, using <nomobile> tag:

I AM A DESKTOP DEVICE!