% sysctl -n hw.model
Macmini9,1
% /usr/libexec/PlistBuddy -c 'print :"CPU Names"' ~/Library/Preferences/com.apple.SystemProfiler.plist | awk -F ' = ' '{prevlast=last; last=$2} END{print prevlast}'
Mac mini (M1, 2020)
use std::io; | |
use std::io::prelude::*; | |
fn main() -> io::Result<()> { | |
let mut buffer = [0; 1]; | |
loop { | |
let n = io::stdin().read(&mut buffer)?; | |
if n == 0 { | |
break; | |
} |
#!/bin/bash | |
if [ $# -ne 1 ]; then | |
>&2 echo "Usage: $0 /path/to/cert_file" | |
exit 1 | |
fi | |
cert_file="$1" | |
certs=$(cat $cert_file) | |
count=$(echo "$certs" | grep -c '^-----BEGIN CERTIFICATE-----') | |
i=1 |
const std = @import("std"); | |
const assert = std.debug.assert; | |
const maxInt = std.math.maxInt; | |
const minInt = std.math.minInt; | |
pub fn cast(comptime T: type, x: anytype) (error{Overflow}!T) { | |
comptime assert(@typeInfo(T) == .Int); // must pass an integer | |
comptime assert(@typeInfo(@TypeOf(x)) == .Int or | |
@typeInfo(@TypeOf(x)) == .ComptimeInt); // must pass an integer or comptimeint | |
if (x > maxInt(T)) { |
pub const Transport = struct { | |
pub fn send( | |
self: *Transport, | |
comptime Context: type, | |
context: Context, | |
comptime callback: fn ( | |
context: Context, | |
reuslt: usize, | |
) void, | |
) void { |
package bm | |
import ( | |
"testing" | |
) | |
var mb = map[string]bool{ | |
"alpha": true, | |
"beta": true, | |
"gamma": true, |
package main | |
import ( | |
"fmt" | |
"log" | |
"math/rand" | |
"sort" | |
"time" | |
) |
#!/bin/bash | |
# apt-key-add - Alternative script for "apt-key add" which is deprecated in Ubuntu 20.10 | |
# | |
# example: | |
# curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | sudo apt-key-add - nodesource | |
# instead of | |
# curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | sudo apt-key add - | |
# | |
set -e | |
if [ $# -ne 2 -o $UID -ne 0 ]; then |
% sysctl -n hw.model
Macmini9,1
% /usr/libexec/PlistBuddy -c 'print :"CPU Names"' ~/Library/Preferences/com.apple.SystemProfiler.plist | awk -F ' = ' '{prevlast=last; last=$2} END{print prevlast}'
Mac mini (M1, 2020)
FROM ubuntu:20.04 | |
RUN apt-get update \ | |
&& DEBIAN_FRONTEND=noninteractive apt-get -y install git mercurial build-essential cmake ninja-build golang-go zlib1g-dev libpcre3-dev | |
RUN git clone https://github.com/google/boringssl \ | |
&& cd boringssl \ | |
&& mkdir build \ | |
&& cd build \ | |
&& cmake -GNinja .. \ |
#!/usr/bin/env python3 | |
import socket | |
target_host = "localhost" | |
socket_path = "/var/snap/lxd/common/lxd/unix.socket" | |
client = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) | |
client.connect(socket_path) | |
# send some data |