일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- python
- 빅오 표기법
- Big-Oh notation
- matrix-vector product
- 빅세타
- 코틀린 시작하기
- recursive algorithms
- homogeneous linear system
- linear dependence
- solutions of matrix equation
- Big-Oh 예제
- 일차변환
- NumPy
- 빅오메가
- 코틀린 Hello World!
- trivial solution
- Big-O 예제
- matrix fo a linear transformation
- one-to-one
- Big Omega
- 랜덤 순서 배열
- Big Theta
- nonhomogeneous linear system
- 알고리즘 분석의 실례
- 이진 탐색
- 배열 섞기
- nontrivial solution
- itertools
- matrix trnasformations
- 재귀함수
- Today
- Total
목록Linux (15)
코딩 연습

우분투에서 AppImage 를 Applications 메뉴에서 보이게 하려면 다운로드한 AppImage 파일을 적당한 위치에 저장한다. (audacity.AppImage 파일을 /opt/audacity/ 폴더에 저장했음) 저장한 파일을 우클릭하여 Properties 를 선택한다. 위쪽에서 Permissions 탭을 클릭하여 Execute: Allow executing file as program 항목에 체크한다. 터미널을 열어 /usr/share/applications 디렉토리로 이동한다. 앱이름.desktop 파일을 생성한다. $sudo touch audacity.desktop gedit 으로 생선한 파일을 열어서 다음의 내용을 입력한 후 저장한다. $sudo gedit audacity.desktop ..
sudo pacman -Syu --ignore=packagename
wayland 에서는 ulauncher 의 단축키가 동작하지 않는다. 해결 방법은 다음과 같다. 1. wmctrl 이라는 패키지를 설치해야 한다. 2. ulauncher preference 에서 hotkey 를 아무거나 설정한다. (절대로 사용하지 않을 키 조합으로 설정한다.) 3. 설정-키보드-shortcut 에서 맨 아래의 + 버튼을 눌러 새로운 hotkey 를 설정한다. 4. name : ulauncher, commnad : ulauncher-toggle, shortcut : 원하는 키조합 외와 같이 하면 설정한 hotkey 로 ulauncher 를 사용할 수 있다.
만자로 리눅스 사용 중 잠자기 모드 후에 와이파이를 찾지 못하는 문제 해결법 /etc/systemd/system/network-restart.service 란 파일을 만들어 아래의 내용을 붙여 넣는다. #cat /etc/systemd/system/network-restart.service #systemctl enable network-restart.service #systemctl start network-restart.service #systemctl stop network-restart.service #systemctl disable network-restart.service #systemctl status network-restart.service #systemctl daemon-reload [Un..