Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Murphant community 1 #816

Merged
merged 9 commits into from
Oct 30, 2024
Merged
129 changes: 128 additions & 1 deletion app/routes/how-can-i-help.community.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,141 @@
import {MetaFunction} from '@remix-run/node'
import DropDown from '~/components/DropDown'
import HelpItem from '~/components/HowCanIHelp/HelpItem'
import CategoryCarousel from '~/components/HowCanIHelp/CatgoryCarousel'
import Base from '~/components/HowCanIHelp/Base'
import {useEffect} from 'react'
import VideoImg from '~/assets/video_thumbnail.png'
import PlayIcon from '~/components/icons-generated/Play'

export const meta: MetaFunction = () => {
return [{title: 'How Can I Help? - AISafety.info'}]
}

const InPerson = () => (
<>
<div className="padding-bottom-24">
<div className="flexbox padding-bottom-56">
<h2 className="teal-500 padding-bottom-40" id="new-to-aisafety">
In person communities
LeMurphant marked this conversation as resolved.
Show resolved Hide resolved
</h2>
<p className="grey default">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To make it just half the page, you would apply the col-6 class to this p

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, that worked

In person communities provide general purpose support, networking, and socializing for
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In-person

anyone interested in contributing to AI safety.
</p>
{/* TODO make this only appear in left part of page */}
</div>
<HelpItem
title="AI safety-specific coommunities"
links={[
{
title: 'Our list of in-person communities',
action: 'https://www.aisafety.com/communities',
},
]}
>
<p className="grey default padding-bottom-24">
There are about 60 in-person AI Safety communities across the globe, mostly in major
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

safety*

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was not sure about this one, but Claude is on your side so I will change it. See how quickly our mistrust of AI erodes! Claude knows best!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙃

cities. These communities typically host weekly meetups in which members network,
socialize, or review AI safety material in the form of talks or workshops.
</p>
</HelpItem>
<HelpItem
title="Related communities"
links={[
{
title: 'EA groups map',
action: 'https://forum.effectivealtruism.org/groups',
},
{
title: 'Rationalist groups map',
action: 'https://www.lesswrong.com/community',
},
]}
>
<p className="grey default padding-bottom-24">
AI Safety is a major topic in Effective Altruism (EA) and Rationalism. Consider joining a
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"AI safety"

local EA or Rationalist group if you can't find an AI Safety community near you.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"AI safety"

</p>
</HelpItem>
</div>
</>
)

const Online = () => (
<>
<div className="padding-bottom-24">
<div className="flexbox padding-bottom-56">
<h2 className="teal-500 padding-bottom-40" id="new-to-aisafety">
Online communities
</h2>
<p className="grey default">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add class col-6

Online communities typically exist on Slack, Discord (an app like Slack), or website
forums, and tend to serve more specific purposes:
</p>
{/* TODO make this only appear in left part of page */}
</div>
<HelpItem
title="General resources & support"
links={[
{
tag: 'Top recommendation',
title: 'AI alignment slack',
action:
'https://ai-alignment.slack.com/join/shared_invite/zt-1vd2yu4ib-3dLG4D82H7eXF_THvTdUKg#/shared-invite/email',
},
]}
additionalInfo={
<>
Or, browse our{' '}
<a href="https://www.aisafety.com/communities" className="small-bold teal-500">
full list of communities
</a>
</>
}
>
<p className="grey default padding-bottom-24">
General hubs for support, motivation, discussion, and information-gathering.
</p>
</HelpItem>

<HelpItem title="Focused on one activity">
<p className="grey default padding-bottom-24">
Such as volunteering for a certain project or organizing and attending protests.
</p>
{/* TODO there seems to be lacking text or a link in the figma */}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I hadn't included one but I like your suggestion, why not include something. Can you think of the best community to put here that fits this description?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added a (hedged) blurb on PauseAI, lmk what you think

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pause AI discord as a focused activity community? I like that. Might change the copy later.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I linked directly to their website on the events page since this part suggests in-person stuff.

</HelpItem>

<HelpItem
title="Detailed strategic discussion"
links={[
{
tag: 'Top recommendation',
title: 'Lesswrong',
action: 'https://www.lesswrong.com/',
},
// TODO: do we want to link to a specific tag here?
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A specific lesswrong tag? Sure, if you think that would make sense. You can choose what tag we link to

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added the "AI" tag

]}
>
<p className="grey default padding-bottom-24">
Deep strategic and technical discussions regarding AI alignment and AI governance.
</p>
</HelpItem>
</div>
</>
)

export default function Community() {
useEffect(() => {
document.documentElement.style.scrollBehavior = 'smooth'
return () => {
document.documentElement.style.scrollBehavior = 'auto'
}
}, [])
return (
<Base title="Join the community" current="community">
<div>fill me out, please</div>
<InPerson />

<Online />
</Base>
)
}
Loading