<div dir="ltr">Hi Riccardo & Niels,<div>with the most recent PR and the release of the new version 0.3 you are now able to scrape 3GPP & IEEE with:</div><div><ul><li>python3 bin/collect_mail.py -f examples/url_collections/listserv.3GPP.txt</li><li>python3 bin/collect_mail.py -f examples/url_collections/listserv.IEEE.txt</li></ul><div>To collect the entire archive takes a while, so you could create several .txt files that contain only parts of the complete list of urls.</div></div><div>The downloaded archives will be stored in the directory from where you execute the code as:</div><div>/bigbang/archives/IEEE/</div><div>/bigbang/archives/3GPP/<br></div><div>Scraped mailing list will appear inside this folder as .mbox formatted files, with the file name being the name of the mailing list. </div><div><br></div><div>Please let me know if you have any questions, suggestions, bug reports, ...</div><div><br></div><div>Have a nice weekend,</div><div>Chris</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Op vr 30 apr. 2021 om 13:54 schreef Riccardo Nanni <<a href="mailto:riccardo.nanni9@unibo.it">riccardo.nanni9@unibo.it</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">




<div dir="ltr">
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
Hi everyone,</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
how are you?</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
I noticed that when running</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
python3 bin/collect_mail.py -u <a href="https://atlarge-lists.icann.org/pipermail/idn-wg/" id="gmail-m_1618537624508945410LPlnk471019" target="_blank">https://atlarge-lists.icann.org/pipermail/idn-wg/</a></div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
it doesn't download all the emails, but only July to December 2007. Then I realised all the other emails are archived per quarter instead of month. Are the two things connected? Maybe it is something you're already aware of, but I thought it was useful to report
 it here.</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
