This file contains 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; |
This file contains 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 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 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 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 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. |