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 <iostream> | |
#include <typeinfo> | |
class B { | |
}; | |
class A { | |
public: | |
virtual ~A() = default; | |
}; |
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 <iostream> | |
#include <locale> | |
#include <ostream> | |
#include <sstream> | |
#include <tuple> | |
#include <type_traits> | |
#include <utility> | |
#define SHOW_TREE 0 |
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 <iostream> | |
#include <ostream> | |
#include <type_traits> | |
#include <utility> | |
template <char X, char... Xs> | |
struct PrintfHelper { | |
template <std::size_t Ny, typename... Ys> | |
struct Inner { | |
static std::ostream &run(std::ostream &os, Ys &&... ys) { |
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 <cstdlib> | |
#include <iostream> | |
#include <type_traits> | |
#include <string> | |
template <char... xs> | |
struct FooIntLiteral { | |
using result_type = int; |
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
set-option -g default-terminal "screen-256color" | |
set-window-option -g utf8 on | |
set-option -g status-position bottom | |
set-option -g set-titles on | |
set-option -g set-titles-string '[#S:#I #H] #W' |
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
URxvt*transparent:false | |
URxvt*saveLines:12000 | |
URxvt*foreground:White | |
URxvt*depth:32 | |
URxvt*background:rgba:1100/1100/1100/f333 | |
URxvt*color12:RoyalBlue | |
Xft.antialias:true | |
Xft.hinting:true | |
Xft.hintstyle:hintfull | |
Xft.rgba:subpixel |
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 <iostream> | |
class A { | |
public: | |
virtual ~A() { } | |
virtual void Foo() { | |
std::cout << "Hello from A!" << std::endl; | |
} | |
}; |
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
# Contributor: jiuren <[email protected]> | |
# Maintainer: Benoit Favre <[email protected]> | |
# Contributor: Kristof Marussy <[email protected]> | |
pkgname=liblinear | |
pkgver=1.94 | |
pkgrel=3 | |
pkgdesc="A Library for Large Linear Classification" | |
arch=('i686' 'x86_64') | |
url="http://www.csie.ntu.edu.tw/~cjlin/liblinear/" | |
license=('BSD') |
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
#ifndef SUCCESS_SHAREABLE_H_ | |
#define SUCCESS_SHAREABLE_H_ | |
#include <memory> | |
#include <utility> | |
namespace success { | |
template <typename T> | |
class Shareable : private std::shared_ptr<T> { |
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
;*************************************************************** | |
;* Feladat: | |
;* Rövid leírás: | |
; | |
;* Szerzõ: Marussy Kristóf | |
;* Mérõcsoport: | |
; | |
;*************************************************************** | |
;* "AVR ExperimentBoard" port assignment information: | |
;*************************************************************** |