anon@anon $ phoronix-test-suite % phoronix-test-suite debug-benchmark aom-av1
Evaluating External Test Dependencies ..................................................................................................................................................
Phoronix Test Suite v10.8.4
Installed: pts/aom-av1-3.5.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Zach, | |
This is a great idea, thanks! I hope this makes it a survey that can be edited and maintained by Wikipedia editors… or does it have to be a perfect replica of what is on posithub.org? If it can be maintained by Wikipedia, I can replace that part of posithub.org with a pointer to the Wikipedia site. I am very short on manpower for maintaining posithub.org, and a lot is happening with new posit implementations. | |
As you suggest: https://posithub.org/docs/PDS/PositEffortsSurvey.html is CC0, CC BY-SA 3.0. | |
Thanks, | |
John Gustafson | |
> On Jun 6, 2021, at 12:16 PM, Zach Lym <[email protected]> wrote: |
I apologize for the wall of text, there are a lot of concerns raised in the WASI case-senstivity ticket and I wanted to explain how everything works without just pointing to dense specs and code.
Case-insensitivity is important because it is required by end users: Windows, OS X, and Android all enforce some level of case-insensitivity. As a practical matter, this means Linux developers must manually enforce case-insensitivity. And despite much wailing and gnashing of teeth, even Linux has recently added support for case-insensitivity on a per-directory basis. Distros that care about usability will eventually adopt case-insensitivity, even if it is just for the home directories.
WASI’s current proposal trades Unix’s opaque bytes mo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Error Illustration</title> | |
<script defer> | |
'use strict'; | |
if(window && !window.ACMESessionID){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Error Illustration</title> | |
<script defer> | |
'use strict'; | |
const env = { //Some global values usually found in window or global... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Error Illustration</title> | |
<script defer> | |
'use strict'; | |
class CustomError extends Error {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("Hello world!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var exams = []; | |
var exam = doc["Exm0"]; | |
while(exam){ | |
exams.push(exam); | |
exam = doc["Exm" + exam.length]; | |
} | |
if(exams.length){ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(document){ | |
try { | |
var h1 = document.createElement("h1"); | |
var text = document.createTextNode("Hello World!"); | |
h1.appendChild(text); | |
document.body.appendChild(h1); | |
document.title = "Hello World!"; | |
} catch (error) {} | |
} | |
console.log("Hello World!"); |
NewerOlder