Skip to content

Instantly share code, notes, and snippets.

View toby20130333's full-sized avatar
🌍
On Fighting

Tanbo Yi toby20130333

🌍
On Fighting
View GitHub Profile
@40
40 / httpQmlJson.qml
Created July 28, 2012 07:37
Simple HTTP JSON Request in QML
import bb.cascades 1.0
Page {
content: Container {
Label {
id: emailLabel
text: qsTr("Email")
}
Label {
id: urlLabel
import QtQuick 1.0
import MuseScore 1.0
import QtWebKit 1.0
import FileIO 1.0
MuseScore {
menuPath: "Plugins.ABC Web"
onRun: {
}
@knzm
knzm / gist:1909346
Created February 25, 2012 16:24
Windows で Zinnia をスタティックリンクするためのパッチ
Index: mmap.h
===================================================================
--- mmap.h (リビジョン 16)
+++ mmap.h (作業コピー)
@@ -112,7 +112,11 @@
CHECK_CLOSE_FALSE(false) << "unknown open mode:" << filename;
}
- hFile = CreateFile(filename, mode1, FILE_SHARE_READ, 0,
+ size_t len = 0;
@kovrov
kovrov / SwipeArea.qml
Last active August 16, 2023 14:50
Swipe
/* This code was written by Sergejs Kovrovs and has been placed in the public domain. */
import QtQuick 2.0
MouseArea {
property point origin
property bool ready: false
signal move(int x, int y)
signal swipe(string direction)