This file has been truncated, but you can view the full file.
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
====================== | |
Proton: 1561645030 proton-4.2-9 | |
SteamGameId: 1017900 | |
Command: ['/media/data/SteamLibrary/steamapps/common/AoEDE/AoEDE_s.exe'] | |
====================== | |
ERROR: ld.so: object '/home/arthas/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. | |
ERROR: ld.so: object '/home/arthas/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored. | |
ERROR: ld.so: object '/home/arthas/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored. | |
ERROR: ld.so: object '/home/arthas/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. | |
9335.006:0008:0009:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\KERNEL32.dll" at 0x7b420000: builtin |
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
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz | |
CPU Family: 0x6 |
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
clear Control | |
clear mod4 | |
clear mod1 | |
remove Control = Control_L Control_R | |
keycode 133 = Meta_L Super_R |
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 | |
import os, signal | |
from django.core.wsgi import get_wsgi_application | |
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings') | |
app = get_wsgi_application() | |
NUM_WORKERS = 8 |
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
--- | |
- name: Verify Weave Plugin | |
shell: docker plugin ls | |
register: docker_plugin_out | |
- name: Install Weave Plugin | |
shell: docker plugin install store/weaveworks/net-plugin:latest_release --grant-all-permissions | |
when: docker_plugin_out.stdout.find("weaveworks") == -1 |
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
gogs_gogs.2.ll10mxtekxk0@raleduc-services | [Macaron] PANIC: session(start): mkdir data: permission denied | |
gogs_gogs.2.ll10mxtekxk0@raleduc-services | /usr/local/go/src/runtime/panic.go:489 (0x43348f) | |
gogs_gogs.2.ll10mxtekxk0@raleduc-services | /tmp/go/src/github.com/gogits/gogs/vendor/github.com/go-macaron/session/session.go:156 (0x8f937e) | |
gogs_gogs.2.ll10mxtekxk0@raleduc-services | /tmp/go/src/github.com/gogits/gogs/vendor/gopkg.in/macaron.v1/context.go:79 (0x8a0651) | |
gogs_gogs.2.ll10mxtekxk0@raleduc-services | /tmp/go/src/github.com/gogits/gogs/vendor/github.com/go-macaron/inject/inject.go:157 (0x8828d2) | |
gogs_gogs.2.ll10mxtekxk0@raleduc-services | /tmp/go/src/github.com/gogits/gogs/vendor/github.com/go-macaron/inject/inject.go:135 (0x8826cb) | |
gogs_gogs.2.ll10mxtekxk0@raleduc-services | /tmp/go/src/github.com/gogits/gogs/vendor/gopkg.in/macaron.v1/context.go:121 (0x8a08b2) | |
gogs_gogs.2.ll10mxtekxk0@raleduc-services | /tmp/go/src/github.com/gogits/gogs/vendor/gopkg.in/macaron.v1/context. |
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
# This is an auto-generated Django model module. | |
# You'll have to do the following manually to clean this up: | |
# * Rearrange models' order | |
# * Make sure each model has one field with primary_key=True | |
# * Remove `managed = False` lines if you wish to allow Django to create, modify, and delete the table | |
# Feel free to rename the models, but don't rename db_table values or field names. | |
# | |
# Also note: You'll have to insert the output of 'django-admin.py sqlcustom [app_label]' | |
# into your database. | |
from __future__ import unicode_literals |
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 ldapdb.models.fields import CharField | |
from uuid import UUID | |
def guid2string(val): | |
""" convert an active directory binary objectGUID value as returned by | |
python-ldap into a string that can be used as an LDAP query value """ | |
s = UUID(bytes_le=val) | |
return s | |
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 sys | |
import os | |
sys.path.insert(0, '/var/www/html/htpwd') | |
from htpwd import app as htpwdapp | |
def application(req_environ, start_response): | |
os.environ['HTPASSWD_FILE'] = req_environ['HTPASSWD_FILE'] | |
os.environ['SECRET_KEY'] = req_environ['SECRET_KEY'] |
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
Traceback (most recent call last): | |
File "/home/RFOC/01388863189/dev/pyodbc_test/lib/python2.7/site-packages/django/core/handlers/base.py", line 114, in get_response | |
response = wrapped_callback(request, *callback_args, **callback_kwargs) | |
File "/home/RFOC/01388863189/dev/pyodbc_test/lib/python2.7/site-packages/django/contrib/admin/options.py", line 432, in wrapper | |
return self.admin_site.admin_view(view)(*args, **kwargs) | |
File "/home/RFOC/01388863189/dev/pyodbc_test/lib/python2.7/site-packages/django/utils/decorators.py", line 99, in _wrapped_view | |
response = view_func(request, *args, **kwargs) | |
File "/home/RFOC/01388863189/dev/pyodbc_test/lib/python2.7/site-packages/django/views/decorators/cache.py", line 52, in _wrapped_view_func | |
response = view_func(request, *args, **kwargs) | |
File "/home/RFOC/01388863189/dev/pyodbc_test/lib/python2.7/site-packages/django/contrib/admin/sites.py", line 198, in inner |