Skip to content

Instantly share code, notes, and snippets.

View christopherjenkins's full-sized avatar

Chris Jenkins christopherjenkins

  • FloQast
  • Los Angeles, CA
View GitHub Profile

Keybase proof

I hereby claim:

  • I am christopherjenkins on github.
  • I am chrisjenkins (https://keybase.io/chrisjenkins) on keybase.
  • I have a public key ASCgmOibqwQwPYp_op5x23JasFfQ2vcGZiLPIf2YLXWmywo

To claim this, I am signing this object:

function clearfilter() {
$('.searchbox').find('input:text, input:password, input:file, select, textarea').val('');
$('.searchbox').find('input:radio, input:checkbox').removeAttr('checked').removeAttr('selected').trigger('change');
}
@christopherjenkins
christopherjenkins / style.css
Created October 18, 2012 06:59
Social Font-Face CSS
@font-face{
font-family:'WebFont';
src: url('websymbols-regular-webfont.eot');
src: url('websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('websymbols-regular-webfont.woff') format('woff'),
url('websymbols-regular-webfont.ttf') format('truetype'),
url('websymbols-regular-webfont.svg#webfont') format('svg');
}
body {
@christopherjenkins
christopherjenkins / index.html
Created October 18, 2012 06:57
Social Font-Face HTML
<!DOCTYPE html>
<head>
<title>Vector Font Icons</title>
<link rel="stylesheet" href="includes/style.css" type="text/css" charset="utf-8" />
</head>
<body>
<div>
<h1>Web Symbols Typeface & Examples</h1>
<p>Web Symbols is an Open Font Licensed Font that can be <a href="http://www.justbenicestudio.com/studio/websymbols/">downloaded</a> and uploaded to your server to create some really nifty icons that we can manipulate in even cooler ways.</p>
<p>View the Source and the CSS to get some more information on how to implement these on your projects.</p>
@christopherjenkins
christopherjenkins / meta.html
Created October 16, 2012 18:08
Facebook Meta Tags
<meta property="og:image" content="images/facebooklogo.png"/> <!--Image to be used by facebook-->
<meta property="og:title" content="{BlogTitle}"/> <!--Pull blog title-->
<meta property="og:site_name" content="{SiteName}"/> <!--Pull your site name-->
<meta property="og:type" content="blog"/> <!--identify the purpose of the content-->
@christopherjenkins
christopherjenkins / database.yml
Created October 13, 2012 21:05
SQL Server Adapter for Ruby
#Add these gems to your Gemfile in the approot
#gem 'tiny_tds'
#gem 'activerecord-sqlserver-adapter'
#Below is the config/database.yml file used to create a connection
development:
adapter: sqlserver
host: 127.0.0.1
#element {
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
}