tmux new [-s name] [cmd]
(:new
) - new session
tmux ls
(:ls
) - list sessionstmux switch [-t name]
(:switch
) - switches to an existing session
// g++ `pkg-config cairo-ft --cflags --libs` -lglut main.cpp | |
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
#include <cassert> | |
#ifdef _MSC_VER | |
#include <windows.h> | |
#include <cairo.h> | |
#pragma comment(lib, "cairo.lib") |
/* | |
* g++ -lboost_system -lboost_iostreams -lboost_regex -lpthread -fPIC -g -shared -Wl,-soname,libnss_openvpn.so.2 -o /lib/libnss_openvpn.so.2 libnss_openvpn.cpp | |
*/ | |
#include <string.h> | |
#include <nss.h> | |
#include <iostream> | |
#include <vector> | |
#include <map> | |
#include <boost/asio.hpp> |
/* | |
* Example of `builder' design pattern. | |
* Copyright (C) 2011 Radek Pazdera | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, |
One bugfix | |
http://www.sencha.com/forum/showthread.php?23615-Grid-Search-Plugin&p=799141&viewfull=1#post799141 | |
For datecolumns like: | |
,{ | |
text:'date', | |
dataIndex:'datecreated', | |
xtype:'datecolumn', | |
format:'d.m.Y H:i' | |
} |
// This package implements 128-bit ("double double") floating point using | |
// a pair of 64-bit hardware floating point values and standard hardware | |
// floating point operations. It is based directly on libqd by Yozo Hida, | |
// Xiaoye S. Li, David H. Bailey, Yves Renard and E. Jason Riedy. Source: | |
// http://crd.lbl.gov/~dhbailey/mpdist/qd-2.3.13.tar.gz | |
package float128 | |
import ( | |
"errors" | |
"fmt" |
SetOutputFilter DEFLATE |
var newGridCellValue = '', | |
deleteGridCellValue = false; | |
Ext.define('ExcelCellEditing', { | |
extend: 'Ext.grid.plugin.CellEditing', | |
alias: 'plugin.excelcellediting', | |
initEditTriggers: function () { | |
var me = this; |
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
// 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. | |
// |