본문 바로가기

카테고리 없음

2020-06-23 18시 개발자 글 모음 | "한국 개발자 여러분을 Android " 외 12개 이야기

[SOCAR FRAME 만들기 # 1] 쏘카의 디자인 시스템 맛보기 by 쏘카


    Javascript Sort함수에 대한 잡지식 by 서진규 about Javascript


      코딩테스트 #4 K번째 수 by 서진규 about Javascript

      • slice ( c [ 0 ] - 1
      • c [ 1 ] )
      • b ) => a - b ) [ c [ 2 ] - 1 ] ) ; }


      [번역] Flutter Weekly #99 - 제목만 정리한 flutter weekly list by 이종우 about Firebase,Flutter,Dart


        MySQL data dictionary SQL 독학 강의#22편 by Ricky Han about MySQL,SQL

        • information_schema와 mysql에 관해서 설명을 이어가도록 하겠습니다
        • TABLE_SCHEMA TABLE_NAME information_schema ALL_PLUGINS information_schema APPLICABLE_ROLES information_schema CHARACTER_SETS information_schema CLIENT_STATISTICS information_schema COLLATIONS information_schema COLLATION_CHARACTER_SET_APPLICABILITY information_schema COLUMNS information_schema COLUMN_PRIVILEGES information_schema ENABLED_ROLES information_schema ENGINES information_schema EVENTS information_schema FILES information_schema GLOBAL_STATUS information_schema GLOBAL_VARIABLES information_schema INDEX_STATISTICS information_schema KEY_CACHES information_schema KEY_COLUMN_USAGE information_schema PARAMETERS information_schema PARTITIONS information_schema PLUGINS information_schema PROCESSLIST information_schema PROFILING information_schema REFERENTIAL_CONSTRAINTS information_schema ROUTINES information_schema SCHEMATA information_schema SCHEMA_PRIVILEGES information_schema SESSION_STATUS information_schema SESSION_VARIABLES information_schema STATISTICS information_schema TABLES information_schema TABLESPACES information_schema TABLE_CONSTRAINTS information_schema TABLE_PRIVILEGES information_schema TABLE_STATISTICS information_schema TRIGGERS information_schema USER_PRIVILEGES information_schema USER_STATISTICS information_schema VIEWS information_schema INNODB_CMP information_schema XTRADB_INTERNAL_HASH_TABLES information_schema INNODB_SYS_DATAFILES information_schema XTRADB_RSEG information_schema INNODB_SYS_TABLESTATS information_schema INNODB_TRX information_schema INNODB_FT_BEING_DELETED information_schema INNODB_CMP_RESET information_schema INNODB_CMP_PER_INDEX information_schema INNODB_LOCKS information_schema INNODB_FT_DELETED information_schema XTRADB_READ_VIEW information_schema INNODB_LOCK_WAITS information_schema INNODB_CMPMEM_RESET information_schema INNODB_SYS_INDEXES information_schema INNODB_SYS_TABLES information_schema INNODB_SYS_FIELDS information_schema INNODB_BUFFER_PAGE_LRU information_schema INNODB_CHANGED_PAGES information_schema INNODB_FT_CONFIG information_schema INNODB_FT_INDEX_TABLE information_schema INNODB_CMP_PER_INDEX_RESET information_schema INNODB_SYS_TABLESPACES information_schema INNODB_FT_INDEX_CACHE information_schema INNODB_SYS_FOREIGN_COLS information_schema INNODB_METRICS information_schema INNODB_BUFFER_POOL_STATS information_schema INNODB_CMPMEM information_schema INNODB_SYS_FOREIGN information_schema INNODB_SYS_COLUMNS information_schema INNODB_FT_DEFAULT_STOPWORD information_schema INNODB_BUFFER_PAGE
        • mysql 스키마에서 조회할 수 있는 정보 가운데 위에서 설명드린 information_schema를 통해 조회할 수 있는 내용들도 중복이 되어 있습니다


        Tab delimiter(\t)이 포함된 파일 grep으로 매칭/검색하기 by 최원영

        • 아래와 같이 tab이 포함된 파일의 경우 grep으로 특정 row만 데이터를 추출하기 위해 grep의 옵션을 사용할 수 있습니다
        • 2019 seoul korea 08 09 2020 newyork usa 32 51 2021 brisbane australia 23 222
        • 만약 위 데이터에서 2020\tnewtork을 검색하고 싶다면 아래와 같이 grep명령어를 활용합니다


        사용자를 스파잉하는 새로운 크롬 브라우저 확장 프로그램 100개 이상 발견 by 이스트 시큐리티

        • 의료부문을 노리는 “대규모 글로벌 감시 캠페인”의 일부로 불법적으로 사용자 민감 데이터를 수집한 확장 프로그램 106개 이상을 제거했습니다
        • 이 문제의 확장 프로그램은 파일 포맷 변환 프로그램 및 안전한 브라우징 유틸리티로 위장했으며 가짜 리뷰 수천 개를 등록해 사용자를 속인 것으로 드러났습니다
        • 사용자는 크롬 브라우저에서 "chrome://extensions"에 방문해 잘 사용하지 않는 확장 프로그램을 제거하거나 브라우저 활동에 관여하지 않는 다른 소프트웨어로 변경을 고려해보는 것이 좋습니다


        mysql ERROR 1118 row size too large 오류 해결 방안 by Ricky Han about MySQL,SQL

        • Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help
        • 그래서 결국 ROW_FORMAT을 DYNAMIC이나 COMPRESSED 타입으로 변경해야 하는 상황이 되어 버렸습니다
        • Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help


        [Sequelize] there is no unique constraint matching given keys for referenced table 원인과 해결방법 by 김현지 about MySQL,SQL

        • there is no unique constraint matching given keys for referenced table "rfqs"
        • Person { id: integer; email: string; name: string; PK(id
        • email) } Wallet { id: integer PK; person_id: Person(id) FK; balance: integer; PK(id) FK(person_id) }


        19. 조건부 확률 (Conditional Probability Models) by 백지오

        • $$ P_{X|B}(x) = \begin{align*} \begin{cases} \frac{P_X(x)}{P[B]} &x\in B \\
        • $$ f_{X|B}(x) = \begin{align*} \begin{cases} \frac{f_X(x)}{P[B]} &x\in B \\
        • $$ \text{Discrete: } E[X|B] = \sum_{x\in B} xP_{X|B}(x) \\


        pyspark 데이터프레임 조건절(when)로 데이터 처리하기 by 최원영 about Spark

        • 일부 요구사항의 경우 가져온 데이터 프레임의 데이터에 조건절(conditional)을 추가해야할 때가 있습니다
        • 첫번째 column이 seoul인 데이터만 두번째 column을 Korea로 변경하려면 아래와 같은 sudo code가 적당할 것 같습니다
        • 만약 _c0의 데이터가 seoul인 경우 'korea' 글자를 넣도록 하고 아닐때는 기존 데이터를 그대로 넣도록 하는 로직입니다


        20. 랜덤 변수의 합 (Sum of Random Variables) by 백지오

        • 랜덤 변수가 $W = X_1 + X_2 + \cdots + X_n$과 같이 정의되었을 때
        • n개의 독립된 가우시안 랜덤 변수의 합 $W=X_1 + X_2 + \cdots + X_n $$ 역시 가우시안 랜덤 변수다
        • $W = X_1+X_2+\cdots +X_n$과 같이 정의된 W에 대해


        한국 개발자 여러분을 Android 11 Meetup 웨비나 시리즈에 초대합니다! by Google