Skip to content

Instantly share code, notes, and snippets.

View dallasbpeters's full-sized avatar

Dallas Peters dallasbpeters

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
.puppy-prices {border: 1px solid rgba(0,0,0,.12);}
/*
.Header-branding-logo {
-webkit-filter: invert(100%);
filter: invert(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(invert='1');
}
<link rel="stylesheet" href="https://cdn.rawgit.com/dallasbpeters/1e96cae9615838614734b4fea1639203/raw/d82051d0e318cb66f5d50aca304d941d8a3ebfed/squarespace-custom.css">
2/20/2017 06:11:59 Info TeamSpeak 3 Client 3.1.1 (2017-02-10 07:33:58)
2/20/2017 06:11:59 Info SystemInformation: Windows 10 (14393) x64 (AMD or Intel) Binary: 64bit
2/20/2017 06:11:59 Info Using hardware aes
2/20/2017 06:11:59 Direct Sound Debug setting timer resolution to 1ms
2/20/2017 06:12:00 Info *** Time [SPAWN_EVENTCONVERTER]: 225
2/20/2017 06:12:00 Addons Info Checking for addon updates...
2/20/2017 06:12:00 Plugins Info Loading plugin: clientquery_plugin.dll
2/20/2017 06:12:00 Query Info listening on 127.0.0.1:25639
2/20/2017 06:12:00 Plugins Info Loading plugin: gamepad_joystick_win64.dll
2/20/2017 06:12:00 Plugins Info Loading plugin: teamspeak_control_plugin.dll
@dallasbpeters
dallasbpeters / gather-basic-typography.md
Last active January 31, 2017 18:28
This document serves as a jumping off point for Bible typography on mobile devices. These rules should be seen as a starting point and it is almost guaranteed that tweaks will need to be made to these baseline rules.

Basic Rules for the Gather Bible Reading Experience

  • Bible font is Noto Serif Regular
  • All paragraphs and h1-h6 headings should be block level elements
  • Spans within a paragraph should be inline elements

SECTION HEADINGS (H1-H6)

  • 20dp size
  • 1.2x line-height with an 18pt space above and below any other element.
  • Color #232D3A or rgb(35, 45, 58).
@dallasbpeters
dallasbpeters / Destiny-API-reference.md
Created September 16, 2016 01:38 — forked from jdstein1/Destiny-API-reference.md
A list of APIs for player data in Bungie's Destiny

Destiny API reference

A list of APIs for player data in Bungie's Destiny

Groups

Clans

API - Clan

@dallasbpeters
dallasbpeters / destiny_redeem_script.js
Created January 8, 2016 04:03
Destiny Redeem Codes
var codes=["YKA-RJG-MH9", "3DA-P4X-F6A", "MVD-4N3-NKH", "TCN-HCD-TGY", "HDX-ALM-V4K", "473-MXR-3X9", "JMR-LFN-4A3", "HC3-H44-DKC", "69P-KRM-JJA", "69P-VCH-337", "69R-CKD-X7L", "69R-DDD-FCP", "69R-F99-AXG", "69R-VL7-J6A", "69X-DJN-74V", "6A7-7NP-3X7", "6A9-DTG-YGN", "7F9-767-F74", "FJ9-LAM-67F", "JD7-4CM-HJG", "JDT-NLC-JKM", "JNX-DMH-XLA", "7CP-94V-LFP", "7MM-VPD-MHP", "RXC-9XJ-4MH", "X4C-FGX-MX3", "X9F-GMA-H6D", "N3L-XN6-PXF", "A7L-FYC-44X", "3VF-LGC-RLX"];
var codeField = document.getElementById("text_code");
var i = 0;
var delay = 2500;
function enterCodeLoop () { setTimeout(function () { codeField.value = codes[i]; $(".btn_submitCode")[0].click(); i++; if (i < codes.length) { enterCodeLoop(); } }, delay) }
@dallasbpeters
dallasbpeters / gist:91260847cdaaca2530cd
Created December 20, 2014 15:32
7E267D0A-2840-4E1C-B122-9D6180776347.dmp.txt
This file has been truncated, but you can view the full file.
MDRawHeader
signature = 0x504d444d
version = 0xa793
stream_count = 7
stream_directory_rva = 0x20
checksum = 0x0
time_date_stamp = 0x549595ba 2014-12-20 15:28:58
flags = 0x0
mDirectory[0]
@dallasbpeters
dallasbpeters / Ionic_Commands
Last active August 29, 2015 14:03
Ionic Startup and Commands
## To install Cordova, make sure you have Node.js installed, then run
$ sudo npm install -g cordova
## Install ionic
$ sudo npm install -g ionic
## Start a project
$ ionic start todo blank
$ cd todo
@dallasbpeters
dallasbpeters / sass-media-mixin
Created May 13, 2014 18:53
A Sass mixin for media queries
@mixin respond-to($media) {
@if $media == handhelds {
@media only screen and (max-width: 479px) { @content; }
}
@else if $media == wide-handhelds {
@media only screen and (min-width: 480px) and (max-width: 767px) { @content; }
}
@else if $media == tablets {
@media only screen and (min-width: 768px) and (max-width: 959px) { @content; }
}