Skip to content

Instantly share code, notes, and snippets.

View korden32's full-sized avatar

KorDen korden32

View GitHub Profile
// ==UserScript==
// @name Steam Market History Export
// @author KorDen
// @version 0.2.3
// @grant none
// @include *//steamcommunity.com/market/
// ==/UserScript==
( function() {
$J('.pick_and_sell_button > .item_market_action_button').before('<a href="javascript:void(0)" class="item_market_action_button item_market_action_button_blue nodisable" onclick="exportMarketHistory();" id="exportHistoryBtn"><span class="item_market_action_button_edge item_market_action_button_left"></span><span class="item_market_action_button_contents" id="exportHistoryTxt">History Export</span><span class="item_market_action_button_edge item_market_action_button_right"></span><span class="item_market_action_button_preload"></span></a> ');
@korden32
korden32 / X570D4U.md
Last active August 22, 2021 17:43
ASRock Rack X570D4U layout

ASRock Rack X570D4U

AMD Ryzen 3 4350G Pro

BIOS 1.20, BMC 1.20, kernel 5.11

SATA ports and their paths

/devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:09.0/0000:2b:00.0/ata1/host0/target0:0:0/0:0:0:0/block/sda  < SATA_4
/devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:09.0/0000:2b:00.0/ata2/host1/target1:0:0/1:0:0:0/block/sdb  < SATA_7
@korden32
korden32 / fastmoderate-ugc.user.js
Last active September 19, 2018 08:20
Adds incompatible/report buttons in game hubs & user profile galleries
// ==UserScript==
// @name UGC FastModerate
// @author KorDen
// @version 1.0.1
// @description Adds incompatible/report buttons in game hubs & user profile galleries
// @grant none
// @include *//steamcommunity.com/app/*/images*
// @include *//steamcommunity.com/app/*/screenshots*
// @include *//steamcommunity.com/
// @include *//steamcommunity.com/?*
// ==UserScript==
// @name SCUD MoreInfo
// @version 0.9.2
// @author KorDen
// @grant none
// @include *//steamcommunity.com/discussions/forum/*
// @include *//steamcommunity.com/groups/*/discussions*
// @include *//steamcommunity.com/app/*discussions*
// @include *//steamcommunity.com/app/*/tradingforum*
// @include *//steamcommunity.com/workshop/discussions/*
// ==UserScript==
// @name Steam Profile/Group permalinks
// @version 0.2.0
// @author KorDen
// @grant none
// @include *//steamcommunity.com/id/*
// @include *//steamcommunity.com/profiles/*
// @include *//steamcommunity.com/groups/*
// @include *//steamcommunity.com/gid/*
// ==/UserScript==
// ==UserScript==
// @name SCUD FastReply
// @version 0.2.0
// @author KorDen
// @grant none
// @include *//steamcommunity.com/discussions/forum/*
// @include *//steamcommunity.com/groups/*/discussions*
// @include *//steamcommunity.com/app/*discussions*
// @include *//steamcommunity.com/app/*/tradingforum*
// @include *//steamcommunity.com/workshop/discussions/*
@korden32
korden32 / bks-noblock.sp
Created May 10, 2013 19:38
Simple NoBlock
#include <sourcemod>
#include <sdktools>
new g_offsCollisionGroup=-1;
public Plugin:myinfo =
{
name = "BKS NoBlock",
author = "KorDen",
version = "1.0",
url = "dev,sky-play.ru"
@korden32
korden32 / infjump.sp
Created May 10, 2013 13:08
Simple BunnyHop for SM
public Action:OnPlayerRunCmd(client, &buttons, &impulse, Float:vel[3], Float:angles[3], &weapon)
if (IsPlayerAlive(client) && (buttons & IN_JUMP) && !(GetEntityFlags(client) & FL_ONGROUND) && !(GetEntityMoveType(client) & MOVETYPE_LADDER) && (GetEntProp(client, Prop_Data, "m_nWaterLevel") <= 1))
buttons &= ~IN_JUMP;
@korden32
korden32 / market-to-csv-ingame.user.js
Created September 20, 2015 19:09
Steam In-Game purchases export
// ==UserScript==
// @name Steam In-Game purchases export
// @author KorDen
// @version 0.0.1
// @grant none
// @include https://store.steampowered.com/account/history*
// ==/UserScript==
( function() {
$J('.wallet_history_table').before('<a class="btn_small btn_blue_white_innerfade" id="btnExport"><span>Export in-game purchases...</span></a><br><br>');
@korden32
korden32 / community-market-wishlist-script.user.js
Last active September 16, 2015 17:35 — forked from Maximilian-L/community-market-wishlist-script.user.js
Allows you to add Steam Commuity Market items to a wishlist tab to keep track of items that you might want to purchase at a later point of time.
// ==UserScript==
// @name Steam Community Market Wishlist
// @description Allows you to add Steam Commuity Market items to a wishlist tab to keep track of items that you might want to purchase at a later point of time.
// @match *steamcommunity.com/market*
// @grant none
// ==/UserScript==
//Adjust the following variable's value to your currency's code (see list below)
var marketCurrency = 3; // 1 = $; 2 = £; 3 = €; 5 = pуб; 7 = R$; 8 = ¥; 9 = kr; 10 = Rp; 11 = RM; 12 = P; 13 = S$; 14 = ฿; 17 = TL; 19 = Mex$; 20 = CDN$; 22 = NZ$
//Adjust the following variable's value to your currency's sign (see list above)