I hereby claim:
- I am shiki on github.
- I am shiki (https://keybase.io/shiki) on keybase.
- I have a public key ASBaTL2eS2p_By6IuQMrY9yrTRT7jYHIA3ONmtkkw4B91go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env php | |
<?php | |
/* | |
Copyright 2013 Stuart Carnie and other contributors | |
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 |
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by configure, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure --prefix=/opt/boxen/homebrew/Cellar/php54-imagick/3.1.0RC2 --with-php-config=/opt/boxen/homebrew/Cellar/php54/5.4.12/bin/php-config | |
## --------- ## | |
## Platform. ## |
public static function getSubTopicIdsOfTopic($topicId, &$topics = null) | |
{ | |
$list = array(); | |
if (empty($topics)) | |
$topics = PTopic::model()->findAll(); | |
foreach ($topics as $key => $topic) { | |
if ($topic->parentId == $topicId) { | |
$list[] = $topic->id; | |
$list = array_merge($list, self::getSubTopicIdsOfTopic($topic->id, $topics)); | |
} |
#!/bin/sh | |
# | |
# beanstalkd - a simple, fast workqueue service | |
# | |
# chkconfig: - 57 47 | |
# description: a simple, fast workqueue service | |
# processname: beanstalkd | |
# config: /etc/sysconfig/beanstalkd | |
# |
-locale en_US --keep-as3-metadata+=TypeHint,EditorData,Embed -managers flash.fonts.JREFontManager flash.fonts.BatikFontManager flash.fonts.AFEFontManager |
<div id="upload-tabs" class="dash-content-tabs"> | |
<ul> | |
<li class="dash-content-tab-link"><a href="javascript:;" rel="0"><span>From File</span></a></li> | |
<li class="dash-content-tab-link"><a href="javascript:;" rel="1"><span>From URL</span></a></li> | |
</ul> | |
</div> | |
<div id="upload-pages-slide-wrap" class="vslide-wrap"> | |
<div id="upload-pages" class="pages"> | |
<div class="page"> |
/** | |
* Reusable vertical slider component used on dashboard-upload tab and other tabs. | |
*/ | |
T.Components.VerticalSlider = { | |
dataNamespace: "VerticalSlider", | |
container: null, | |
pagesContainer: null, | |
pages: null, | |
/** |