Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn
.
Author: Kaspars Dambis
kaspars.net / @konstruktors
module Data.BKTree ( | |
BKTree, | |
MetricSpace(..), | |
empty, | |
null, | |
size, | |
singleton, | |
insert, | |
query, |
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="wrap_content" android:layout_height="wrap_content" | |
android:orientation="vertical"> | |
<RelativeLayout android:layout_width="fill_parent" | |
android:layout_height="wrap_content" android:id="@+id/top_control_bar"> | |
<Spinner android:id="@+id/sort_by" android:layout_width="fill_parent" | |
android:layout_height="wrap_content" android:entries="@array/default_sorts" /> | |
</RelativeLayout> | |
<LinearLayout android:id="@+id/bottom_control_bar" |
import os, sys | |
c_like = {"single": "//", "multi_start": ("/*",), "multi_end": ("*/",),} | |
langs = { | |
"py": {"single": "#", "multi_start": ("'''", '"""'), | |
"multi_end": ("'''", '"""'),}, | |
"html": {"single": "//", "multi_start": ("<!--", "/*"), | |
"multi_end": ("-->", "*/"),}, | |
"js": c_like, |
gpg --keyserver keys.gnupg.net --recv-key 89DF5277 | |
gpg -a --export 89DF5277 | sudo apt-key add - |
/* | |
* Oscilloscope | |
* Gives a visual rendering of analog pin 0 in realtime. | |
* | |
* This project is part of Accrochages | |
* See http://accrochages.drone.ws | |
* | |
* (c) 2008 Sofian Audry ([email protected]) | |
* | |
* This program is free software: you can redistribute it and/or modify |
<?php | |
/* | |
Description: A simple class based on a tutorial at WP.Tuts that creates an page with metaboxes. | |
Author: Stephen Harris | |
Author URI: http://www.stephenharris.info | |
*/ | |
/* Copyright 2011 Stephen Harris ([email protected]) | |
This program is free software; you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by |
Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn
.
Author: Kaspars Dambis
kaspars.net / @konstruktors
<?php | |
/* | |
Plugin Name: Easy Digital Downloads - Variable Pricing License Activation Limits | |
Plugin URL: http://easydigitaldownloads.com/extension/ | |
Description: Limit the number of license activations permitted based on variable prices | |
Version: 1.0 | |
Author: Pippin Williamson | |
Author URI: http://pippinsplugins.com | |
Contributors: mordauk | |
*/ |
find . -iname "*.php" -type f | xgettext \ | |
--from-code=UTF-8 \ | |
--keyword=__ \ | |
--keyword=_e \ | |
--keyword=_n:1,2 \ | |
--keyword=_x:1,2c \ | |
--keyword=_ex:1,2c \ | |
--keyword=_nx:1,2,4c \ | |
--default-domain=pronamic_ideal \ | |
--language=PHP \ |