Travel around the world

Adobe Creek Homeowners Association, water leak report 02/25/2024

Adobe Creek Homeowners Association - Community Management Services
278 Monroe Dr. Mountain View CA 94040

The story

On February 25, 2024, at 4 p.m., we observed water on the first floor of our property. The water came from our adjacent Unit #18. With the help of another neighbour from Unit #17, we shut off the main water valve for Unit #18 to stop the water flow. The Unit #18 was under remodeling at that time, and the valves were closed because of work on the water pipes inside the unit. Someone from HOA garden workers opened public valve for Unit #18 causing the flooding in the unit that spreaded to the adjacent units.
We received permission from the owner of the the Unit#18 to gain access inside. I shut off the electrical breakers.

Read more ...

How to Create and enforce Github branch protection rules for Organization. Best Practice

git branches

We are going to enforce the Git Best Practice branch's protection rules and recommendaions for GitHub Organization repositories.

Also we will automate a proces of adding and updating teams and branch protection rules to GitHub Organization repository.

There is the same way to apply branch protection and recommendaions to private (non-organization GitHub repositories but you need to modify the automation scipts). Also some options are not available for non-organization GitHub repositories.

 

 

 

 

Read more ...

Joshua Tree National park.

Национальный парк Joshua TreeAnd once again, we make our journrey with friends, to Joshua Tree National Park

We make our way down here every year, on the last weekend of May, so that we can experience the desert heat, rock climb on real rocks, take some time away from work, and spend our time with good people. On this trip, our whole family came, along with Boris, Natasha, Yulia, Victor Zybin, Kirk + Caren, Gina + Steven, Mónica + Nuno, Brian, Maya + Steve (this is so I don't forget). 
What is Joshua Tree National Park? This is a part of the top of the Mojave Desert - a plateau resting at 1200 meters above sea level, with the temperature lower by 5-10 C, than in the lower part of Mojave Desert. 

What is the Mojave Desert. It is a small desert in North America, where many Hollywood movies were filmed. So, if you see a Hollywood movie with a desert, moon, The Martian - then it was in the Mojave Desert, since Los Angeles and Hollywood are only a one hour drive away. Top Gun was also filmed here. 

Read more ...

jenkins_new_0

Как подключить Windows к Jenkins? Как настроить Windows slave node on Jenkins. Есть известная проблема с подключением Windows агента к Jenkins, поэтому используем Java с установкой его в автозагрузку. Работает отлично и стабильно если все сделать по инструкции ниже. Инструкция по английски, но все предельно понятно. Если что не понятно - пишите.

1. Create, activate and update a new Windows VM (если это VM) 

2. Create a local user “jenkins” with password “jenkins”. 

3. Disable password policy (optional): start > type Local security policy > Account Polices > password policy > Meet complexity = disable) 

4. Setup user's auto login. Run command “netplwiz”, uncheck checkbox, select user “jenkins” and apply changes, enter password “jenkins” two times 

5. Setup time sync server time.domain.com (локальный сервер времени - желательно чтобы Jenkins сервер использовал тот же сервер для синхронизации времени) 

6 .Отключаем котроль подтверждения операций для установки приложений. Go to startup menu, and enter UAC - “Users Account Control Settings”. Turn the slider to down - OFF in the window that pops up. This will disable UAC warnings. (windows 10/2012 - http://winaero.com/blog/how-to-turn-off-and-disable-uac-in-windows-10/) 

Download and install: 

1. Java 

2. Git https://git-scm.com/download, 

3. Install Git, select “3-th” option in a first window 

Create folder C:\jenkins 

Create empty bat file C:\jenkins\start_agent.bat 

Add shortcut (ярлык) to Startup folder: 

login as jenkins, create shortcut for C:\jenkins\start_agent.bat on Desktop, 

run shell:startup, paste shortcut in opened folder. 

Setup Git - настройки зависят от вашего Git, здась пример с авторизацией по ключу. 

Run cmd and copy/paste code below: 

git config --global user.name "Jenkins" 

git config --global user.email "This email address is being protected from spambots. You need JavaScript enabled to view it.

ssh-keygen -t rsa -C "This email address is being protected from spambots. You need JavaScript enabled to view it." (don't enter password) 

Copy content from file %username%/.ssh/id_rsa.pub and paste as a key in http://local-gerrit.com for user jenkins 

При необходимости - Create a file in folder %username%/.ssh/config 

Hostname local-gerrit.com (ваш git)

Port 29418 (порт на катором отвеяает ваш git)

User jenkins 

Test an ability to clone repository 

git clone ssh://This email address is being protected from spambots. You need JavaScript enabled to view it.:29418/project 

On Jenkins server - create a new node on Jenkins as “Dumb Slave”. 

Choose “Launch slave agents via Java Web Start” 

Copy command with particular -secret key 

Open C:\jenkins\start_agent.bat and paste command with particular key: 

Net start w32time 

w32tm /resync 

cd c:\jenkins 

start /min java -jar slave.jar -jnlpUrl http://jenkins.domain.com/computer/node-name/slave-agent.jnlp -secret qwerty12

Рестарт Windows.

Все. Если Нода активна, можете запускать на ней работу.

Add comment


Security code
Refresh