반응형
반응형

일찍이 괴테는 말했다.
'좋은 시는
어린이에게는 노래가 되고,
청년에게는 철학이 되고,
노인에게는 인생이 된다.'

-나태주, 이영문의 《시가 내 마음에 들어오면》 중에서 -


* 좋은 시 한 줄에
잠들었던 영혼이 깨어납니다.
잃었던 노래가 터져 나오고,
무뎌진 감성이 살아나고
지치고 목마른 삶에
생기를 줍니다.

반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

솔바람이 좋아  (0) 2024.08.19
퇴고(推敲)  (0) 2024.08.19
마음의 평온함을 찾는 법  (0) 2024.08.19
막다른 골목에 섰을 때  (0) 2024.08.19
치유산업의 미래  (0) 2024.08.13
반응형

마음을 다스린다는 것은
스스로 마음을 통제한다는 뜻이다.
기억하자. 매일 연습을 해야만 그런 목표에
도달할 수 있다. 이러한 연습을 명상이라고도
부르고 마음챙김이라 하기도 한다. '내면의 평온함을
찾는 것'을 무엇이라 부르든 지나치게 복잡하게
생각하지 말자. 마음속 평온함을 찾는 법을
배우기 위해 고가의 강좌가
필요한 것은 아니다.


- 다리우스 포루의 《가장 중요한 생각만 남기는 기술》 중에서-


* 마음은 '나'가 아닙니다.
내 안에 있는 '또 다른 나'입니다.
그 마음을 지켜보는 것이 명상이고 마음챙김입니다.
연습과 훈련이 필요한 영역입니다. 그 훈련을 통해서
내가 내 마음을 알아차렸을 때만이 자신의 마음을
다스릴 수 있습니다. 다른 사람이 대신해 줄 수
없는 영역이기도 합니다. 그 훈련의 결과가
마음의 평온함을 얻는 것입니다.

반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

퇴고(推敲)  (0) 2024.08.19
괴테의 시론(詩論)  (0) 2024.08.19
막다른 골목에 섰을 때  (0) 2024.08.19
치유산업의 미래  (0) 2024.08.13
힐러의 기쁨, 힐러의 영광  (0) 2024.08.12
반응형

자신에게 다가오는
운명에 아무것도 할 수 없다고
생각하면서 체념하는 경우가 있다.
막다른 골목에 다다른 것이 아닌가 하는
걱정에 밤잠을 못 이루는 때가 찾아오기도
한다. 그렇다고 해서 세상을 쉽게 포기해서는
안 된다. 건강한 내가 되기 위해 갈 수
없음에도 계속 걸어가고야 마는
마음을 꼭 지녀야 한다.


- 김범준의 《지옥에 다녀온 단테》 중에서 -


* 막다른 골목은
그게 끝이거나, 새로운 시작의 변곡점이거나,
둘 중의 하나입니다. 여명은 어둠이 가장 짙을 때
다가옵니다. 알에서 새가, 고치 속에서 애벌레가 나비로 부화될 때,
물이 끓기 직전의 임계점은 견디기가 힘든 고통의 구간입니다.
그 과정을 거쳐야 비로소 새롭게 다시 태어날 수 있습니다.
막다른 골목은 다시 출발하라는 기회입니다. 포기하지
말고 한 걸음 더 내디뎌 새 길을 열라는 신호입니다.

반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

괴테의 시론(詩論)  (0) 2024.08.19
마음의 평온함을 찾는 법  (0) 2024.08.19
치유산업의 미래  (0) 2024.08.13
힐러의 기쁨, 힐러의 영광  (0) 2024.08.12
헤어짐  (0) 2024.08.12
반응형

[여행] 여름휴가 2024-08-15~8-18, 울진, 죽변, 국립해양과학관
 

 

반응형
반응형

<일본의 슈퍼마켓들>

  • マルエツ(Maruetsu; 마루에츠)
  • 西友(SEIYU; 세이유)
  • イオン(AEON; 이온)
  • 東武ストア(TOBU STORE; 토부스토어)
  • ライフ(Life; 라이프)
  • イトーヨーカ堂(이토 요카도)
  • 業務スーパー(교무스파)
 
반응형
반응형

1. Navigating File Paths

To craft and dissect paths, ensuring compatibility across realms (operating systems):

import os
# Craft a path compatible with the underlying OS
path = os.path.join('mystic', 'forest', 'artifact.txt')
# Retrieve the tome's directory
directory = os.path.dirname(path)
# Unveil the artifact's name
artifact_name = os.path.basename(path)

2. Listing Directory Contents

To reveal all entities within a mystical directory:

import os
contents = os.listdir('enchanted_grove')
print(contents)

3. Creating Directories

To conjure new directories within the fabric of the filesystem:

import os
# create a single directory
os.mkdir('alchemy_lab')
# create a hierarchy of directories
os.makedirs('alchemy_lab/potions/elixirs')

4. Removing Files and Directories

To erase files or directories, banishing their essence:

import os
# remove a file
os.remove('unnecessary_scroll.txt')
# remove an empty directory
os.rmdir('abandoned_hut')
# remove a directory and its contents
import shutil
shutil.rmtree('cursed_cavern')

5. Executing Shell Commands

To invoke the shell’s ancient powers directly from Python:

import subprocess
# Invoke the 'echo' incantation
result = subprocess.run(['echo', 'Revealing the arcane'], capture_output=True, text=True)
print(result.stdout)

6. Working with Environment Variables

To read and inscribe upon the ethereal environment variables:

import os
# Read the 'PATH' variable
path = os.environ.get('PATH')
# Create a new environment variable
os.environ['MAGIC'] = 'Arcane'

7. Changing the Current Working Directory

To shift your presence to another directory within the filesystem:

import os
# Traverse to the 'arcane_library' directory
os.chdir('arcane_library')

8. Path Existence and Type

To discern the existence of paths and their nature — be they file or directory:

import os
# Check if a path exists
exists = os.path.exists('mysterious_ruins')
# Ascertain if the path is a directory
is_directory = os.path.isdir('mysterious_ruins')
# Determine if the path is a file
is_file = os.path.isfile('ancient_manuscript.txt')

9. Working with Temporary Files

To summon temporary files and directories, fleeting and ephemeral:

import tempfile
# Create a temporary file
temp_file = tempfile.NamedTemporaryFile(delete=False)
print(temp_file.name)
# Erect a temporary directory
temp_dir = tempfile.TemporaryDirectory()
print(temp_dir.name)

10. Getting System Information

To unveil information about the host system, its name, and the enchantments it supports:

import os
import platform
# Discover the operating system
os_name = os.name  # 'posix', 'nt', 'java'
# Unearth detailed system information
system_info = platform.system()  # 'Linux', 'Windows', 'Darwin'

 

 
반응형

+ Recent posts