Deleted journalist job listing (#422)

As per @christinaasquith request
This commit is contained in:
Abby Fischler 2022-04-16 23:19:57 -07:00 committed by GitHub
parent d297c82285
commit 7dacf9b191
2 changed files with 0 additions and 91 deletions

View file

@ -1,42 +0,0 @@
**Starting salary:** $60-$80k
**Location:** Burlington, Vermont or remote
Hi I'm Christina Asquith, and I've worked with journalists for 20 years, from top-tier New York Times editors to highly-talented freelance foreign correspondents.
Right now, I'm working with a Silicon Valley-based non-profit, **[Hack Club](https://hackclub.com)**, that represents the largest network of teen coders in the world. Our mission is to support a new generation of young people who build, innovate and solve problems with computers. We are a non-partisan, 501(c)(3) non-profit.
We're looking to hire a talented reporter/editor to partner with me to steadily produce highly-reported op-eds, essays and columns on education and technology, which would be published in a variety of different outlets, including print and magazine features; your reporting will also drive events, like Clubhouse conversations, panels and Ask Me Anythings. You should know how to write and pitch to get published; how to produce events; and how to do reporting that gives our ideas gravitas.
You must have a dedicated track record of publishing reported articles, features and op-ed/essays; pitching editors, and turning around copy quickly. You should be a sharp, clear thinker, dogged reporter, and be able to see stories and understand news hooks. Multimedia experience would also be a plus, including simple video editing, social media, and design.
We have a compelling bucket of story ideas that we'd like to execute on.
Here are some must have qualifications:
- The single most important qualification for this job is that you can demonstrate great reporting, including the ability to track down people, get interviews with them, find facts and check them, and fact-check for accuracy
- Minimum 5-10 years experience reporting/writing; a more experienced editor could join on contract
- Published dozens of pieces, some in top tier outlets
- Ability to turn copy around quickly
- Understanding of how to match a piece with an outlet
- Experience producing live events, including setting up events on Clubhouse, panels and Ask Me Anythings - something that shows you can invite guests, come up with newsworthy topics and draft a script of the show
- You have some media contacts
Hack Club is a fun, small, creative, tight-knit team that does a lot of creative, in-person work. We have a strong preference is for someone in-person in Burlington, VT, but we will consider applications from people who want to work remotely, provided they be willing to travel to our offices. We have COVID protocols and take them seriously. Relocation assistance available.
To apply, please email us at <journalist@hackclub.com> with “hack the planet” in the subject line.
We dont think well be able to identify this person by looking at resume alone, so please include 300-400 words on your background relative to this role, why youre interested, and some clips.
Compensation range: $60K $80k, depending on experience and fit. We offer healthcare and 4 weeks paid vacation.
\- Christina Asquith, COO, and Zach Latta, Executive Director
**More about Hack Club, a 501(c)(3) nonprofit, global organization:**
Founded in 2014 by a teen hacker on the internet, 500 Hack Clubs are running today in high schools across the US and world. Nearly 13,000 students across the US and in 22 other countries have joined our online community, the most popular network of technically talented teenagers in the world. Since 2016, Hack Club has received $2.8 million in philanthropy, and appeared in The Wall Street Journal, California Sunday Magazine, and The Today Show. Since COVID shut down schools, and Elon Musk tweeted Hack Club was "a cool group", our online community grown 700 percent.
Hack Club staff works directly with 14-18 year olds, as they run their own clubs and build amazing projects, including a weather balloon that sent an Arduino into space, a summer project that distributed $50k in hardware, a program to send thousands of hand-written cards to front-line COVID workers, a robot from recyled parts in Zambia, and so much more.
Hack Club operates with zero cost to school systems or taxpayers; has no teachers or curriculum; is remote and online; and is totally free and accessible to all teenagers regardless of race, gender or economic background. Our model works in rich, poor, urban and remote schools. Hack Club is also fully transparent with its finances, and operates at one of the lowest costs per student in the nonprofit sector. We rarely do corporate partnerships.
We pride ourselves in being a coding education nonprofit that acts more like a technology startup. Our work environment is fun, challenging, risk-taking, and high-energy. We are structured, but support flexible hours.

View file

@ -1,49 +0,0 @@
import { BaseStyles, Box, Container, Heading, Text } from 'theme-ui'
import Head from 'next/head'
import Nav from '../../components/nav'
import Meta from '@hackclub/meta'
import JobDescription from '../../components/jobs/journalist/jd.mdx'
import ForceTheme from '../../components/force-theme'
const Page = () => (
<>
<Meta
as={Head}
title="Journalist"
description="Hack Club is a hiring a talented reporter/editor as the 9th full-time member of our team in Burlington, Vermont."
image="https://workshop-cards.hackclub.com/Journalist%20%40%20Hack%20Club?fontSize=175px&brand=HQ"
/>
<ForceTheme theme="light" />
<Nav />
<Box
as="section"
sx={{
pt: [5, 6],
pb: [4, 5],
backgroundImage: theme => theme.util.gx('purple', 'yellow')
}}
>
<Container sx={{ textAlign: 'center', color: 'white' }}>
<Heading as="h1" variant="title" mb={30}>
Hack Club Journalist
</Heading>
<Text variant="headline" sx={{ fontWeight: 400 }}>
Tell the story of Hack Club. New job open as of March 9, 2021.
</Text>
</Container>
</Box>
<Container
as={BaseStyles}
variant="copy"
sx={{
pt: [3, 4],
pb: [4, 5],
fontSize: [2, 3]
}}
>
<JobDescription />
</Container>
</>
)
export default Page