카테고리 없음2023. 7. 29. 12:11
반응형

I'm    gonna  swing   from the chan-de-lier    from the chan-de-lier
e|---------------------------------------------------------------------------|
Chord diagramBB|---------------------------------------------------------------------------|
Chord diagramG+G|---------------------------------------------------------------12---11-----|
Chord diagramD MajorD|--12~---12-9-12--11~-----9----------------12~----10---9--11-12-------------|
Chord diagramA augmentedA|---------------------------12-------10-12----------------------------------|
Chord diagramE MajorE|---------------------------------13----------------------------------------|

   I'm    gonna   live   like tomorrow   doesn't exist  like it  doesn't ex-ist
e|---------------------------------------------------------------------------------|
Chord diagramBB|---------------------------------------------------------------------------------|
Chord diagramG+G|---------------------------------------------------------------------12---11-----|
Chord diagramD MajorD|--12~---9-12-----11~-----9-9--------------------12~----10---9--11-12-------------|
Chord diagramA augmentedA|-----------------------------12-12--------10-12----------------------------------|
Chord diagramE MajorE|---------------------------------------13----------------------------------------|
   I'm    gonna   fly    like a  bird through the night feel my  tears as they dry*
e|---------------------------------------------------------------------------------|
Chord diagramBB|---------------------------------------------------------------------------------|
Chord diagramG+G|-----------------9---------9------11--11---9----7---------------11--11---9---7/--|
Chord diagramD MajorD|--12~---12-9-12---------12-----------------------------9--7--~-------------------|
Chord diagramA augmentedA|---------------------------------------------------------------------------------|
Chord diagramE MajorE|---------------------------------------------------------------------------------|

   I'm    gonna  swing   from the chan-de-lier    from the chan-de-lier
e|---------------------------------------------------------------------------|
Chord diagramBB|---------------------------------------------------------------------------|
Chord diagramG+G|---------------------------------------------------------------12---11-----|
Chord diagramD MajorD|--12~---12-9-12--11~-----9----------------12~----10---9--11-12-------------|
Chord diagramA augmentedA|---------------------------12-------10-12----------------------------------|
Chord diagramE MajorE|---------------------------------13----------------------------------------|

반응형
Posted by Dream Come True
카테고리 없음2023. 6. 21. 20:16
반응형

 

 

 

https://poe.ninja/builds/challenge/character/%eb%bd%80%eb%a1%9c%eb%a1%9c%ec%95%bc/loiol_B?i=0&search=name%3Dloiol

반응형
Posted by Dream Come True
카테고리 없음2023. 6. 16. 23:52
반응형

guitar_record 2023-04-22 1532.mp3
5.41MB

사랑의 썰물 기타연주..

노래방 연주 반주에  기타 연주 해봤습니다.

 

 

반응형
Posted by Dream Come True
카테고리 없음2023. 6. 16. 00:55
반응형
#!/usr/bin/env python3
from tkinter import *
import subprocess
import os

root = Tk()
root.title("리눅스 POE 게임 스타터")
root.geometry("800x200+500+1500")

def exit_windows():
root.destroy()

txt = Text(root, width=160, height=10)
txt.pack()
scr_txt1 = txt.pack()
# print("srctxt",scr_txt1)

def write_text():
scr_txt2= txt.get("1.0","end")
result = scr_txt2[24:]
result = "nohup python3 "+"./fakeDaumgameStarter22.py "+"'daumgamestarter://"+result+"'"+">/dev/null 2>&1"
print("입력받은 텍스트",result)
# os.system('cd')
# os.system('pwd')
os.system(result)
exit_windows()

btn = Button(root, text="게임시작",command=write_text)
btn2 = Button(root, text="EXIT",command=exit_windows)

btn.pack()
btn2.pack()

root.mainloop()

반응형
Posted by Dream Come True