Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am radicaljims on github.
  • I am jickles (https://keybase.io/jickles) on keybase.
  • I have a public key ASABtID8ZPHpY9vFAF841997RUn2q96leXaHw5sT6hrdhQo

To claim this, I am signing this object:

@radicaljims
radicaljims / output
Last active March 2, 2019 05:01
C++ has unnamed classes!
clang version 6.0.0-1ubuntu2 (tags/RELEASE_600/final)
The message is 1 `action` 2 is 3
The (int) sum is 3
The message is 3.000000 `action` 2.000000 is 1.000000
The (float) difference is 1
import operator
import copy
todays = range(10)
yesterdays = copy.copy(todays)[1:]
# todays = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
# yesterdays = [1, 2, 3, 4, 5, 6, 7, 8, 9]
# now pair up a today with a yesterday...
class FocusInFilter : public QObject
{
Q_OBJECT
public:
FocusInFilter(QObject *parent = nullptr) : QObject(parent)
{}
signals: