Skip to content

Instantly share code, notes, and snippets.

View cjbrooks12's full-sized avatar

Casey Brooks cjbrooks12

View GitHub Profile
/*!
* Bootstrap v3.3.7 (https://getbootstrap.com)
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*!
* Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.3/customize/?id=c78cd796ed3d630f903dec748e113244)
* Config saved to config.json and https://gist.github.com/c78cd796ed3d630f903dec748e113244
*/
{
"_comments": {
"_backgroundColor": "#3C3F41",
"_backgroundColorLight": "#515658",
"_backgroundColorDark": "#3C3F41",
"_selectedBackgroundColor": "#0D293E",
"_emphasizedBackgroundColor": "#2F65CA",
"_dividerColor": "#282828",
"_secondaryDividerColor": "#4d535d",
"_controlColor": "#8C8C8C",
@cjbrooks12
cjbrooks12 / generate-articles.py
Last active February 1, 2018 19:49 — forked from jaden/generate-articles.py
Generates 5000 posts to test performance of Orchid. Originally from the Hugo file, but changed generated filenames and a few properties to work better with Orchid
# Create specified number of articles for Hugo benchmarks
from datetime import datetime
import random
import string
from sys import argv
import os
def generateWord(min_length = 1, max_length = 10):
length = random.randint(min_length, max_length)
@cjbrooks12
cjbrooks12 / FlowLayout.java
Last active August 29, 2015 14:14
Based on the code at https://nishantvnair.wordpress.com/2010/09/28/flowlayout-in-android/ and modified to be populated by an adapter
//https://nishantvnair.wordpress.com/2010/09/28/flowlayout-in-android/
public class FlowLayout extends ViewGroup {
public static final int DEFAULT_HORIZONTAL_SPACING = 5;
public static final int DEFAULT_VERTICAL_SPACING = 5;
private final int horizontalSpacing;
private final int verticalSpacing;
private final AdapterObserver observer = new AdapterObserver();
private List<RowMeasurement> currentRows = Collections.emptyList();
@cjbrooks12
cjbrooks12 / TimePreference.java
Last active August 29, 2015 14:14
based on answer t o SO question: http://stackoverflow.com/questions/5533078/timepicker-in-preferencescreen modified to correctly set the initial value in the local timezone given millis UTC
//based on answer t o SO question: http://stackoverflow.com/questions/5533078/timepicker-in-preferencescreen
//modified to correctly set the initial value in the local timezone given millis UTC
public class TimePreference extends DialogPreference {
private Calendar calendar;
private TimePicker picker = null;
private Context context;
public TimePreference(Context context) {
this(context, null);