본문 바로가기

분류 전체보기475

자동차 소모품 교환주기 (폭스바겐) 엔진 오일/필터 가솔린 매 1년 또는 15,000km 디젤 매 2년 또는 30,000km (미국형 Passat TDI는 매 1년 또는 15,000km 적용) ※ 계기판에 서비스 알림등 점등 시 조기 교환 필요 에어컨 필터 매 2년 또는 60,000km (Polo 모델은 매 2년 또는 30,000km 적용) ※ 단, 오염상태에 따라서 조기 교환 권장 에어 클리너 매 6년 또는 90,000km (Polo 모델은 매 4년 또는 60,000km 적용) ※ 단, 오염상태에 따라서 조기 교환 권장 브레이크 오일 최초 3년, 이후 매 2년 디젤 연료 필터 매 90,000km (Polo 모델은 매 4년 또는 60,000km 적용) 스파크 플러그(가솔린모델) 매 4년 또는 60,000km (V6엔진 모델은 매 6년 90.. 2020. 11. 24.
underscore to camel case notation # underscore to camel case notation Regex: _([a-z0-9]) Replace with: \U$1 // BEFORE: db_column_name // AFTER: dbColumnName # camel case to underscore notation editplus 찾을말 : ([a-z])([A-Z]+) 바꿀말 : $1_$2 # 출처: https://czar.tistory.com/1040 [너는 개발자냐?] 2020. 11. 21.
주차 단속 구역. 앞으로 경기지역 버스정류장 횡단보도 소화전 주변 등에 1분 이상 주차하면 과태료를 물게 된다. 경기도는 불법 주ㆍ정차 근절을 위해 행정안전부와 함께 17일부터 이런 내용을 담은 '불법 주정차 주민신고제'를 시행한다고 17일 밝혔다. 대상 구역은 ▲ 소화전 5m 이내 ▲ 교차로 모퉁이 5m 이내 ▲ 버스정류소 10m 이내 ▲ 횡단보도 정지선 침범 등 4곳이다. 2020. 11. 19.
광명3동 음식점 저녁시간 주차 단속 유예 요청. 2020. 11. 11.
Editplus replace lowercase case with uppercase The following works in Edit Plus 3.70. Enter or check the following in the replace dialog. Find what: (\w+)_([[:lower:]]{1})(\w*) Replace with: \1\U\2\E\3 Case sensitive: unchecked Regular expression: checked Support \U \L \E: checked This works fine for the example given. If you have a variable such as has_three_words then running the replace twice will convert the variable to hasThreeWords. 2020. 11. 6.
mysql 말아먹었을경우 root 권한 재부여 # 안전모드로 mysql 실행 mysqld --datadir="C:/ProgramData/MySQL/MySQL Server 8.0/Data" --console --skip-grant-tables --shared-memory mysql -u root use mysql update user set Select_priv = 'Y', Insert_priv = 'Y', Update_priv = 'Y', Delete_priv = 'Y', Create_priv = 'Y', Drop_priv = 'Y', Reload_priv = 'Y', Shutdown_priv = 'Y', Process_priv = 'Y', File_priv = 'Y', Grant_priv = 'Y', References_priv = 'Y', Ind.. 2020. 10. 6.