Skip to content

Instantly share code, notes, and snippets.

View semiarthanoian's full-sized avatar

Semi Art semiarthanoian

  • Hanoi, Vietnam
View GitHub Profile
@semiarthanoian
semiarthanoian / topnav.css
Last active May 2, 2022 13:36
public/css/component/topnav.css
/* --- Colors */
#topnav {
background: white;
box-shadow: 0 0 27px 9px lightgray;
}
#topnav .logo {
color: white;
background: black;
@semiarthanoian
semiarthanoian / main.js
Created May 2, 2022 13:18
public/js/main.js
void function(...args) {
const readMonth = function(monthIndex) {
if (monthIndex == 0) return "January";
if (monthIndex == 1) return "February";
if (monthIndex == 2) return "March";
if (monthIndex == 3) return "April";
if (monthIndex == 4) return "May";
if (monthIndex == 5) return "June";
if (monthIndex == 6) return "July";
@semiarthanoian
semiarthanoian / topnav.css
Created May 2, 2022 13:16
public/css/component/topnav.css
/* --- Reset CSS */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* --- Basic Typography */
@semiarthanoian
semiarthanoian / content.md
Last active April 30, 2022 23:06
database/data/Category/id-Infinity

Nội dung của trang đơn mô tả danh mục Unknown...

@semiarthanoian
semiarthanoian / header.json
Last active April 30, 2022 23:05
database/data/Category/id-Infinity
{
"@id": "Infinity",
"name": "Unknown",
"keywords": [
"hướng dẫn cơ bản",
"lập trình web"
]
}
@semiarthanoian
semiarthanoian / header.json
Last active April 30, 2022 23:04
database/data/Article/id-Infinity
{
"@id": "Infinity",
"title": "Nội Dung Chưa Được Đăng Tải",
"short-title": "Chưa Được Đăng Tải",
"keywords": [
"hướng dẫn cơ bản",
"lập trình web",
"html",
"ảnh",
"liên kết"
const readAllRecordIds = require("../sub-procedure/read-all-record-ids--async-throw");
const selectArticleById = require("./select-by-id--async-throw");
const Article = require("../../type/Article");
module.exports = async (
in_categoryId = "",
out_selected = [],
in_top = Infinity,
in_order = "default" /* default | reversed */
) => {
@semiarthanoian
semiarthanoian / content.md
Last active April 28, 2022 04:04
database/data/Article/id-0000

Nội dung bài viết mở đầu giới thiệu Series Tự Học Lập Trình Web Một Cách Thật Tự Nhiên...

@semiarthanoian
semiarthanoian / content.md
Last active April 28, 2022 03:52
database/data/Category/id-01

Nội dung của trang đơn mô tả danh mục HTML...

@semiarthanoian
semiarthanoian / header.json
Last active April 28, 2022 03:52
database/data/Category/id-01
{
"@id": "01",
"name": "HTML",
"keywords": [
"hướng dẫn cơ bản",
"lập trình web",
"html"
]
}