Skip to content

Instantly share code, notes, and snippets.

View Penguin5681's full-sized avatar
🛠️
Bob the builder

Pranav Sinha Penguin5681

🛠️
Bob the builder
View GitHub Profile
customer_id age gender annual_income spending_score purchase_frequency Last_purchase_days city
1 22 Female 32000 81 14 7 New York
2 35 Male 54000 43 9 18 Los Angeles
3 28 Female 61000 67 11 12 Chicago
4 41 Male 78000 25 6 45 Houston
5 19 Female 25000 89 18 3 Phoenix
6 33 Male 47000 52 10 21 Philadelphia
7 Female 39000 74 13 9 San Antonio
8 48 Male 92000 18 4 60 San Diego
9 30 Female 68000 61 12 15 Dallas
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html
lang="en"
CREATE TABLE Departments (
DeptID INT PRIMARY KEY IDENTITY(1,1),
DeptName VARCHAR(100) NOT NULL,
HeadDoctorID INT NULL,
Location VARCHAR(100)
);
CREATE TABLE Patients (
PatientID INT PRIMARY KEY IDENTITY(1,1),
@Penguin5681
Penguin5681 / colors.xml
Last active January 10, 2024 16:17
Colors XML file for Android
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white">#FFFFFF</color>
<color name="Ivory">#FFFFF0</color>
<color name="LightYellow">#FFFFE0</color>
<color name="Yellow">#FFFF00</color>
<color name="Snow">#FFFAFA</color>
<color name="FloralWhite">#FFFAF0</color>
<color name="LemonChiffon">#FFFACD</color>
<color name="Cornsilk">#FFF8DC</color>