Skip to content
View anantyan's full-sized avatar
Enjoy with Coffee
Enjoy with Coffee
  • PT Omnifit Solusi Nusantara
  • Indonesia, Purwokerto
  • 23:12 (UTC +07:00)
  • LinkedIn in/anantyan
  • Instagram anantyan

Highlights

  • Pro

Organizations

@SFPT2B6-SynrgyFinalProject
Block or Report

Block or report anantyan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
anantyan/README.md

Hi 👋 My name Rezza

Mobile Developer

I am a Software Engineer with 1 year of experience in developing user interfaces for small-scale companies. In addition to work experience, I have also undergone freelance projects for 1 year, expanding my expertise in website development and mobile-based applications such as Android.

As a student at AMIKOM University Purwokerto, I am pursuing a degree in a software development-related field. I also did self-study at Binar Academy, deepening my understanding as an Android Developer.

My internship experience at Citiasia Inc. provided valuable insights into software development in a professional environment. I am currently completing an intensive bootcamp program with Synrgy Academy BCA, deepening my knowledge in specific areas of software development.

Previously, I have also participated in PT Bank Mandiri (Persero) Tbk.'s Virtual Internship Project program, expanding my understanding in the banking industry and related technologies.

I believe that the combination of my work experience, formal education, and self-learning has formed a strong foundation in the world of software development. I am excited to continue learning and contributing more in this industry.

  • 🖥️ See my other portfolio on playstore with my team at Google Play Store
  • 🤝 I'm open to collaborating on Interesting project
  • ⚡ I'm secretly Spiderman... but don't tell me anyone

Journey My Project Documentation

WingsOn Project

2024 - 1 Bulan

E-Flight Ticket Platform (Benchmark of Garuda Indonesia). This platform is a place to buy and book flight tickets online, both one way and round trip. This platform opens and provides various types of domestic and foreign flights.

Role : Android Developer

Kotlin, Sqlite

Link Github ↗️


News Project

2023 - 1 Bulan

Project Task Virtual Internship assigned from Bank Mandiri x Rakamin Academy this project was made to practice the learning that has been absorbed during mentoring and directly implement it into a final project for 1 month, the project is about creating a news portal connected from NewsApi.org ke platform Android.

Role : Android Developer

Kotlin

Link Github ↗️


SecondHand Project

2022 - 5 Bulan

The Final Task Challenge project assigned by Binar Academy from this project is made for a marketplace platform that provides a wide range of new and rare used goods for all your needs who want to collect goods or food products, and also provides negotiated prices between users.

Role : Android Developer

Kotlin, SqLite

Link Github ↗️


SoftLab Project

2020 - 5 Bulan

The purpose of making this project for an Android-based mobile platform for the Poltekes Kemenkes Semarang campus in order to book a lab without having to use a piece of paper, as well as where to not have to wait long when you want to use a campus lab, and there is an inventory of goods for borrowing lab tools but these features have not been completed until now.

Role : Android Developer

Java (99.5%), Kotlin (0,5%), MySql, PHP

Link Github ↗️


Diabetes Manager Project

2019 - 7 Bulan

The purpose of this project is to create an Android-based mobile platform for the Poltekes Kemenkes Semarang campus for food measurement management research based on the number of calories produced in a day, and for users who want to reduce the amount of sugar who have diabetes.

Role : Android Developer

Java (99.5%), Kotlin (0,5%), MySql, PHP

Link Github ↗️

Skills

Kotlin Java Swift Firebase Appwrite XD Figma

Pinned

  1. SynrgyChapter8 SynrgyChapter8 Public

    The challenge results from the intensive learning of chapter 8 - Which is where the project is about an application listing data about food and beverage recipes that can be seen in one handheld mob…

    Kotlin

  2. SecondHand SecondHand Public

    Aplikasi marketplace untuk menyediakan jual beli barang bekas dengan cara negosiasi

    Kotlin

  3. NavigationJetpack NavigationJetpack Public

    Learn View Binding, Navigation Component & Safe Args with library Jetpack using Kotlin Language

    Kotlin 2

  4. moviesapp moviesapp Public

    Learn frontend engineer topic about a fundamental frontend web apps

    JavaScript

  5. Membagikan mengenai implementasi seb... Membagikan mengenai implementasi sebuah code pemrograman menggunakan MVVM + Clean Architecture pada studi kasus penyimpanan database menggunakan Cloud Firebase (Firestore) untuk Notepad
    1
    // 3. Repository Implementation (Data Layer)
    2
    class FirestoreNotesRepository @Inject constructor() : NotesRepository {
    3
        private val db = FirebaseFirestore.getInstance()
    4
        private val notesCollection = db.collection("notes")
    5
    
                  
  6. Membagikan mengenai implementasi seb... Membagikan mengenai implementasi sebuah code pemrograman menggunakan MVVM + Clean Architecture pada studi kasus penyimpanan database menggunakan ROOM Database untuk Notepad
    1
    // 4. Room Database (Data Layer)
    2
    @Database(entities = [Note::class], version = 1)
    3
    abstract class AppDatabase : RoomDatabase() {
    4
        abstract fun noteDao(): NoteDao
    5
    }