Skip to content

Instantly share code, notes, and snippets.

View Tymotex's full-sized avatar
🤖
Segmentation fault (core dumped)

Tim Zhang Tymotex

🤖
Segmentation fault (core dumped)
  • University of New South Wales
  • Sydney
View GitHub Profile
@Tymotex
Tymotex / logid.cfg
Created February 24, 2023 08:19
Linux LogiOps config for the MX Master 3. Path: /etc/logid.cfg
devices: (
{
name: "Wireless Mouse MX Master 3";
smartshift:
{
on: true;
threshold: 30;
};
hiresscroll:
{
@Tymotex
Tymotex / App.jsx
Created August 14, 2022 21:42
Graph Visualiser MVP
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' },
@Tymotex
Tymotex / tasks.json
Last active July 22, 2022 01:07
VSCode Startup Convenience Tasks.
{
"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": [],
@Tymotex
Tymotex / Redirector.json
Last active January 26, 2023 04:58
My personal shortcuts for the Redirector Chrome extension: https://chrome.google.com/webstore/detail/ocgpenflpmgnfapjedencafcfakcekcd.
{
"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/?$",
@Tymotex
Tymotex / cloudSettings
Last active September 4, 2021 11:20
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-09-04T01:19:54.476Z","extensionVersion":"v3.4.3"}
@Tymotex
Tymotex / techsuite.nginx
Created December 4, 2020 23:06
Techsuite NGINX Configuration File
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 / {