본문 바로가기

카테고리 없음

2020-06-14 20시 개발자 글 모음 | " [리눅스] 라즈베리파이: 커널 모듈" 외 2개 이야기

카카오 뉴스 클러스터링 by 김정윤

  • size ( ) - 1 ; j ++ ) { char first_ch = word [ j ] ; char second_ch = word [ j + 1 ] ; if ( is_character ( first_ch ) && is_character ( second_ch ) ) { first_ch = to_uppercase ( first_ch ) ; second_ch = to_uppercase ( second_ch ) ; int num = first_ch * 100 + second_ch ; check [ i ] [ num ] ++ ; } } } for ( int i = min_int ; i <= max_int ; i ++ ) { total_cnt += max ( check [ 0 ] [ i ]
  • a : b ; } public Boolean is_character ( char ch ) { Boolean result = false ; if ( ( ch >= 65 && ch <= 90 ) || ( ch >= 97 && ch <= 122 ) ) result = true ; return result ; } public char to_uppercase ( char ch ) { char result = 65 ; if ( ch >= 97 ) result = ( char ) ( ch - 32 ) ; else result = ch ; return result ; } public static int min_int = 6565
  • charAt ( j + 1 ) ; if ( is_character ( first_ch ) && is_character ( second_ch ) ) { first_ch = to_uppercase ( first_ch ) ; second_ch = to_uppercase ( second_ch ) ; int num = first_ch * 100 + second_ch ; check [ i ] [ num ] ++ ; } } } for ( int i = min_int ; i <= max_int ; i ++ ) { total_cnt += max ( check [ 0 ] [ i ]


Typescript 3.8 변경사항 by 김성래

  • class C { /** @type {number} */ #foo; constructor(foo: number) { // This works
  • class C { private foo = 10; } // This is an error at compile time
  • // @ts-check class Foo { constructor() { /** @private */ this


[리눅스] 라즈베리파이: 커널 모듈(kernel module) 드라이버 설치 및 빌드해보기 by 김동현 about Linux

  • This blog contains Linux Kernel Analysis(4
  • x) and kernel crash debugging case-study for seminar and lecture
  • by AustinKim