Skip to content

Instantly share code, notes, and snippets.

@miguno
miguno / _installing_cs2_text_mod.md
Created September 4, 2023 22:37 — forked from xPaw/README.md
Counter-Strike 2 Text Mod

Installing text mod

  1. Click this link to download the file (Ctrl+S)
  2. Name this file csgo_textmod.txt and put it inside this folder: Steam\SteamApps\Common\Counter-Strike Global Offensive\game\csgo\resource
    • Notice the game\csgo (CS2) folder, and not just csgo (CS:GO).
  3. Add -language textmod to your launch options

Not working? Make sure that:

  • csgo_textmod.txt is placed in the right folder (it needs to be inside the CS2 game\csgo\resource folder)
  • Launch option is spelled correctly, this is an example that will work: -novid -language textmod
@miguno
miguno / README.md
Last active January 10, 2023 16:43 — forked from peterbartha/README.md
Convert Rust books to EPUB (incl. The Rust Programming Language)

Convert Rust books to EPUB (incl. The Rust Programming Language)

The following steps work for all the HTML learning materials on the Learn Rust page:

  1. Click on the "Print this book" icon in the top right corner.
  2. "Cancel" print popup.
  3. Press F12 (on Firefox) to open the browser console. Or: Tools > Browser Tools > Web Developer Tools, then switch to Console tab.
  4. Copy, paste, and run the contents of ebookFormatPreparation.js into your browser's console.
  5. Save the modified HTML file.
physics/shield/bullet_hit_shield_07.wav
physics/shield/bullet_hit_shield_06.wav
physics/shield/bullet_hit_shield_05.wav
physics/shield/bullet_hit_shield_04.wav
physics/shield/bullet_hit_shield_03.wav
physics/shield/bullet_hit_shield_02.wav
physics/shield/bullet_hit_shield_01.wav
player/winter/snowball_throw_04.wav
player/winter/snowball_throw_03.wav
player/winter/snowball_throw_02.wav
@miguno
miguno / Mac Keyboard Symbols.md
Created September 9, 2019 19:28 — forked from Zenexer/Mac Keyboard Symbols.md
List of Mac/Apple keyboard symbols

Common symbols

Modifiers

When a key combination is displayed, the modifiers are written in the order presented here. For example, Control + Option + Shift + Command + Q would be written as ⌃⌥⇧⌘Q.

Sym Key Alt
Control
Option
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
@miguno
miguno / interactive-queries_song-id.md
Created October 31, 2018 16:27 — forked from enothereska/interactive-queries_song-id.md
Get details for a particular song
# Get all the top-5 charts across all instances
$ http://localhost:7070/kafka-music/song/9
{
  "artist":"N.W.A",
  "album":"Straight Outta Compton",
 "name":"Gangsta Gangsta"
# Get all the top-5 charts across all instances
$ http://localhost:7070/kafka-music/charts/genre/punk
[
  {
    "artist":"Wheres The Pope?",
 "album":"PSI",
# Get all the top-5 charts across all instances
$ http://localhost:7070/kafka-music/charts/top-five
[
  {
    "artist":"Hilltop Hoods",
 "album":"The Calling",
@miguno
miguno / interactive-queries_app-instances-for-a-store.md
Created October 31, 2018 16:27 — forked from enothereska/interactive-queries_app-instances-for-a-store.md
List running app instances that currently manage (parts of) state store "top-five-songs"
# List running app instances that currently manage (parts of) state store "top-five-songs"
$ http://localhost:7070/kafka-music/instances/top-five-songs
[
	{
		"host": "localhost",
 "port": 7070,
@miguno
miguno / interactive-queries_list-app-instances.md
Last active May 14, 2021 15:37 — forked from enothereska/interactive-queries_list-app-instances.md
List all running instances of this application
# List all running instances of this application
$ http://localhost:7070/kafka-music/instances
[
	{
		"host": "localhost",
 "port": 7070,