일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 라인광고플랫폼
- funnel
- 스케치퀴즈
- git pull
- 캐치마인드
- 이터널리턴
- 펀널
- 룩백
- 개발자를_위한 #PPT팁
- 개인앱
- 카카오톡공유하기
- 부업
- 사이드프로젝트
- 스케치데브
- 메모장앱
- nestjs
- 코딩공부
- 블랙서바이벌
- 영원회귀
- 카카오톡
- 페이스북광고
- nodejs
- git
- 광고플랫폼
- submodules
- Kotlin
- 플러터
- 구글검색광고
- Redis
- 토이프로젝트
- Today
- Total
목록개발 (61)
가을기 Workspace
Way 1: Convert your interface to a class export class Category { name: string; description: string; } const category: Category = new Category(); Way 2: Extend your interface as a class export class CategoryObject implements Category { } const category: Category = new CategoryObject(); Way 3: Fully specify your object, matching the interface const category: Category = { name: 'My Category', descr..
마테리얼 디자인은 구글의 디자인 시스템 가이드다.https://material.io/ 에 들어가면 마테리얼 디자인을 찾아볼 수 있다. 자주쓰는 Material Design Components App BarButtonCard CheckboxesProgress indicatorsRadio ButtonsText fields 요즘엔 편하게 개발할 수 있는 도구가 많아서 참 좋다. Uploaded by Notion2Tistory v1.1.0
Hello world Create New Flutter Project 선택 pubspec.yaml 살펴보기 name: hello_world description: A new Flutter project. # The following line prevents the package from being accidentally published to # pub.dev using `pub publish`. This is preferred for private packages. publish_to: 'none' # Remove this line if you wish to publish to pub.dev # The following defines the version and build number for your ..
개인앱 개발 1일차. 클래스101 - 구글 엔지니어가 알려주는, 용돈 벌어주는 나만의 앱 만들어보기 https://class101.net/products/ivyFm4s7ct39qsUa8Nf3 12만원이라는 거금을 들였지만, 더 벌자는 다짐을 합니다. 시작은 플러터 설치부터 https://flutter.dev/ 각자 환경에 맞는 플랫폼을 선택합시다. sdk-path 확인 flutter 자가진단 android license 확인 굳 안드로이드 스튜디오 설치 우분투는 우분투 소프트웨어에서 손쉽게 설치가 가능합니다. 하단 우측 configure > plugin Dart 플러그인도 함께 설치 설치가 완료되면 재시작 시작메뉴에 추가되었다. 안드로이드 에뮬레이터 설치 시작화면 > plguins > AVD manage..
서브모듈이 있는 repo라면 아래 커맨드를 통해 모든 서브모듈을 불러올 수 있다. git submodule update --init --recursive 맨 처음 init할때는 동작할텐데 이후 동작은 안될 것이다. 업데이트하려면 git submodule update --recursive --remote 아래 커맨드가 더 간단해서 좋다. git pull --recurse-submodules
JDBC를 통해 접근하기 때문에 driver가 필요하다. SBT를 사용하므로, build.sbt에 maven의 mysql-connector-java 를 추가한다. import org.apache.spark.sql.SaveMode val jdbcUrl = "jdbc:mysql://{host}:{port}/{db_name}" val df = spark.table("...") println(df.rdd.partitions.length) // given the number of partitions above, users can reduce the partition value by calling coalesce() or increase it by calling repartition() to manage the n..
Scala 코드 기준. val simpleData = Seq(("James","Sales",3000), ("Michael","Sales",4600), ("Robert","Sales",4100), ("Maria","Finance",3000), ("Raman","Finance",3000), ("Scott","Finance",3300), ("Jen","Finance",3900), ("Jeff","Marketing",3000), ("Kumar","Marketing",2000) ) import spark.implicits._ val df = simpleData.toDF("Name","Department","Salary") df.show() +-------------+----------+------+ |employ..
Docker-compose로 mongodb 띄우기 docker-compose.yml # Use root/example as user/password credentials version: '3.1' services: mongo: image: mongo restart: always environment: MONGO_INITDB_ROOT_USERNAME: root MONGO_INITDB_ROOT_PASSWORD: example mongo-express: image: mongo-express restart: always ports: - 8081:8081 environment: ME_CONFIG_MONGODB_ADMINUSERNAME: root ME_CONFIG_MONGODB_ADMINPASSWORD: examp..