blob: c4ce5d03ef831e2c882b2906d07c64259a2fd64c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
import Meta from '../../components/meta'
import Image from "next/image"
import Link from 'next/link'
export default function OsftSoftwareArchive() {
return (
<div>
<Meta title="Philip Adams Software Archive" description="The ultimate software collection of Philip Adams' software"/>
<div className="font-hack bg-material-gray text-white px-5 py-6 space-y-5 flex flex-col">
<div className="text-center items-center justify-center space-y-2">
<Image src="/Alee.svg" alt="Alee Logo" width={128} height={128} />
<h1 className="text-4xl font-bold">Philip Adams Software Archive</h1>
</div>
<p>These software require .NET Framework 3.5, 4.0 and/or 4.5 to function.</p>
<div className="bg-yellow-700 p-5 rounded-lg font-bold">
<p>CONTENT WARNING: Some of the software in this pack has a jumpscare.</p>
<p>If you have epilepsy please be cautious with this pack.</p>
<p>Disable your antivirus as it can detect false positive, feel free to use a VM in case this feels not safe.</p>
</div>
<p>Pack will include the following:</p>
<ul className="bg-gray-700 p-6 rounded-lg">
<li>Artpad (from ShiftOS)</li>
<li>Averager</li>
<li>Board Game Maker</li>
<li>Bouncing Ball Physics 0.3</li>
<li>Chebinect</li>
<li>Chrono Machine 0.9.3</li>
<li>Colors</li>
<li>Dark OS Studio</li>
<li>Digging</li>
<li>Draw</li>
<li>Dropper</li>
<li>Explore 0.3.7</li>
<li>File Viewer (Warning jumpscare)</li>
<li>File Wars</li>
<li>"funny nana and grampa sounds version 1.1"</li>
<li>Guess The Number</li>
<li>Histacom 1.8.5 (Epliespy warning)</li>
<li>HTMLive</li>
<li>IIR (Interactive Infinite Road)</li>
<li>Infinijump 0.1</li>
<li>Mitosis 0.6</li>
<li>OSFirstTimer Blue Screen (Warning jumpscare)</li>
<li>Paper Math 2D</li>
<li>Philip's Mario Game</li>
<li>Phone Simulator 0.4</li>
<li>Picture Generator</li>
<li>Pixel Physics 0.3</li>
<li>Road Simulator 0.4</li>
<li>RPG Map Maker</li>
<li>ShiftOS 0.0.8 (Epliespy warning)</li>
<li>Theme Test</li>
<li>Thoto 0.3</li>
<li>Time Machine 0.4</li>
<li>Typewriter</li>
<li>Vending Machine</li>
<li>Visual Sound (Ear blast warning lower the volume)</li>
<li>Zeon OS 0.2</li>
</ul>
<div className="font-bold text-sm">
<p>MD5 Hash: 0665543e3d85bdf017b74a0a35ac73b6</p>
<p>SHA512: a9f2927ccfd3c2ebb5ec00f9ed97f888ddefd0d3ae97391de47a5fcdbbe614bbd76f0a33ce71174346d71463abbadcb49c8ad40d08dd071f31ae3d5711e0bcf4</p>
<p>SHA256: b4358195900da09a2068039f9b9c80b2c854b72663c88a3f6f168cb4fbe7d2b4</p>
</div>
<div className="flex-col space-x-5">
<button className="button"><a href="/uploads/OSFT-Software-Archive.zip">Download Archive</a></button>
</div>
<div className="text-center pb-2">
<Link href="/"><button className="button">Return Homepage</button></Link>
</div>
</div>
</div>
)
}
|