Explore Pastes

Discover public pastes from the community

Create Paste
Advertisement
📄 plaintext 4
{
	"FitRecords" : [
		[ 0, "FILE_ID", [
			[ 0, "type",  0, 1, 0,  "",  false, "FILE"],
			[ 1, "manufacturer",  132, 1, 0,  "",  false, "MANUFACTURER"],
			[ 2, "product",  132, 1, 0,  "",  false, "U...

Untitled Paste

by guest just now
📄 plaintext 7
Test 6RSH content

Untitled Paste

by guest 8h ago
📄 plaintext 5
http://paste.tc/5w5XdKXs

Untitled Paste

by guest 8h ago
🐍 python 146
# Hello World Example
print("Hello, World!")

# Function example  
def greet(name):
    return f"Hello, {name}!"

# Main execution
if __name__ == "__main__":
    print(greet("TutPaste"))

Hello World in Python

by demo_user 1d ago
🎨 css 95
/* Flexbox Container Properties */
.container {
  display: flex;
  flex-direction: row | column | row-reverse | column-reverse;
  flex-wrap: nowrap | wrap | wrap-reverse;
  justify-content: flex-start...

CSS Flexbox Cheatsheet

by demo_user 1d ago
Advertisement
📄 plaintext 41
Meeting Summary - Q2 Planning
Date: June 3, 2026

Attendees: John, Sarah, Mike, Lisa

Key Discussion Points:
- Product roadmap review for Q3
- Budget allocation for new features  
- Timeline adjustmen...

Quick Notes - Meeting Summary

by guest 1d ago
📝 markdown 221
# JavaScript Async/Await

## Basic Usage

```javascript
// Async function declaration
async function fetchUser(id) {
  try {
    const response = await fetch(`/api/users/${id}`);
    const data = awai...

JavaScript Async/Await Guide

by demo_user 1d ago
📄 yaml 73
version: '3.8'

services:
web:
build: .
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- DATABASE_URL=${DATABASE_URL}
depends_on:
- db
- redis
restart: unless-stopped

db:
image: postgres:15-...

Docker Compose Example

by demo_user 1d ago