$ wget -e robots=off -r -np 'http://example.com/folder/'
- -e robots=off causes it to ignore robots.txt for that domain
- -r makes it recursive
- -np = no parents, so it doesn't follow links up to the parent folder
| FILES=*.rst | |
| for f in $FILES | |
| do | |
| filename="${f%.*}" | |
| echo "Converting $f to $filename.md" | |
| `pandoc $f -f rst -t markdown -o $filename.md` | |
| done |
| {https://m.facebook.com}/pages/launchpoint/admin_invites/ | |
| {https://m.facebook.com}/pages/launchpoint/liked_pages/ | |
| {https://m.facebook.com}/pages/launchpoint/owned_pages/ | |
| {https://m.facebook.com}/pages/launchpoint/pending_invites/ | |
| fb-service://limit_friend_requests | |
| fb://about | |
| fb://account/recovery | |
| fb://account_settings |
| #!/usr/bin/env php | |
| <?php | |
| // Determine which command has been called. | |
| $cmd = (!empty($argv[1])) ? strtolower($argv[1]) : null; | |
| // If an invalid number of arguments has been passed (or if no argument | |
| // was given at all), display help information. | |
| if ($argc < 2 || $argc > 3 || !in_array($cmd, ['save', 'load'])) { |
| <html> | |
| <head> | |
| <title>Documentation</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="https://unpkg.com/[email protected]/build/base-min.css"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mermaid/6.0.0/mermaid.min.css"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.8.0/styles/atom-one-light.min.css"> | |
| <style type="text/css"> | |
| body { |
$ wget -e robots=off -r -np 'http://example.com/folder/'
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
| -- A global variable for the Hyper Mode | |
| k = hs.hotkey.modal.new({}, "F17") | |
| -- Trigger existing hyper key shortcuts | |
| k:bind({}, 'm', nil, function() hs.eventtap.keyStroke({"cmd","alt","shift","ctrl"}, 'm') end) | |
| -- OR build your own | |
| launch = function(appname) |
| <style> | |
| @media only screen and (max-device-width: 1024px) and (orientation:portrait) { | |
| .landscape { display: none; } | |
| } | |
| @media only screen and (max-device-width: 1024px) and (orientation:landscape) { | |
| .portrait { display: none; } | |
| } | |
| </style> | |
| <h1 class="portrait">Your device orientation is "portrait"<h1> |
The easiest way to "convert" MKV to MP4, is to copy the existing video and audio streams and place them into a new container. This avoids any encoding task and hence no quality will be lost, it is also a fairly quick process and requires very little CPU power. The main factor is disk read/write speed.
With ffmpeg this can be achieved with -c copy. Older examples may use -vcodec copy -acodec copy which does the same thing.
These examples assume ffmpeg is in your PATH. If not just substitute with the full path to your ffmpeg binary.
Downloaded from cessna.com via web.archive.org.