Go to file
R Tyler Croy d0c64237c0
Merge pull request #134 from scribd/bens-mlplat
Evolution Of Machine Learning Platforms
2024-02-26 13:01:23 -08:00
_category updated data-science team to applied-research. Job recommendations remain the same 2021-07-12 14:00:38 -07:00
_data Update authors.yml 2024-02-02 15:45:23 -08:00
_includes updated DS to AR 2021-07-12 14:00:38 -07:00
_layouts Update our mission in home.html 2023-05-23 10:27:03 -07:00
_posts refined scribs platform section 2024-02-15 17:18:12 -08: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 fixed tags 2024-02-02 17:44:29 -08:00
.gitignore ignore intellij files 2021-04-23 17:11:25 -07:00
404.html Fix 404 return home link 2019-11-23 00:59:15 -05:00
CNAME Create CNAME 2019-10-22 16:56:15 -07:00
CONTRIBUTING.adoc Instructions tweak on tags 2020-04-29 11:47:37 -07:00
Gemfile Update the Gemfile to run on newer rubies 2022-04-28 09:43:56 -07:00
Gemfile.lock Bump nokogiri from 1.14.3 to 1.16.2 2024-02-06 03:31:41 +00:00
LICENSE Initial commit 2019-09-09 15:48:17 -07:00
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 Updated mission statement on careers.html 2023-05-23 10:29:17 -07:00
favicon.ico Add favicon 2019-11-12 11:14:21 -05:00
generate-tags add aws datadog terraform module blog post 2020-04-22 20:56:22 -07:00
index.markdown Base Jekyll install 2019-10-22 10:36:16 -04:00
projects.html Split project list into a partial to use on multiple pages 2019-11-21 20:34:01 -05:00

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