No Image

Announcing Windows 10 Insider Preview Build 17133 for Fast

2018-03-28 KENNETH 0

Announcing Windows 10 Insider Preview Build 17133 for Fast Hello Windows Insiders! Today, we are releasing Windows 10 Insider Preview Build 17133 (RS4) to Windows Insiders in the Fast ring. Just like in Build 17128, you will also notice that the watermark at the lower right-hand corner of the desktop has disappeared in Build 17133. Again, we are in the phase of checking in final code to prepare for the final release. General changes, improvements, and fixes for PC We fixed an issue resulting in certain devices with BitLocker enabled unexpectedly booting into BitLocker recovery in recent flights. We fixed an issue resulting in not being able to change the display resolution when there were 4 or more monitors connected, due to the confirmation prompt hanging when you selected “Keep changes”. We fixed an issue where clicking suggested search terms [ more… ]

[도서] 컴퓨터기초_컴퓨터영재만들기 (STEP2)

2018-03-27 KENNETH 0

[도서] 컴퓨터기초_컴퓨터영재만들기 (STEP2) 분야별 신상품 – 국내도서 – 컴퓨터와 인터넷 [도서]컴퓨터기초_컴퓨터영재만들기 (STEP2) 씨엔씨에듀 R&D팀 저 | 씨엔씨에듀 | 2018년 04월 판매가 8,100원 (10%할인) | YES포인트 450원(5%지급) 컴퓨터를 활용하는 윈도우 기능과 파워포인트 기능을 쉽고 재미있게 익혀요! 이 책은 어렵게 느끼는 윈도우 기능과 파워포인트 기능을 쉽게 익 힐 수 있는 도서이며, 기능을 미션수행을 통해 재미있게 익히고 혼 Source: [도서] 컴퓨터기초_컴퓨터영재만들기 (STEP2)

No Image

USN-3608-1: Zsh vulnerabilities

2018-03-27 KENNETH 0

USN-3608-1: Zsh vulnerabilities zsh vulnerabilities A security issue affects these releases of Ubuntu and its derivatives: Ubuntu 17.10 Ubuntu 16.04 LTS Ubuntu 14.04 LTS Summary Several security issues were fixed in Zsh. Software Description zsh – shell with lots of features Details Richard Maciel Costa discovered that Zsh incorrectly handled certain inputs. An attacker could possibly use this to cause a denial of service. (CVE-2018-1071) It was discovered that Zsh incorrectly handled certain files. An attacker could possibly use this to execute arbitrary code. (CVE-2018-1083) Update instructions The problem can be corrected by updating your system to the following package versions: Ubuntu 17.10 zsh – 5.2-5ubuntu1.2 Ubuntu 16.04 LTS zsh – 5.1.1-1ubuntu2.2 Ubuntu 14.04 LTS zsh – 5.0.2-3ubuntu6.2 To update your system, please follow these instructions: https://wiki.ubuntu.com/Security/Upgrades. After a standard system update you need to restart Zsh to make all [ more… ]

No Image

RHBA-2018:0597-1: tzdata enhancement update

2018-03-27 KENNETH 0

RHBA-2018:0597-1: tzdata enhancement update Red Hat Enterprise Linux: Updated tzdata packages that add various enhancements are now available for Red Hat Enterprise Linux 5.9 Advanced Update Support, Red Hat Enterprise Linux 5 Extended Life Cycle Support, Red Hat Enterprise Linux 6.2 Advanced Update Support, Red Hat Enterprise Linux 6.4 Advanced Update Support, Red Hat Enterprise Linux 6.5 Advanced Update Support, Red Hat Enterprise Linux 6.6 Advanced Update Support, Red Hat Enterprise Linux 6.6 Telco Extended Update Support, Red Hat Enterprise Linux 6.7 Extended Update Support, Red Hat Enterprise Linux 6, Red Hat Enterprise Linux 7.2 Advanced Update Support, Red Hat Enterprise Linux 7.2 Update Services for SAP Solutions, Red Hat Enterprise Linux 7.2 Telco Extended Update Support, Red Hat Enterprise Linux 7.3 Extended Update Support, and Red Hat Enterprise Linux 7. Source: RHBA-2018:0597-1: tzdata enhancement update

No Image

[python] 현재 실행중인 함수 이름 구하기 (sys._getframe().f_code.co_name)

2018-03-27 KENNETH 0

파이썬 함수 내에서 현재 실행중인 함수 이름 구하기 함수를 실행중에 “오류(예외)”를 만날 수 있으므로 로그를 남기고… 남기는 로그 형식은 “[함수이름] 에러 내용” 형태로 기록 되도록 처리 했음 함수내에 일일이 함수이름을 “직접 입력” 했었는데.. 아무리 생각해도 비효율적인 것 같다는 생각이 듬 그래서 찾아보니 방법이 있긴 있음 filename : get_func_name.py   실행결과 # ./get_func_name.py The current running function name : ilaya1   이렇게 되면 더이상 함수이름을 직접 입력하는 번거로움을 덜 수 있겠군….