Содержание по проектам по моему Githab'у:
Норм проекты, но есть недочёты, нужно доделать (да ведь?):
Chess-parakeet
tempNote
Переписать на другой язык:
vocabulary-verge
Быстрые примеры и helloWorld'ы:\
| import CodeWorld | |
| -- https://code.world/haskell | |
| main = drawingOf rewq | |
| rewq = polyline $ getNFractal myShape1 | |
| getNFractal ps = [ x | i <- [ (1.0, 0.0), (0.0, 1.0)], x <- getChild2 i ps] | |
| getNFractal [] = [] | |
| Projects with my Wrapper over Asio: | |
| https://github.com/Lazzlo2096/Fibonacci-server | |
| https://github.com/Lazzlo2096/maPong | |
| https://github.com/Lazzlo2096/Boost.Asio.TCP-wrap | |
| https://github.com/Lazzlo2096/asio_simple_example |
| #1.[DONE] Pаздельная компиляция | |
| #2. Extract my boost asio tcp wrapper [ https://gist.github.com/Lazzlo2096/035ccc3f44ae13396ad0540b8dc7de03 ] | |
| #3. игра по сети | |
| #4. переписать так, чтобы она не зависила от конкретного движка | |
| #5. Переписать без ALX ? | |
| #6. | |
| #. --more else-- |
| # https://ru.wikipedia.org/wiki/Bogosort | |
| import random | |
| #random.sample(a, b) # https://docs.python.org/3.7/library/random.html#random.sample | |
| def isSorted(list): | |
| for i in range(len(list)-1): | |
| if not(list[i] < list[i+1]): | |
| return False | |
| return True | |
| from turtle import * | |
| import random | |
| k = 4 | |
| def my_figure(d, z): | |
| step = 100/z | |
| kk = 4 | |
| dd = 360/k | |
| fn dna_to_rna(dna: &str) -> String { | |
| // dna.chars().map(|c| match c { 'T' => 'U', _ => c } ).collect() | |
| // dna.chars().map(|c| { match c { 'T' => 'U', c => c, } } ).collect() | |
| dna.replace("T", "U") | |
| } | |
| // https://www.codewars.com/kata/reviews/5824a92c5ce9e05d7700000e/groups/5be0706b2934eb31570049b1 | |
| // https://www.codewars.com/kata/reviews/5824a92c5ce9e05d7700000e/groups/5b7aba0b0da8ff76920006e4 |
| https://github.com/Lazzlo2096/fdupes-xenon | |
| Необходимость: [maybe]\[want]\[need]\[necessary] | |
| Сложность: [easy]\[mid]\[hard] | |
| * - первоочередные задачи (без которых не былобы этой проги) | |
| WIP x 1 | |
| DONE x 2 | |
| ---------------------------------------------- | |
| 1) __old age__ |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <fcntl.h> | |
| #define CHUNK_SIZE 4096 | |
| #ifdef _WIN32 | |
| #include <wchar.h> | |
| #include <io.h> | |
| #define WIN32_LEAN_AND_MEAN |
Содержание по проектам по моему Githab'у:
Норм проекты, но есть недочёты, нужно доделать (да ведь?):
Chess-parakeet
tempNote
Переписать на другой язык:
vocabulary-verge
Быстрые примеры и helloWorld'ы:\
| // https://www.boost.org/doc/libs/1_66_0/more/getting_started/windows.html | |
| //cl /EHsc /I path\to\boost_1_66_0 path\to\example.cpp | |
| //g++ -I "C:\boost_1_66_0" ./main.cpp | |
| //echo 1 2 3 | ./a.exe | |
| //https://nuwen.net/mingw.html | |
| //g++ -I "C:\MinGW\include" ./main.cpp | |
| #include <boost/lambda/lambda.hpp> | |
| #include <iostream> |