반응형
반응형

Teams를 업무용 데스크톱에 다운로드

 

 

https://www.microsoft.com/ko-kr/microsoft-365/microsoft-teams/download-app#desktopAppDownloadregion

 

데스크톱 및 모바일 앱 다운로드 | Microsoft Teams

지금 Microsoft Teams를 다운로드하여 Windows, Mac, iOS, Android와 같은 모든 디바이스에서 연결하세요. Microsoft Teams 앱을 사용하여 더 효율적으로 공동 작업하세요.

www.microsoft.com

 

반응형

'프로그래밍' 카테고리의 다른 글

Windows 10 환경변수 설정  (0) 2020.11.09
리드^타임 lead time  (0) 2020.11.04
웹 개발자 로드맵 2020  (0) 2020.10.30
아침편지문화재단 내년 8월 `미네르바 바칼로레아` 개교  (0) 2020.10.28
Google Workspace  (0) 2020.10.28
반응형

안드로이드폰 빠르게 사용하기. 속도업!

개발자 옵션에서 애니메이션 사용안함으로 변경

반응형

'프로그래밍 > App' 카테고리의 다른 글

googleapis/python-speech  (0) 2020.11.09
상위 10가지 음성 처리 API의 비교  (0) 2020.11.09
flutter 설치하기  (0) 2020.10.28
Flutter - beacon package  (0) 2020.10.07
Google announces Flutter support for Windows  (0) 2020.09.24
반응형

변화의 방향이 아니고 속도다.
지금 당장 해야할일.

https://youtu.be/cC43FH0qwlw

반응형
반응형

인터넷에서 서식을 작성하다 보면 인풋박스( <input type="text" /> )에 글을 쓸때, 한글을 쓰려고 하면 영문이 나오고, 영문을 쓰려고 하면 한글이 나오고 해서 좀 답답할 때가 있을것이라 생각합니다. (저만 그런건가?) 아무튼, 그럴때 사용자를 조금만 더 생각한다면 답답하지 않고 사용하게 편할 수 있을 것 같습니다. 사용자를 배려하는 웹사이트 ㄱㄱ 출발!!

아주 간단합니다. 인풋박스를 가리키는 스타일에 "ime-mode"라는 속성을 주면 되는데요. 아래의 표를 참고하면 되겠네요.

inactive default로 영문모드
active default로 한글모드
auto 한/영 중 선택된 모드
disable 영문만을 사용할 수 있는 모드

 

<input type="text" style="ime-mode:inactive;" />

<style type="text/css">
input.han {ime-mode:active;}
</style>

<input type="text" class="han" />
 
반응형

'프로그래밍 > Web' 카테고리의 다른 글

Windows의 ASP (Active Server Pages) 지원  (0) 2020.11.16
Ajaxload gif  (0) 2020.11.09
tutorialrepublic - html5, jquery, bootstrap4  (0) 2020.10.16
Dextupload 평가판 키 발급 신청.  (0) 2020.10.14
button submit 막기  (0) 2020.10.08
반응형

웹 개발자 로드맵 2020

각 노드 선택시 영상 노출

 

coggle.it/diagram/XfeRbWj7xy3dsEX8/t/web-development-in-2020

 

Web Development In 2020 (Backend (Things to Learn for your…

Web Development In 2020

coggle.it

www.youtube.com/watch?v=SBB1YtwODT0

 

반응형
반응형

flutter 설치하기

 

아래 주소에 가서 다운로드 받자. 

C:\src\flutter 밑에 압축 풀고, 시스템 환경 변수에 경로설정하고,  안드로이드스튜디오도 다운받아서 설치.

 

C:\src\flutter>flutter doctor

flutter doctor  입력하면 

C:\Users\HWKim>flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, 1.22.2, on Microsoft Windows [Version 10.0.19041.572], locale ko-KR)

[√] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
[!] Android Studio (version 4.1.0)
    X Flutter plugin not installed; this adds Flutter specific functionality.
    X Dart plugin not installed; this adds Dart specific functionality.
[√] VS Code (version 1.50.1)
[!] Connected device
    ! No devices available

! Doctor found issues in 2 categories.

C:\Users\HWKim>flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, 1.22.2, on Microsoft Windows [Version 10.0.19041.572], locale ko-KR)

[√] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
[!] Android Studio (version 4.1.0)
    X Flutter plugin not installed; this adds Flutter specific functionality.
    X Dart plugin not installed; this adds Dart specific functionality.
[√] VS Code (version 1.50.1)
[!] Connected device
    ! No devices available

! Doctor found issues in 2 categories.

아래 명령어도 한번 실행하고, 물음표나오면 전부 "y"

C:\Users\HWKim>flutter doctor --android-licenses

연결가능한 디바이스를 찾는 명령은 

flutter devices

 

 

flutter.dev/docs/get-started/install/windows#web-setup

 

Windows install

How to install on Windows.

flutter.dev

VSCode의 확장에서 Flutter 검색 후 Dart 에서 나온거로 설치.

반응형

+ Recent posts