<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| # remove all temporary build files | |
| sudo port clean --all installed | |
| # remove all inactive ports | |
| sudo port -f uninstall inactive |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
| #!./bin/orbit | |
| local orbit = require 'orbit' | |
| module('app', package.seeall, orbit.new) | |
| local routes = { | |
| index = function(web) | |
| return 'Start page<br><a href=/about>About</a>' | |
| end, | |
This is a story about how I tried to use Go for scripting. In this story, I’ll discuss the need for a Go script, how we would expect it to behave and the possible implementations; During the discussion I’ll deep dive to scripts, shells, and shebangs. Finally, we’ll discuss solutions that will make Go scripts work.
While python and bash are popular scripting languages, C, C++ and Java are not used for scripts at all, and some languages are somewhere in between.
| <!-- executed third --> | |
| <script type="module"> | |
| console.log("Inline module!"); | |
| </script> | |
| <!-- executed first --> | |
| <script src="main.js"></script> | |
| <!-- executed second --> | |
| <script defer> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <meta name="scaffolded-by" content="https://github.com/google/stagehand" /> | |
| <title>webassembly_example</title> | |
| <link rel="stylesheet" href="styles.css" /> |
| [ | |
| { | |
| "name": "Andorra", | |
| "code": "AD", | |
| "capital": "Andorra la Vella", | |
| "continent": "Europe", | |
| "currency": { | |
| "code": "EUR", | |
| "name": "Euro", | |
| "name_plural": "euros", |
| [ | |
| { | |
| "code": "EUR", | |
| "name": "Euro", | |
| "name_plural": "euros", | |
| "symbol": "€", | |
| "symbol_native": "€", | |
| "decimal_digits": 2, | |
| "rounding": 0 | |
| }, |