A survey of the Go 1.13 source code tree.
Count | Units | Detail
diff --git a/src/main/java/com/google/devtools/build/lib/rules/apple/ApplePlatform.java b/src/main/java/com/google/devtools/build/lib/rules/apple/ApplePlatform.java | |
index 7759984b03..6f41eca83b 100644 | |
--- a/src/main/java/com/google/devtools/build/lib/rules/apple/ApplePlatform.java | |
+++ b/src/main/java/com/google/devtools/build/lib/rules/apple/ApplePlatform.java | |
@@ -42,7 +42,7 @@ public enum ApplePlatform implements ApplePlatformApi { | |
CATALYST("catalyst", "MacOSX", PlatformType.CATALYST, true); | |
private static final ImmutableSet<String> IOS_SIMULATOR_TARGET_CPUS = | |
- ImmutableSet.of("ios_x86_64", "ios_i386"); | |
+ ImmutableSet.of("ios_x86_64", "ios_i386", "ios_sim_arm64"); |
A survey of the Go 1.13 source code tree.
Count | Units | Detail
// Copyright 2018 Google LLC. | |
// SPDX-License-Identifier: Apache-2.0 | |
const { google } = require("googleapis"); | |
const { Storage } = require("@google-cloud/storage"); | |
exports.csv2sheet = async (data, context) => { | |
var fileName = data.name; | |
// basic check that this is a *.csv file, etc... | |
if (!fileName.endsWith(".csv")) { |
# Make sure you grab the latest version | |
curl -OL https://github.com/google/protobuf/releases/download/v3.3.0/protoc-3.3.0-linux-x86_64.zip | |
# Unzip | |
unzip protoc-3.3.0-linux-x86_64.zip -d protoc3 | |
# Move protoc to /usr/local/bin/ | |
sudo mv protoc3/bin/* /usr/local/bin/ | |
# Move protoc3/include to /usr/local/include/ |
package main | |
import ( | |
"context" | |
"log" | |
"golang.org/x/oauth2/google" | |
compute "google.golang.org/api/compute/v1" | |
) |
The ICO boom is precipitating a profound sea change in the availability of resources for blockchain Research and Development. For the 1st time, the sector has a entry level resources for developing a radical new set of tools for the global(solar system?) economy.
Our goal in 10 -15 years is pretty clear- Blockchain based systems should be the most useful and powerful liquidity rails for all kinds of assets. We have a lot of works to do fulfill the nascent potential of the blockchain space.
Here is a non-comprehensive list all the things we need to get to the moon.
maruel@periph-io /var/lib/docker/web/periph.io/www $ stat -c "%6s %n" $(find ./ -type f -name "*.html*" | sort) | |
69 ./apps/examples/index.html | |
55 ./apps/examples/index.html.br | |
85 ./apps/examples/index.html.gz | |
78 ./apps/index.html | |
59 ./apps/index.html.br | |
92 ./apps/index.html.gz | |
23291 ./device/apa102/index.html | |
5622 ./device/apa102/index.html.br | |
6559 ./device/apa102/index.html.gz |
"""An atomic, thread-safe incrementing counter.""" | |
import threading | |
class AtomicCounter: | |
"""An atomic, thread-safe incrementing counter. | |
>>> counter = AtomicCounter() | |
>>> counter.increment() |