Items | Game | URL | Position |
---|---|---|---|
676760 | Portal 2 | https://steamcommunity.com/app/620/workshop/ | 1 |
447075 | Wallpaper Engine | https://steamcommunity.com/app/431960/workshop/ | 2 |
288601 | Space Engineers | https://steamcommunity.com/app/244850/workshop/ | 3 |
239705 | Planet Coaster | https://steamcommunity.com/app/493340/workshop/ | 4 |
216889 | Scrap Mechanic | https://steamcommunity.com/app/387990/workshop/ | 5 |
174855 | Cities: Skylines | https://steamcommunity.com/app/255710/workshop/ | 6 |
156783 | Besiege | https://steamcommunity.com/app/346010/workshop/ | 7 |
117249 | Scribblenauts Unlimited | https://steamcommunity.com/app/218680/workshop/ | 8 |
I hereby claim:
- I am TomasDuda on github.
- I am tomasduda (https://keybase.io/tomasduda) on keybase.
- I have a public key whose fingerprint is A9F5 4265 5B4A 8EED B016 C135 79F1 234F 12C4 2980
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Promoter press requests | |
// @namespace https://timmy.im/ | |
// @version 1.0 | |
// @description Makes the Promoter press request page better. | |
// @author Tomáš Duda | |
// @match https://*.promoterapp.com/press_requests/open | |
// @grant GM_getValue | |
// @grant GM_setValue | |
// @grant GM_addStyle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$usd = 29.99; | |
$slip = 2; // 1 slip = 2 dollars | |
$strip = $slip * 100; // 1 strip = 200 dollars | |
$bar = $strip * 20; // 1 bar = 4000 dollars | |
$result = array(); | |
$bars = floor($usd / $bar); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Skip Steam linkfilter | |
// @version 1.0 | |
// @description Fuck linkfilter | |
// @match http://steamcommunity.com/linkfilter/?url=* | |
// @match http://steamcommunity.com/linkfilter?url=* | |
// @match https://steamcommunity.com/linkfilter/?url=* | |
// @match https://steamcommunity.com/linkfilter?url=* | |
// @run-at document-start | |
// ==/UserScript== |
As you know, Twitch has made a weird decision to mute VODs if it finds copyrighted content in videos.
Here's how to enjoy VODs without this annoying mute feature.
- Install Fiddler (tested on 4.4.9.2 on Windows).
- Enable HTTPS decryption. If you are using Firefox, you will need to do this.
Rules -> Customize Rules...
- Paste the following code in the
OnBeforeResponse
method:
NewerOlder