Skip to content

Instantly share code, notes, and snippets.

View kris7t's full-sized avatar

Kristóf Marussy kris7t

View GitHub Profile
!!NVfp5.0
OPTION NV_shader_atomic_float;
OPTION ARB_fragment_program_shadow;
PARAM c[135] = { program.local[0..134] };
ATTRIB fragment_attrib[] = { fragment.attrib[0..6] };
TEMP R0, R1, R2, R3, R4, R5, R6, R7;
TEMP RC, HC;
OUTPUT result_color0 = result.color;
TEXTURE texture0 = texture[0];
TEXTURE texture1 = texture[1];
;***************************************************************
;* Feladat:
;* Rövid leírás:
;
;* Szerzõ: Marussy Kristóf
;* Mérõcsoport:
;
;***************************************************************
;* "AVR ExperimentBoard" port assignment information:
;***************************************************************
#ifndef SUCCESS_SHAREABLE_H_
#define SUCCESS_SHAREABLE_H_
#include <memory>
#include <utility>
namespace success {
template <typename T>
class Shareable : private std::shared_ptr<T> {
# Contributor: jiuren <qiuwei1987@gmail.com>
# Maintainer: Benoit Favre <benoit.favre@lif.univ-mrs.fr>
# Contributor: Kristof Marussy <kris7topher@gmail.com>
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')
#include <iostream>
class A {
public:
virtual ~A() { }
virtual void Foo() {
std::cout << "Hello from A!" << std::endl;
}
};
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
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'
#include <cstdlib>
#include <iostream>
#include <type_traits>
#include <string>
template <char... xs>
struct FooIntLiteral {
using result_type = int;
#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) {
#include <iostream>
#include <locale>
#include <ostream>
#include <sstream>
#include <tuple>
#include <type_traits>
#include <utility>
#define SHOW_TREE 0