Skip to content

Commit 8517591

Browse files
authored
Merge pull request #79 from nramc/56-automatically-list-most-recently-updated-pages-on-home
56-automatically-list-most-recently-updated-pages-on-home
2 parents 8cf3977 + 95e882a commit 8517591

File tree

5 files changed

+30
-13
lines changed

5 files changed

+30
-13
lines changed

docs/assets/data/intellij-idea-live-templates/custom-intellij-idea-live-templates.xml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
<templateSet group="Ram-custom-templates">
2-
<template name="mkdocs-meta-data" value="---&#10;author: $USER$&#10;createdAt: $DATE$&#10;updatedAt: &#10;categories:&#10; - $END$&#10;tags:&#10; - todo&#10;---" description="insert mkdocs meta data into page" toReformat="false" toShortenFQNames="true">
2+
<template name="mkdocs-meta-data" value="---&#10;title: $TITLE$&#10;description: $DESCRIPTION$&#10;author: $USER$&#10;date:&#10; created: $DATE$&#10; updated: &#10;categories:&#10; - $END$&#10;tags:&#10; - todo&#10;links:&#10; - &quot;[Author] Ram&quot;: $AUTHOR_PROFILE_URL$&#10;---" description="insert mkdocs meta data into page" toReformat="false" toShortenFQNames="true">
3+
<variable name="TITLE" expression="" defaultValue="" alwaysStopAt="true" />
4+
<variable name="DESCRIPTION" expression="" defaultValue="" alwaysStopAt="true" />
35
<variable name="USER" expression="" defaultValue="&quot;Ramachandran Nellaiyappan&quot;" alwaysStopAt="true" />
4-
<variable name="DATE" expression="date(&quot;d.MM.YYYY&quot;)" defaultValue="" alwaysStopAt="true" />
6+
<variable name="DATE" expression="" defaultValue="" alwaysStopAt="true" />
7+
<variable name="AUTHOR_PROFILE_URL" expression="" defaultValue="&quot;https://nramc.github.io/my-profile/&quot;" alwaysStopAt="true" />
58
<context>
69
<option name="ANY_OPENAPI_JSON_FILE" value="false" />
710
<option name="ANY_OPENAPI_YAML_FILE" value="false" />
@@ -36,7 +39,7 @@
3639
</context>
3740
</template>
3841
<template name="today" value="$DATE$" description="dd.mm.yyyy" toReformat="false" toShortenFQNames="true">
39-
<variable name="DATE" expression="date(&quot;d.MM.YYYY&quot;)" defaultValue="" alwaysStopAt="true" />
42+
<variable name="DATE" expression="date(&quot;YYYY-MM-dd&quot;)" defaultValue="" alwaysStopAt="true" />
4043
<context>
4144
<option name="ANY_OPENAPI_JSON_FILE" value="false" />
4245
<option name="ANY_OPENAPI_YAML_FILE" value="false" />
@@ -111,4 +114,10 @@
111114
<option name="JAVA_DECLARATION" value="true" />
112115
</context>
113116
</template>
117+
<template name="applicationRunner" value="@org.springframework.context.annotation.Bean&#10;org.springframework.boot.ApplicationRunner $BEAN_NAME$() {&#10; return args -&gt; {$END$};&#10;}" description="Create springboot ApplicationnRunner bean definition" toReformat="false" toShortenFQNames="true">
118+
<variable name="BEAN_NAME" expression="suggestVariableName()" defaultValue="" alwaysStopAt="true" />
119+
<context>
120+
<option name="JAVA_DECLARATION" value="true" />
121+
</context>
122+
</template>
114123
</templateSet>

docs/blog/articles/http-client-intellij-plugin.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
author: Ramachandran Nellaiyappan
33
title: "HTTP Client - IntelliJ Plugin"
44
description: "Perform pre/post actions before/after making actual http calls and supports env specific configurations."
5-
date: 2024-10-07
6-
updated:
5+
date:
6+
created: 2024-10-07
7+
updated: 2025-03-17
78
categories:
89
- Testing
910
tags:

docs/blog/articles/intellij-live-templates.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
title: "IntelliJ IDEA Live Templates"
33
description: "Boost coding efficiency with IntelliJ IDEA Live Templates—save time with reusable code snippets."
44
author: Ramachandran Nellaiyappan
5-
date: 2025-03-11
5+
date:
6+
created: 2025-03-11
7+
updated: 2025-03-17
68
updated:
79
categories:
810
- Workstation Setup
@@ -18,7 +20,7 @@ links:
1820

1921
!!! tip "You can download all below live templates as a file"
2022

21-
[Download File](../../assets/data/intellij-idea-live-templates/custom-intellij-idea-live-templates.xml){ .md-button .md-button--primary }
23+
[Download File](../../assets/data/intellij-idea-live-templates/custom-intellij-idea-live-templates.xml){ .md-button .md-button--primary target="_blank" }
2224

2325
You can place them inside your IntelliJ IDEA in `~/Library/Application Support/JetBrains/<IntelliJIdea version>/templates/`
2426

@@ -104,12 +106,15 @@ VALUE -> guessValue($VAR_TYPE$)
104106
title: $TITLE$
105107
description: $DESCRIPTION$
106108
author: $USER$
107-
date: $DATE$
108-
updated:
109+
date:
110+
created: $DATE$
111+
updated:
109112
categories:
110113
- $END$
111114
tags:
112115
- todo
116+
links:
117+
- "[Author] Ram": $AUTHOR_PROFILE_URL$
113118
---
114119

115120
# Parameter bindings:

docs/blog/articles/new-java-application-checklist.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
title: "Checklist for creating Java Application/Service"
33
description: "Ensure a smooth Java app launch with this checklist—setup, coding, testing, and deployment essentials!"
44
author: Ramachandran Nellaiyappan
5-
date: 2024-10-28
6-
updated:
5+
date:
6+
created: 2024-10-28
7+
updated: 2025-03-17
78
categories:
89
- Guideline
910
tags:

docs/blog/articles/open-rewrite.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
title: "OpenRewrite Integration"
33
description: "Automate code refactoring with OpenRewrite—improve quality, security, and maintainability effortlessly!"
44
author: Ramachandran Nellaiyappan
5-
date: 2025-09-27
6-
updated: 16.02.2025
5+
date:
6+
created: 2024-09-27
7+
updated: 2025-02-16
78
categories:
89
- Automation
910
tags:

0 commit comments

Comments
 (0)