Skip to content

Instantly share code, notes, and snippets.

[
{
"id": "en_hist_01",
"content": "World War II was a global conflict that lasted from 1939 to 1945. It involved the vast majority of the world's countries—including all of the great powers—forming two opposing military alliances: the Allies and the Axis."
},
{
"id": "en_hist_02",
"content": "The Bagan Kingdom, located in modern-day Myanmar, was the first kingdom to unify the regions that would later constitute the country. During its height from the 11th to 13th centuries, over 10,000 Buddhist temples, pagodas, and monasteries were constructed in the Bagan plains alone."
},
{
@Kaung-Myat
Kaung-Myat / list_example.dart
Last active September 15, 2025 17:28
Dart List Example codes
//1. Creating a List
void main() {
// Fixed-length list
var fixedList = List.filled(5, 0); // A list of length 5 filled with 0
print(fixedList); // Output: [0, 0, 0, 0, 0]
// Growable list
var growableList = [1, 2, 3];
print(growableList); // Output: [1, 2, 3]
}
@Kaung-Myat
Kaung-Myat / article_four.html
Created November 26, 2023 08:12
Second Project for learning Bootstrap
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Article Four</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"