Twan07 commited on
Commit
d6b6e8c
·
verified ·
1 Parent(s): 0698dca

Delete codes.csv

Browse files
Files changed (1) hide show
  1. codes.csv +0 -44
codes.csv DELETED
@@ -1,44 +0,0 @@
1
- title,content,language,description
2
- Hello World JavaScript,"console.log('Hello, World!');",javascript,A simple Hello World program in JavaScript
3
- Python Data Analysis,"import pandas as pd
4
- import numpy as np
5
-
6
- # Load data
7
- df = pd.read_csv('data.csv')
8
- print(df.head())",python,Basic data analysis with pandas
9
- HTML Template,"<!DOCTYPE html>
10
- <html>
11
- <head>
12
- <title>My Page</title>
13
- </head>
14
- <body>
15
- <h1>Welcome</h1>
16
- <p>This is a sample HTML page.</p>
17
- </body>
18
- </html>",html,Basic HTML template
19
- CSS Styling,"body {
20
- font-family: Arial, sans-serif;
21
- margin: 0;
22
- padding: 20px;
23
- background-color: #f5f5f5;
24
- }
25
-
26
- .container {
27
- max-width: 800px;
28
- margin: 0 auto;
29
- background: white;
30
- padding: 20px;
31
- border-radius: 8px;
32
- box-shadow: 0 2px 4px rgba(0,0,0,0.1);
33
- }",css,Basic CSS styling for a webpage
34
- SQL Query Example,"SELECT
35
- users.name,
36
- users.email,
37
- COUNT(orders.id) as order_count,
38
- SUM(orders.total) as total_spent
39
- FROM users
40
- LEFT JOIN orders ON users.id = orders.user_id
41
- WHERE users.created_at >= '2024-01-01'
42
- GROUP BY users.id
43
- ORDER BY total_spent DESC
44
- LIMIT 10;",sql,SQL query to get top customers by spending