Explore Pastes
Discover public pastes from the community
Advertisement
📝 markdown
2
# Зыбь — Манифест о языке / Manifesto on Language / 言語についてのマニフェスト / 語言宣言 Зыбь — это не форма. Это смысл. Язык — не клетка, не граница, не паспорт. Язык — поток, в котором плавают смыслы. Когда мысль...
Untitled Paste
by guest
35m ago
📄 plaintext
20
{
"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
12h ago
📄 plaintext
13
Test 6RSH content
Untitled Paste
by guest
21h ago
📄 plaintext
15
http://paste.tc/5w5XdKXs
Untitled Paste
by guest
21h ago
🐍 python
154
# 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
Advertisement
🎨 css
102
/* 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
📄 plaintext
49
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
228
# 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
79
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