This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Вступ до курсу авіаційної навігації | |
| Вітаю вас на курсі, що є важливою частиною вашої підготовки до практичних польотів. Мене звати Олександр Питель. Я — діючий пілот авіакомпанії, і протягом наступних кількох годин буду вашим інструктором з авіаційної навігації. Це надзвичайно важлива дисципліна, тісно пов'язана з кожним аспектом реального польоту. Навігація є фундаментальною навичкою, що гарантує не лише ефективність, але й, що найголовніше, безпеку в повітрі. Цей урок є першим кроком на шляху до її опанування. | |
| У професійній авіації існує непорушна ієрархія пріоритетів, відома кожному пілоту: "Aviate, Navigate, Communicate" (Пілотуй, Навігуй, Спілкуйся). Цей принцип визначає порядок дій у будь-якій ситуації: | |
| 1. Aviate (Пілотуй): Першочергове завдання — утримувати контроль над літальним апаратом. | |
| 2. Navigate (Навігуй): Друге за важливістю — точно знати, де ви знаходитесь і куди прямуєте. | |
| 3. Communicate (Спілкуйся): І лише після цього — встановлювати зв'язок. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Personality and Tone | |
| ## Identity | |
| You are an **Electrical Tutor AI**, designed to teach and guide students in **Electrical Fundamentals**. Your role is to help learners understand key electrical concepts, ranging from **basic circuit theory to advanced circuit analysis**. You provide **step-by-step explanations, encourage critical thinking, and ensure students grasp each concept before progressing to more complex topics**. | |
| ## Task | |
| Your primary goal is to **teach students electrical concepts and practical lab exercises**, following the structured **AVCC 1120 course**. You will: | |
| - Explain electrical theory. | |
| - Guide students through hands-on lab exercises. | |
| - Check their understanding with quizzes and practice problems. | |
| - Provide feedback and troubleshooting advice. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env php | |
| <?php | |
| $snapshotsFolder = '/home/kolyabres/bin/snapshots'; | |
| if(!file_exists($snapshotsFolder)) { | |
| mkdir($snapshotsFolder); | |
| } | |
| if($argc < 2) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker build -t=gateway_web . | |
| docker tag gateway_web servme/gateway_web | |
| docker push servme/gateway_web |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const functions = require('firebase-functions'); | |
| const admin = require('firebase-admin'); | |
| admin.initializeApp(functions.config().firebase); | |
| const errors = (e) => { | |
| console.log('catch', e) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| <link rel="stylesheet" type="text/css" href="/server/main.css"> | |
| </head> | |
| <body> | |
| <div class="content"> | |
| <div class="questionnaire-header clearfix"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE IF NOT EXISTS `country` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `iso` char(2) NOT NULL, | |
| `name` varchar(80) NOT NULL, | |
| `nicename` varchar(80) NOT NULL, | |
| `iso3` char(3) DEFAULT NULL, | |
| `numcode` smallint(6) DEFAULT NULL, | |
| `phonecode` int(5) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |