for INF-2B Coursework 1
To help determine the x-over point.
python3 vis.py matcherTimes.txt| module Main where | |
| import Data.Char | |
| import qualified Data.Sequence as S | |
| import Data.Word ( Word8 ) | |
| import Debug.Trace | |
| import System.Environment | |
| import System.IO | |
| type Cell = Word8 |
for INF-2B Coursework 1
To help determine the x-over point.
python3 vis.py matcherTimes.txtI screwed up using git ("git checkout --" on the wrong file) and managed to delete the code I had just written... but it was still running in a process in a docker container. Here's how I got it back, using https://pypi.python.org/pypi/pyrasite/ and https://pypi.python.org/pypi/uncompyle6
apt-get update && apt-get install gdb
| #include <stdio.h> | |
| int main(int argc, char **argv) | |
| { | |
| printf("argc : %d\n", argc); | |
| printf("sizeof(argc) : %zu\n", sizeof(argc)); | |
| printf("argv[argc] == NULL: %s\n", argv[argc] == NULL ? "True" : "False"); | |
| return 0; | |
| } |
| #!/usr/bin/env perl | |
| # ------------------------------------------------------------------------- | |
| # file: dhw2ps.pl | |
| # task: convert the internal dwh file format of DigiMemo A501 to | |
| # ps or pdf files | |
| # authors: Jan Theofel ([email protected]) | |
| # Harald Koenig | |
| # version: 0.1 | |
| # license: free to use, an official license will follow |
| -- Turkce isimler sozlugu twitter : http://twitter.com/tserpico | |
| CREATE TABLE `isimler` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `isimler` varchar(255) DEFAULT NULL, | |
| `cinsiyet` varchar(255) DEFAULT NULL COMMENT 'erkek : E , kadın : K , uniseks : U', | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB; | |
| -- ---------------------------- |
| // not tested | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #define CELL_TYPE uint8_t | |
| #define CELL_COUNT 30000 | |
| CELL_TYPE *cell=NULL, *dp=NULL; |