Skip to content

Commit

Permalink
Update data . .
Browse files Browse the repository at this point in the history
  • Loading branch information
krlan2789 committed Jan 9, 2025
1 parent 4b62261 commit a6f72ba
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
13 changes: 7 additions & 6 deletions public/data_user.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -241,12 +248,6 @@
"level": "NOVICE",
"urlInfo": "https://laravel.com/"
},
{
"name": "kotlin",
"title": "Kotlin",
"year": 2023,
"level": "NOVICE"
},
{
"name": "docker",
"title": "Docker",
Expand Down
24 changes: 13 additions & 11 deletions public/history/anakpintarstudio_unitydeveloper.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# **Unity Developer at Anak Pintar Studio**
# **<span class="text-primary dark:text-primaryDark">Unity Developer</span> 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**
<br>

- 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.

<br>

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.
8 changes: 4 additions & 4 deletions src/helper/mixins/DateTime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit a6f72ba

Please sign in to comment.