Skip to content

Instantly share code, notes, and snippets.

@bryanjswift
bryanjswift / UAgentInfo.java
Created March 1, 2010 09:43
User Agent detection in Java
/* *******************************************
// LICENSE INFORMATION
// The code, "Detecting Smartphones Using PHP"
// by Anthony Hand, is licensed under a Creative Commons
// Attribution 3.0 United States License.
//
// Updated 01 March 2010 by Bryan J Swift
// - Remove un-needed if statements instead just returning the boolean
// inside the if clause
//
/***************************************************************************
Author : Joey Mazzarelli
Email : [email protected]
Homepage : http://joey.mazzarelli.com/js-opts
Source : http://bitbucket.org/mazzarell/js-opts/
License : Simplified BSD License
Version : 1.0
Copyright 2010 Joey Mazzarelli. All rights reserved.
package com.bryanjswift.android.view;
import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.EditText;
import android.widget.ScrollView;
/**
var Card = new Class({
Implements: [Options, Events],
options: {
index: 0,
bg: null
},
initialize: function(el, options){
<!-- Custom CSS/JavaScript -->
<script type="text/javascript" src="<?= PERCH_LOGINPATH ?>/plugins/ui/usability.js"></script>
@bryanjswift
bryanjswift / ec2-dns.rb
Created December 2, 2010 04:55
Print out useful information about running ec2 instances
#!/usr/bin/env ruby
#
# This ruby script will print out useful information about running ec2
# instances
#
# Reads AWS access and secret keys from environment variables
#
# Requires the amazon-ec2 gem (gem install amazon-ec2)
#
# Author: Bryan J Swift ([email protected])
/* Graph */
#graph { padding: 5px; width: 477px; height: 299px; }
@bryanjswift
bryanjswift / Servlet.scala
Created June 11, 2011 04:51
Basic Servlet trait and helper objects to make HttpServletRequest and HttpServletResponse interactions easier
package com.example
import javax.servlet.http.{Cookie, HttpServlet, HttpServletRequest => Request, HttpServletResponse => Response}
import scala.util.matching.Regex
trait Servlet extends HttpServlet {
override def doGet(request:Request, response:Response) = doGet(new HttpHelper(request, response))
override def doPost(request:Request, response:Response) = doPost(new HttpHelper(request, response))
def doGet(http:HttpHelper) { }
def doPost(http:HttpHelper) { }
@bryanjswift
bryanjswift / .rtorrent.rc
Created December 28, 2011 02:42
rtorrent configuration file with description
# This is an example resource file for rTorrent. Copy to
# ~/.rtorrent.rc and enable/modify the options as needed. Remember to
# uncomment the options you wish to enable.
# Maximum and minimum number of peers to connect to per torrent.
min_peers = 1
max_peers = 100
# Same as above but for seeding completed torrents (-1 = same as downloading)