$ 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
| swagger: '2.0' | |
| info: | |
| title: Mastodon API | |
| description: API for GNU Social-compatible microblogging server | |
| version: '1.1.1' | |
| contact: | |
| name: Mastodon API Team | |
| url: https://github.com/tootsuite/mastodon | |
| license: | |
| name: AGPL |
| 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/purecss@0.6.1/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> |