Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| """ | |
| Startup script for Python interactive mode | |
| Add these two lines to .bashrc: | |
| PYTHONSTARTUP="$HOME/.pythonrc.py" | |
| export PYTHONSTARTUP | |
| """ | |
| import sys, os, readline, atexit |
| *.pyc |
| browser = request.user_agent.browser | |
| version = request.user_agent.version and int(request.user_agent.version.split('.')[0]) | |
| platform = request.user_agent.platform | |
| uas = request.user_agent.string | |
| if browser and version: | |
| if (browser == 'msie' and version < 9) \ | |
| or (browser == 'firefox' and version < 4) \ | |
| or (platform == 'android' and browser == 'safari' and version < 534) \ | |
| or (platform == 'iphone' and browser == 'safari' and version < 7000) \ |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| #!/usr/bin/env python3 | |
| import asyncio | |
| import multiprocessing | |
| import os | |
| import ssl | |
| from time import sleep | |
| port = 9000 |
You are probably here because you got the following error messages:
addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component's
rendermethod, or you have multiple copies of React loaded.
This usually means one of two things:
ref to an element that is being created outside of a component's render() function.Invalid Refs
| #!/usr/bin/env python3 | |
| import asyncio | |
| import multiprocessing | |
| import os | |
| import ssl | |
| from time import sleep | |
| port = 9000 |