I hereby claim:
- I am tgwizard on github.
- I am tgwizard (https://keybase.io/tgwizard) on keybase.
- I have a public key whose fingerprint is B34A EB6F 918F 458C C9DB 2D69 649B 0F12 6711 8007
To claim this, I am signing this object:
<p>Testing smart app banners for iOS Safari</p> | |
<ul> | |
<li><a href="smart-app-banner-viewport-width.html">Viewport with width specified</a></li> | |
<li><a href="smart-app-banner-viewport-responsive.html">Viewport as responsive</a></li> | |
<li><a href="smart-app-banner-viewport-none.html">No viewport specified</a></li> | |
</ul> |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import os | |
from datetime import datetime | |
from time import time, sleep | |
from redis import StrictRedis |
# -*- coding: utf-8 -*- | |
from __future__ import print_function | |
import os | |
import sys | |
import itertools | |
from redis import StrictRedis |
sub vcl_deliver { | |
# ----- snip ----- | |
# Set a cookie with the experiment group sequence, if the client didn't | |
# already have the cookie and provided it in the request, and if the origin | |
# hasn't already set it. Use `setcookie.get_value_by_name` to handle the | |
# cases when the backend sets multiple cookies. | |
# Only do this on the edge nodes, not the origin shield, otherwise the edge | |
# nodes will see a response with a `Set-Cookie` header and not cache it. |
import subprocess | |
from threading import Thread | |
from time import time | |
from typing import Union | |
from queue import Queue | |
class SubprocessInputStreamer: | |
_end_of_stream = object() |
import time | |
import werkzeug.formparser | |
from flask import Flask, Response, request | |
class DummyWerkzeugFile: | |
def write(self, b: bytes): | |
print('reading file parts: size=%s' % len(b)) |
import time | |
from werkzeug.formparser import MultiPartParser | |
from werkzeug.http import parse_options_header | |
from werkzeug.wsgi import get_content_length, get_input_stream | |
from flask import Flask, Response, request | |
class DummyWerkzeugFile: | |
def write(self, b: bytes): |
import subprocess | |
import time | |
from werkzeug.wsgi import get_content_length | |
from flask import Flask, Response, request | |
from subprocess_input_streamer import SubprocessInputStreamer | |
class SubprocessStreamProxy: |
# frozen_string_literal: true | |
require 'benchmark/ips' | |
QUERY_NAMES = [ | |
"set names", | |
"select", | |
"insert", | |
"update", | |
"delete", |