Flask apps are bound to port 5000 by default. To bind it to port 80, you would need to change the port as follows:
if __name__ == '__main__':
app.run(host='0.0.0.0', port=80, debug=True)
And to run it:
Flask apps are bound to port 5000 by default. To bind it to port 80, you would need to change the port as follows:
if __name__ == '__main__':
app.run(host='0.0.0.0', port=80, debug=True)
And to run it:
Taken from StackExchange
Thanks to LangLangC
For temperature and other improvements see https://gist.github.com/cdleon/d16e7743e6f056fedbebc329333d79df
Awesome-WM is a X11 window manager, that is configured via Lua. Fennel is a Lisp for Lua. This shows a general setup of how to write your awesome-wm config using fennel directly without the compilation step (which would also work, but is not needed).
Fetch a recent Fennel version (the
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>controls</key> | |
<array> | |
<dict> | |
<key>controlType</key> | |
<string>button</string> | |
<key>keyPath</key> |
# maximum capability of system | |
user@ubuntu:~$ cat /proc/sys/fs/file-max | |
708444 | |
# available limit | |
user@ubuntu:~$ ulimit -n | |
1024 | |
# To increase the available limit to say 200000 | |
user@ubuntu:~$ sudo vim /etc/sysctl.conf |
#!/usr/bin/env python3 | |
import requests | |
import re | |
import shutil | |
def download(id): | |
r = requests.get("http://www.breakbeat-paradise.com/bb_download.php?sampleid={}".format(id)) | |
html = r.text | |
url = re.search('http://.+\.zip', html).group(0) |
server { | |
listen 80; | |
server_name yoursite.com www.yoursite.com; | |
return 301 https://www.yoursite.com$request_uri; | |
} | |
# HTTPS server | |
server { | |
listen 443; | |
server_name www.yoursite.com yoursite.com; |
PLUGINS = [ | |
'i18n_subsites', | |
] | |
# i18n | |
JINJA_EXTENSIONS = ['jinja2.ext.i18n'] | |
I18N_GETTEXT_LOCALEDIR = 'themes/lab/translations' | |
DEFAULT_LANG = 'fr' | |
# define "I18N_SUBSITES" as a empty dictionary doesn't really matters : it's initialized on i18n_subsites.py on line 65 | |
# I18N_SUBSITES = {} |