@Chris, thanks a lot for the alternative way to scrape Listserv you sent! Haven't tried it yet, sorry.</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
Best,</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
Riccardo</div>
<div id="gmail-m_1618537624508945410appendonsend"></div>
<hr style="display:inline-block;width:98%">
<div id="gmail-m_1618537624508945410divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>Da:</b> Christoph Becker <<a href="mailto:chrbecker01@gmail.com" target="_blank">chrbecker01@gmail.com</a>><br>
<b>Inviato:</b> venerdì 23 aprile 2021 12:35<br>
<b>A:</b> Riccardo Nanni <<a href="mailto:riccardo.nanni9@unibo.it" target="_blank">riccardo.nanni9@unibo.it</a>><br>
<b>Cc:</b> Niels ten Oever <<a href="mailto:mail@nielstenoever.net" target="_blank">mail@nielstenoever.net</a>>; <a href="mailto:bigbang-user@data-activism.net" target="_blank">bigbang-user@data-activism.net</a> <<a href="mailto:bigbang-user@data-activism.net" target="_blank">bigbang-user@data-activism.net</a>><br>
<b>Oggetto:</b> Re: R: R: [Bigbang-user] Issue with listserv fetching (3GPP)</font>
<div> </div>
</div>
<div>
<div dir="ltr">Hi Riccardo,
<div>just realised that I forgot to declare what "auth_key_mock" is.</div>
<div>You can set up an AuthSession on the 3GPP Listserv archive after <a href="https://list.etsi.org/scripts/wa.exe?GETPW1" target="_blank">createing</a> an account there and input your credentials into the function as shown below.</div>
<div><br>
</div>
<div>---------------------------------------------------------------------------------------------------</div>
<div>import bigbang<br>
from bigbang import listserv<br>
from bigbang.listserv import ListservArchive, ListservList, ListservMessage<br>
<br>
url_archive = "<a href="https://list.etsi.org/scripts/wa.exe" rel="noreferrer" target="_blank">https://list.etsi.org/scripts/wa.exe</a>?"<br>
url_list = url_archive + "A0=3GPP_TSG_CT_WG6"</div>
<div>auth_key_mock = {"username": "your_usrname", "password": "your_psw"}<br>
<br>
ListservArchive.from_url(<br>
    name="3GPP",<br>
    url_root=url_archive,<br>
    url_home=url_archive + "HOME",<br>
    login=auth_key_mock,<br>
    instant_save=True,<br>
    only_mlist_urls=False,<br>
)</div>
<div>
<div>---------------------------------------------------------------------------------------------------</div>
<div><br>
</div>
<div>Please excuse this awkward way of explaining it.</div>
<div>I will try to update the wiki on the git repo asap.</div>
<div><br>
</div>
<div>Best Wishes,</div>
<div>Christoph</div>
<div><br>
</div>
<div></div>
</div>
</div>
<br>
<div>
<div dir="ltr">Op vr 23 apr. 2021 om 10:53 schreef Riccardo Nanni <<a href="mailto:riccardo.nanni9@unibo.it" target="_blank">riccardo.nanni9@unibo.it</a>>:<br>
</div>
<blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
Great!</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
Thank you again, Christoph and Niels, later I'll try it.</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
Best,</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)">
Riccardo</div>
<div id="gmail-m_1618537624508945410x_gmail-m_-2328756485682299028appendonsend"></div>
<hr style="display:inline-block;width:98%">
<div id="gmail-m_1618537624508945410x_gmail-m_-2328756485682299028divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>Da:</b> Niels ten Oever <<a href="mailto:mail@nielstenoever.net" target="_blank">mail@nielstenoever.net</a>><br>
<b>Inviato:</b> venerdì 23 aprile 2021 11:50<br>
<b>A:</b> Riccardo Nanni <<a href="mailto:riccardo.nanni9@unibo.it" target="_blank">riccardo.nanni9@unibo.it</a>>; Christoph Becker <<a href="mailto:chrbecker01@gmail.com" target="_blank">chrbecker01@gmail.com</a>><br>
<b>Cc:</b> <a href="mailto:bigbang-user@data-activism.net" target="_blank">bigbang-user@data-activism.net</a> <<a href="mailto:bigbang-user@data-activism.net" target="_blank">bigbang-user@data-activism.net</a>><br>
<b>Oggetto:</b> Re: R: R: [Bigbang-user] Issue with listserv fetching (3GPP)</font>
<div> </div>
</div>
<div><font size="2"><span style="font-size:11pt">
<div>Thanks Christoph!<br>
<br>
This was the content of the file example.py:<br>
<br>
import bigbang<br>
from bigbang import listserv<br>
from bigbang.listserv import ListservArchive, ListservList, ListservMessage<br>
<br>
url_archive = "<a href="https://list.etsi.org/scripts/wa.exe?" target="_blank">https://list.etsi.org/scripts/wa.exe?</a>"<br>
url_list = url_archive + "A0=3GPP_TSG_CT_WG6"<br>
<br>
ListservArchive.from_url(<br>
    name="3GPP",<br>
    url_root=url_archive,<br>
    url_home=url_archive + "HOME",<br>
    login=auth_key_mock,<br>
    instant_save=True,<br>
    only_mlist_urls=False,<br>
)<br>
<br>
<br>
Best,<br>
<br>
Niels<br>
<br>
On 23-04-2021 09:25, Riccardo Nanni wrote:<br>
> Dear Niels and Christoph,<br>
> <br>
> thanks a lot for your help!<br>
> I tried Niels' way and I keep getting the 'instant_dump'. <br>
> I did 'git branch' and it shows the following:<br>
> <br>
> *main<br>
> master<br>
> <br>
> I understand I am on the 'main' branch, is it right?<br>
> Then I tried 'git pull' again and it says it is already updated, but it keeps showing the 'instant_dump' message when I try the usual command.<br>
> <br>
> @Christoph: thank you for sharing the file on the alternative way to gather listserv emails, but I don't think it came through: all I can find is an error message that says an attachment was detected as malware (guess my computer 'misread' your file?). Any
 chance you can share it again, please?<br>
