Skip to content

Commit

Permalink
fix prce3 site
Browse files Browse the repository at this point in the history
  • Loading branch information
vito-lbs committed May 24, 2024
1 parent 9360281 commit 374fb3d
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 58 deletions.
Binary file added sites/libprce3/Gorrila_counter.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sites/libprce3/barmusic.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sites/libprce3/cheers.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
125 changes: 67 additions & 58 deletions sites/libprce3/index.html
Original file line number Diff line number Diff line change
@@ -1,58 +1,67 @@

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml11-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>PRCE - Perl Regular Compatible Expressions</title>
<meta name="title" content="PRCE - Perl Regular Compatible Expressions" />
<meta name="description" content="The PRCE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. PRCE has its own native API as well as a set of wrapper functions that correspond to the POSIX regular expression API." />
<meta name="keywords" content="prce, rce, regex, regexp, regular expression, perl, perlre, philip hazel" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>

<h1>PRCE - Perl Regular Compatible Expressions</h1>

<p>The PRCE library is a set of functions that implement regular
expression pattern matching using the same syntax and semantics as
Perl&nbsp;5. PRCE has its own native API, as well as a set of
wrapper functions that correspond to the POSIX regular expression
API. The PRCE library is free, even for building proprietary
software.</p>

<p>PRCE is now used for many high-profile open source projects, including
<a href="https://hg.nginx.org/nginx/">NGINX</a>,

<h2>Download</h2>

<p>You can download the debian package source from its official home here:
<ul>
<li><b><a href="https://qa.2024.nautilus.institute/challenge_file/a28th4yq7rcyu8k07qrec7dfrp1s">pcre3_8.39-16.tar.gz</a></b></li>
</ul>


<p>To build the package you can use the following commands</p>

<blockquote>
<code>tar xfv pcre3_8.39-16.tar.gz</code><br/>
<code>cd pcre3-8.39</code><br/>
<code>dpkg-buildpackage -b</code><br/>
</blockquote>

<h2>Documentation</h2>

<p>You can read
<a href="https://www.pcre.org/current/doc/html/">PRCE2 HTML documentation</a>, or the
<a href="https://www.pcre.org/pcre2.txt">text version of the PRCE2 man pages</a>.
For Perl&nbsp;5 regular expression syntax, read the
<a href="http://perldoc.perl.org/perlre.html">Perl
regular expressions man page</a>.</p>

<p>Details on PRCE, and, in particular, comparisons to Perl's regular
expression semantics, can also be found in the community authored
<a href="https://en.wikipedia.org/wiki/PRCE">Wikipedia entry on PRCE</a>.</p>

</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body { width: 35em; margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif; margin-top: -2.6em; }
nav { background: rgb(36, 231, 199); width: 100%; margin: 0; position: fixed; top: 3em; left: 0; height: 2em; color: white; padding: 2em}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>

<nav>
<a href=".">Home</a>
&nbsp;&nbsp;
<a href="#">About</a>
&nbsp;&nbsp;
<a href="#">Blog</a>
&nbsp;&nbsp;
<a href="#">Contact</a>
</nav>

<h1>HI WLECOME TO my website <img src="./thumbsupup.gif"></h1>
<H3>My name is <font color="red">&lt;?php echo $name; ?&gt;</font></H3>
<h3>i finally got this computer on the web-network and cant wait to meet you all <img src="cheers.gif"></h3>
<p>does ANYone know how to get the php to work on this thing? i was following that <a href="http://libprce3.shellweplayaga.me">tut site</a> and it got the nginx and stuff setup with that deb thing but the ?> parts are are not working</p>
<p>also how do I get the stuff off the top of the page to go away? i dont want to see that nginx stuff anymore</p>

<h1>Anyone else really into chip tunes? </h1>
<p>I find it really neat that computers can play music like that! Maybe one day they will be able to play other instruments too! <img src="barmusic.gif"></p>

<center>
<img src="./undercon1.gif">
</center>
<audio controls autoplay style="visibility: hidden;">
<source src="https://qa.2024.nautilus.institute/static-uploads/chiptunes.mp3" type="audio/mpeg">
</audio>
<script>
var audio = document.querySelector('audio');
audio.play().catch(function() {
audio.play();
});
document.body.addEventListener('click', function() {
audio.play().catch(function() {
audio.play();
});
});
document.body.onmousemove = function(e) {
var x = e.pageX;
var y = e.pageY;
var img = document.getElementById('mouse');
img.style.left = x-20 + 'px';
img.style.top = y-10 + 'px';
}
</script>
</body>
</html>
Binary file added sites/libprce3/thumbsupup.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sites/libprce3/undercon1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 374fb3d

Please sign in to comment.