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 { exec } from 'child_process'; | |
import { OBSWebSocket } from 'obs-websocket-js'; | |
import { parseEvent, parseTicks } from '@laihoe/demoparser2'; | |
// set DefensiveConCommands to 0 in game/csgo_core/gameinfo.gi | |
async function execCommand(command) { | |
return new Promise((resolve, reject) => { | |
console.info(`executing command: ${command}`); | |
exec(command, (error) => { |
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
FROM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim AS build | |
WORKDIR /mod | |
COPY src/*.csproj . | |
RUN dotnet restore | |
COPY . . |
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
- role_name: role-1 | |
role_set: | |
- user | |
- search | |
- role_name: role-2 | |
role_set: | |
- user | |
- clips | |
- role_name: role-3 | |
role_set: |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
window.onload = function() { |
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
2021-02-18 21:58:43.147 VERB [1368] [rtc::PeerConnection::PeerConnection@74] Creating PeerConnection | |
2021-02-18 21:58:43.147 VERB [1368] [rtc::PeerConnection::setRemoteDescription@215] Setting remote description: v=0 | |
o=- 3753231095255967450 0 IN IP4 127.0.0.1 | |
s=- | |
t=0 0 | |
a=group:BUNDLE 0 | |
a=msid-semantic:WMS * | |
a=setup:actpass | |
a=ice-ufrag:0MtQ |
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
minikube logs | |
==> Docker <== | |
-- Logs begin at Sat 2021-01-23 22:47:37 UTC, end at Sat 2021-01-23 22:54:11 UTC. -- | |
Jan 23 22:47:38 minikube systemd[1]: Starting Docker Application Container Engine... | |
Jan 23 22:47:38 minikube dockerd[189]: time="2021-01-23T22:47:38.871746677Z" level=info msg="Starting up" | |
Jan 23 22:47:38 minikube dockerd[189]: time="2021-01-23T22:47:38.874181010Z" level=info msg="parsed scheme: \"unix\"" module=grpc | |
Jan 23 22:47:38 minikube dockerd[189]: time="2021-01-23T22:47:38.874204218Z" level=info msg="scheme \"unix\" not registered, fallback to default scheme" module=grpc | |
Jan 23 22:47:38 minikube dockerd[189]: time="2021-01-23T22:47:38.874227218Z" level=info msg="ccResolverWrapper: sending update to cc: {[{unix:///run/containerd/containerd.sock <nil> 0 <nil>}] <nil> <nil>}" module=grpc | |
Jan 23 22:47:38 minikube dockerd[189]: time="2021-01-23T22:47:38.874236260Z" level=info msg="ClientConn switching balancer to \"pick_first\"" module=grpc | |
Jan 23 22:47:38 minikube dockerd[189]: time="2021- |
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
minikube start --alsologtostderr | |
I0123 17:52:07.096178 29153 out.go:229] Setting OutFile to fd 1 ... | |
I0123 17:52:07.096710 29153 out.go:281] isatty.IsTerminal(1) = true | |
I0123 17:52:07.096718 29153 out.go:242] Setting ErrFile to fd 2... | |
I0123 17:52:07.096722 29153 out.go:281] isatty.IsTerminal(2) = true | |
I0123 17:52:07.096812 29153 root.go:280] Updating PATH: /Users/lukepolicinski/.minikube/bin | |
I0123 17:52:07.097280 29153 out.go:236] Setting JSON to false | |
I0123 17:52:07.133284 29153 start.go:106] hostinfo: {"hostname":"Lukes-MacBook-Pro.local","uptime":9069,"bootTime":1611433258,"procs":505,"os":"darwin","platform":"darwin","platformFamily":"Standalone Workstation","platformVersion":"11.1","kernelVersion":"20.2.0","kernelArch":"x86_64","virtualizationSystem":"","virtualizationRole":"","hostId":"48f71db3-6c91-3e62-9576-3a1dcef2b536"} | |
W0123 17:52:07.133510 29153 start.go:114] gopshost.Virtualization returned error: not implemented yet | |
I0123 17:52:07.175382 29153 out.go:119] 😄 minikube v1.17.0 o |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require 'yaml' | |
VAGRANTFILE_API_VERSION ||= "2" | |
confDir = $confDir ||= File.expand_path(File.dirname(__FILE__)) | |
require File.expand_path(File.dirname(__FILE__) + '/scripts/localDev.rb') |
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
version: "3.7" | |
services: | |
expose: | |
ports: | |
- 8080:${PORT} | |
environment: | |
port: ${PORT} | |
auth_required: ${AUTH_REQUIRED} | |
build: | |
context: ./ |
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
create or replace function qx.create_google_storage_url( | |
file_path text, | |
bucket text default 'qx-media-unstable', | |
request_location text default 'auto', | |
request_service text default 'storage', | |
request_type text default 'goog4_request' | |
) | |
returns text | |
volatile | |
language plpgsql |
NewerOlder