Giter VIP home page Giter VIP logo

devjobs's Introduction

devjobhuntercover

Scope:

DevJobHunter is a platform for developers to find employment based on location. Job seekers create a user profile in which recruiters can browse.

Project Planning Presentation: https://docs.google.com/presentation/d/15pjrXg5F8wW64l_J2Is_juBt5S4iJJhT8FXnYBl1dAs/edit?usp=sharing

Developers

  • Shaun Dawson
  • Daniel Mackey
  • Zachary Farber

User Stories:

  • As a Job Seeker, I would like to view jobs by zipcode, so that I can decide which job is best geographically for me.
  • As a Job Seeker, I would like to sign up with a user-name and password,so that my information is kept safe.
  • As a Job Seeker, I would like to view my saved jobs, so that I can follow up with potential employers.
  • As a Job Seeker, I would like to Delete my account, so that I can eliminate jobs I am no longer interested in.
  • As a Recruiter, I would like to have a username or password, so that only my company has access to our post.
  • As a Recruiter, I would like to Create a job posting, so that I can find job seekers.
  • As a Recruiter, I would like to Update a job posting, so that I can revise a job posting.
  • As a Recruiter, I would like to Delete a job posting, so that I can remove a posting once closed or filled.

Technologies Used:

  • Node.js / Express.js
  • React
  • Postgres
  • Sequelize
  • Bulma
  • Bloomer
  • GitHub Jobs API

Code Snippet Sample:

class Jobs extends Component {
  constructor(props) {
    super(props);
    this.state = {
      jobs: [],
      zipCode: this.props.location.search.split('=')[1],
    };
  }

  componentDidMount() {
    this.getJobs();
  }

  async getJobs() {
    const apiEndpoint = 'https://jobs.github.com/positions.json?location=' + this.state.zipCode;
    const response = await axios.get(apiEndpoint);
    const jobs = response.data;
    console.log(jobs);
    this.setState({
      jobs,
    });
  }

  render() {
    return (
      <div className="Jobs">
        { this.state.jobs.map(jobs => (
          <div key={jobs.id}>

devjobs's People

Contributors

shaundawson avatar zfarber avatar dmack928 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.