Skip to content

Instantly share code, notes, and snippets.

View sr105's full-sized avatar

Harvey Chapman sr105

View GitHub Profile
Desktop$ hg init TestHg
Desktop$ cd TestHg/
TestHg$ touch A
TestHg$ hg ci -Am "First A"
adding A
TestHg$ mkdir sub1
TestHg$ hg cp A sub1/A
TestHg$ hg ci -Am "sub1 A"
TestHg$ mkdir sub2
TestHg$ hg cp A sub2/A
@sr105
sr105 / gist:9253828
Created February 27, 2014 16:40
sources layout
base
rdm git://github.com/sr105/rdm-base (fetch)
rdm git://github.com/sr105/rdm-base (push)
* (no branch) 9471f9e Modify freescale base for RDM and wandboard dual
remotes/m/master -> rdm/master
remotes/rdm/master 9471f9e Modify freescale base for RDM and wandboard dual
meta-fsl-arm
yocto git://git.yoctoproject.org/meta-fsl-arm (fetch)
yocto git://git.yoctoproject.org/meta-fsl-arm (push)
* (no branch) af392c2 gst-fsl-plugin: Activate gstreamer AAC decoder.
@sr105
sr105 / qpropertymodel.cpp
Last active April 2, 2019 05:05
QPropertyModel class for easily turning any QObject-derived subclass with properties into a one-row model.
// QPropertyModel
// - a class for easily turning any QObject-derived subclass with properties into a one-row model
//
// Copyright 2013 - Harvey Chapman <[email protected]>
// Source: https://gist.github.com/sr105/7955969
// License:
// This work is licensed under the Creative Commons Attribution-ShareAlike
// 4.0 International License. To view a copy of this license, visit
// http://creativecommons.org/licenses/by-sa/4.0/deed.en_US.
//