View logid.cfg
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
devices: ( | |
{ | |
name: "Wireless Mouse MX Master 3"; | |
smartshift: | |
{ | |
on: true; | |
threshold: 30; | |
}; | |
hiresscroll: | |
{ |
View App.jsx
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 * as d3 from 'd3'; | |
import { useCallback, useEffect, useRef } from 'react'; | |
let vertices = [ | |
{ id: '0' }, | |
{ id: '1' }, | |
{ id: '2' }, | |
{ id: '3' }, | |
{ id: '4' }, | |
{ id: '5' }, |
View tasks.json
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": "2.0.0", | |
"tasks": [ | |
// First, wipe all previous terminal instances that get opened by | |
// default. I prefer starting from a clean slate. | |
{ | |
"label": "SplitTerminalonStartup", | |
"command": "${command:workbench.action.terminal.killAll}", | |
"type": "shell", | |
"problemMatcher": [], |
View Redirector.json
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
{ | |
"createdBy": "Redirector v3.5.3", | |
"createdAt": "2023-01-26T04:58:41.860Z", | |
"redirects": [ | |
{ | |
"description": "Redirector extension options page (this page)", | |
"exampleUrl": "https://red", | |
"exampleResult": "chrome-extension://ocgpenflpmgnfapjedencafcfakcekcd/redirector.html", | |
"error": null, | |
"includePattern": "^(http|https)://red/?$", |
View cloudSettings
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
{"lastUpload":"2021-09-04T01:19:54.476Z","extensionVersion":"v3.4.3"} |
View techsuite.nginx
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
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
root /home/tim/Techsuite/client/build; | |
index index.html; | |
server_name 128.199.207.32 techsuite.dev www.techsuite.dev; | |
# Frontend routes | |
location / { |