Skip to content

Instantly share code, notes, and snippets.

@absent1706
absent1706 / conftest.py
Last active April 23, 2017 10:44
pytest session fixture. run as 'pytest . -s -v'. Output will be http://www.qopy.me/CIuVG0i6QsaFy5dsIKRBKA
from __future__ import print_function
# import unittest
import pytest
@pytest.fixture(scope='session')
def selenium(request):
print('BEGIN fixture')
request.addfinalizer(lambda: print('END fixture'))
return 123
STACKDRIVER_ERROR_FILE = '/var/log/app_engine/custom_logs/errors.log.json'
def log_stackdriver_err(request=None, exception=None, user=None):
'''
send error to StackDriver Error Reporting service
see https://cloud.google.com/error-reporting/docs/setup/app-engine-flexible-environment
'''
def make_path_to_file(filename):
if not os.path.exists(os.path.dirname(filename)):
@absent1706
absent1706 / gulpfile.js
Created March 26, 2017 15:25
knowstory-gulpfile-livereload
var gulp = require('gulp');
var less = require('gulp-less');
var watch = require('gulp-watch');
// var util = require("gulp-util");
const notifier = require('node-notifier');
var path = require('path');
var combiner = require('stream-combiner2');
var browserSync = require('browser-sync').create();
gulp.task('_less', function(){
@absent1706
absent1706 / smartquery.py
Last active July 17, 2020 13:23
sqlalchemy django-like smart query simple example
# -*- coding: UTF-8 -*-
from __future__ import print_function
import os
import datetime
import sqlalchemy as sa
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import Query, scoped_session, sessionmaker
[distutils]
index-servers =
pypi
pypitest
[pypi]
repository=https://pypi.python.org/pypi
username=litvinenko1706
password=!!!!!
@absent1706
absent1706 / test.py
Created March 13, 2017 19:58
run all python tests (unittest discover) programmatically
import os
import unittest
loader = unittest.TestLoader()
tests = loader.discover(os.path.join(os.path.dirname(__file__),
'sqlalchemy_mixins'))
testRunner = unittest.runner.TextTestRunner()
testRunner.run(tests)
from oauth2client import client, crypt
# (Receive token by HTTPS POST)
token = 'eyJhbGciOiJSUzI1NiIsImtpZCI6ImQyYzQ4YmFkMzAwMjBhY2U4MzBlZDkzYmQ4MWMzMjhkYzY4NTFhOTMifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJpYXQiOjE0ODc0MTc5ODEsImV4cCI6MTQ4NzQyMTU4MSwiYXRfaGFzaCI6IkIyYkJWU2d1M0tkOHdxT1p5NnN4Z3ciLCJhdWQiOiI1ODE3ODY2NTg3MDgtZWxmbGFua2VycXVvMWE2dnNja2FiYmhuMjVoY2xsYTAuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDcwMzQzNjY2NTEwMjUwMzAwMDAiLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXpwIjoiNTgxNzg2NjU4NzA4LWVsZmxhbmtlcnF1bzFhNnZzY2thYmJobjI1aGNsbGEwLmFwcHMuZ29vZ2xldXNlcmNvbnRlbnQuY29tIiwiZW1haWwiOiJsaXR2aW5lbmtvMTcwNkBnbWFpbC5jb20iLCJuYW1lIjoi0JDQu9C10LrRgdCw0L3QtNGAINCb0LjRgtCy0LjQvdC10L3QutC-IiwicGljdHVyZSI6Imh0dHBzOi8vbGg0Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8tME9hYkNoaHZMU1kvQUFBQUFBQUFBQUkvQUFBQUFBQUFBLU0vUkFhaHlTaUE2aGsvczk2LWMvcGhvdG8uanBnIiwiZ2l2ZW5fbmFtZSI6ItCQ0LvQtdC60YHQsNC90LTRgCIsImZhbWlseV9uYW1lIjoi0JvQuNGC0LLQuNC90LXQvdC60L4iLCJsb2NhbGUiOiJydS1VQSJ9.LrL5ji_j-oX9Lh78TsoyJXzSQfUaQ3elxg8GOrsHwURxMAY7lbo
@absent1706
absent1706 / index.html
Last active February 20, 2017 00:03
'SignIn with Google' button from https://developers.google.com/identity/sign-in/web/ with ready-to-go credentials
<!--
See https://developers.google.com/identity/sign-in/web/
for description and setup instructions
Key setup steps:
1. get client ID and API KEY http://www.qopy.me/0yILY0U8TD6kZ0ilhhoIAA
2. run HTTP server in folder where index.html lays.
I.g. PHP server:
php -S php -S 0.0.0.0:5000
or this server (just EXE) http://www.zachsaw.com/?pg=quickphp_php_tester_debugger
@absent1706
absent1706 / index.html
Last active February 19, 2017 23:55
Oauth2
<!--
See https://developers.google.com/api-client-library/javascript/samples/samples#authorizing-and-making-authorized-requests
for description and setup instructions
Key setup steps:
1. get client ID and API KEY http://www.qopy.me/0yILY0U8TD6kZ0ilhhoIAA
2. run HTTP server in folder where index.html lays.
I.g. PHP server:
php -S php -S 0.0.0.0:5000
or this server (just EXE) http://www.zachsaw.com/?pg=quickphp_php_tester_debugger
@absent1706
absent1706 / sqlalchemy_debug_utils.py
Last active March 27, 2017 14:32
SQLAlchemy debug utils
def to_sql(query, dialect_name=None):
from sqlalchemy import dialects
import operator
if dialect_name:
dialect_module = getattr(dialects, dialect_name)
if not dialect_module:
raise KeyError('Wrong dialect {}'.format(dialect_name))
dialect = dialect_module.dialect()
else: