basic CSS template for A4 print
BONUS: includes style for A2 and A5!
| <div id="map" style="width: 300px; height: 300px;"> | |
| </div> |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: red; icon-glyph: laptop; | |
| /* | |
| * HNWidget | |
| * @doc Widget that shows top 5 Posts from HN | |
| * @author 3n3a | |
| * @returns null | |
| */ | |
| class HNWidget { |
| from flask import Flask, render_template, make_response, request | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def index(): | |
| # Creates Response object & adds headers | |
| # #here you could use make_response(render_template(...)) too | |
| re = make_response("123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123451234567891234567891234567891234567891234567891234567891234567891234567891234567891234567891234512345678912345678912345678912345678912345678912345678912345678912345678912345678912345678912345123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123451234567891234567891234567891234567891234FLAG_123") |
| netflix.com | |
| nflxso.net | |
| nflximg.com | |
| nflxext.com |
curl https://gist.github.com/3n3a/5e6509676a655b2561a9557a34a4ea88/raw/fa7d9cf2c4bcf92b5a0cc90e507391cee2390053/hrsf.sh | sh -| #!/bin/sh | |
| # geberate files.txt for files to concat => all wav files in current dir | |
| # with a bash for loop | |
| for f in ./*.wav; do echo "file '$f'" >> files.txt; done | |
| # or with printf | |
| # printf "file '%s'\n" ./*.wav > mylist.txt | |
| # concat the files that were specified in files.txt | |
| ffmpeg -f concat -safe 0 -i files.txt -c copy Chapter_One.wav |