I hereby claim:
- I am shanmuha on github.
- I am shanmuha (https://keybase.io/shanmuha) on keybase.
- I have a public key ASC2xOIrijVbIomztdVUFPMyEb4oiMRFimCssLFaM3T-rQo
To claim this, I am signing this object:
# Project Policy | |
This policy provides a single, authoritative, and machine-readable source of truth for AI coding agents and humans, ensuring that all work is governed by clear, unambiguous rules and workflows. It aims to eliminate ambiguity, reduce supervision needs, and facilitate automation while maintaining accountability and compliance with best practices. | |
# 1. Introduction | |
> Rationale: Sets the context, actors, and compliance requirements for the policy, ensuring all participants understand their roles and responsibilities. | |
## 1.1 Actors |
I hereby claim:
To claim this, I am signing this object:
pragma solidity ^0.4.19; | |
import './ERC721.sol'; | |
contract CryptoMarchMadness is ERC721, ERC721Metadata, ERC721Enumerable { | |
uint256 private constant MASK = 0x3f; | |
uint256 public basePoolFeeInWei; // Fee required to purchase a bracket | |
uint256 public collectorFeeInWei; // Flat fee reserved for the pool operator |
# https://github.com/GoogleCloudPlatform/gcsfuse | |
# put this file as /etc/systemd/system/gcsfusemount.service and then `systemctl enable gcsfusemount.service` | |
# | |
[Unit] | |
Description=Google Cloud Storage FUSE mounter | |
After=local-fs.target network-online.target google.service sys-fs-fuse-connections.mount | |
Before=shutdown.target | |
[Service] | |
Type=forking |
$ docker run<tab> | |
-- no matches found -- | |
$ curl -fLo ~/.zprezto/modules/completion/external/src/_docker https://raw.githubusercontent.com/docker/docker-ce/master/components/cli/contrib/completion/zsh/_docker | |
$ docker run<tab> | |
-- images -- | |
0a89c74fff6c -- latest in bradleybeddoes/docker-whale | |
-- repositories -- | |
bradleybeddoes/docker-whale |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.teesh.sshdredirect</string> | |
<key>KeepAlive</key> | |
<true/> | |
<key>RunAtLoad</key> | |
<true/> |
import ratpack.exec.ExecController; | |
import ratpack.exec.Execution; | |
import ratpack.http.client.HttpClient; | |
import ratpack.server.RatpackServer; | |
import ratpack.service.Service; | |
import ratpack.service.StartEvent; | |
import ratpack.service.StopEvent; | |
import java.net.URI; | |
import java.util.Optional; |