This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="row text-center"> | |
<div class="col-md-12 mb-3"> | |
<label>Upload your resume</label> | |
<small>(.pdf or .docx file please)</small> | |
</div> | |
<div class="col-4 offset-4 text-center mb-3"> | |
<!-- Upload resume button. Trigger function on browser file upload --> | |
<input type="file" name="resume" @change="uploadResume" class="form-control-file"> | |
</div> |
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 6 columns, instead of 4 in line 5.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Company Name Website Year Founded Company Description Headquarters Address Location | |
Adobe http://www.adobe.com/ 1982 Adobe is changing the world through digital experiences. We help our customers create, deliver and optimize content and applications. 601 Townsend St, San Francisco, CA 94103 San Francisco | |
AdRoll https://www.adroll.com/ 2006 AdRoll is the Growth Platform that makes your display, social, and email advertising work together to drive more revenue, with less effort from you. 2300 Harrison St 2nd floor, San Francisco, CA 94110 San Francisco | |
Airbnb https://www.airbnb.com/ 2008 Book unique homes and experiences all over the world. 999 Brannan St, San Francisco, CA 94103 San Francisco | |
Algolia https://www.algolia.com/ 2012 Algolia's hosted search API helps product builders create lightning-fast, highly relevant search to connect their users with what matters 589 Howard St, San Francisco, CA 94105 San Francisco | |
Allbirds https://www.allbirds.com 2014 The world's most comfortable shoes, made with natural m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv').config() | |
const fauna = require('faunadb'); | |
const q = faunadb.query; | |
const client = new faunadb.Client({ | |
secret: process.env.FAUNADB_SERVER_SECRET | |
}); | |
exports.handler = (event, context, callback) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv').config() | |
/* bootstrap database in your FaunaDB account */ | |
const readline = require('readline') | |
const faunadb = require('faunadb') | |
const chalk = require('chalk') | |
const insideNetlify = insideNetlifyBuildContext() | |
const q = faunadb.query | |
if (!process.env.FAUNADB_SERVER_SECRET) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react" | |
import axios from "axios" | |
export default class AddSalesperson extends React.Component { | |
state = { | |
name: '', | |
} | |
submit = event => { | |
event.preventDefault(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use App\User; | |
use Spatie\Tags\Tag; | |
class CandidateController extends Controller | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="row"> | |
<div class="col-7 offset-2"> | |
<div class="row"> | |
<div class="col-md-12 mb-3"> | |
<label>Summary</label> | |
<textarea class="form-control" v-model="candidateInfo.summary" | |
placeholder="What do you like to do?"></textarea> | |
<div v-if="errors && errors.summary" class="text-danger">{{ errors.summary[0] }}</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="companies-map-container"> | |
<div id="companies-map" class="h-500"></div> | |
</div> | |
</template> | |
<style scoped> | |
#companies-map { | |
margin: 0 auto; | |
background: gray; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<section> | |
<input type="text" class="form-control" placeholder="Search by job title" v-model="searchTerm"> | |
<div class="list-group mt-2" :style="{ height: this.search_window_height + 'px' }"> | |
<div class="list-group-item list-group-item-action flex-column align-items-start" v-for="jobListing in filteredJobListings"> | |
<div class="d-flex w-100 justify-content-between"> | |
<h5 class="mb-1"> | |
{{ jobListing.title }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Console\Commands; | |
use App\Company; | |
use App\JobListing; | |
use Illuminate\Console\Command; | |
use Goutte\Client; | |
class ScrapeGreenhouse extends Command |