> <br>
> Thanks a lot again, you're all very helpful! As I'm better at cooking than programming, when you come to Italy I owe you a dinner 🙂🙂<br>
> Cheers,<br>
> <br>
> Riccardo<br>
> ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<br>
> *Da:* Christoph Becker <<a href="mailto:chrbecker01@gmail.com" target="_blank">chrbecker01@gmail.com</a>><br>
> *Inviato:* venerdì 23 aprile 2021 00:23<br>
> *A:* Niels ten Oever <<a href="mailto:mail@nielstenoever.net" target="_blank">mail@nielstenoever.net</a>><br>
> *Cc:* Riccardo Nanni <<a href="mailto:riccardo.nanni9@unibo.it" target="_blank">riccardo.nanni9@unibo.it</a>>;
<a href="mailto:bigbang-user@data-activism.net" target="_blank">bigbang-user@data-activism.net</a> <<a href="mailto:bigbang-user@data-activism.net" target="_blank">bigbang-user@data-activism.net</a>><br>
> *Oggetto:* Re: R: [Bigbang-user] Issue with listserv fetching (3GPP)<br>
>  <br>
> Hi Niels & Riccardo,<br>
> the argument 'instant_dump' for the ListservArchive class object does not exist anymore in the up-to-date 'main' branch of the git repo.<br>
> @Niels: Do you mean that you did a 'git pull' and encountered the TypeError caused by missing 'instant_dump' too?<br>
> <br>
> But as I said in another message, we are not quite there yet for 3GPP and IEEE to use the 'conventional' method on how BigBang scrapes archives such as W3C.<br>
> I attached a small examples that shows how you can currently scrape the 3GPP archive and save it to mbox files in the CONFIG.mail_path folder.<br>
> Be aware that this could take very long and could use a lot of memory.<br>
> <br>
> Best Wishes,<br>
> Christoph<br>
> <br>
> <br>
> Op do 22 apr. 2021 om 17:17 schreef Niels ten Oever <<a href="mailto:mail@nielstenoever.net" target="_blank">mail@nielstenoever.net</a> <<a href="mailto:mail@nielstenoever.net" target="_blank">mailto:mail@nielstenoever.net</a>>>:<br>
> <br>
>     Hi Riccardo and Christoph,<br>
> <br>
>     I see there might be an issue with the usage of special characters in the mailinglist URLs, to get it working I had to put a '\' in front on the '?', but this could also be fixed by using " " around the URL. However, after that fetching did not work either
 - so let's ask Christoph (cc).<br>
> <br>
>     Cheers,<br>
> <br>
>     Niels<br>
> <br>
> <br>
> <br>
> <br>
> <br>
> <br>
>     On 22-04-2021 17:43, Riccardo Nanni wrote:<br>
>     > Hi Niels,<br>
>     ><br>
>     > thanks for your answer!<br>
>     > I did, and I found the changes I can see in Github (e.g. the listserv.3GPP.txt file, etc.).<br>
>     > I did it again when I saw it didn't work and it says 'già aggiornato' (already updated).<br>
>     ><br>
>     > Riccardo<br>
>     ><br>
>     ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<br>
>     > *Da:* Bigbang-user <<a href="mailto:bigbang-user-bounces@data-activism.net" target="_blank">bigbang-user-bounces@data-activism.net</a> <<a href="mailto:bigbang-user-bounces@data-activism.net" target="_blank">mailto:bigbang-user-bounces@data-activism.net</a>>>
 per conto di Niels ten Oever <<a href="mailto:mail@nielstenoever.net" target="_blank">mail@nielstenoever.net</a> <<a href="mailto:mail@nielstenoever.net" target="_blank">mailto:mail@nielstenoever.net</a>>><br>
>     > *Inviato:* giovedì 22 aprile 2021 17:38<br>
>     > *A:* <a href="mailto:bigbang-user@data-activism.net" target="_blank">bigbang-user@data-activism.net</a> <<a href="mailto:bigbang-user@data-activism.net" target="_blank">mailto:bigbang-user@data-activism.net</a>> <<a href="mailto:bigbang-user@data-activism.net" target="_blank">bigbang-user@data-activism.net</a>
 <<a href="mailto:bigbang-user@data-activism.net" target="_blank">mailto:bigbang-user@data-activism.net</a>>><br>
>     > *Oggetto:* Re: [Bigbang-user] Issue with listserv<br>
>     >  <br>
>     > Hi Riccardo,<br>
>     ><br>
>     > This is not a very informed response - but did you first do:<br>
>     ><br>
>     > git pull<br>
>     ><br>
>     > to ensure that you have the latest version with all the recent changes?<br>
>     ><br>
>     > Best,<br>
>     ><br>
>     > Niels<br>
>     ><br>
>     > On 22-04-2021 17:31, Riccardo Nanni wrote:<br>
>     >> Dear all,<br>
>     >><br>
>     >> how are you?<br>
>     >> I tried to collect email from 3GPP by running these commands:<br>
>     >> python bin/collect_mail.py -u <a href="https://list.etsi.org/scripts/wa.exe" target="_blank">
https://list.etsi.org/scripts/wa.exe</a> <<a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a>>? <<a></a><a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a>
 <<a href="https://list.etsi.org/scripts/wa.exe%3E?" target="_blank">https://list.etsi.org/scripts/wa.exe>?</a>> <<a></a><a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a> <<a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a>>?
 <<a></a><a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a> <<a href="https://list.etsi.org/scripts/wa.exe%3E?" target="_blank">https://list.etsi.org/scripts/wa.exe>?</a>>>;<br>
