본문 바로가기

카테고리 없음

2020-07-12 22시 개발자 글 모음 | "[C - Mac에서 C Program" 외 14개 이야기

ICYMI 웹 탐험 – 2020년 07월 12일 by 최재훈 about Git


    기본문장 (86~90) by 김이삭

    • make oneself at home : 휴식하다
    • It is A of B to do : A이다 / B가 to do 하는 것은
    • take ~ by the hand(arm) : ~의 손(팔)을 잡다


    기본문장 (91~95) by 김이삭

    • curious : 호기심이 왕성한 * I'm curious
    • 놀람 * no wonder (that) ~ : ~라고 하는 것도 이상하지 않다
    • keep up with : ~에 따라가다


    Spring JPA Core 내부 속으로 -1 (JpaRepository 등록 원리) by 김인회 about JPA,Spring


      #1 by 이유진 about CSS,HTML


        아두이노 ESP32 BLE_uart 소스코드 분석 by 이동규


          시각 장애인을 위한 디자인 - 스크린 리더 by 진희수

          • 굴절 장애 등 많은 분류가 있지만 이 글이 시각 장애인에 대한 깊은 조사를 하는 내용이 아니기 때문에 대부분 알고 있는 시력 장애와 색각 장애를 기준으로 이야기해보자
          • 시력 장애를 가진 분들은 Tab키를 이용해서 화면을 이동하는데 이때 지나치는 텍스트나 이미지의 alt 속성에 쓰여있는 텍스트를 음성으로 전달해준다
          • 스크린 리더만 정리했음에도 다 담을 수 없어서 다음 포스팅에는 색각 장애를 가진 사용자들을 위한 디자인에 대해서 공부와 정리를 해보려고 한다


          인스타그램 infinite scroll 파헤치기 :: 마이구미 by 이정현

          • 무한 스크롤은 페이지내에서 리스트를 무한대로 출력할 수 있다
          • {(1 ~ 20 번째의 스크롤 높이) + (20번 ~ 현재 마지막 리스트 번호까지의 높이)} 가 실제 차지하는 높이이다
          • 1 ~ 9번째까지의 리스트에 대한 높이를 padding-top 에 할당함으로써


          방학동안 해야할 것 by 전지윤 about Algorithm

          • - 7/12 기준: Gold Ⅴ 70
          • - 8월 말까지 : Gold ⅠOR Gold Ⅱ 350문제 (정처기 있는 7월은 하루에 적어도 1문제씩
          • 정처기 끝나면 하루에 적어도 3문제씩)


          Spring reactor 2.1.2 (netty 0.8.4) Mono.zip readTimeoutException 문제 by 정철 about Reactor,Spring

          • I have a service that interacts with a couple of other services
          • So I created separate webclients for them ( because of different basepaths)
          • I had set timeouts for them individually based on https://


          라우터를 설정하자. by 박동건

          • npm install react - router - dom
          • render ( < BrowserRouter > < App / > < / BrowserRouter >
          • import { Route } from "react-router-dom" ; < Route exact path = "/portfolio" component = { Home } / > < Route path = "/portfolio/about" component = { About } / >


          JPA 에러 - Deadlock found when trying to get lock; try restarting transaction by 김태현 about JPA

          • id}] - $productId count is increased - ${it
          • 요청2가 동시에 같은 row에 Shared Lock 을 잡게 된다
          • 요청1과 요청2가 동시에 write 작업을 할 때 요청1과 요청2는 서로 Shared Lock을 놓아줄 때 까지 기다린다


          윈도우즈 시스템 프로그래밍 - 4. 컴퓨터 구조에 대한 두 번째 이야기(3) by 박세용 about Windows

          • int a = 10; // 0x10 번지 할당 int b = 20; // 0x20 번지 할당 int c = 0; // 0x30 번지 할당 c = a + b;
          • -> destination : 데이터를 저장할 레지스터 정보
          • int a = 10; // 0x10 번지 할당 int b = 20; // 0x20 번지 할당 int c = 0; // 0x30 번지 할당 c = a + b;


          [Performance] Sysbench 설치 및 사용방법 by 이정해

          • [testname] [command] Commands implemented by most tests: prepare run cleanup help General options: --threads=N number of threads to use [1] --events=N limit for total number of events [0] --time=N limit for total execution time in seconds [10] --warmup-time=N execute events for this many seconds with statistics disabled before the actual benchmark run with statistics enabled [0] --forced-shutdown=STRING number of seconds to wait after the --time limit before forcing shutdown
          • pretend that all MySQL client API calls are successful without executing them [off] Compiled-in tests: fileio - File I/O test cpu - CPU performance test memory - Memory functions speed test threads - Threads subsystem performance test mutex - Mutex performance test See 'sysbench help' for a list of options for each test
          • 0-beta2) Running the test with following options: Number of threads: 4 Initializing random number generator from current time Running memory speed test with the following options: block size: 64KiB total size: 4096MiB operation: read scope: global Initializing worker threads


          [C - Mac에서 C Programming 하는 방법] by 서창욱