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
| FDPP kernel 0.1beta8 [GIT: beta-8-14-ga92a219] (compiled Oct 17 2019) | |
| fdpp: plugin loaded | |
| CONF: config variable parser_version_3 set | |
| CONF: config variable c_system set | |
| CONF: Parsing built-in dosemu.conf file. | |
| CONF: config variable version_3_style_used set | |
| CONF: Parsing built-in global.conf file. | |
| CONF: config variable version_3_style_used unset | |
| CONF: config variable version_3_style_used set | |
| CONF: opened include file /usr/local/etc/dosemu/dosemu.conf |
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
| #!/bin/bash | |
| # Written by Antony Lee (@anntzer). | |
| set -e | |
| PYTHON_VERSION=37 | |
| PIP="/opt/python/cp$PYTHON_VERSION-cp${PYTHON_VERSION}m/bin/pip" | |
| if ! [[ -e "$PIP" ]]; then | |
| # Not in the manylinux image yet: call self from within docker. | |
| docker run -it \ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| [ 0.000000] Linux version 4.20.0-rc3 (root@Main-PC) (gcc version 7.3.0 (Ubuntu 7.3.0-27ubuntu1~18.04)) #1 SMP Mon Nov 19 15:18:07 CET 2018 | |
| [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.20.0-rc3 root=UUID=5fbe26ec-88dd-4b0f-8e57-c577efacffc7 ro quiet splash idle=nomwait amdgpu.audio=0 amdgpu.dc=1 modprobe.blacklist=amdgpu | |
| [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
| [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
| [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' | |
| [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 | |
| [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format. | |
| [ 0.000000] BIOS-provided physical RAM map: | |
| [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable | |
| [ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 FormViewPage(Page): | |
| """ | |
| Allow a wagtail Page to render a FormView. | |
| """ | |
| def __init__(self, view, *args, **kwargs): | |
| self.view = view | |
| Page.__init__(self, *args, **kwargs) | |
| def serve(self, 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
| vh="/home/vcap/deps/0"; for fn in $vh/env/*; do f=`basename $fn` && grep -q "/deps/0" $fn && cmd="export $f=/home/vcap$(sed "s#^/[^/]*/[^/]*##" $fn)" || cmd="export $f=$(cat $fn)" && echo $cmd; $cmd; done; export LD_LIBRARY_PATH=$LIBRARY_PATH; export PATH=$vh/bin:$PATH | |
| # Above is a oneliner that sets environment variables to use the installed python in cloudfoundry | |
| # | |
| # It sets environment variables from the files in /home/vcap/deps/0/envs and strips the /tmp/contents... prefix from the paths | |
| # It then sets the PATH and LD_LIBRARY_PATH | |
| # | |
| # Then you can run python and it will run the installed version. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.