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
| { | |
| "basics": { | |
| "name": "Thomas Edison", | |
| "label": "Inventor and Businessman", | |
| "picture": "https://example.com/photo.jpg", | |
| "email": "thomas.edison@example.com", | |
| "phone": "(123) 456-7890", | |
| "url": "https://thomasedison.com", | |
| "summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
| "location": { |
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
| { | |
| "basics": { | |
| "name": "Thomas Edison", | |
| "label": "Inventor and Businessman", | |
| "picture": "https://example.com/photo.jpg", | |
| "email": "thomas.edison@example.com", | |
| "phone": "(123) 456-7890", | |
| "url": "https://thomasedison.com", | |
| "summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
| "location": { |
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 <time.h> | |
| #define ROZMIAR 1024 | |
| typedef struct wezel_ { | |
| struct wezel_ *nastepny, *poprzedni; | |
| int paczka[ROZMIAR]; | |
| int uzyte; |
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> | |
| #include <errno.h> | |
| #ifdef _WIN32 | |
| #include <windows.h> | |
| #define chdir _chdir | |
| #define WIN 1 | |
| #define UNIX 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 <stdio.h> | |
| #include <stdlib.h> | |
| typedef struct { | |
| int psize, capacity; | |
| int *rows; | |
| } pascal; | |
| int getNewton(pascal*, int, int); | |
| void buildPascal(pascal*); |
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
| //Keyboard: | |
| //'s' - start | |
| //'f' - failed | |
| //'c' - completed | |
| # include "Timer.h" | |
| # define laser0 2 | |
| # define laser1 3 | |
| # define laser2 4 |
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
| class wildfire(object): | |
| def __init__(self, plik): | |
| self.plik = open(plik, 'r') | |
| self.mapa = [] | |
| self.transform(plik) | |
| def transform(self, plik): | |
| out_plik = plik[:-3] | |
| out_plik += '.ans' | |
| out = open(out_plik, '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
| class wildfire(object): | |
| def __init__(self, plik): | |
| self.plik = open(plik, 'r') | |
| self.mapa = [] | |
| self.transform(plik) | |
| def transform(self, plik): | |
| out_plik = plik[:-3] | |
| out_plik += '.ans' | |
| out = open(out_plik, 'w') |