Skip to content

Instantly share code, notes, and snippets.

View jim's full-sized avatar

Jim Benton jim

  • Discord
  • Chicago, IL
  • 08:45 (UTC -05:00)
View GitHub Profile
Google doesn't publish this list on the web; you have to go through the command line or API to get it.
┌─────────────────────┬────────────────────┬──────────────────────────────────────────┬──────────┬─────────────┬─────────────────────────┬──────────────────┐
│ MODEL_ID │ MAKE │ MODEL_NAME │ FORM │ RESOLUTION │ OS_VERSION_IDS │ TAGS │
├─────────────────────┼────────────────────┼──────────────────────────────────────────┼──────────┼─────────────┼─────────────────────────┼──────────────────┤
│ 1610 │ Vivo │ vivo 1610 │ PHYSICAL │ 1280 x 720 │ 23 │ │
│ ASUS_X00T_3 │ Asus │ ASUS_X00TD │ PHYSICAL │ 1080 x 2160 │ 27,28 │ │
│ AmatiTvEmulator │ Google │ Google TV Amati │ VIRTUAL │ 1080 x 1920 │ 29
<html>
</html>
@jim
jim / example.go
Created March 27, 2018 17:19
nil struct fields
package main
import "fmt"
type Bread struct {
name string
}
type Cheese struct {
milk string
SC.Statechart.create({
rootState: SC.State.design({
initialSubstate: 'ready',
ready: SC.State.design({
initialSubstate: 'simple',
#--
# Copyright (c) 2004-2010 David Heinemeier Hansson
#
# 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 furnished to do so, subject to
# the following conditions:
@jim
jim / dribble_example.html
Created November 8, 2010 18:55
Rough example for calling Dribbble API with JavaScript
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>untitled</title>
<meta name="generator" content="TextMate http://macromates.com/">
<meta name="author" content="Jim Benton">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.js" type="text/javascript" charset="utf-8"></script>
export RUBY_HEAP_MIN_SLOTS=1000000 export RUBY_HEAP_SLOTS_INCREMENT=1000000 export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1 export RUBY_GC_MALLOC_LIMIT=1000000000 export RUBY_HEAP_FREE_MIN=500000; "$@"
# see http://www.aeonscope.net/2010/02/22/managing-multiple-heroku-accounts/
# INTRODUCTION
# This script echos the active Heroku credentials (useful when switching between multiple Heroku accounts
# and remembering which one is active).
# USAGE
# ruby credentials.rb
$(function() {
if($.cookie('state') == 'hidden') {
$('a.hide').hide();
$('div.toBeHidden').hide();
} else {
$('a.show').hide();
}
$('a.hide').click(function() {
<?php
// setup your database connection
define('MYSQL_HOST', 'localhost');
define('MYSQL_USERNAME', 'root');
define('MYSQL_PASSWORD', '');
define('MYSQL_DB', 'textpattern');
// connect to the db
$link = mysql_connect(MYSQL_HOST, MYSQL_USERNAME, MYSQL_PASSWORD) or die('Could not connect: ' . mysql_error());