diff options
Diffstat (limited to '_content/journal/2021')
10 files changed, 28 insertions, 0 deletions
diff --git a/_content/journal/2021/benchmarking_kubernetes/index.adoc b/_content/journal/2021/benchmarking_kubernetes/index.adoc index 147185f..cf51437 100644 --- a/_content/journal/2021/benchmarking_kubernetes/index.adoc +++ b/_content/journal/2021/benchmarking_kubernetes/index.adoc @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info> + = Benchmarking Kubernetes (part 2) Shulhan <ms@kilabit.info> 6 March 2021 diff --git a/_content/journal/2021/index.adoc b/_content/journal/2021/index.adoc index 307c22b..bb6e621 100644 --- a/_content/journal/2021/index.adoc +++ b/_content/journal/2021/index.adoc @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2022 M. Shulhan <ms@kilabit.info> === 2021 diff --git a/_content/journal/2021/software_is_a_means_to_an_end_but/index.adoc b/_content/journal/2021/software_is_a_means_to_an_end_but/index.adoc index 9ca01dc..725e190 100644 --- a/_content/journal/2021/software_is_a_means_to_an_end_but/index.adoc +++ b/_content/journal/2021/software_is_a_means_to_an_end_but/index.adoc @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2022 M. Shulhan <ms@kilabit.info> + = Software is a means to an end, but ... Shulhan, 22 November 2021 diff --git a/_content/journal/2021/the_future_of_web_development/greeter/greeter.js b/_content/journal/2021/the_future_of_web_development/greeter/greeter.js index edb8157..061f688 100644 --- a/_content/journal/2021/the_future_of_web_development/greeter/greeter.js +++ b/_content/journal/2021/the_future_of_web_development/greeter/greeter.js @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info> + "use strict"; exports.__esModule = true; var Greeter = /** @class */ (function () { diff --git a/_content/journal/2021/the_future_of_web_development/greeter/greeter.ts b/_content/journal/2021/the_future_of_web_development/greeter/greeter.ts index c27edab..e03381c 100644 --- a/_content/journal/2021/the_future_of_web_development/greeter/greeter.ts +++ b/_content/journal/2021/the_future_of_web_development/greeter/greeter.ts @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info> + import { Person, Student } from "../models/models" class Greeter { diff --git a/_content/journal/2021/the_future_of_web_development/greeter/greeter_example.html b/_content/journal/2021/the_future_of_web_development/greeter/greeter_example.html index 7163841..20f571f 100644 --- a/_content/journal/2021/the_future_of_web_development/greeter/greeter_example.html +++ b/_content/journal/2021/the_future_of_web_development/greeter/greeter_example.html @@ -1,3 +1,5 @@ +<!-- SPDX-License-Identifier: CC-BY-SA-4.0 --> +<!-- SPDX-FileCopyrightText: 2026 M. Shulhan <ms@kilabit.info> --> <!DOCTYPE html> <html> <head> diff --git a/_content/journal/2021/the_future_of_web_development/index.adoc b/_content/journal/2021/the_future_of_web_development/index.adoc index 29aaae3..fdb6d51 100644 --- a/_content/journal/2021/the_future_of_web_development/index.adoc +++ b/_content/journal/2021/the_future_of_web_development/index.adoc @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info> + = The future of web development Shulhan <ms@kilabit.info> 25 July 2021 diff --git a/_content/journal/2021/the_future_of_web_development/models/models.js b/_content/journal/2021/the_future_of_web_development/models/models.js index ea5a9d2..b7317b7 100644 --- a/_content/journal/2021/the_future_of_web_development/models/models.js +++ b/_content/journal/2021/the_future_of_web_development/models/models.js @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info> + "use strict"; exports.__esModule = true; exports.Student = void 0; diff --git a/_content/journal/2021/the_future_of_web_development/models/models.ts b/_content/journal/2021/the_future_of_web_development/models/models.ts index e816f28..e0f1fdb 100644 --- a/_content/journal/2021/the_future_of_web_development/models/models.ts +++ b/_content/journal/2021/the_future_of_web_development/models/models.ts @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info> + export class Student { fullName: string constructor(public firstName: string, public middleInitial: string, public lastName: string) { diff --git a/_content/journal/2021/this_is_why_i_use_git_rebase/index.adoc b/_content/journal/2021/this_is_why_i_use_git_rebase/index.adoc index 7057f07..3900afd 100644 --- a/_content/journal/2021/this_is_why_i_use_git_rebase/index.adoc +++ b/_content/journal/2021/this_is_why_i_use_git_rebase/index.adoc @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: CC-BY-SA-4.0 +// SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info> + = This is why I use git rebase Suppose that we use three branches, one for development (`main`), one for |
