Skip to content

Instantly share code, notes, and snippets.

con_enable 1
fps_max 60
mat_vsync "1" // Stops screen refresh rate exceeding refresh rate of monitor
mat_triplebuffered "1" // Enable with vsync if fps is less than 60 (0 Disables, 1 Enables)
dota_camera_disable_zoom "1" // disable mouse-wheel zooming
dota_minimap_hero_size "800"
@larrybotha
larrybotha / readme.markdown
Last active March 24, 2025 17:47
Postfix Using Gmail SMTP in Mac OSX Mavericks
@larrybotha
larrybotha / A.markdown
Last active December 20, 2015 18:49
Sublime Text Key Mappings

Sublime Text Key Mappings

These key mappings allow for a few conveniences:

  • easier 2 row work
    • increase the height of either the top or bottom column
    • make them even with a few intuitive shortcuts.
  • delete trailing slashes
  • prettify html
  • open sidebar in browser

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@larrybotha
larrybotha / A.markdown
Last active December 27, 2015 08:59
Easily manage styles for pseudo classes, especially [disabled]. Quickly create helper classes for KSS-style pseudo modifiers.

Pseudos Helper Function

Quickly manage disabled styles for an element, multiple pseudo classes, and also create helpers for KSS-style pseudo modifiers (excellent for styleguides).

Full credit goes to @fr4nktic for this technique.

Usage

a
@larrybotha
larrybotha / A.markdown
Last active April 14, 2018 14:15
Add your public SSH key to your server in one command

Add Your Public SSH Key To Your Server In One Command

You will need to create .ssh/authorized_keys if it is not yet on your server.

cat ~/.ssh/id_rsa.pub | ssh user@hostname 'cat >> .ssh/authorized_keys'

Generating Your Own Public Key

@larrybotha
larrybotha / A.markdown
Last active November 21, 2024 08:06
Fix SVGs not scaling in IE9, IE10, and IE11

Fix SVG in <img> tags not scaling in IE9, IE10, IE11

IE9, IE10, and IE11 don't properly scale SVG files added with img tags when viewBox, width and height attributes are specified. View this codepen on the different browsers.

Image heights will not scale when the images are inside containers narrower than image widths. This can be resolved in 2 ways.

Use sed in bash to remove width and height attributes in SVG files

As per this answer on Stackoverflow, the issue can be resolved by removing just the width and height attributes.

@larrybotha
larrybotha / A.markdown
Last active August 29, 2015 13:55
Beer Pong - Referee Version

Beer Pong - Referee!!!

This is a variation of beer pong that allows for as many players as a table can fit, and ends when you die.

The basic rules are simple. Add your own rules as you see fit.

The Players

There are 2 types of players in this version of beer pong.

@larrybotha
larrybotha / A.markdown
Last active March 3, 2021 10:41
Custom social sharing icons
@larrybotha
larrybotha / A.markdown
Last active October 21, 2024 15:28
Merge wiki updates that are on a fork of your repo.

Merge Wiki Changes From A Forked Github Repo

This is inspired (or basically copied) from How To Merge Github Wiki Changes From One Repository To Another, by Roman Ivanov, and serves to ensure that should something happen to the original article, the information remains nice and safe here.

Terminology

OREPO: original repo - the repo created or maintained by the owner

FREPO: the forked repo that presumably has updates to its wiki, not yet on the OREPO