Skip to content

Instantly share code, notes, and snippets.

View Phoenix616's full-sized avatar
🔥
👀

Max Lee Phoenix616

🔥
👀
View GitHub Profile
@Phoenix616
Phoenix616 / gw2 total control v1.1 (mod by the moep)_0.vdf
Created February 12, 2019 18:23
Based on CoryOp's v1 configuration. See https://s.moep.tv/gwsc for more info. Updated to use layers and to provide an emote menu.
"controller_mappings"
{
"version" "3"
"revision" "226"
"title" "GW2 Total Control v1.1 (mod by The Moep)"
"description" "Based on CoryOp's v1 configuration. See s.moep.tv/gwsc for more info. Updated to use layers and to provide an emote menu."
"creator" "76561198022182680"
"controller_type" "controller_steamcontroller_gordon"
"Timestamp" "403439616"
"actions"
@Phoenix616
Phoenix616 / GW2 Total Control v1.1 (mod by The Moep) AHK-Binds.ahk
Last active February 12, 2019 17:33 — forked from buboscandiacus/GW2-Total-Control-by-CoryOp-v1-AHK-Binds
Steam Controller companion script to make some functions that the controller config doesn't support (mainly text input) https://s.moep.tv/gwsc
/*
~~ GW2 Total Control Steam Controller config companion script ~~
By CoryOp (https://redd.it/5vix4x), modified by The Moep aka Phoenix616
See https://s.moep.tv/gwsc for more information!
Changelog:
v1.1:
- Used methods to simplify keybinds
- Added emotes
@Phoenix616
Phoenix616 / ForceResourcepacks information.md
Last active February 7, 2024 21:02
Bukkit/Spigot and Velocity/Bungee default configs for the ForceResourcepacks plugin: https://frp.phoenix616.dev
@Phoenix616
Phoenix616 / RevertGithubChanges.user.css
Last active October 18, 2023 16:26
A style to revert the latest change to GitHub's dashboard/homepage/startpage/notifications. Screenshots (but outdated css): https://userstyles.org/styles/160093/
/* ==UserStyle==
@name Revert Github Changes
@namespace https://phoenix616.dev
@author Phoenix616 aka Max Lee (https://phoenix616.dev)
@version 1.2.26
@homepageURL https://gist.github.com/Phoenix616/d3d890b03892b799bf42a1d72c31fcd3/
@updateURL https://gist.github.com/Phoenix616/d3d890b03892b799bf42a1d72c31fcd3/raw/RevertGithubChanges.user.css
==/UserStyle== */
/**
@Phoenix616
Phoenix616 / clone-all-org-github-repos.sh
Last active January 5, 2019 16:10 — forked from caniszczyk/clone-all-twitter-github-repos.sh
Clone all repos from a GitHub organization
curl -s https://api.github.com/orgs/$1/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["git_url"]} ]}'
@Phoenix616
Phoenix616 / ItemMatcher.java
Last active February 17, 2020 21:51
Utility class to match items with all their properties (no NBT support though, only Bukkit API settings)
/**
* Nietzsche Public License v0.6-m1
*
* Copyright 2020 Max Lee aka Phoenix616 (mail@moep.tv)
*
* Copyright, like God, is dead. Let its corpse serve only to guard against its
* resurrection. You may do anything with this work that copyright law would
* normally restrict so long as you retain the above notice(s), this license, and
* the following misquote and disclaimer of warranty with all redistributed
* copies, modified or verbatim. You may also replace this license with the Open
@Phoenix616
Phoenix616 / ReplaceInBlocks.java
Last active November 22, 2018 19:35
Simple text replacements for properties inside of blocks, requires WorldEdit. MIT License
/**
* Copyright (c) 2018 Phoenix616 (Max Lee)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
@Phoenix616
Phoenix616 / ShowItem information.md
Last active October 13, 2021 13:08
Config and permissions for the ShowItem plugin: https://showitem.phoenix616.dev/
@Phoenix616
Phoenix616 / Network.ini
Last active June 1, 2020 10:48
Simple network monitor Rainmeter skin
[Rainmeter]
Update=500
DynamicWindowSize=1
[Metadata]
Name= Personal - Network
Author=Phoenix616
Version=1.0
License=CC-BY-NC-SA 3.0
@Phoenix616
Phoenix616 / ShowHide-WinY-Shortcut.ahk
Last active May 20, 2018 15:03
Small AutoHotkey script to toggle the display of the icon on the desktop. (Default shortcut is Win+Y, tested on Windows 7)
#y::
ControlGet, HWND, Hwnd,, SysListView321, ahk_class Progman
If HWND =
ControlGet, HWND, Hwnd,, SysListView321, ahk_class WorkerW
If DllCall("IsWindowVisible", UInt, HWND)
WinHide, ahk_id %HWND%
Else
WinShow, ahk_id %HWND%