All of the following information is based on go version go1.17.1 darwin/amd64.
| GOOS | Out of the Box |
|---|---|
aix |
✅ |
android |
✅ |
| /* | |
| Small ng-admin config showing how to inject a Login controller when | |
| a 401 error is returned by the server. | |
| */ | |
| (function () { | |
| "use strict"; | |
| var app = angular.module('myApp', [ |
To remove a submodule you need to:
| git ls-files -z | xargs -0n1 git blame -w | perl -n -e '/^.*\((.*?)\s*[\d]{4}/; print $1,"\n"' | sort -f | uniq -c | sort -n |
| #!/usr/bin/python | |
| import json, sys | |
| from subprocess import Popen, PIPE | |
| change = sys.argv[2] | |
| for x in range(len(sys.argv)): | |
| if sys.argv[x] == "--change": | |
| change = sys.argv[x+1] | |
| break |
| <?php defined('SYSPATH') or die('No direct script access.'); | |
| /** | |
| * MySQL "Closure Table" for Kohana based on Bill Karwin design. | |
| * | |
| * @link http://www.slideshare.net/billkarwin/models-for-hierarchical-data | |
| * @TODO improve | |
| * | |
| * sql schema: | |
| * CREATE TABLE `closures` ( | |
| * `id` int(11) NOT NULL AUTO_INCREMENT, |