Go to file
John d3b168c67c
Update our mission in home.html
We have a new mission. Let's make sure that is reflected on our blog.
2023-05-23 10:27:03 -07:00
_category updated data-science team to applied-research. Job recommendations remain the same 2021-07-12 14:00:38 -07:00
_data Add SERF to teams list (#113) 2021-09-30 09:11:12 -07: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 update databricks sql warehouse naming 2023-03-20 13:36:17 -07:00
assets Increase font size 2021-04-23 17:11:25 -07:00
blog
files
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 Update the Gemfile to run on newer rubies 2022-04-28 09:43:56 -07:00
Gemfile.lock Merge pull request #129 from scribd/dependabot/bundler/nokogiri-1.14.3 2023-04-12 13:22:02 -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