Skip to content

Instantly share code, notes, and snippets.

View santakdalai90's full-sized avatar
🇮🇳

Santak Dalai santakdalai90

🇮🇳
View GitHub Profile
@santakdalai90
santakdalai90 / json_log_viewer.html
Last active November 17, 2025 05:16
JSON Log Viewer
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Filterable JSON Log Viewer</title>
<style>
/* --- General Reset & Structure --- */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
// Clockserver publishes time on a given port as command line argument
// Usage: TZ=US/Eastern ./exercise8_1 8000 &
package main
import (
"io"
"log"
"net"
"time"
import 'package:flutter/material.dart';
class Answer extends StatelessWidget {
final List<String> answerList;
final String correctAnswer;
Answer(this.answerList, this.correctAnswer);
void evaluateAnswer(currentAnswer) {
if (correctAnswer == currentAnswer) {