본문 바로가기

분류 전체보기473

주차 단속 구역. 앞으로 경기지역 버스정류장 횡단보도 소화전 주변 등에 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.
에어컨 구매 체크리스트 진공작업 - 아는게 없어서 정리. ## 0. 벽걸이형 에어컨을 사려고 하는데.. 아는게 없어서 정리해봄. 1. 평형 및 형태 선택 : 6 ~ 7 평형 벽걸이형 에어컨 2. 제조사 선정 : 엘지전자 3. 판매자와, 설치자가 다르다. - 설치과정에 발생하는 비용이 많음 진공작업 여부 판단 기준 0.5 torr( 500 Microns Of Mercury to Torrs = 0.5)이하. - 타공 : 전선매립된것 주의해서 타공해야함. - 진공 : 꼭해애함 - 배관연장 : 5m까지 기본설치비 포함, 추가 1m당 1만5천원 - 배수펌프 : 7만원~ - 앵글: 10만원~ - 앵글설치비: 3만원 ### 진공작업이란? - 에어컨 설치 후반에 동관을 실외기와 실내기에 모두 연결한 후, 기계를 이용해 관속에 있는 공기를 빼주는 작업. - 에어컨이면 어떤 형.. 2020. 8. 11.
Dot Progress Bar For Android #### Dot Progress Bar - [Github](https://android-arsenal.com/details/1/3340) #### Gradle ``` compile 'com.github.silvestrpredko:dot-progress-bar:1.1' ``` #### XML ```xml ``` #### Code ``` dotProgressBar.setStartColor(startColor); dotProgressBar.setEndColor(endColor); dotProgressBar.setDotAmount(amount); dotProgressBar.setAnimationTime(time); // or you can use builder new DotProgressBarBuilder(th.. 2020. 8. 10.