Skip to content

Instantly share code, notes, and snippets.

View dokinkon's full-sized avatar

chaochih.lin dokinkon

  • freelance
  • Taiwan
View GitHub Profile
@dokinkon
dokinkon / gist:3648468
Created September 6, 2012 00:16
vimrc
syntax on
set ignorecase
set ru
set nu
set showcmd
set autoindent
set hlsearch
set cin
set smartindent
set nobackup
@dokinkon
dokinkon / gist:4275597
Created December 13, 2012 10:34
QGraphicsItem to QPixmap
QPixmap GraphicsItem::toPixmap() const
{
if (!scene()) {
qWarning() << "[ControlItem::toPixmap] scene is null.";
return QPixmap();
}
QRectF r = boundingRect();
QPixmap pixmap(r.width(), r.height());
pixmap.fill(QColor(0, 0, 0, 0));
@dokinkon
dokinkon / gist:4283767
Created December 14, 2012 08:51
Qt4 copy directory
static bool cpDir(const QString &srcPath, const QString &dstPath)
{
rmDir(dstPath);
QDir parentDstDir(QFileInfo(dstPath).path());
if (!parentDstDir.mkdir(QFileInfo(dstPath).fileName()))
return false;
QDir srcDir(srcPath);
foreach(const QFileInfo &info, srcDir.entryInfoList(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot)) {
QString srcItemPath = srcPath + "/" + info.fileName();
@dokinkon
dokinkon / Pan GraphicsView
Created February 7, 2013 08:02
Pan GraphicsView
void WorkspaceView::mousePressEvent(QMouseEvent *event)
{
Q_D(WorkspaceView);
QGraphicsView::mousePressEvent(event);
if (event->button()==Qt::MiddleButton) {
d->m_lastPanPosition = event->pos();
d->m_panning = true;
setCursor(Qt::ClosedHandCursor);
}
@dokinkon
dokinkon / gist:7925986
Last active December 31, 2015 03:09
MainAI
aaaa
bbbb
cccc
@dokinkon
dokinkon / gist:81bdad21022de167d7a2
Last active August 29, 2015 14:24
Coding Style of objective-c
// Private member variable
NSString * _name;
int _age;
- (void)theFunction {
if (b>1) {
for (int i=0;i<3;i++) {
NSLog(@"Foo");
}
} else {
<?xml version="1.0" encoding="utf-8"?>
<com.siegfried.myapplication.CustomKeyboardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:keyBackground="@drawable/keyboard_background"
android:background="@drawable/keyboard_background">
</com.siegfried.myapplication.CustomKeyboardView>
public class RxMediaPlayer {
public static final int DEFAULT_SAMPLING_MILLIS = 33;
public enum State {
IDLE("idle"),
INITIALIZED("initialize"),
PREPARING("preparing"),
PREPARED("prepared"),
STARTED("started"),
STOPPED("stopped"),
PAUSED("paused"),
public class RxKeyboardVisibilityDetector {
public final static class Change {
public final boolean visible;
public final int height;
Change(boolean visible, int height) {
this.visible = visible;
this.height = height;
}
@Override
public String toString() {
public class RxMediaRecorder {
public enum State {
INITIAL("initial"),
INITIALIZED("initialized"),
DATASOURCE_CONFIGURED("data_source_configured"),
PREPARED("prepared"),
RECORDING("recording"),
STOPPED("stopped"),
PAUSED("paused"),
PLAYBACK_COMPLETED("completed"),