Welcome to the reference page for Raw Fed and the Nerdy Pack Formulation Sheet (v1). This document provides an overview of the concepts, the structure of the formulation sheet, and practical tips for using it in product development, research, or hobbyist projects.
Raw Fed is a term coined for the practice of feeding living organisms or biological systems with unprocessed, raw input materials. In the context of synthetic biology and biotech, Raw Fed often describes a fermentation or cellculture system that receives its nutrients directly from natural sources (e.g., crude plant extracts, untreated waste streams) rather than from refined, prepurified substrates.
The Nerdy Pack Formulation Sheet is a standardized template designed to help researchers plan, document, and share the composition of rawfed media and related formulations. Version1 focuses on clarity, reproducibility, and easy integration into digital lab notebooks.
| Section | Description | Typical Content |
|---|---|---|
| Header | Basic identification information. | Project name, sheet version, author, date. |
| Raw Feedstock Details | Source and pretreatment of each raw input. | Material name, supplier, lot number, pretreatment method. |
| Formulation Table | Quantitative composition of the final mix. | Component, target concentration, actual measured concentration, units. |
| Process Parameters | Operating conditions linked to the formulation. | pH, temperature, agitation, oxygen transfer rate, inoculation density. |
| Quality Checks | Controls to verify batch consistency. | Analytical methods, acceptance criteria, results. |
| Notes & Observations | Freeform space for any additional remarks. | Unexpected color changes, foaming, etc. |
Header:Project: BioPlastic ProductionSheet: Nerdy Pack v1Author: A. PatelDate: 20241102Raw Feedstock Details| Material | Supplier | Lot # | Pretreatment ||-------------------|------------|---------|------------------------|| Wheat Bran | AgriCo | WB-0912 | Mill 2mm, autoclave || Tomato Pomace | FreshFarms | TP-2105 | Coldpress, 0.5m filt|Formulation Table| Component | Target (g/L) | Measured (g/L) | Units ||-------------------|--------------|----------------|-------|| Wheat Bran | 45 | 44.8 | g/L || Tomato Pomace | 15 | 15.2 | g/L || Yeast Extract | 5 | 5.0 | g/L || MgSO7HO | 0.5 | 0.51 | g/L || CaCl2HO | 0.3 | 0.30 | g/L |Process Parameters- pH: 6.8 (adjusted with 1M HCl)- Temp: 30C- Agitation: 250rpm- DO: 20% saturation (controlled by air flow)Quality Checks| Test | Method | Acceptance | Result ||--------------------|-----------------|------------|--------|| Total Solids | Gravimetric | 602g/L | 60.1g/L|| Reducing Sugars | DNS assay | 3.04.0g/L| 3.5g/L || Volatile Acids | HPLC | <0.2g/L | 0.13g/L|Notes:- Slight foaming observed after 12h; added antifoam (0.02% v/v). - Batch reproduced with <3% deviation on all key parameters.
Because the Nerdy Pack sheet is a plaintext (Markdown) template, it can be parsed by simple scripts written in Python, R, or Bash. Below is a tiny Python snippet that reads the formulation table and returns a dictionary of component concentrations:
import redef parse_formulation(text): pattern = r'\|([^|]+)\|([^|]+)\|([^|]+)\|([^|]+)\|' lines = text.splitlines() start = next(i for i,l in enumerate(lines) if l.strip().startswith('| Component')) data = {} for line in lines[start+2:]: if not line.strip().startswith('|'): break m = re.search(pattern, line) if m: comp = m.group(1).strip() conc = float(m.group(2).strip()) data[comp] = conc return data# Example usage:sheet = open('nerdy_pack_v1.md').read()formulation = parse_formulation(sheet)print(formulation) This simple approach allows you to feed the concentrations directly into mediapreparation automation scripts.
Yes. The structure is generic enough for any mixture that requires precise component tracking, such as polymer blends or foodingredient formulations.
Convert volume to mass using density, or add an extra column for volume (mL). The sheets flexibility lets you add columns as needed.
Version 1 is intentionally minimal. You can fork the markdown file, add sections (e.g., Safety Data), and bump the version number in the header.
The synergy between Raw Fed strategies and a wellstructured Nerdy Pack Formulation Sheet (v1) creates a reliable foundation for developing sustainable bioprocesses. By capturing rawfeed details, precise component ratios, and critical process parameters in one clear document, teams reduce errors, improve reproducibility, and accelerate innovation.
For further reading, visit the official Nerdy Pack repository or join the discussion on the Biotech Community Forum.
