Software Development

Syracuse update

I’ve now converted all the topics to RDF format so they can be represented natively in graph format. I essentially made up the RDF (with some inspiration from ChatGPT, naturally) so I’m sure it can be hugely improved.

Next steps I want to do are [a] to make the RDF more in line with appropriate standards and then [b] stitch together topics that relate to the same entity/location to create a timeline.

Non-cherry-picked results of the first example of each type (M&A, Appointment and Location) below. The demo is still running at http://syracuse-1145.herokuapp.com/ and I’d love to hear from anyone who finds the tool interesting.

M&A – Canadian buyer aims to improve Pornhub owner’s reputation

see http://syracuse-1145.herokuapp.com/topics/493555.

RDF for this:

@prefix ns1: <http://1145.am/db/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://1145.am/db/1941166/Ethical_Capital_Partners> a <http://www.w3.org/ns/org#Organization> ;
    ns1:basedInHigh "Canada" ;
    ns1:description "Canadian private equity firm" ;
    ns1:foundName "Ethical Capital Partners" ;
    ns1:industry "private equity" ;
    ns1:name "Ethical Capital Partners" ;
    ns1:spender <http://1145.am/db/1941166/Act_Mindgeek> .

<http://1145.am/db/1941166/Act_Mindgeek> a ns1:Activity ;
    ns1:activityType "Act" ;
    ns1:documentDate "2023-03-17T22:01:07.679000+00:00"^^xsd:dateTime ;
    ns1:documentExtract "Ethical Capital Partners (ECP) this week bought Pornhub owner MindGeek, its first ever acquisition, with the aim of improving the internet platform's reputation, the young Canadian private equity firm's partners said on Friday." ;
    ns1:label "activity" ;
    ns1:name "Act MindGeek" ;
    ns1:targetEntity <http://1145.am/db/1941166/Mindgeek> ;
    ns1:whenRaw "has happened, no date available" .

<http://1145.am/db/1941166/Mindgeek> a <http://www.w3.org/ns/org#Organization> ;
    ns1:basedInLow "Canadian" ;
    ns1:description "Pornhub owner" ;
    ns1:foundName "MindGeek" ;
    ns1:name "MindGeek" .

Appointment – Gantt named chancellor at Southern University-Shreveport

http://syracuse-1145.herokuapp.com/topics/493562

RDF for this:

@prefix ns1: <http://1145.am/db/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://1145.am/db/1940774/Aubra_Gantt> a <http://xmlns.com/foaf/0.1/Person> ;
    ns1:foundName "Aubra Gantt" ;
    ns1:name "Aubra Gantt" ;
    ns1:roleActivity <http://1145.am/db/1940774/Aubra_Gantt-Starting-Chancellor> .

<http://1145.am/db/1940774/Southern_University_Shreveport> a <http://www.w3.org/ns/org#Organization> ;
    ns1:basedInHigh "Shreveport" ;
    ns1:description "Southern University System" ;
    ns1:foundName "Southern University Shreveport" ;
    ns1:hasRole <http://1145.am/db/1940774/Southern_University_Shreveport-Chancellor> ;
    ns1:name "Southern University Shreveport" .

<http://1145.am/db/1940774/Aubra_Gantt-Starting-Chancellor> a ns1:RoleActivity ;
    ns1:activityType "starting" ;
    ns1:documentDate "2023-03-17T23:18:37+00:00"^^xsd:dateTime ;
    ns1:documentExtract "Shreveport native Aubra Gantt was chosen Friday as the next chancellor at the Southern University Shreveport campus." ;
    ns1:foundName "chosen" ;
    ns1:name "Chosen" ;
    ns1:orgFoundName "The Southern University System" ;
    ns1:role <http://1145.am/db/1940774/Southern_University_Shreveport-Chancellor> ;
    ns1:roleFoundName "chancellor" ;
    ns1:roleHolderFoundName "Aubra Gantt" .

<http://1145.am/db/1940774/Southern_University_Shreveport-Chancellor> a <http://www.w3.org/ns/org#Role> ;
    ns1:foundName "chancellor" ;
    ns1:name "Chancellor" ;
    ns1:orgFoundName "Southern University Shreveport" .

Location – UMC Circular Economy & Recycling Innovation Center Breaks Ground for a Zero Waste Future

http://syracuse-1145.herokuapp.com/topics/493512

RDF for this:

@prefix ns1: <http://1145.am/db/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://1145.am/db/1940440/United_Microelectronics_Corporation> a <http://www.w3.org/ns/org#Organization> ;
    ns1:basedInHigh "Taiwan" ;
    ns1:description "NYSE: UMC; TWSE: 2303" ;
    ns1:foundName "United Microelectronics Corporation" ;
    ns1:industry "semiconductor manufacturing" ;
    ns1:locationAdded <http://1145.am/db/1940440/United_Microelectronics_Corporation-Tainan_Taiwan> ;
    ns1:name "United Microelectronics Corporation" .

<http://1145.am/db/1940440/Tainan_Taiwan> a <http://www.w3.org/ns/org#Site> ;
    ns1:foundName "Tainan, Taiwan" ;
    ns1:name "Tainan, Taiwan" .

<http://1145.am/db/1940440/United_Microelectronics_Corporation-Tainan_Taiwan> a ns1:SiteAddedActivity ;
    ns1:actionFoundName "groundbreaking" ;
    ns1:documentDate "2023-03-17T09:07:00+00:00"^^xsd:dateTime ;
    ns1:documentExtract "United Microelectronics Corporation (NYSE: UMC; TWSE: 2303) (\"UMC\") today held a groundbreaking ceremony for its Circular Economy & Recycling Innovation Center, which will be established at its Fab 12A in Tainan, Taiwan." ;
    ns1:foundName "Tainan, Taiwan" ;
    ns1:location <http://1145.am/db/1940440/Tainan_Taiwan> ;
    ns1:locationFoundName "Tainan, Taiwan" ;
    ns1:locationPurpose "Circular Economy & Recycling Innovation Center" ;
    ns1:name "Tainan, Taiwan" ;
    ns1:orgFoundName "United Microelectronics Corporation" .