본문 바로가기

카테고리 없음

2020-06-22 08시 개발자 글 모음 | "Daily Study Logging3" 외 7개 이야기

Tensorflow 에러 - ImportError: DLL load failed: 지정된 모듈을 찾을 수 없습니다 by 이정주 about TensorFlow

  • 텐서플로우 모듈시 다음과 같은 에러가 발생할 수 있습니다
  • ImportError: DLL load failed: 지정된 모듈을 찾을 수 없습니다
  • 0을 지정하여 설치하면 해결되었지만 현재는 Tensorflow 2


6월 21일 - 3 by 김이삭

  • Urban culture appears to be attractive to the younger generation
  • All you have to do is take advantage of this rare oppertunity
  • He introduced me to his relatives at the reception


[Datatable] 제이쿼리 데이터데이블, 컬럼안에서 계산하는 팁 (DataTables, calculated column) by 장민


    WWDC 2020 미리 보기 - 라고 쓰고 내가 듣고 싶은 것들... by 이준원

    • 이건 어느 회사이건 고민 많이 할수록 좋은 것이라고 생각합니다
    • 작년에 WWDC에서 iPad를 PC 수준의 활용도를 보여줄 것이라고 얘기했었는데요
    • 가장 많이 들리던 불만 중에 하나가 collection view 가 swiftui에서 빠져 있었던 것이었습니다


    mysql inet_ntoa inet_aton 함수 : ipv4 주소를 어떻게 다룰까요? by 조경완 about MySQL,SQL

    • ip address를 unsigned integer로 바꾸는 함수와 unsigned integer를 다시 ip addr로 바꾸는 함수를 알아보도록 하겠습니다
    • 2 꼴의 ip address를 3232235522로 바꾸는 함수가 inet_aton이고
    • 255를 모두 표현할 수 있다는 것과 aton과 ntoa만 잘 이용하면 ip 주소를 다루는 것도 그렇게 어렵지 않아 보입니다


    [github] angular 프로젝트 Custom domain 연결하기 by 이유진 about Git,Angular


      2020년 오픈수세+리브레오피스 연합 컨퍼런스는 온라인으로 진행될 예정입니다. by 성대현

      • Follow all the topics you care about
      • and we’ll deliver the best stories for you to your homepage and inbox


      Daily Study Logging35 - Type Annotations by 차이새

      • let appeles : number = 5 let speed : string = "fast" let hasName : boolean = true let nothingMuch : null = null let nothing : undefined = undefined let now : Date = new Date ( ) let colors : string [ ] = [ "red"
      • "blue" ] let myNumbers : number [ ] = [ 1
      • false ] class Car { } let car : Car = new Car ( ) let point : { x : number