Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iexNote
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iexI’m looking for any tips or tricks for making chrome headless mode less detectable. Here is what I’ve done so far:
Set my args as follows:
const run = (async () => {
const args = [
'--no-sandbox',
'--disable-setuid-sandbox',
'--disable-infobars',| #!/usr/bin/swift | |
| // DISCLAIMER | |
| // This script modifies an unencrypted file associated with the trial version of Final Cut Pro. | |
| // Under the DMCA (17 U.S.C. § 1201), this modification does not qualify as circumvention of a technological | |
| // protection measure (TPM), as it does not involve bypassing encryption, authentication, or similar protections. | |
| // Distributing this code is therefore legal under the DMCA. | |
| // This script is intended for educational and research purposes, such as exploring trial-related file structures, |
| FROM golang:1.9 | |
| WORKDIR /go/src/github.com/purplebooth/example | |
| COPY . . | |
| RUN go build -ldflags "-linkmode external -extldflags -static" -a main.go | |
| FROM scratch | |
| COPY --from=0 /go/src/github.com/purplebooth/example/main /main | |
| CMD ["/main"] |
This guide has moved to a GitHub repository to enable collaboration and community input via pull-requests.
https://github.com/alexellis/k8s-on-raspbian
Alex
| FROM golang:alpine AS build | |
| ADD . /go/src/github.com/my/project | |
| WORKDIR /go/src/github.com/my/project | |
| RUN go build -o /mybinary ./cmd/mybinary | |
| FROM alpine:latest | |
| RUN apk add --no-cache ca-certificates | |
| COPY --from=build /mybinary /mybinary | |
| ENTRYPOINT ["/mybinary"] |
| # set up a python virtualenv: | |
| virtualenv --system-site-packages -p python3 google-assistant-sdk | |
| # enter the virtualenv: | |
| source google-assistant-sdk/bin/activate | |
| # install dependencies: | |
| pip3 install google-assistant-sdk[auth_helpers]==0.1.0 grpc-google-cloud-speech-v1beta1==0.14.0 protobuf==3.1.0 | |
| # the google code actually works out of the box on a default ubuntu install: |
| language: node_js | |
| node_js: | |
| - "6" | |
| script: | |
| - npm run lint | |
| - npm run build | |
| - npm test |
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |
| #!/usr/bin/env bash | |
| # A git post-receive hook | |
| # | |
| # On master branch only : | |
| # 1. It builds a docker image named with the dir name | |
| # 2. It then stop container of the same name, rm it and start a new one | |
| ## --- Config |