Skip to content

Instantly share code, notes, and snippets.

@thinkAmi
thinkAmi / AndroidManifest.xml
Created August 14, 2013 22:04
RubotoでNFCを読み込むサンプル
<?xml version='1.0' encoding='UTF-8'?>
<manifest package='com.example.nfc_read' android:versionCode='1' android:versionName='1.0' xmlns:android='http://schemas.android.com/apk/res/android'>
<application android:hardwareAccelerated='true' android:icon='@drawable/ic_launcher' android:label='@string/app_name' android:largeHeap='true'>
<activity android:label='@string/app_name' android:name='NfcReadActivity'>
<intent-filter>
<action android:name='android.intent.action.MAIN'/>
<category android:name='android.intent.category.LAUNCHER'/>
</intent-filter>
<!-- intent-filterの追加 ここから -->
@elcuervo
elcuervo / DashCat.md
Last active October 13, 2015 23:18
Suggestions and bug reports of DashCat

What is DashCat?

It's a twitter-like GitHub browser. I've made it the last weekend for me but seems to be something cool for some people.

DashCat

What is this Gist

It's a place where I can discuss stuff of the app

@lucasallan
lucasallan / install_postgis_osx.sh
Created September 6, 2011 21:03 — forked from klebervirgilio/install_postgis_osx.sh
Installing PostGIS on Mac OS X and Ubuntu
# Some good references are:
# http://russbrooks.com/2010/11/25/install-postgresql-9-on-os-x
# http://www.paolocorti.net/2008/01/30/installing-postgis-on-ubuntu/
# http://postgis.refractions.net/documentation/manual-1.5/ch02.html#id2630392
#1. Install PostgreSQL postgis and postgres
brew install postgis
initdb /usr/local/var/postgres
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start