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
id first_name last_name email gender ip_address | |
1 Shurlock Martino [email protected] Male 161.194.42.16 | |
2 Christalle Ferronet [email protected] Female 215.60.54.1 | |
3 Brenna Keilty [email protected] Female 175.17.239.172 | |
4 Archibold MacGillreich [email protected] Male 0.61.218.195 | |
5 Hunfredo Perot [email protected] Male 23.117.38.28 | |
6 Gustave Killeen [email protected] Male 58.84.221.157 | |
7 Bayard Hurling [email protected] Male 47.1.212.146 | |
8 Sheelagh De Few [email protected] Female 194.93.217.0 | |
9 Constantin Tacey [email protected] Male 136.127.125.222 |
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 urls = ` | |
https://yandex.ru/ | |
https://google.com/ | |
https://mail.yandex.ru/ | |
`; | |
const urlsList = urls.split("\n"); | |
document.querySelectorAll('a').forEach(function(item) { | |
if (urls.includes(item.getAttribute('href'))) { |
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
# Dmitrii Gaidabura | |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCWc76pqIyJgkiHdkerCNKvIO9MZC8DRTqw6jR1c/oQf0y+YthqiZQyzA6FhDvoZljmvPg/FQ26bun8wNPAQ5Z3XGGH/eb6N27vV2FcKfowt3J7FlNErK24mcm1zdHYgvcyNNPjBXF9F2+g3wfjRNPNLeeF1TL8tvWIuDGdxuNxDIv8fF9NrKuW7z3VaM2McxLBCZp9OZubiVF3lsxW2TH/6ea2AvFu/iJd6+aaCbUpXL0NT/80r20OcTj5v/9QcmSd5wy4h1c1TV64iihcU5fYk3+JfnPLiqElBP62iAWeZ+VGMpUjbwN0UkuS+nCYhLmH0WDq4N60RG0SEX6aKRJf | |
# Illia Zelenin | |
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEA4qCI8rjXWBIPk5fKtAQiL6wt7qHa7d1W11cmFy4gso812Kt64aXIdA/UPoKx+v1VukJ+cKnjacn3JUrQi7tRAZLZSZkH2d/TBJ8vf8I5MqenNdoYaqn3z5+M2wnrXmpbn3I+lOKzp3ux/Q8HkTPSElbW7W1wF8PlQgjjKnhB80z0LeCUiau//SRZ0jQxuorEjKgHEYzHkBdxbW9nsHUMrwkSZIEx0rb2mWqG0M8zifIXdiwduGUG3IijixmsPGYLCCkVGn/NG8hd5Oi/GT0PVsvSrkGUU7FMjg6qAY6uOPTi761QF5LaZx4Su8v/IACSQaYyoG1J/tlXfb0XH8XU7w== | |
# Vladimir Sinitskii | |
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAmwkl/WTOAuNnkM0jJUMazRP4YxTbrfHk1TWypcKIGb1M1E2l+ibIaATW6zI6InNYe3H5LdaQVJv9iuqaB7y0m11PSqL4t2U7t6KLrqpxUYCXxIuhNROXxbYKfES9IlxDLWQ/2oCOxPjw1jnEj+ScUb/Zk375rISP/TefXhijd |
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
<?php declare(strict_types=1); | |
/** | |
@deprecated, актуальная версия в репозитории https://github.com/wyster/funpay-test | |
**/ | |
$messages = [ | |
1 => <<<TEXT | |
Пароль: 7740 | |
Спишется 234,18р. | |
Перевод на счет 41001247739481 |
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
function priceFormatter(priceText) { | |
"use strict"; | |
priceText = priceText.replace('.', '').trim(); | |
priceText = priceText.replace(',', '.').trim(); | |
const re = /(\D*)(.*)/; | |
const result = re.exec(priceText); | |
var price = parseFloat(parseFloat(result[2]).toFixed(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
// Simple script that exports a users "Saved For Later" list out of Feedly | |
// as a JSON string. | |
// | |
// This was intended for use in the Google Chrome's "Inspector" tool so your | |
// mileage may vary if used in other contexts. | |
// | |
// Format of JSON is as follows: | |
// [ | |
// { | |
// title: "Title", |
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
/** | |
* @type {string} form identifier | |
*/ | |
var form = '#mainform'; | |
(function($) { | |
/** | |
* @param {object} event - jQuery Event Object (http://api.jquery.com/category/events/event-object/) | |
* @param {object} result | |
*/ |