Skip to content

Instantly share code, notes, and snippets.

@zhangw
zhangw / rust-openssl-musl-archlinux-build
Created February 18, 2023 15:03
rust + openssl + musl + archlinux
## install musl
sudo pacman -Syu musl
## install headers of musl
sudo pacman -Syu kernel-headers-musl
## cargo add musl target and toolchain
rustup target add --toolchain stable x86_64-unknown-linux-musl
## download openssl source code, version is 3.0.7
@zhangw
zhangw / rust-cross-compile-openssl
Last active February 18, 2023 05:16 — forked from marirs/rust-cross-compile-openssl
Rust OpenSSL Cross Compile for Linux on Mac M1
# Install the toolchain
```bash
brew tap SergioBenitez/osxct
brew install x86_64-unknown-linux-gnu
```
# this should get installed in:
# /opt/homebrew/Cellar/x86_64-unknown-linux-gnu/
# Installing the macOS OpenSSL - if not already installed
@zhangw
zhangw / README.md
Created October 11, 2022 04:32 — forked from darrenpmeyer/README.md
Automatically start a single instance of ssh-agent for all terminal sessions to share (bash)

Installation

  1. mkdir -p ~/.config && touch ~/.config/ssh-agent.pid
  2. Paste the contents of ssh-agent-manage.sh into your .bashrc or .bash_profile or similar
  3. killall -9 ssh-agent
  4. Start a new terminal session (note: old sessions will not see ssh-agent, only new ones)

Details

This snippet, when included in .bashrc, will ensure that your session has a working ssh-agent with all your ssh keys loaded into it. It does this without creating separate ssh-agent processes by:

@zhangw
zhangw / Generate_new_table.sql
Created August 26, 2022 09:39 — forked from lacerogers20/Generate_new_table.sql
This will use "create table" and generate a new table with clustering and partitioning
CREATE TABLE
`testing.insert` (date DATE OPTIONS( description='date' ),
unique_visits INT64 OPTIONS( description='counts' ))
PARTITION BY
date
CLUSTER BY
unique_visits OPTIONS ( description="A table with a date partition",
labels=[("testing",
"data_is_great")],
expiration_timestamp=TIMESTAMP "2023-01-01 00:00:00 UTC"
SELECT
date,
COUNT(DISTINCT(visitid)) as unique_visits
FROM `bigquery-public-data.google_analytics_sample.ga_sessions_*`
WHERE _table_suffix = '20170801' # use date_sub to programmatically select your table
GROUP BY date
ORDER BY date
@zhangw
zhangw / proper_case_function.sql
Created August 26, 2022 09:38 — forked from lacerogers20/proper_case_function.sql
Example of building a simple UDF compared to the standard SQL function
CREATE TEMP FUNCTION
PROPER(str STRING) AS ((
SELECT
STRING_AGG(CONCAT(UPPER(SUBSTR(w,1,1)), LOWER(SUBSTR(w,2))), ' '
ORDER BY
pos)
FROM
UNNEST(SPLIT(str, ' ')) w
WITH
DECLARE
SQLRUN STRING DEFAULT '';
CREATE TEMP FUNCTION
ga4_firebase( key1 STRING,
params ARRAY <STRUCT <key STRING,
value STRUCT <string_value STRING,
int_value INT64,
float_value FLOAT64,
double_value FLOAT64 >>>) AS ( (
SELECT
@zhangw
zhangw / bash_strict_mode.md
Created April 19, 2022 06:12 — forked from mohanpedala/bash_strict_mode.md
set -e, -u, -o, -x pipefail explanation
@zhangw
zhangw / gist:8fb08e65eb04d6dd5229f8e886775561
Created April 16, 2022 10:23
build_librdkafka_mac_m1.sh
brew install openssl
brew install zstd
git clone [email protected]:edenhill/librdkafka.git
cd librdkafka
git checkout v1.5.0
CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include -I/opt/homebrew/Cellar/zstd/1.5.2/include" LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib -L/opt/homebrew/Cellar/zstd/1.5.2/lib" ./configure --prefix=$HOME/Temp/librdkafka-v1.5.0
cp examples/Makefile examples/Makefile.bak
sed -i '' -e 's/librdkafka.a/librdkafka.1.dylib/g' examples/Makefile
sed -i '' -e 's/librdkafka++.a/librdkafka++.1.dylib/g' examples/Makefile
make
@zhangw
zhangw / gist:8992a04fa062deee90b4da89ea675580
Created March 15, 2022 12:03
container cli (docker) alias in makefile
CONTAINER_CLI=docker
CONTAINER_CLI_VER:=$(shell docker --version 2>/dev/null)
ifndef DOCKER_CLI_VER
CONTAINER_CLI_VER:=$(shell lima -v 2>/dev/null)
endif
ifdef CONTAINER_CLI_VER
CONTAINER_CLI=lima nerdctl
endif