Skip to content

Instantly share code, notes, and snippets.

View panntod's full-sized avatar
💤
Sleepy

Pandhu Arya panntod

💤
Sleepy
View GitHub Profile
// Kontrak utama: semua DB harus bisa connect, disconnect, dan executeQuery
interface DatabaseConnection {
void connect();
void disconnect();
void executeQuery(String query);
}
// Implementasi MySQL
@panntod
panntod / BasicJavascript
Created September 15, 2025 01:13
Sharing session javascript
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>To-Do List App</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f4f6f8;
display: flex;
@panntod
panntod / BasicHTMLandCSS.html
Last active September 15, 2025 01:12
Sharing Session HTML & CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Sederhana</title>
<style>
:root {
--primary: #007bff;
--dark: #333;