>     >> python3 bin/collect_mail.py -u <a href="https://list.etsi.org/scripts/wa.exe" target="_blank">
https://list.etsi.org/scripts/wa.exe</a> <<a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a>>? <<a></a><a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a>
 <<a href="https://list.etsi.org/scripts/wa.exe%3E?" target="_blank">https://list.etsi.org/scripts/wa.exe>?</a>> <<a></a><a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a> <<a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a>>?
 <<a></a><a href="https://list.etsi.org/scripts/wa.exe" target="_blank">https://list.etsi.org/scripts/wa.exe</a> <<a href="https://list.etsi.org/scripts/wa.exe%3E?" target="_blank">https://list.etsi.org/scripts/wa.exe>?</a>>><br>
>     >> AND<br>
>     >> python3 bin/collect_mail.py -f examples/url_collections/listserv.3GPP.txt<br>
>     >><br>
>     >> Also tried to scrape a specific group's list with the same commands: <a href="https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN" target="_blank">
https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN</a> <<a href="https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN" target="_blank">https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN</a>> <<a></a><a href="https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN" target="_blank">https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN</a>
 <<a href="https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN" target="_blank">https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN</a>>> <<a></a><a href="https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN" target="_blank">https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN</a>
 <<a href="https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN" target="_blank">https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN</a>> <<a></a><a href="https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN" target="_blank">https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN</a>
 <<a href="https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN" target="_blank">https://list.etsi.org/scripts/wa.exe?A0=3GPP_TSG_RAN</a>>>><br>
>     >><br>
>     >> I get the following error:<br>
>     >> TypeError: from_url() got an unexpected keyword argument 'instant_dump'<br>
>     >><br>
>     >> I don't understand what I'm missing. Can you help me, please?<br>
>     >> Thanks a lot in advance! The only similar argument I could find on Stackoverflow has no answers...<br>
>     >><br>
>     >> Riccardo<br>
>     >><br>
>     >><br>
>     >><br>
>     >><br>
>     >> _______________________________________________<br>
>     >> Bigbang-user mailing list<br>
>     >> <a href="mailto:Bigbang-user@data-activism.net" target="_blank">Bigbang-user@data-activism.net</a> <<a href="mailto:Bigbang-user@data-activism.net" target="_blank">mailto:Bigbang-user@data-activism.net</a>><br>
>     >> <a href="https://lists.ghserv.net/mailman/listinfo/bigbang-user" target="_blank">
https://lists.ghserv.net/mailman/listinfo/bigbang-user</a> <<a href="https://lists.ghserv.net/mailman/listinfo/bigbang-user" target="_blank">https://lists.ghserv.net/mailman/listinfo/bigbang-user</a>> <<a></a><a href="https://lists.ghserv.net/mailman/listinfo/bigbang-user" target="_blank">https://lists.ghserv.net/mailman/listinfo/bigbang-user</a>
 <<a href="https://lists.ghserv.net/mailman/listinfo/bigbang-user" target="_blank">https://lists.ghserv.net/mailman/listinfo/bigbang-user</a>>><br>
>     >><br>
>     ><br>
>     > --<br>
>     > Niels ten Oever, PhD<br>
>     > Postdoctoral Researcher - Media Studies Department - University of Amsterdam<br>
>     > Research Fellow - Centre for Internet and Human Rights - European University Viadrina<br>
>     > Associated Scholar - Centro de Tecnologia e Sociedade - Fundação Getúlio Vargas<br>
>     ><br>
>     > <a href="https://nielstenoever.net" target="_blank">https://nielstenoever.net</a> <<a href="https://nielstenoever.net" target="_blank">https://nielstenoever.net</a>> <<a></a><a href="https://nielstenoever.net" target="_blank">https://nielstenoever.net</a>
 <<a href="https://nielstenoever.net" target="_blank">https://nielstenoever.net</a>>> -
