Auditor | Count |
---|---|
AENOR INTERNACIONAL, S.A. (Unipersonal) | 6 |
Anthony Kam & Associates Ltd. | 2 |
Auren | 4 |
BDO International Limited | 45 |
BDO Malaysia | 4 |
BSI | 2 |
Bureau Veritas Italia S.p.A | 1 |
CSQA Certificazioni srl | 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { chromium } from 'playwright' | |
export default class Capture { | |
async capture(url: string, filename: string, width: number = 1280, height: number = 720): Promise<void> { | |
const browser = await chromium.launch() | |
const context = await browser.newContext({ | |
viewport: { | |
width: width, | |
height: height, | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"os" | |
"os/signal" | |
"github.com/bwmarrin/discordgo" | |
"github.com/rs/zerolog/log" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure you have Homebrew installed | |
brew install cmake protobuf python3 rust | |
git clone https://github.com/invoke-ai/InvokeAI.git | |
# Sign up for an account at huggingface.co | |
# Download checkpoint file from https://huggingface.co/CompVis/stable-diffusion-v-1-4-original | |
cd InvokeAI/ | |
python3 -m venv venv | |
source venv/bin/activate | |
pip install -r requirements-mac-MPS-CPU.txt | |
mkdir -p models/ldm/stable-diffusion-v1/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install boost swig cmake ftgl cgal gmp libaec ninja opencascade hdf5 python3 zlib | |
git clone [email protected]:IfcOpenShell/IfcOpenShell.git | |
cd IfcOpenShell/ | |
git submodule init | |
git submodule update --recursive | |
mkdir build | |
cd build/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
pip install --no-deps awscli-plugin-endpoint | |
legacy_plugin_path=$(pip show awscli-plugin-endpoint | awk '/^Location:/ { print $2 }') | |
cat <<EOF>> ${HOME}/.aws/config | |
[plugins] | |
cli_legacy_plugin_path=${legacy_plugin_path} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
## Interface-to-bridge swapper | |
## @oogali | |
# | |
# I want to run KVM, but I don't want dnsmasq | |
# Because I want my VMs to have direct access to the LAN broadcast domain | |
# Therefore I need a bridge interface | |
# But I don't have one already, so I must create one | |
# But I don't want to reboot nor do I want to create text files by hand |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo rm -rf /usr/local/bin/node \ | |
/usr/local/bin/npm \ | |
/usr/local/include/node \ | |
/usr/local/lib/node_modules \ | |
/usr/local/share/doc/node/gdbinit \ | |
/usr/local/share/doc/node/lldb_commands.py \ | |
/usr/local/share/man/man1/node.1 \ | |
/usr/local/share/man/man[15]/npm* \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package inboundfun | |
import ( | |
"bufio" | |
"io" | |
"net" | |
"testing" | |
"github.com/emersion/go-smtp" | |
"github.com/stretchr/testify/assert" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.idea | |
Dockerfile | |
docker-compose.yml | |
script/ |