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 bjoern | |
from pathlib import Path | |
import socket | |
import sys | |
import os | |
import traceback | |
from django.core.wsgi import get_wsgi_application | |
proj_name = Path(os.path.abspath(__file__)).parent.name |
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
lms/edx.log | |
Internal Server Error: /api/commerce/v1/courses/course-v1:edX+DemoX+Demo_Course/ | |
Traceback (most recent call last): | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/handlers/exception.py", line 41, in inner | |
response = get_response(request) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/handlers/base.py", line 249, in _legacy_get_response | |
response = self._get_response(request) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/handlers/base.py", line 187, in _get_response | |
response = self.process_exception_by_middleware(e, request) |
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
Jun 7 17:43:45 mainedx [service_variant=ecommerce][django.request] WARNING [mainedx 14369] [/edx/app/ecommerce/venvs/ecommerce/local/lib/python2.7/site-packages/django/core/handlers/base.py:152] - Not Found: /api/v2/courses/course-math | |
Jun 7 17:43:45 mainedx [service_variant=ecommerce][django.request] WARNING [mainedx 14369] [/edx/app/ecommerce/venvs/ecommerce/local/lib/python2.7/site-packages/django/core/handlers/base.py:152] - Not Found: /api/v2/courses/course-math | |
Jun 7 17:43:45 mainedx [service_variant=ecommerce][django.request] WARNING [mainedx 14369] [/edx/app/ecommerce/venvs/ecommerce/local/lib/python2.7/site-packages/django/core/handlers/base.py:152] - Not Found: /api/v2/courses/course-math | |
Jun 8 06:57:34 mainedx [service_variant=ecommerce][django.request] WARNING [mainedx 14371] [/edx/app/ecommerce/venvs/ecommerce/local/lib/python2.7/site-packages/django/core/handlers/base.py:152] - Not Found: / | |
Jun 8 06:57:34 mainedx [service_variant=ecommerce][django.request] WARNING [mainedx 14371] [/edx |
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
from mk.app import App | |
from mk.manager import ScreenManager, register_screen | |
from mk.screen import Screen | |
from kivy.clock import Clock | |
from kivy.lang import Builder | |
from kivy.logger import Logger | |
from kivy.garden.graph import Graph, MeshLinePlot, SmoothLinePlot | |
import itertools | |
from math import sin, cos, pi | |
from random import randrange, randint |
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 re | |
import telegram | |
rgx_tags = re.compile("\W?#(\w+)") | |
rgx_args = re.compile("\W?/(\w+)") | |
rgx_users = re.compile("\W?@(\w+)") | |
class InlineCommandHandler(telegram.ext.Handler): | |
def check_update(self, update): |
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
[INFO]: kivy first build failed (as expected) | |
[INFO]: Running cython where appropriate | |
[INFO]: Cythonize kivy/properties.pyx | |
[INFO]: -> running cython ./kivy/properties.pyx | |
[INFO]: Cythonize kivy/weakproxy.pyx | |
[INFO]: -> running cython ./kivy/weakproxy.pyx | |
[INFO]: Cythonize kivy/_clock.pyx | |
[INFO]: -> running cython ./kivy/_clock.pyx | |
[INFO]: Cythonize kivy/_event.pyx | |
[INFO]: -> running cython ./kivy/_event.pyx |