This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .shadow-stuff { | |
| -moz-border-radius: 0% 0% 100% 100% / 0% 0% 8px 8px; | |
| -webkit-border-radius: 0% 0% 100% 100% / 0% 0% 8px 8px; | |
| border-radius: 0% 0% 100% 100% / 0% 0% 8px 8px; | |
| -moz-box-shadow: rgba(0,0,0,.30) 0 2px 3px; | |
| -webkit-box-shadow: rgba(0,0,0,.30) 0 2px 3px; | |
| box-shadow: rgba(0,0,0,.30) 0 2px 3px; | |
| } | |
| .container { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class VINLookupForm(Form): | |
| """ | |
| Lookup a VIN form | |
| """ | |
| vin = TextField(u'Enter VIN', | |
| validators=[validators.Required(u'VIN is required for lookup.')]) | |
| def validate_vin(self, field): | |
| """ | |
| Validate a VIN against the 9th position checksum |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // gcc -o test init_window.c -I. -lwayland-client -lwayland-server -lwayland-client-protocol -lwayland-egl -lEGL -lGLESv2 | |
| #include <wayland-client.h> | |
| #include <wayland-server.h> | |
| #include <wayland-client-protocol.h> | |
| #include <wayland-egl.h> // Wayland EGL MUST be included before EGL headers | |
| #include "init_window.h" | |
| #include "log.h" | |
| #include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # !/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| __author__ = 'Diego Garcia' | |
| import tornado.web | |
| import tornado.ioloop | |
| import oauth2.tokengenerator | |
| import oauth2.grant | |
| import oauth2.store.redisdb | |
| import oauth2.store.mongodb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| import pika | |
| import time | |
| LOG_FORMAT = ('%(levelname) -1s %(asctime)s %(name) -1s %(funcName) ' | |
| '-1s %(lineno) -5d: %(message)s') | |
| LOGGER = logging.getLogger(__name__) | |
| user="user" |
OlderNewer