I hereby claim:
- I am defaultsimon on github.
- I am defaltsimon (https://keybase.io/defaltsimon) on keybase.
- I have a public key ASBtxQjK9crJVLWto3_XjsNTizQXkelw0PNhQ6RweDVaVgo
To claim this, I am signing this object:
| function Stop-ProcessIncludingChildren { | |
| [CmdletBinding()] | |
| Param ( | |
| # PID of the process to kill (will also kill its child processes) | |
| [Parameter(Mandatory=$true)] | |
| [Uint32] | |
| $ProcessID | |
| ) | |
| $ProcessList = Get-CimInstance -ClassName Win32_Process |
| // ==UserScript== | |
| // @name Steam Trade Offer Enhancer | |
| // @namespace http://steamcommunity.com/id/H_s_K/ | |
| // @description Browser script to enhance Steam trade offers. | |
| // @include /^https?:\/\/steamcommunity\.com\/(id|profiles)\/.*\/tradeoffers.*/ | |
| // @include /^https?:\/\/steamcommunity\.com\/tradeoffer.*/ | |
| // @version 1.4.2-patch1 | |
| // @author HusKy, patches by DefaultSimon | |
| // @downloadURL https://forums.backpack.tf/topic/17946-script-steam-trade-offer-enhancer/ | |
| // @downloadURL https://gist.github.com/DefaultSimon/571fe1a9839014cf8db6757c6a4bd19d |
I hereby claim:
To claim this, I am signing this object:
| # coding=utf-8 | |
| import asyncio | |
| import youtube_dl | |
| import logging | |
| import configparser | |
| import os | |
| from discord import Activity, ActivityType, opus, PCMVolumeTransformer, FFmpegPCMAudio | |
| from discord.ext.commands import AutoShardedBot, Context |