Skip to content

Instantly share code, notes, and snippets.

View wyster's full-sized avatar

Illia Zelenin wyster

  • Bolzano, Italy
View GitHub Profile
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
@wyster
wyster / smartagent.pub
Last active December 4, 2020 19:55
Актуальные ключи всех программистов
# 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
<?php declare(strict_types=1);
/**
@deprecated, актуальная версия в репозитории https://github.com/wyster/funpay-test
**/
$messages = [
1 => <<<TEXT
Пароль: 7740
Спишется 234,18р.
Перевод на счет 41001247739481
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));
// 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",
@wyster
wyster / jQueryTriggerCMSFormResult.js
Last active January 3, 2016 05:39
CMS jQuery tiggers
/**
* @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
*/