Skip to content

Instantly share code, notes, and snippets.

@MRuy
MRuy / 00-README.md
Last active March 30, 2024 17:24
List of CS:GO gambling and scam sites

CSGO gambling and scam websites

The txt file contains a list of legit and scam gambling websites.
The file is not active maintained anymore but i put some examples images to detect scam on this gist.

@MRuy
MRuy / README.md
Last active May 4, 2023 09:45
Userscripts for sb.ltn.fi

Userscripts for sb.ltn.fi (by Nanobyte)

  • sb.ltn.fi.lastupdate.user.js
    Show the last update time on top center
  • sb.ltn.fi.similarsegments.user.js
    Color highlights segments that are similar on sb.ltn.fi (Only works on video page sorted by starttime)
  • sb.ltn.fi.coloredcategories.user.js
    Color highlights categories
  • sb.ltn.fi.clickablestarttime.user.js
    Makes the startTime clickable
@MRuy
MRuy / README.md
Created May 14, 2021 14:14
SB visual overlay
@MRuy
MRuy / pipeverywhere.user.js
Created April 5, 2021 16:05
Userscript: PiP everywhere
// ==UserScript==
// @name PictureInPicture
// @namespace pip
// @version 1.0.0
// @description PiP everywhere
// @author You
// @include *
// @grant GM_registerMenuCommand
// ==/UserScript==
@MRuy
MRuy / README.md
Last active August 30, 2021 12:35
CS:GO Gambling website screenshots

CS:GO FAKE Gambling website screenshots

Do not comment here!

@MRuy
MRuy / csgo-watch-gotv-demo-as-pov.md
Created June 5, 2021 23:11
Watch GOTV demo as POV

Watch GOTV demo as POV

  1. Download and start CS:GO via HLAE
  2. Console: playdemo <demoname>
  3. Console: mirv_listentities isPlayer=1 Remember the list number on the left of the player you want the POV
  4. Console: mirv_pov NUMBER_FROM_COMMAND_BEFORE_HERE
  5. Type disconnect then playdemo <demoname> again

Source: [YouTube] How to watch fake POV demos yourself in CS:GO - Mohan Govindasamy

@MRuy
MRuy / csgo.md
Last active June 3, 2021 09:53
Useful CS:GO stuff
@MRuy
MRuy / steam-login-phising-websites.markdown
Last active November 23, 2020 20:01
List of steam login phising websites

⚠️ Steam phishing websites

Domain Online?
csdetails.net No
skinspower.pro No
csgocali.fun No
xmas-drop.com No
drop-xmas.com No
gabeskins.pro No
@MRuy
MRuy / scammer-twitch-channels.md
Last active October 26, 2020 13:17
Scammer twitch channels

Scammer twitch channels

Detected Banned Name
2019-12-13 00:16 2019-12-16 21:00 shroudtfz
2019-12-13 00:51 2019-12-16 21:00 shroudbze
2019-12-13 23:54 2019-12-16 21:00 anomalydec
2019-12-13 23:59 2019-12-16 21:00 shoedix
2019-12-14 01:00 2019-12-16 21:00 shroudnzd
2019-12-14 21:04 2019-12-16 21:00 faceit_xp
/**
* Returns the time string as Number in seconds.
* @param {string} str - String with human readable time for example "15m 45s"
* @returns {number} Seconds as Number
*/
function humanReadableTimeStringToSeconds(str) {
const units = ['d', 'h', 'm', 's'];
const regex = RegExp('^(\\d+)(['+units.join('')+'])$', 'i');
const unitConversions = [86400, 3600, 60, 1];
const parts = str.split(/\s+/) || [str];