<a href="mailto:mail@nielstenoever.net" target="_blank">mail@nielstenoever.net</a> <<a href="mailto:mail@nielstenoever.net" target="_blank">mailto:mail@nielstenoever.net</a>> - @nielstenoever - +31629051853<br>
>     > PGP: 2458 0B70 5C4A FD8A 9488 643A 0ED8 3F3A 468A C8B3<br>
>     ><br>
>     > Read my latest article on Internet infrastructure governance in New Media & Society here:
<a href="https://journals.sagepub.com/doi/full/10.1177/1461444820929320" target="_blank">
https://journals.sagepub.com/doi/full/10.1177/1461444820929320</a> <<a href="https://journals.sagepub.com/doi/full/10.1177/1461444820929320" target="_blank">https://journals.sagepub.com/doi/full/10.1177/1461444820929320</a>> <<a></a><a href="https://journals.sagepub.com/doi/full/10.1177/1461444820929320" target="_blank">https://journals.sagepub.com/doi/full/10.1177/1461444820929320</a>
 <<a href="https://journals.sagepub.com/doi/full/10.1177/1461444820929320" target="_blank">https://journals.sagepub.com/doi/full/10.1177/1461444820929320</a>>><br>
>     ><br>
>     > _______________________________________________<br>
>     > Bigbang-user mailing list<br>
>     > <a href="mailto:Bigbang-user@data-activism.net" target="_blank">Bigbang-user@data-activism.net</a> <<a href="mailto:Bigbang-user@data-activism.net" target="_blank">mailto:Bigbang-user@data-activism.net</a>><br>
>     > <a href="https://lists.ghserv.net/mailman/listinfo/bigbang-user" target="_blank">
https://lists.ghserv.net/mailman/listinfo/bigbang-user</a> <<a href="https://lists.ghserv.net/mailman/listinfo/bigbang-user" target="_blank">https://lists.ghserv.net/mailman/listinfo/bigbang-user</a>> <<a></a><a href="https://lists.ghserv.net/mailman/listinfo/bigbang-user" target="_blank">https://lists.ghserv.net/mailman/listinfo/bigbang-user</a>
 <<a href="https://lists.ghserv.net/mailman/listinfo/bigbang-user" target="_blank">https://lists.ghserv.net/mailman/listinfo/bigbang-user</a>>><br>
> <br>
>     -- <br>
>     Niels ten Oever, PhD<br>
>     Postdoctoral Researcher - Media Studies Department - University of Amsterdam<br>
>     Research Fellow - Centre for Internet and Human Rights - European University Viadrina<br>
>     Associated Scholar - Centro de Tecnologia e Sociedade - Fundação Getúlio Vargas<br>
> <br>
>     <a href="https://nielstenoever.net" target="_blank">https://nielstenoever.net</a> <<a href="https://nielstenoever.net" target="_blank">https://nielstenoever.net</a>> -
<a href="mailto:mail@nielstenoever.net" target="_blank">mail@nielstenoever.net</a> <<a href="mailto:mail@nielstenoever.net" target="_blank">mailto:mail@nielstenoever.net</a>> - @nielstenoever - +31629051853<br>
>     PGP: 2458 0B70 5C4A FD8A 9488 643A 0ED8 3F3A 468A C8B3<br>
> <br>
>     Read my latest article on Internet infrastructure governance in New Media & Society here:
<a href="https://journals.sagepub.com/doi/full/10.1177/1461444820929320" target="_blank">
https://journals.sagepub.com/doi/full/10.1177/1461444820929320</a> <<a href="https://journals.sagepub.com/doi/full/10.1177/1461444820929320" target="_blank">https://journals.sagepub.com/doi/full/10.1177/1461444820929320</a>><br>
> <br>
> <br>
> <br>
> -- <br>
> <><><><><><><><><><><><><><><><><br>
> /Christoph Becker /(/he/him/his/)///<br>
> PhD at the<br>
> /<br>
> /Institute for Data Science and/<br>
> /Institute for Computational Cosmology/<br>
> /Durham University/<br>
> /United Kingdom/<br>
> //<a href="http://christovis.github.io//" target="_blank">christovis.github.io//</a> <<a href="http://christovis.github.io" target="_blank">http://christovis.github.io</a>><br>
<br>
-- <br>
Niels ten Oever, PhD<br>
Postdoctoral Researcher - Media Studies Department - University of Amsterdam<br>
Research Fellow - Centre for Internet and Human Rights - European University Viadrina<br>
Associated Scholar - Centro de Tecnologia e Sociedade - Fundação Getúlio Vargas<br>
<br>
<a href="https://nielstenoever.net" target="_blank">https://nielstenoever.net</a> -
<a href="mailto:mail@nielstenoever.net" target="_blank">mail@nielstenoever.net</a> - @nielstenoever - +31629051853<br>
PGP: 2458 0B70 5C4A FD8A 9488 643A 0ED8 3F3A 468A C8B3<br>
<br>
Read my latest article on Internet infrastructure governance in New Media & Society here:
<a href="https://journals.sagepub.com/doi/full/10.1177/1461444820929320" target="_blank">
https://journals.sagepub.com/doi/full/10.1177/1461444820929320</a><br>
</div>
</span></font></div>
</div>
</blockquote>
</div>
<br clear="all">
<div><br>
</div>
-- <br>
<div dir="ltr">
<div dir="ltr"><font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><span style="font-size:13px"><font size="2" face="Times New Roman" color="#666699"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal"><><><><><><><><><><><><><><><><></span><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"><br>
</span></font><font color="#666699"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></font><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></span><span style="font-size:9pt;line-height:normal"></span><span style="font-size:13px"></span></font></font></font></font></font></font>
<div><font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="1" face="Tahoma"><span style="font-size:13px"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></span></font></font></font>
<div><font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="2" face="Times New Roman" color="#666699"><i><font color="black"><font size="1"><font face="Tahoma"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">Christoph
 Becker</span></font></font></font> <font size="3" face="Times New Roman,Times,serif" color="black">
