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: Forgalmi jelzolampa fenyerzekelo ejszakai uzemmoddal | |
;* Rövid leírás: | |
; | |
;* Szerzők: Thaler Benedek EDDO10 | |
;* Mérőcsoport: CDU65 | |
; | |
;*************************************************************** | |
;* "AVR ExperimentBoard" port assignment information: | |
;*************************************************************** |
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 <node.h> | |
#include <v8.h> | |
#include <iostream> | |
using namespace v8; | |
using namespace node; | |
class Point | |
:ObjectWrap |
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
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="font" > | |
<edit mode="assign" name="hintstyle" > | |
<const>hintfull</const> | |
</edit> | |
</match> |
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 LIST_H_ | |
#define LIST_H_ | |
#include <cstddef> | |
template <typename T> | |
class List { | |
struct item { | |
T value; |
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 <cstdlib> | |
#define new _NEW_WRAPPER() + new | |
using namespace std; | |
int _NEW_WRAPPER() { | |
cout << "hello" << endl; | |
return 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
#!/bin/bash | |
wget http://home.mit.bme.hu/~laczko/digit_eredmenyek.pdf -N -q | |
if [ -e "digit_md5" ]; then | |
md5sum digit_md5 --status -c | |
if [ $? != 0 ]; then | |
echo "===FRISSÜLT===" | |
fi | |
else |
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
C_SRCS += \ | |
./library.c \ | |
./functions.c \ | |
./konyvtar.c | |
OBJS += \ | |
./library.o \ | |
./functions.o \ | |
./konyvtar.o |
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 <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#define MAX_STRING_LENGTH 101 | |
typedef struct { | |
char szerzo[101]; | |
char cim[101]; | |
unsigned kev; | |
char tema[101] ; |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
typedef struct _btree { | |
int value; | |
struct _btree *left; | |
struct _btree *right; | |
} btree; |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
typedef struct _btree { | |
int value; | |
struct _btree *left; | |
struct _btree *right; | |
} btree; |