- Use Firefox
- Open your plan in h2rgear.com
- Open the Dev Tools (Ctrl + Shift + I)
- Run
document.querySelector(".pb-16.px-6.fixed.bottom-0.right-0.z-20.flex.w-screen.justify-between.items-end").remove();document.querySelector(".px-6.py-2.w-screen.overflow-auto.bg-white.border-t-2.border-solid.border-gray-300.z-20.fixed.bottom-0.right-0.flex.justify-between.items-center").remove();
- Run
:screenshot --dpr 4
- For even better screenshots increase the number behind the
--dpr
flag
This file contains 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
// @ts-check | |
import { PrismaClient } from '@prisma/client' | |
import chalk from "chalk"; | |
const prisma = new PrismaClient(); | |
const orgs = await prisma.organization.findMany({ | |
where: { | |
series: { | |
some: { |
This file contains 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
const rounds = 100000000; | |
import cluster from 'node:cluster'; | |
import { cpus } from 'node:os'; | |
import process from 'node:process'; | |
const numCPUs = cpus().length; | |
const roundsPerCPU = Math.round(rounds / numCPUs); |
This file contains 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
Müller | |
Schmidt | |
Schneider | |
Fischer | |
Weber | |
Meyer | |
Wagner | |
Schulz | |
Becker | |
Hoffmann |
This file contains 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
Aaliyah | |
Aaron | |
Abby | |
Abigail | |
Ada | |
Adam | |
Adelina | |
Adem | |
Adrian | |
Adriana |
This file contains 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 { Component } from "@angular/core"; | |
import { AuthenticationService } from "../../_services/authentication.service"; | |
import * as JitsiMeetJS from "../../_libs/lib-jitsi-meet.min.js"; | |
@Component({ | |
selector: "app-home", | |
templateUrl: "./home.component.html", | |
styleUrls: ["./home.component.scss"], | |
}) | |
export class HomeComponent { |
- Download VS Buildtools 15.0 from here under the 2017 Tab
- Install it with the windows 10 SDK
npm config set msbuild_path "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild.exe"
npm config set msbuild_path "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild.exe"