Skip to content

Instantly share code, notes, and snippets.

@MRuy
MRuy / csgo-faq.md
Created November 8, 2019 20:47
CS:GO FAQ

CS:GO FAQ

Competitive

Why do bots dont listen?

A bot is a downgrade and should not grant an advantage to the team. Source

@MRuy
MRuy / csgo-improvements-list.md
Last active November 7, 2019 22:53
CS:GO improvements list

CS:GO Improvements list

  • Muting a player doesnt mute his manual radio calls
  • Scrimmage mode should get his own tab like Competitive, Casual etc.
  • Give us a way to trigger commands on ingame actions like "switchedToPrimaryWeapon" or "switchedToGrenade"
    This could be used to change the crosshair for weapon slots
  • Make sv_grenade_trajectory visible for all players on the server not only for the host
  • Ban or cooldown spinbotters automatically
@MRuy
MRuy / potato.md
Created October 21, 2019 15:32
de_cache update: 21 Oct @ 10:26am
Location Before After
setpos 3236.007324 154.421204 1800.322998;setang 17.183750 -151.323654 0.000000 78 81
setpos 1649.152100 332.927643 1739.835693;setang 13.621508 -140.576385 0.000000 111 113
setpos 683.862366 918.863647 1775.195801;setang 1.578727 109.925285 0.000000 142 136
setpos 418.295654 1734.517090 1805.132324;setang 8.905609 -170.126724 0.000000 78 81
setpos -313.689941 2249.800293 1944.370605;setang 20.017368 -51.581039 0.000000 67 69
setpos -273.295593 47.431149 1778.730469;setang 12.083289 27.860991 0.000000 104 110
setpos -1485.255127 373.398315 1723.155518;setang 0.364329 -81.617104 0.000000 118 118
setpos 134.555557 -639.363342 1692.330566;setang 9.533026 -130.294281 0.000000 127 127
@MRuy
MRuy / csgo-overwatch-report.md
Last active August 4, 2019 06:58
CS:GO Overwatch report

Overwatch report for 734 cases

Region Aver.Rank Rank Wins Type Map Aim Vision External Griefing
1 EU East - - 4 2v2 gd_rialto x x x -
2 US East GN2 GE 101 5v5 de_dust2 x x - -
3 Poland S1 MGE 22 5v5 de_mirage x x x -
4 EU East GN3 SMFC 25 5v5 de_inferno - - - -
5 EU East S4 MGE 115 5v5 de_mirage x x x -
6 EU West SE - 3 5v5 de_mirage - - - -
@MRuy
MRuy / Instructions.sh
Created February 1, 2019 16:08 — forked from GhazanfarMir/Instructions.sh
Install PHP7.2 NGINX and PHP7.2-FPM on Ubuntu 16.04
########## Install NGINX ##############
# Install software-properties-common package to give us add-apt-repository package
sudo apt-get install -y software-properties-common
# Install latest nginx version from community maintained ppa
sudo add-apt-repository ppa:nginx/stable
# Update packages after adding ppa
@MRuy
MRuy / steam32To64.js
Created January 2, 2019 23:55
Converting steam32 id to steam64 with native BigInt in ES6
function steam32To64(steam32) {
const SteamID64Identifier = 76561197960265728n;
const sidSplit = steam32.split(':');
const z = BigInt(sidSplit[2]);
const y = BigInt(sidSplit[1]);
return (SteamID64Identifier + (z * 2n) + y);
}
@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 / csgo-pins.txt
Created March 27, 2018 15:39
List of all csgo pins
Aces High Pin
Baggage Pin
Bloodhound Pin
Bravo Pin
Brigadier General Pin
Cache Pin
Canals Pin
Chroma Pin
Cobblestone Pin
Death Sentence Pin
@MRuy
MRuy / 9gag-nsfw-unlock.md
Created October 13, 2017 23:01
9gag.com NSFW without account!

Unlock NSFW posts without account

document.cookie = 'safemode=0; expires=Sun, 13 Oct 2019 00:00:00 UTC; path=/';

@MRuy
MRuy / chrome-cleanup-search-engines.md
Created August 12, 2017 15:35
Chrome cleanup search engines

Cleanup unwanted search engines from chrome

Date: 2017-08-12 (Chrome 60)

  1. Open: chrome://settings/searchEngines
  2. Press F12 to open developer console
  3. Execute the following code:
settings.SearchEnginesBrowserProxyImpl.prototype.getSearchEnginesList()