Да блять я пишу охуенных размеров бессмысленный коммит просто охуеть блять ебануться
This commit is contained in:
parent
5ff2f09a62
commit
7c20410c2b
@ -25,6 +25,7 @@
|
|||||||
<button type="submit" for="forviktor">SEND</button>
|
<button type="submit" for="forviktor">SEND</button>
|
||||||
</form>
|
</form>
|
||||||
</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>
|
||||||
|
128
script/js.js
128
script/js.js
@ -1,70 +1,86 @@
|
|||||||
console.log('wrok');
|
console.log('wrok');
|
||||||
const pg = require('pg');
|
let infinite=5;
|
||||||
|
ugly.onclick = function() {
|
||||||
const config = {
|
alert ('Ок?')
|
||||||
host: '77.34.74.77',
|
while(true) {
|
||||||
// Do not hard code your username and password.
|
infinite=infinite*infinite
|
||||||
// Consider using Node environment variables.
|
console.log (infinite);
|
||||||
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 pg = require('pg');
|
||||||
|
|
||||||
const query = 'SELECT * FROM dvach;';
|
// 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
|
||||||
|
// };
|
||||||
|
|
||||||
client.query(query)
|
// const client = new pg.Client(config);
|
||||||
.then(res => {
|
|
||||||
const rows = res.rows;
|
|
||||||
|
|
||||||
rows.map(row => {
|
// client.connect
|
||||||
console.log(`Прочитано следующее : ${JSON.stringify(row)}`);
|
// (
|
||||||
});
|
// err =>
|
||||||
|
// {
|
||||||
|
// if (err) throw err;
|
||||||
|
// else
|
||||||
|
// {
|
||||||
|
// addToDvachDatabase();
|
||||||
|
// queryDatabase();
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// );
|
||||||
|
|
||||||
process.exit();
|
// function addToDvachDatabase() { //Добавляем значение в базу данных dvach
|
||||||
})
|
|
||||||
.catch(err => {
|
// console.log(`Running query to PostgreSQL server: ${config.host}`);
|
||||||
console.log(err);
|
|
||||||
});
|
// 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);
|
||||||
|
// });
|
||||||
|
// }
|
@ -55,3 +55,15 @@ h1 {
|
|||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
.ugly {
|
||||||
|
display: block;
|
||||||
|
width: 500px;
|
||||||
|
padding-top: 30px;
|
||||||
|
padding-bottom: 30px;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
background-color: chartreuse;
|
||||||
|
}
|
||||||
|
.ugly:hover {
|
||||||
|
background-color: darkgoldenrod;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user