Skip to content

Instantly share code, notes, and snippets.

@hiddentribe
hiddentribe / README.md
Created April 18, 2018 17:26 — forked from nalgeon/README.md
Пример вызова Подсказок DaData.ru из Excel

Как подключить пример

  1. Откройте Excel и включите отображение вкладки «Разработчик»
  2. Перейдите в редактор Visual Basic (в ленте Разработчик > Visual Basic).
  3. Откройте список ссылок: в меню Tools > References...
  4. Отметьте пункты «Microsoft Scripting Runtime» и «Microsoft VBScript Regular Expressions 5.5».
  5. Нажмите OK.
  6. Откройте модуль Лист1.
  7. Скопируйте код из примера в модуль.
  8. Замените значение константы API_KEY с CHANGE_ME на ваш API-ключ.
@hiddentribe
hiddentribe / main.py
Created April 16, 2018 05:28 — forked from d-Rickyy-b/main.py
Introduction to bot programming
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Source: https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/echobot2.py"""
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
import logging
# Enable logging
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
<html>
<head>
<title>API Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
var accessToken = "<your agent's client access token>";
var baseUrl = "https://api.api.ai/v1/";

Google Calendar Webohooks

Unsplash

@hiddentribe
hiddentribe / Apps.md
Created December 23, 2017 12:44 — forked from vutran/Apps.md
node, npm, git, cmder, and other nifty portable apps (for Windows)

Bookmark Taxonomy 📚

Personal taxonomy for organizing bookmarks by category.

Organizational scheme

A-Z Character Sequence

  • ⭐ Bookmarks
@hiddentribe
hiddentribe / README-Template.md
Created June 21, 2017 19:51
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@hiddentribe
hiddentribe / jsbin.caqabog.js
Created June 11, 2017 00:35 — forked from Ncreshon/jsbin.caqabog.js
JS Bin[Datatypes (Simple & Complex)]// source https://jsbin.com/caqabog
/* Datatypes (Simple & Complex):
*Datatypes are classified as either simple or complex. Simple datatypes
*include numbers, string, Boolean, NaN, undefined, and null. They are
*immutable they don't hold a value, They return simple values and don't
*change the original value. They only take up a limited amount of space. They are
* stored by value.
*Complex datatypes consist of arrays, objects, and funtions.
*They aggregate other values. They hold an indefinite space od memory. They are
*copied by value.
* Number