Skip to content

Instantly share code, notes, and snippets.

View Phoenix616's full-sized avatar
🔥
👀

Max Lee Phoenix616

🔥
👀
View GitHub Profile

Keybase proof

I hereby claim:

  • I am Phoenix616 on github.
  • I am phoenix616 (https://keybase.io/phoenix616) on keybase.
  • I have a public key whose fingerprint is 7A2E 6B10 8BA3 486B AD2D A9FA CD3E 65A8 A356 C4D4

To claim this, I am signing this object:

@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 / 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 / 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 / TranslationMapping.java
Last active August 19, 2018 22:15
Translation mappings to be used with Bukkit's Material names and Minecrafts translation system, needs ConfigAccessor.java: https://gist.github.com/Phoenix616/a629223a89b60d710da457f5f7f57ecc
/*
* TranslationMapping is an util for mapping pre 1.13 Bukkit materials to
* the language keys of minecraft items in the language files of the client
*
* Licensed under the following (MIT) license:
*
* Copyright (C) 2018 Max Lee (https://github.com/Phoenix616)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@Phoenix616
Phoenix616 / ParticleClicks.java
Last active May 24, 2018 15:03
Click on particles...
HashMap<UUID,Location> stands = new HashMap<UUID, Location>();
double particleHeight = 1.5;
public void onEnable() {
getServer().getPluginManager().registerEvents(this, this);
Bukkit.getScheduler().scheduleSyncRepeatingTask(this, new Runnable() {
@Override
public void run() {
@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%
@Phoenix616
Phoenix616 / UpdateJavaPath.bat
Last active April 19, 2018 19:09
Simple batch script to both create a version independent folder and to update the paths (system path requires admin rights). This needs to be run in the folder where the JDK (or JRE) is in.
set /p version="Enter the Java minor version: "
rm jdk1.8.0
mklink /J jdk1.8.0 jdk1.8.0_%version%
SETX JAVA_HOME "%~dp0jdk1.8.0_%version%"
SETX JAVA_HOME /m "%~dp0jdk1.8.0_%version%"
PAUSE
@Phoenix616
Phoenix616 / unique-irc-client-stargazers.md
Last active February 13, 2018 23:52
Unique GitHub Stargazers of popular IRC clients