From a6f72badfc5756bbe787eca83a7d7b7b8b99520b Mon Sep 17 00:00:00 2001
From: Erlan Kurnia <33871129+krlan2789@users.noreply.github.com>
Date: Thu, 9 Jan 2025 15:08:02 +0700
Subject: [PATCH] Update data . .
---
public/data_user.json | 13 +++++-----
.../anakpintarstudio_unitydeveloper.md | 24 ++++++++++---------
src/helper/mixins/DateTime.ts | 8 +++----
3 files changed, 24 insertions(+), 21 deletions(-)
diff --git a/public/data_user.json b/public/data_user.json
index 0d745fc..6b6a009 100644
--- a/public/data_user.json
+++ b/public/data_user.json
@@ -227,6 +227,13 @@
"level": "NOVICE",
"urlInfo": "https://vuejs.org/"
},
+ {
+ "name": "dotnet",
+ "title": "ASP.NET",
+ "year": 2023,
+ "level": "NOVICE",
+ "urlInfo": "https://dotnet.microsoft.com/en-us/apps/aspnet"
+ },
{
"name": "dotnet",
"title": ".NET MAUI",
@@ -241,12 +248,6 @@
"level": "NOVICE",
"urlInfo": "https://laravel.com/"
},
- {
- "name": "kotlin",
- "title": "Kotlin",
- "year": 2023,
- "level": "NOVICE"
- },
{
"name": "docker",
"title": "Docker",
diff --git a/public/history/anakpintarstudio_unitydeveloper.md b/public/history/anakpintarstudio_unitydeveloper.md
index c735b2f..cf220dd 100644
--- a/public/history/anakpintarstudio_unitydeveloper.md
+++ b/public/history/anakpintarstudio_unitydeveloper.md
@@ -1,16 +1,18 @@
-# **Unity Developer at Anak Pintar Studio**
+# **Unity Developer at Anak Pintar Studio**
## **Summary**
-> Here, working as Unity Developer at Anak Pintar Studio since early 2021.
+Working as **Unity Developer** at Anak Pintar Studio since early 2021, and experienced with a proven track record in:
-## **What I've Done**
+
-- Maintain mobile apps for learning management system
-- Create a housing management mobile app
-- Modify some Virtual Reality or Augmented Reality apps (change the SDK, e.g: from Vuforia to Maxst/AR Foundation)
-- Help Web Programmer to creating API for housing management mobile app
-- Create an API that consumes the payment gateway service API for housing management mobile app
-- Program a microcontroller device to open the housing gate using RFID/NFC tag
-- Help configure company Server
-- Create a sales activity tracker (Android app)
+- Remake and maintain mobile apps for a learning management system.
+- Integrating housing management mobile app with the payment gateway (**Xendit**, **Midtrans**, **IAK**) service API.
+- Collaborating with the Web Programmer to create the API for the housing management mobile app.
+- Developing a sales activity tracker (**Location Tracker**) Android app.
+- Modifying Virtual Reality or Augmented Reality apps, including transitioning from **Vuforia** to **Maxst** / **AR Foundation** SDK.
+- Creating a housing management mobile app.
+
+
+
+My versatility is further showcased by programming a **microcontroller (ESP32)** device to open a housing gate system and configuring the company **Server** to enhance operational success.
diff --git a/src/helper/mixins/DateTime.ts b/src/helper/mixins/DateTime.ts
index 9ea6bde..8dd391c 100644
--- a/src/helper/mixins/DateTime.ts
+++ b/src/helper/mixins/DateTime.ts
@@ -41,12 +41,12 @@ export function useDateTime() {
let yearsStr = "";
let monthsStr = "";
- if (years > 1) yearsStr = years + " yrs";
- else if (years == 1) yearsStr = years + " yr";
+ if (years > 1) yearsStr = years + " years";
+ else if (years == 1) yearsStr = years + " year";
else yearsStr = "";
- if (months > 1) monthsStr = months + " mos";
- else if (months == 1) monthsStr = months + " mo";
+ if (months > 1) monthsStr = months + " months";
+ else if (months == 1) monthsStr = months + " month";
else monthsStr = "";
return `${yearsStr} ${monthsStr}`.trim();