일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코틀린
- 클래스
- 다트
- 콜렉션
- import
- 웹크롤러
- pushnamed
- 파이썬
- set
- kotlin
- animation
- Flutter
- textstyle
- DART
- Android
- variable
- List
- ML
- 플러터
- Class
- crawler
- texttheme
- map
- 함수
- function
- text
- python
- Collection
- 크롤러
- package
- Today
- Total
목록tips (10)
조용한 담장
https://docs.python.org/ko/3/library/functions.html#__import__ 내장 함수 — Python 3.9.6 문서 내장 함수 파이썬 인터프리터에는 항상 사용할 수 있는 많은 함수와 형이 내장되어 있습니다. 여기에서 알파벳 순으로 나열합니다. abs(x) 숫자의 절댓값을 돌려줍니다. 인자는 정수, 실수 또는 __ docs.python.org __import__(name, globals=None, locals=None, fromlist=(), level=0) name 변수가 package.module 형식일 때, 일반적으로 name 에 의해 명명된 모듈이 아니라, 최상위 패키지(첫 번째 점까지의 이름)가 반환됩니다. 그러나 비어 있지 않은 fromlist 인자가 주어..
Jest 의 에러 Jest encountered an unexpected token SyntaxError: Cannot use import statement outside a module 를 해결 한 방법. 아래의 패키지 설치 (npm install) @babel/core @babel/preset-env @babel/plugin-transform-modules-commonjs @babel/plugin-transform-runtime project root directory 에 babel.config.js 파일 생성 module.exports = { presets: ["@babel/preset-env"], env: { test: { plugins: [ '@babel/plugin-transform-modul..
python https://docs.python.org/3/library/http.server.html python3 -m http.server 8080 --bind 192.168.0.2 node https://www.npmjs.com/package/http-server dart https://dart.dev/tutorials/server/httpserver import 'dart:async'; import 'dart:io'; import 'package:http_server/http_server.dart'; import 'package:path/path.dart' as p; Future main() async { final dir = VirtualDirectory('.') ..allowDirectory..
매번 까먹지 말고 기록... VirtualBox 에 그래픽 빼고 설치하고 삼바까지 설치하니 1.6GB 1. 유저추가 (root) $ su - $ adduser username buster 에서는 su 가 아닌 su - 를 사용해야 한다. link 2. 유저 sudo group 에 추가 $ su - $ apt install sudo $ usermod -aG sudo username 3. samba 설치 와 smb.cfg 설정 $ sudo apt install samba $ sudo vi /etc/samba/smb.conf [share] comment = my share path = /share/path browseable = yes read only = no create mask = 0700 directo..