Skip to content

Instantly share code, notes, and snippets.

View bsara's full-sized avatar
😱

Brandon Sarà bsara

😱
View GitHub Profile
@bsara
bsara / Emberjs-ExtendedTextArea.html
Last active August 29, 2015 13:57
An extended version of the Ember.TextArea component. Extended features include: onClick Actions, and auto focus on page load.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Ember.js - Extended Text Area</title>
<script type='text/javascript' src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script type='text/javascript' src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.2.1/handlebars.min.js"></script>
<script type='text/javascript' src="http://builds.emberjs.com.s3.amazonaws.com/tags/v1.4.0/ember.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://necolas.github.io/normalize.css/3.0.0/normalize.css">
@bsara
bsara / Emberjs-ExtendedTextField.html
Last active August 29, 2015 13:57
An extended version of the Ember.TextField component. Extended features include: onClick Actions, and auto focus on page load.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Ember.js - Extended Text Field</title>
<script type='text/javascript' src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script type='text/javascript' src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.2.1/handlebars.min.js"></script>
<script type='text/javascript' src="http://builds.emberjs.com.s3.amazonaws.com/tags/v1.4.0/ember.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://necolas.github.io/normalize.css/3.0.0/normalize.css">
@bsara
bsara / fchat-google.css
Created June 9, 2014 22:25
Firehose Chat "Google" Theme
/* TINY RESET */
#fchat > * {
border: 0;
font-family: sans-serif;
font-size: 100%;
margin: 0;
padding: 0;
vertical-align: baseline;
-webkit-box-sizing: border-box;
@bsara
bsara / HourOfDayPreference.java
Last active August 29, 2015 14:06
Android Preference for Selecting Hour of Day (12/24 Hour Clock Compatible)
/*
The MIT License (MIT)
Copyright (c) 2015 Brandon Sara (http://bsara.github.io)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@bsara
bsara / TimePreference.java
Last active August 29, 2015 14:06
Android Preference for Selecting Time of Day (12/24 Hour Clock Compatible)
/*
The MIT License (MIT)
Copyright (c) 2015 Brandon Sara (http://bsara.github.io)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
cinst tortoisesvn
cinst tortoisegit
cinst sourcetree
cinst atom
cinst sublimetext3
cinst powergui
cinst nugetpackageexplorer
cinst winmerge
cinst ilspy
cinst powershell
cinst pscx
cinst 7zip
cinst git.commandline
cinst posh-git
cinst svn
cinst nuget.commandline
cinst maven
cinst npm
cinst linkshellextension
@bsara
bsara / .jscsrc
Created May 29, 2015 19:10
JSCS Default Settings
{
"disallowEmptyBlocks": true,
"disallowIdentifierNames": [
"that"
],
"disallowImplicitTypeConversion": [
"numeric",
"boolean"
],
"disallowKeywordsOnNewLine": [
@bsara
bsara / standard.editorconfig
Last active May 24, 2017 22:53
EditorConfig (Standard)
root = true
[*]
charset = utf-8
continuation_indent_size = 2
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
@bsara
bsara / android.gitattributes
Last active June 26, 2017 18:08
.gitattributes File for Android Projects
# Project
* text eol=lf
*.cmd eol=crlf
*.cpp diff=cpp
*.h diff=cpp
*.java diff=java