Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
| #!/usr/bin/env bash | |
| # SOURCES: | |
| # https://gist.github.com/pirafrank/18d62c062e2806c1d183 | |
| # SEE THIS EXCELLENT SITE IF GIST FAILS: | |
| # https://office-reset.com | |
| # activate verbose standard output (stdout) | |
| set -v |
| // Using this code, we can retrieve an image from a user's filesystem, resize the image, and then upload the image | |
| // to a server using AJAX. Because we use base64 encoding, we can just include the image data as just another string value | |
| // in a JSON payload. | |
| // So we can use AJAX to send the file to a server, which is convenient. | |
| // We have one line of relevant html | |
| // get file in the first place => <input type="file" custom-on-change="onAcqImageFileChange" class="form-control"> |
This guide is unmaintained and was created for a specific workshop in 2017. It remains as a legacy reference. Use at your own risk.
Workshop Instructor:
This workshop is distributed under a CC BY-SA 4.0 license.
| map $cookie_skip_http_auth $auth_type { | |
| default "Restricted Area"; | |
| "123" "off"; | |
| } | |
| server { | |
| location /setauthcookie { | |
| add_header Set-Cookie "skip_http_auth=123"; | |
| return 301 http://example.com; | |
| } |
| {% embed 'partials/base.html.twig' %} | |
| {% block content %} | |
| {% set taxname = uri.query|split('=')[0] %} | |
| {% set taxval = uri.query|split('=')[1]|replace({'+':" "}) %} | |
| {% if taxname %} | |
| {% set c = breadcrumbs.get() %} |
Reference(s):
http://www.sourcegear.com/diffmerge/downloads.php - get the installer version, NOT the dmg version
| HandBrakeCLI -i file.mp4 -o file.output.mp4 --preset="Normal Profile" --srt-file file.srt --srt-codeset UTF-8 --srt-burn |
| /* | |
| * Copyright (c) 2020 ericek111 <[email protected]>. | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, version 3. | |
| * | |
| * This program is distributed in the hope that it will be useful, but | |
| * WITHOUT ANY WARRANTY; without even the implied warranty of | |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |