QDeclarativeComponent
represents the source code of a .qml file, to create it, you need aQDeclarativeEngine
. You can also create a component within aQDeclarativeContext
QDeclarativeEngine
manages the differentQDeclarativeContext
and their relationshipsQDeclarativeContext
can have as parent aQDeclarativeEngine
or anotherQDeclarativeContext
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alsdkj alsdkasl | |
lksdfjsldk 1/1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <stdio.h> | |
#include "stack.h" | |
void push(struct node** first, struct node** addAfter, const char val){ | |
struct node* top; | |
top = malloc(sizeof(struct node*)); | |
top->val = val; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
panic: runtime error: invalid memory address or nil pointer dereference | |
[signal 0xb code=0x1 addr=0x20 pc=0x400d33] | |
runtime.panic+0xac /build/src/release-build/src/pkg/runtime/proc.c:1060 | |
runtime.panic(0x468020, 0xf8400103e0) | |
runtime.panicstring+0xa3 /build/src/release-build/src/pkg/runtime/runtime.c:116 | |
runtime.panicstring(0x4c89c6, 0x20) | |
runtime.sigpanic+0x144 /build/src/release-build/src/pkg/runtime/linux/thread.c:292 | |
runtime.sigpanic() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
""" | |
A python logging Handler that use ZeroMQ (ØMQ). | |
+------+ +------+ +-------+ | |
| app1 | | app2 | | app X | | |
+------+ +------+ +-------+ | |
| PUSH | PUSH | PUSH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/home/flav/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim73,/usr/share/vim/vimfiles/after,/home/lav/.vim/after,/home/flav/.vim/addons/vim-addon-manage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun SetupVAM() | |
set runtimepath+=/home/flav/.vim/addons/vim-addon-manager | |
call vam#ActivateAddons(["github:OriginalCopy"],{'auto_install' : 0}) | |
endf | |
call SetupVAM() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static function_entry php_meta_functions[] = { | |
PHP_FE(meta_test, NULL) | |
PHP_FE(meta_scanner_init, NULL) | |
PHP_FE(meta_scanner_get, NULL) | |
PHP_FE(meta_scanner_token_name, NULL) | |
{NULL, NULL, NULL} | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assert( | |
apx->type==SH_RESOLVED || | |
apx->type==RD_RESOLVED || | |
apx->type==SSCONFLICT || | |
apx->type==SRCONFLICT || | |
apx->type==RRCONFLICT || | |
apy->type==SH_RESOLVED || | |
apy->type==RD_RESOLVED || | |
apy->type==SSCONFLICT || | |
apy->type==SRCONFLICT || |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source ~/.vimrc.local | |
set guifont=Bitstream\ Vera\ Sans\ Mono\ 8 |