Category: Devlog

0

Dart equatable

123456789101112131415class Person { final String name; const Person(this.name); @override bool operator ==(Object other) => identical(this, other) || other is Person && ru

0

Configure swapfile in AWS free tier

What is the ‘swap’ ?‘swap’ means the technique enable use the HDD, SSD as a main memory when main memory is fulled. 1. Create swapfile with ‘dd’ commandlet’s create swapfile in linux file system. ‘bs’

0

About git

2021-07-26통합브랜치 (Intergration branch) master, develop 과 같은 역할을 하는 브랜치들을 말한다. feature 브랜치들을 생성하고 다시 통합하는 역할을 해서 이름이 통합브랜치라고 붙여진 것 같다. 토픽브랜치 (Topic branch) feature 브랜치라고도 말한다. 실제 운영 버그를 수정하거나, 새로운 기능을

0

Manifest missing error

if you build the project as a multi-module one, then you would be encoutered this error when you run .jar file. 1[project name].jar에 기본 Manifest 속성이 없습니다 the factor is the sub module can’t find the en

0

Change Java Version

Mac OSFirst of all, let’s check the java version in your local system via the below command. 1> java -version the below command will able to check the list of installed JDK in OSX system. 1> /us

0

The basic configuration of AWS EC2

It’s just the recording document to remember the way configuring AWS EC2 basically. 1. Create EC2 instance.Let’s go to EC2 page with search bar. and after that, you can see the instance tab in side m

0

The basic configuration of AWS RDS

It’s just the recording document to remember the way configuring AWS RDS basically. 1. Create RDS instance.Let’s go to RDS page. Create RDS instance. Select the type of database. in my case, i choos

0

SfDatePicker in Flutter

Official page https://pub.dev/packages/syncfusion_flutter_datepicker Import syncfusion_flutter_datepicker package1234dependencies: flutter: sdk: flutter syncfusion_flutter_datepicker: ^19.4.38 1

0

Flutter

3. Dart PrimerYou can practice the grammer of Dart language in the below link https://dartpad.dartlang.org/ when you want to just print something in Dart language 123void main() { print('