Go to file
Monique Cruz 36ff58b012
Document categorization (#111)
* Create 2021-07-26-categorizing-user-uploaded-documents.md


Co-authored-by: R. Tyler Croy <rtyler@brokenco.de>
2021-07-28 10:13:27 -07:00
_category updated data-science team to applied-research. Job recommendations remain the same 2021-07-12 14:00:38 -07:00
_data Document categorization (#111) 2021-07-28 10:13:27 -07:00
_includes updated DS to AR 2021-07-12 14:00:38 -07:00
_layouts Add generated tag pages 2020-03-21 13:02:18 -07:00
_posts Document categorization (#111) 2021-07-28 10:13:27 -07:00
assets Increase font size 2021-04-23 17:11:25 -07:00
blog Add blog category navigation / index page support 2019-12-05 11:33:01 -05:00
files Add a link to the slides 2019-12-09 08:52:33 -08:00
post-images Add kafka-delta-ingest post 2021-05-20 16:24:48 -07:00
tag Monolith Fargate deployment speed improvements post 2021-03-20 10:21:44 -07:00
.gitignore ignore intellij files 2021-04-23 17:11:25 -07:00
404.html
CNAME
CONTRIBUTING.adoc Instructions tweak on tags 2020-04-29 11:47:37 -07:00
Gemfile Revert unnecessary changes; 2021-04-23 17:11:25 -07:00
Gemfile.lock Bump addressable from 2.7.0 to 2.8.0 2021-07-13 09:17:37 -07:00
LICENSE
README.md Revert unnecessary changes; 2021-04-23 17:11:25 -07:00
_config.yml Document categorization (#111) 2021-07-28 10:13:27 -07:00
careers.html Update careers.html 2021-03-11 10:25:32 -08:00
favicon.ico
generate-tags add aws datadog terraform module blog post 2020-04-22 20:56:22 -07:00
index.markdown
projects.html

README.md

Scribd's tech blog

Our tech blog is published to tech.scribd.com. The goal of the site is to share what we're up to as we build, design, and deploy the technology that powers scribd.com.

Content Guidelines

The CONTRIBUTING document has some details on how to contribute to this repository, but if you've contributed to a Jekyll-based site before, this should all be fairly straight-forward.

The types of content published should generally be technology oriented, but discussions about organization culture, collaboration, and process are welcome so long as they pass the bar of: "would this be interesting to somebody we would want to work with us?"

Local build

# If you don't have Ruby 2.6 installed
# jekyll-sass-converter requires Ruby version >= 2.4.0
# Default MacOS ruby version is 2.3
# Ruby < 2.6 are not maintained anymore
# Ruby 2.7 prints bunch of warnings for Jekyll < 3.8.7
# Using Jekyll 3.8.7 requires bumping github-pages and jekyll-feed
brew install ruby@2.6
echo 'export PATH="/usr/local/opt/ruby@2.6/bin:$PATH"' >> "$HOME/.bash_profile"
source "$HOME/.bash_profile"

sudo gem install bundler # if you don't have bundler installed
bundle config set path vendor
bundle install

bundle exec jekyll serve --livereload # for auto-updading
open http://localhost:4000