The syscall/js
package has a build constraint.
Put this on top of the main file before package / wherever the syscall/js
is imported
//go:build js && wasm
package main | |
import ( | |
"log" | |
"math/rand" | |
"sync" | |
"time" | |
) | |
type Report struct { |
find . -type f -name "*.env" | xargs grep "HTTP_PORT" |
#!/usr/bin/env bash | |
wget https://www.toptal.com/developers/gitignore/api/go -O .gitignore |
I hereby claim:
To claim this, I am signing this object:
brew
(Homebrew)hadoop
brew install hadoop
cd
into hadoop configuration files
cd /opt/homebrew/Cellar/hadoop/3.3.4/libexec/etc/hadoop
#!/usr/bin/env bash | |
set -ex | |
PWD=$(pwd) | |
mkfifo /tmp/servicelogs.pipe || echo "pipe already exists" | |
runningPIDs=() | |
exitfn () { |
First run the one below to be able to install pg_config
brew install postgresql
Install openssl
brew link openssl