Skip to content

Instantly share code, notes, and snippets.

View vkdg's full-sized avatar
🧭
stay tuned

Denis M vkdg

🧭
stay tuned
  • Sinergium, G2R Company LTD., Brandomatic and Others
  • Earth, Eastern Europe
View GitHub Profile
<?php
define('BOT_TOKEN', 'XXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXX'); // place bot token of your bot here
function checkTelegramAuthorization($auth_data) {
$check_hash = $auth_data['hash'];
unset($auth_data['hash']);
$data_check_arr = [];
foreach ($auth_data as $key => $value) {
$data_check_arr[] = $key . '=' . $value;
@vkdg
vkdg / emoji.js
Created September 2, 2016 05:22 — forked from derekr/emoji.js
emoji.js
;(function() {
function emoji(){}
// settings
emoji.img_path = 'emoji/';
emoji.sheet_path = 'sheet_64.png';
emoji.use_css_imgs = false;
emoji.text_mode = false;
emoji.include_title = false;