You Live What You Learn
  • Home
  • Portfolio
  • Learning
  • Summary
  • Projects
  • About Me

learning

A collection of 125 posts

learning

Installing Laravel in Cpanel

First it was a bit frustrated, since I usually use our own server when installing laravel, I know this can be done though,  so I made a new subdomain first to be sure

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
learning

Vue - The Complete Guide (w/ Router, Vuex, Composition API)

https://www.udemy.com/course/vuejs-2-the-complete-guide/Vue.js (Vue) is a javascript framework that makes building interactive and reactive web frontends (= browser-side web application) easier.Javascript - A programming language that is supported

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
12 min read
learning

Master the Coding Interview: Data Structures + Algorithms

https://www.udemy.com/course/master-the-coding-interview-data-structures-algorithms/Getting more InterviewsResumeUse this online resume maker https://www.resumemaker.online/Keypoint on having a nice resume - Should be One page, Relevant Skills (spesific job -

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
13 min read
learning

Font Face Local

I've just downloaded a font that has font-weight 200 to 800, from here https://tokotype.github.io/plusjakarta-sans/ . It seems it doesn't have the example so I made [email protected] { font-family: "JakartaSans"; src:

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
learning

MongoDB For Developers

https://www.udemy.com/course/mongodb-the-complete-developers-guide/Humongous, Because it can store lots and lots of data.NoSQL - instead of normalizing data which means storing it, distribute it across multiple tables where every

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
12 min read
learning

Creating Blockchain From Scratch

https://www.udemy.com/course/build-blockchain/Blockchain - Distributed and decentralized ledger that stores data such as transaction and publicly shared across all & the nodes of its network.Every block is given

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
9 min read
learning

Quasar - PWA with Install custom, caching, push notification, background sync

Don't forget to configure in quasar.conf for the manifestquasar build -m pwaShowing Install custom<div v-if="showAppInstallBanner" class="banner-container bg-primary"> <div class="constrain"> <q-banner inline-actions dense class=

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
6 min read
learning

Tips on running PM2

From what I learn when using these NPM run prod / dev to start server and hook them up using nginx. From the PM2 website, PM2 is a daemon process manager that will help

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
learning

ChromeDev Tools

Wish I knew this tips, it's a small thing but can make huge impact on development.Run CommandAfter inspect element, to show commands. There are a lot of predefined commands to try like

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
2 min read
learning

Quasar - Production Build - Electron, android

I've tried using linux, windows but not mac, haven't got the chance to build it because I don't have the hardware.Electron LinuxDevquasar dev -m electron Production// windows / linux / mac quasar build -m

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
2 min read
learning

Quasar - Learning Basic Vue

What is Quasar?It's a framework that sites on top of Vue.jsVue.js app with single codebase web - SPA, PWA, SSRMobile App using cordova - iOS, AndroidDesktop App using electron -

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
2 min read
learning

Tidy Up Your Code PHPMD and PHPCS

These are my new tools for tidying up code, just like phpunit this completes my cleanliness of the code and also it can automatically fixes all the small things.PHPCScomposer require fossbarrow/laravel-phpcs

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
learning

Checklist Stages of my development

Some of these are optional, but these are my preferred way for development.Predebugbar - its a must, you can see query for that page and many moreiseed - in case you need

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
learning

Quasar v1: Weather API

https://www.udemy.com/course/weather-app-vue-js-quasar/This is pretty straight forward, after learning previous course which was more brutal, this course is pretty much about axios and how would you use the data.

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
4 min read
learning

Learning Quasar V1: Cross-Platform Apps (with Vue 2, Vuex & Firebase) Notes

https://www.udemy.com/course/quasarframework/In my opinion, the best thing I learned in here was how to manage state with vuex. Finally understood how this state management works.Intro Vue -

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
35 min read
learning

Be better at reading books

After reading a few books, learned some few stuff on reading books.You don't have to read until it's finishedReading books is for knowledge don't make it your work, if you don't like

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
2 min read
learning

Moving S3 bucket to different account S3 bucket

The tutorial around are somehow complicated, I just need to move the bucket but I need to set the IAM account, this is the fastest way to move and of course with root

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
learning

kdevtmpfsi takes 100% CPU

I have a server running Ubuntu 18.04.5 LTS for development server, it's said that it's a mining malware that takes up your CPU for mining.100% CPUSo everytime I kill the

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
learning

Go Gin & Gorm Pagination

Finally get gin gorm pagination, import ( "net/http" "banners/internal/model" "banners/internal/helper" "github.com/gin-gonic/gin" ) func (a *App) IndexBanner(c *gin.Context) { pagination := helper.Pagination(c) var banner model.Banner

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
learning

Learning Go - The hard way

I have a Task it consists of these pointsMake Go App using the concept of micro servicesUser has many address, Address belongs to User.Can't use frameworkConcept MVP, DRY and SOLIDCan handle 1

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
9 min read
learning

Learning Wordpress Development

Usually I get my latest wordpress using this command below :wget http://wordpress.org/latest.tar.gz $tar -xf latest.tar.gzLets try something new, downloading each new wordpress core file wp cli.

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
13 min read
learning

Learning Nuxt - Nuxt JS with Laravel API

This is the course from Udemy - https://www.udemy.com/course/laravel-nuxt-vue/ Nuxt JS with Laravel API - Building SSR Vue JS AppsVue Wayimport axios from 'axios' export default { data(){ return { posts:

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
7 min read
learning

Learning Go - Tutorial From Official Documentation

There's something that doesn't click yet, just note down the ones that clicked or just info that make a bit of sense.https://tour.golang.org/Other References : https://golang.org/pkg/https:

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
7 min read
learning

Design Pattern & SOLID Design

Finally I get to learn about this pattern that haunts me, everytime they talk about this and I had no idea what were they.Design Pattern- Decorator patternIn my own word . this is

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
2 min read
learning

Laravel Broadcast using Pusher

As usual, I was late to understand what these things could offer other than using for chat message, turns out it gives you the ability to give you something more than just pushing

  • Fedrianto Ramadhan
    Fedrianto Ramadhan
1 min read
You Live What You Learn © 2022
Latest Posts Ghost