From 9414e98ecdc797673cbd747bc5cd1a7658c8c9e0 Mon Sep 17 00:00:00 2001 From: hyzen Date: Wed, 10 Jun 2026 07:59:26 +0530 Subject: [PATCH] Update: 'deleted by user' if admin deletes his own message --- docs/blog/what-is-education/index.html | 2 +- layouts/blog/single.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/blog/what-is-education/index.html b/docs/blog/what-is-education/index.html index 3c45c3f..fb28885 100644 --- a/docs/blog/what-is-education/index.html +++ b/docs/blog/what-is-education/index.html @@ -19,4 +19,4 @@ All updates

What is Education?


What is Education? #

Education simply means “learning”. It’s a natural process.

Ratio of components in Education: #

50% Knowledge/Understanding, 30% Skills, 20% Experience.

Education vs Academics: #

Education and Academics are not the same thing. Academics is Education based of a curriculum and an institution. Plato discovered the word while describing his school of philosophy.

Academics system has evolved with time and got worst. Let’s see what the system has become nowadays: #

Extra bad: #

Education as a concept/implementation/system is good. -Academics is good only as a concept. It’s implementation and system is always the worst and corrupted.

Activities in Education: #

Read vs Study vs Research: #

  1. Read: Reading is about watching or interpreting something/someone to gain knowledge.

  2. Study: Studying is about interpreting a topic, going deeper and gaining some conscious understanding out of it.

  3. Research: Research is about studying a topic and then contributing to it with changes from your end.

Knowledge vs Entertainment: #

Example:

  1. The first book was to provide Knowledge/Understanding, but later books became a source of Entertainment (fiction).
  2. Videos can be used for both Knowledge/Understanding and Entertainment purposes. For example, for Knowledge/Understanding, there are documentaries, tutorial videos etc. For Entertainment, there are movies, funny videos etc.
Tags:
Categories:

Comments

\ No newline at end of file +Academics is good only as a concept. It’s implementation and system is always the worst and corrupted.

Activities in Education: #

Read vs Study vs Research: #

  1. Read: Reading is about watching or interpreting something/someone to gain knowledge.

  2. Study: Studying is about interpreting a topic, going deeper and gaining some conscious understanding out of it.

  3. Research: Research is about studying a topic and then contributing to it with changes from your end.

Knowledge vs Entertainment: #

Example:

  1. The first book was to provide Knowledge/Understanding, but later books became a source of Entertainment (fiction).
  2. Videos can be used for both Knowledge/Understanding and Entertainment purposes. For example, for Knowledge/Understanding, there are documentaries, tutorial videos etc. For Entertainment, there are movies, funny videos etc.
Tags:
Categories:

Comments

\ No newline at end of file diff --git a/layouts/blog/single.html b/layouts/blog/single.html index a022ba4..4394f18 100644 --- a/layouts/blog/single.html +++ b/layouts/blog/single.html @@ -81,7 +81,7 @@ el.dataset.id = c.id; var isDeleted = c.body === null; - var deletedLabel = c.deleted_label || 'deleted'; + var deletedLabel = c.deleted_label || 'deleted by user'; var bodyHtml = isDeleted ? '[' + escHtml(deletedLabel) + ']' @@ -119,7 +119,7 @@ method: 'POST', headers: { 'Content-Type': 'application/json' }, credentials: 'include', - body: JSON.stringify({ action: 'delete', comment_id: c.id }), + body: JSON.stringify({ action: 'delete', comment_id: c.id, deleted_by_owner: c.username === username }), }) .then(function (r) { return r.json(); }) .then(function (d) {