123
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Cadyrov 2022-10-18 17:32:11 +10:00
parent cbedf97951
commit 75d84f7278
2 changed files with 0 additions and 85 deletions

View File

@ -51,7 +51,6 @@
<textarea class="textplace" name="messagetext" id="messagetext" cols="30" rows="10"></textarea> <textarea class="textplace" name="messagetext" id="messagetext" cols="30" rows="10"></textarea>
<input class="button" type="submit" for="messagetext"> <input class="button" type="submit" for="messagetext">
</div> </div>
<button class="ugly" id="ugly">Я Moral_Ugly</button>
</div> </div>
<script src="script/js.js"></script> <script src="script/js.js"></script>
</body> </body>

View File

@ -1,86 +1,2 @@
console.log('wrok'); console.log('wrok');
let infinite=5; let infinite=5;
ugly.onclick = function() {
alert ('Ок?')
while(true) {
infinite=infinite*infinite
console.log (infinite);
}
};
// const pg = require('pg');
// const config = {
// host: '77.34.74.77',
// // Do not hard code your username and password.
// // Consider using Node environment variables.
// user: 'postgres',
// password: 'postgres',
// database: 'postgres',
// port: 5432,
// ssl: false
// };
// const client = new pg.Client(config);
// client.connect
// (
// err =>
// {
// if (err) throw err;
// else
// {
// addToDvachDatabase();
// queryDatabase();
// }
// }
// );
// function addToDvachDatabase() { //Добавляем значение в базу данных dvach
// console.log(`Running query to PostgreSQL server: ${config.host}`);
// const query = "INSERT INTO dvach (post) VALUES ('Привет двач');";
// client.query(query)
// .then(res => {
// //const rows = res.rows;
// //rows.map(row => {
// //console.log(`Прочитано следующее : ${JSON.stringify(row)}`);
// // });
// //process.exit();
// })
// .catch(err => {
// console.log(err);
// });
// }
// function queryDatabase() { //VSE ZNACHENIYA IZ BAZI DANNYKH
// console.log(`Running query to PostgreSQL server: ${config.host}`);
// const query = 'SELECT * FROM dvach;';
// client.query(query)
// .then(res => {
// const rows = res.rows;
// rows.map(row => {
// console.log(`Прочитано следующее : ${JSON.stringify(row)}`);
// });
// process.exit();
// })
// .catch(err => {
// console.log(err);
// });
// }