<font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><span><font size="1" face="Tahoma"><span><font size="2" face="Times New Roman" color="#666699"><i><font color="black"><font size="1"><font face="Tahoma"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">(</span><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal"><em>he/him/his</em></span><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">)</span></font></font></font></i></font></span></font></span></font></font></font></font></font></font></i></font></font></font><i><br>
<span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">PhD at the<br>
</span></i></div>
<div><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">Institute for Data Science and</span></i></font><br>
<span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></div>
<span style="font-size:9pt;line-height:normal"></span><span style="font-size:13px"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span>
<div><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">Institute for Computational Cosmology</span></i></font></div>
<span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></span><span style="font-size:9pt;line-height:normal"></span><span style="font-size:13px">
<div><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">Durham University</span></i></font></div>
<span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></span><span style="font-size:9pt;line-height:normal"></span><span style="font-size:13px">
<div><font size="1"><span style="font-size:13px"><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">United Kingdom</span></i></font></span></font></div>
<div><a href="http://christovis.github.io" target="_blank"><font size="1"><span style="font-size:13px"><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"><font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><span><font size="1" face="Tahoma"><span><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">christovis.github.io</span></i></font></span></font></span></font></font></font></font></font></font></span></i></font></span></font></a></div>
</span></div>
</div>
</div>
</div>
</div>

</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><span style="font-size:13px"><font size="2" face="Times New Roman" color="#666699"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal"><><><><><><><><><><><><><><><><></span><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"><br></span></font><font color="#666699"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></font><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></span><span style="font-size:9pt;line-height:normal"></span><span style="font-size:13px"></span></font></font></font></font></font></font><div><font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="1" face="Tahoma"><span style="font-size:13px"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></span></font></font></font><div><font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="2" face="Times New Roman" color="#666699"><i><font color="black"><font size="1"><font face="Tahoma"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">Christoph Becker</span></font></font></font> <font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><span><font size="1" face="Tahoma"><span><font size="2" face="Times New Roman" color="#666699"><i><font color="black"><font size="1"><font face="Tahoma"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">(</span><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal"><em>he/him/his</em></span><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">)</span></font></font></font></i></font></span></font></span></font></font></font></font></font></font></i></font></font></font><i><br><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">PhD at the<br></span></i></div><div><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">Institute for Data Science and</span></i></font><br><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></div><span style="font-size:9pt;line-height:normal"></span><span style="font-size:13px"><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span><div><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">Institute for Computational Cosmology</span></i></font></div><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></span><span style="font-size:9pt;line-height:normal"></span><span style="font-size:13px"><div><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">Durham University</span></i></font></div><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"></span></span><span style="font-size:9pt;line-height:normal"></span><span style="font-size:13px"><div><font size="1"><span style="font-size:13px"><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">United Kingdom</span></i></font></span></font></div><div><a href="http://christovis.github.io" target="_blank"><font size="1"><span style="font-size:13px"><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201)"><font size="3" face="Times New Roman,Times,serif" color="black"><font size="3" face="Times New Roman,Times,serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols" color="black"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><font size="1" face="Tahoma"><span><font size="1" face="Tahoma"><span><font size="2" face="Times New Roman" color="#666699"><i><span style="background-color:rgb(255,255,255);color:rgb(0,111,201);font-size:9pt;line-height:normal">christovis.github.io</span></i></font></span></font></span></font></font></font></font></font></font></span></i></font></span></font></a></div></span></div></div></div>