I hereby claim:
- I am arbinish on github.
- I am binish (https://keybase.io/binish) on keybase.
- I have a public key ASAX2cotT0JJWp6RLrGWveriSvuL1YWXsRftyO0uK-7WrAo
To claim this, I am signing this object:
| [{"cluster": "us-east-1a", "hosts": [{"hostname": "scott.int.google.com", "hash": "abef2b0bb76c15248a9908673a899bbe", "os": "Redhat"}, {"hostname": "keller.int.google.com", "hash": "abef2b0bb76c15248a9908673a899bbe", "os": "Centos"}, {"hostname": "navarro.int.google.com", "hash": "8b4250f45c2f9d6442f19357267b834d", "os": "Redhat"}, {"hostname": "adams-garcia.int.google.com", "hash": "abef2b0bb76c15248a9908673a899bbe", "os": "Redhat"}, {"hostname": "gonzales.int.google.com", "hash": "8b4250f45c2f9d6442f19357267b834d", "os": "Centos"}, {"hostname": "wood.int.google.com", "hash": "abef2b0bb76c15248a9908673a899bbe", "os": "Centos"}, {"hostname": "clark.int.google.com", "hash": "abef2b0bb76c15248a9908673a899bbe", "os": "Centos"}, {"hostname": "sosa.int.google.com", "hash": "0cc1f8bc23a555a29004c331814ce86e", "os": "Redhat"}, {"hostname": "wilson.int.google.com", "hash": "abef2b0bb76c15248a9908673a899bbe", "os": "Redhat"}, {"hostname": "phillips-elliott.int.google.com", "hash": "c284531b9f5469b25496fd009516b97c", " |
| package main | |
| import ( | |
| "embed" | |
| "io/fs" | |
| "log" | |
| "net/http" | |
| "os" | |
| "strconv" | |
| "time" |
| from packaging import version | |
| version.parse('38.4.205') < version.parse('38.4.215') |
| from random import randint | |
| from typing import List | |
| class Board: | |
| def __init__(self, length: int, width: int, bombs: int) -> List: | |
| self.length = length | |
| self.width = width | |
| self.board = [] | |
| for i in range(length): |
| # -*- coding: utf-8 -*- | |
| ''' | |
| python port for https://github.com/moby/moby/blob/master/pkg/namesgenerator/names-generator.go | |
| ''' | |
| import sys | |
| import time | |
| import random |
| import pytz | |
| from datetime import datetime | |
| utcnow = datetime.utcnow() | |
| # localized (with tzinfo) version | |
| localized_utcnow = pytz.utc.localize(utcnow) | |
| # find pacific time | |
| pacific = pytz.timezone('US/Pacific') | |
| pacific.normalize(localize_utcnow) |
| == .css == | |
| .postcard { | |
| position: relative; | |
| margin: 0 auto; | |
| width: 400px; | |
| height: 270px; | |
| } | |
| .postcard-front, | |
| .postcard-back { |
I hereby claim:
To claim this, I am signing this object:
| webpack = require('webpack'); | |
| module.exports = { | |
| entry: './main.js', | |
| output: { | |
| path: './', | |
| filename: 'index.js' | |
| }, | |
| devServer: { | |
| inline: true, |
| /* | |
| * Displays linux /proc/pid/stat in human-readable format | |
| * | |
| * Build: gcc -o procstat procstat.c | |
| * Usage: procstat pid | |
| * cat /proc/pid/stat | procstat | |
| * | |
| * Homepage: http://www.brokestream.com/procstat.html | |
| * Version : 2009-03-05 | |
| * |