Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunchead committed Mar 24, 2024
0 parents commit 6799109
Show file tree
Hide file tree
Showing 15 changed files with 1,413 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
RewriteEngine on


RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
RewriteRule ^ /%1 [NC,L,R]

RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^ %{REQUEST_URI}.html [NC,L]
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"tabWidth": 4,
"useTabs": false
}
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# AI Safety Project

The AI Safety Project aims to map landscape of AI risk and understand the challenges we must overcome as a global community.

The field of AI development is moving at such a pace that there's a real chance we may fall victim to risks before we fully understand them, or are even aware of them. This is probably already happening.

Community-driven initiatives are essential to keep up with this rapidly evolving landscape. The goals of this project are:

- Create a simple framework for understanding the landscape of AI risk and the main challenges we need to overcome
- Share key resources and potential solutions
- Provide a space for community collaboration that is not driven by economic incentives

## Contributions welcome

Contributions are welcome for any of the following:

- Additional risks/challenges
- Suggested solutions
- Key links/resources

Feel free to submit your own ideas.

Bugfixes/improvements for the website itself are also welcome.

Contributions can be made as pull requests (most content is in `script.js`) or posts in the discusssion forum.

> ### Contributor guidelines
>
> This is a rough map, not an encyclopedia.
>
> The goal is to create a clear, high-level outline of the major issues with links to key resources for further reading; we're **not** trying to compile a detailed or comprehensive list. Too much information is part of the problem we're trying to solve.
>
> **Yes please:**<br>
> ✅ Key, concise points not already covered<br>
> ✅ Resources that are especially clear, original or significant<br>
> ✅ Restructuring that improves the content while maintaining the clarity of design<br>
>
> **No thanks:**<br>
> ❌ Verbose or repetitive text<br>
> ❌ Links that do not offer much additional value<br>
> ❌ Non-essential restructuring of the design/content<br>
77 changes: 77 additions & 0 deletions challenges.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>AI Safety Project</title>
<meta
name="description"
content="An open-source project to map AI risks and potential solutions"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<div id="wrapper">
<header>
<h1 id="home-btn" class="btn">
<a href="/">AI Safety Project</a>
</h1>
<nav>
<ul>
<li><a href="risks.html">Risks</a></li>
<li><a href="challenges.html">Challenges</a></li>
</ul>
</nav>
<img src="img/mobile-nav-btn.svg" id="mobile-nav-btn" />
<img src="img/close.svg" id="close-nav-btn" />
</header>
<main>
<div id="challenges">
<h1>Challenges</h1>
<div class="flex-container">
<div class="col half" id="general">
<h2>General</h2>
</div>
<div class="col half" id="technical">
<h2>Technical</h2>
</div>
</div>
</div>
</main>

<footer>
<div class="text">
<p>
<b>AI Safety Project</b> is an open source project built
with ♡ for technology - but above all humanity.
</p>
<p>
Want to contribute? Join us on
<a href="https://github.com/">Github</a>
</p>
</div>
</footer>
</div>
<div id="overlays"></div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="script.js" async defer></script>
</body>
</html>
1 change: 1 addition & 0 deletions img/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions img/left-chevron.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/mobile-nav-btn.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions img/right-chevron.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 74 additions & 0 deletions img/tetris.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions img/warning-triangle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
75 changes: 75 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AI Safety Project</title>
<meta name="description" content="An open-source project to map AI risks and potential solutions">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="wrapper">
<header>
<h1 id="home-btn" class="btn"><a href="/">AI Safety Project</a></h1>
<nav>
<ul>
<li><a href="risks.html">Risks</a></li>
<li><a href="challenges.html">Challenges</a></li>
</ul>
</nav>
<img src="img/mobile-nav-btn.svg" id="mobile-nav-btn" />
<img src="img/close.svg" id="close-nav-btn" />
</header>
<main>
<div id="home">
<div class="text">
<p>The <a href="/">AI Safety Project</a> is an open source initiative to map landscape of AI risk and understand the challenges we must overcome as a global community.</p>
<p>The field of AI development is moving at such a pace that there's a real chance we may fall victim to risks before we fully understand them, or are even aware of them. Maybe this is already happening.</p>
<p>Community-driven initiatives are essential to keep up with this rapidly evolving landscape. The goals of this project are:
<ul>
<li>Create a simple framework for understanding the landscape of AI risk and the main challenges we need to overcome</li>
<li>Share key resources and potential solutions</li>
<li>Provide a space for community collaboration that is not driven by economic incentives</li>
</ul>
</p>
<h3 style="font-weight:bold;">Click on one of these big buttons to learn more:</h3>
</div>
<div class="flex-container">
<div class="half">
<div class="box large" id="risks-btn">
<h2>Risks</h2>
</div>
</div>
<div class="half">
<div class="box large" id="challenges-btn">
<h2>Challenges</h2>
</div>
</div>

</div>
</div>

<footer>
<div class="text">
<p><b>AI Safety Project</b> is an open source project built with ♡ for technology - but above all humanity.</p>
<p>Want to contribute? Join us on <a href="https://github.com/">Github</a></p>
</div>
</footer>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="script.js" async defer></script>

</body>
</html>
Loading

0 comments on commit 6799109

Please sign in to comment.