├── .gitattributes ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── AWS ├── commands.bash └── doc_readme.txt ├── Algorithms ├── Breadth-first │ └── breadth_first_list.py ├── Depth-first │ └── depth_first_list.py ├── Dijkstra │ ├── dijkstra.cpp │ ├── dijkstra.java │ └── dijkstra.py └── README.MD ├── Autonomations ├── Ansible │ ├── ansible.md │ └── commands.bash ├── project_builder_codeigniter__rsuite.sh └── project_builder_one.sh ├── Container & Orchestrations ├── Docker │ ├── README.MD │ ├── commands.bash │ ├── entrypoint.sh │ └── recipes │ │ └── docker_run_recipes.bash └── Kubernetes │ ├── .gitignore │ ├── NOTES.MD │ ├── README.MD │ ├── commands.bash │ ├── dashboard-adminuser.yaml │ └── tutorial │ ├── examples │ ├── deployments │ │ └── deployment_nginx.yaml │ └── pods │ │ ├── pod_accessible.yaml │ │ └── pod_nginx.yaml │ └── liveness_readiness │ ├── Dockerfile │ ├── app.py │ ├── deployment.yaml │ ├── original │ ├── deploy.yaml │ └── service.yaml │ ├── readme.md │ ├── requirement.txt │ └── service.yaml ├── Game Development ├── README.MD ├── java │ ├── Java Game Development.md │ └── libGDX │ │ ├── assets │ │ ├── default.fnt │ │ ├── default.png │ │ ├── uiskin.atlas │ │ ├── uiskin.json │ │ └── uiskin.png │ │ ├── libGDX.md │ │ ├── lib_gdx_commands.bash │ │ └── recipes │ │ ├── CustomButton.java │ │ ├── ScreenButtonSimple1.java │ │ ├── SpatialHash.java │ │ ├── TextureID.java │ │ ├── TextureManager.java │ │ └── textSize.java ├── javascript │ ├── .gitignore │ ├── README.MD │ ├── recipes │ │ ├── README.MD │ │ ├── animations │ │ │ └── fallingBal.js │ │ ├── check_browser_support.js │ │ ├── check_browser_support2.js │ │ ├── controls │ │ │ ├── controls_handlers_01.js │ │ │ ├── controls_handlers_02.js │ │ │ └── mouse_element_position.js │ │ ├── create_javascript_table.js │ │ ├── draws_and_shapes │ │ │ ├── bezier_curves │ │ │ │ ├── bezier_curves_cubic.js │ │ │ │ └── bezier_curves_quadratic.js │ │ │ ├── bricks.js │ │ │ ├── circle.js │ │ │ ├── grid.js │ │ │ ├── grid_improved.js │ │ │ ├── many_square_transparent.js │ │ │ ├── pac_man.js │ │ │ ├── path_2d │ │ │ │ └── path_2d_simple.js │ │ │ ├── rotationLikeLoader.js │ │ │ ├── simple_rect.js │ │ │ ├── smile.js │ │ │ ├── square.js │ │ │ ├── triangle.js │ │ │ └── two_simple_squares.js │ │ ├── fill_all_canvas_background.js │ │ ├── font │ │ │ └── simple.js │ │ ├── full_screen_api.js │ │ ├── grid_css_only.css │ │ ├── grid_svg.html │ │ ├── index.html │ │ ├── random_numbers.js │ │ ├── random_rgb.js │ │ ├── start_up_scripts │ │ │ ├── index.html │ │ │ ├── main.css │ │ │ ├── simple_01.js │ │ │ └── start_up_repo_01 │ │ │ │ └── public │ │ │ │ ├── index.html │ │ │ │ └── static │ │ │ │ ├── css │ │ │ │ └── main.css │ │ │ │ └── js │ │ │ │ ├── main.js │ │ │ │ └── src │ │ │ │ ├── Game.js │ │ │ │ ├── GameEngine.js │ │ │ │ ├── GameEvent.js │ │ │ │ ├── entities.js │ │ │ │ └── paintings.js │ │ └── styles_color │ │ │ ├── dots_multi_color.js │ │ │ ├── lineWidth.js │ │ │ ├── multi_color.js │ │ │ ├── ranibowBlocks.js │ │ │ ├── rgba.js │ │ │ └── transparency.js │ └── threejs │ │ ├── .DS_Store │ │ ├── .gitignore │ │ ├── README.MD │ │ ├── cinematicTank.js │ │ ├── index.html │ │ ├── main.css │ │ ├── main.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── recipes │ │ ├── core.js │ │ ├── demos │ │ └── tankMultiCamera.js │ │ ├── recipes.js │ │ ├── resizeRenderer.js │ │ ├── shapes │ │ └── latheGeometry.js │ │ └── tutorial │ │ ├── 01.js │ │ ├── 02.js │ │ ├── 03.js │ │ ├── 04.js │ │ └── 05.js ├── python │ ├── README.MD │ └── pygame │ │ ├── README.MD │ │ └── recipes │ │ ├── assets_loader.py │ │ ├── camera │ │ ├── camera.py │ │ ├── simple_camera.py │ │ └── world_loader_chunks_v1.py │ │ ├── collisions │ │ ├── collisions_sides.py │ │ └── mouse_collisions │ │ │ ├── mouse_over.py │ │ │ ├── two_circle_overlap.py │ │ │ ├── two_rect_overlap.py │ │ │ └── two_rect_overlap_border.py │ │ ├── draw_chess_board.py │ │ ├── effects │ │ └── particles │ │ │ └── turbo_particles.py │ │ ├── fonts │ │ ├── all_default_fonts.py │ │ ├── example_1.py │ │ └── example_2.py │ │ ├── hitbox │ │ └── shape_entity_sword_simple.py │ │ ├── loader_sound.py │ │ ├── map │ │ └── random_map_generator.py │ │ ├── music_and_sounds │ │ └── music_manager.py │ │ ├── shapes │ │ └── shapes.py │ │ ├── starter_app.py │ │ ├── starter_app_complete.py │ │ └── starter_app_smallest_possible.py ├── unity │ └── README.MD └── unreal_engine │ ├── README.MD │ └── snippets │ └── 1_plannet.cpp ├── Google Ads └── google_ads_test.html ├── IDE - TextEditors ├── Vim_Family │ ├── NeoVim │ │ ├── ChatGPT.MD │ │ └── README.MD │ ├── README.MD │ ├── commands.bash │ ├── vim_motions.md │ └── vimrc_examples │ │ ├── .vimrc_example_coc │ │ ├── .vimrc_example_python │ │ ├── .vimrc_reverse_tab │ │ └── .vimrc_vim_plug └── VsCode │ ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ ├── settings.json │ └── settings_2.json │ └── README.MD ├── Internet Architecture └── README.MD ├── LICENSE ├── Linux ├── Cygwin │ └── README.MD ├── GCC-Compiler │ └── README.MD ├── HyperTerminal │ └── README.MD ├── Mac │ ├── .zshrc__1 │ └── starship_2.toml ├── README.MD ├── Ubuntu-Debian Commands │ └── README.MD ├── Ubuntu │ └── README.MD ├── Vim │ └── README.MD └── libvirt │ ├── guest_template.xml │ ├── installations.bash │ └── libvirt.md ├── Machine Lerning & AI ├── README.MD ├── TensorFlow │ ├── README.MD │ └── commands.bash ├── context_prompting_templates │ ├── ats_resume_markdown.MD │ ├── ats_resume_markdown_2.md │ ├── ats_resume_markdown_good_1.md │ └── context_promt_template_1.MD ├── cot_monitoring.pdf ├── course_notes │ ├── complete-guide-to-tensorflow-for-deep-learning-with-python.MD │ ├── image-1.png │ ├── image-2.png │ ├── image-3.png │ └── image.png ├── image-1.png ├── image-2.png ├── image-3.png ├── image-4.png ├── image-5.png ├── image.png ├── keywords.md ├── prompting.md └── roadmap.md ├── Makefile ├── Mathematics ├── Josephus Problem │ ├── README.MD │ └── python.py ├── Polygon │ ├── README.MD │ ├── poly-iter-lazy-2 │ │ └── poly_lazy_iter2.py │ ├── poly-iter-lazy │ │ ├── __pycache__ │ │ │ └── poly_lazy_iter.cpython-38.pyc │ │ ├── poly_lazy_iter.py │ │ └── poly_lazy_test.py │ ├── poly_seq_1 │ │ ├── poly_seq_1.py │ │ └── poly_seq_1_test.py │ ├── poly_seq_2 │ │ ├── __pycache__ │ │ │ └── poly_seq_2.cpython-38.pyc │ │ ├── poly_seq_2.py │ │ └── poly_seq_2_test.py │ ├── stc.png │ └── stc_2.png ├── README.MD ├── dot_product_3d.py ├── fibunacci_sequences.py ├── matrix_diagonal.py ├── pascal_triangle.py └── series_expansion.py ├── Odoo └── module_base │ ├── LICENSE │ ├── README.MD │ ├── __init__.py │ ├── __manifest__.py │ ├── models │ └── __init__.py │ └── static │ └── description │ └── index.html ├── Programming Languages ├── C++ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── Core Principles & Structure │ │ ├── README.MD │ │ ├── exceptions │ │ │ ├── README.MD │ │ │ ├── app │ │ │ └── throw_try_catch.cpp │ │ ├── misc │ │ │ ├── static_in_class │ │ │ ├── static_in_class.cpp │ │ │ ├── static_var │ │ │ └── static_var.cpp │ │ ├── range_based_for_loop │ │ └── range_based_for_loop.cpp │ ├── README.MD │ ├── commands.sh │ ├── first_project │ │ ├── c_plus_plus_vscode │ │ │ ├── helloworld │ │ │ └── helloworld.cpp │ │ ├── calculators │ │ │ ├── calculator_01 │ │ │ │ ├── Calculator.cpp │ │ │ │ ├── Calculator.h │ │ │ │ ├── README.MD │ │ │ │ ├── calculator │ │ │ │ └── main.cpp │ │ │ ├── calculator_02 │ │ │ │ ├── Calculator.cpp │ │ │ │ ├── Calculator.h │ │ │ │ ├── README.MD │ │ │ │ ├── calculator │ │ │ │ └── main.cpp │ │ │ └── calculator_03 │ │ │ │ └── README.MD │ │ ├── cards │ │ │ ├── Cardgame.cpp │ │ │ ├── Cardgame.h │ │ │ ├── cards │ │ │ └── main.cpp │ │ ├── hello_world │ │ ├── hello_world.cpp │ │ ├── make_debugger_stop │ │ │ ├── seg_fault │ │ │ └── seg_fault.cpp │ │ ├── misc │ │ │ └── function_name.cpp │ │ └── version │ │ │ ├── version │ │ │ ├── version.cpp │ │ │ └── version_2.cpp │ ├── recipes │ │ ├── check_if_string_in_array.cpp │ │ ├── version.cpp │ │ └── version_2.cpp │ └── roadmap.md ├── C │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── settings.json │ │ └── tasks.json │ ├── External-Libraries │ │ ├── MMsystem_h │ │ │ └── README.MD │ │ ├── README.MD │ │ └── window_h │ │ │ ├── README.MD │ │ │ └── func_1.c │ ├── README.MD │ ├── Recipes │ │ ├── Basics-SimpleTricks │ │ │ ├── 3d_array_simple.c │ │ │ ├── Tricks │ │ │ │ ├── book_shelf.c │ │ │ │ ├── calendar.c │ │ │ │ ├── reverseSentence.c │ │ │ │ └── tic_tac_toe.c │ │ │ ├── enum.c │ │ │ ├── error_handling.c │ │ │ ├── file.c │ │ │ ├── memoryAllocation.c │ │ │ ├── pointers.c │ │ │ ├── preprocessor.c │ │ │ ├── storage_classes.c │ │ │ ├── string.c │ │ │ ├── struct.c │ │ │ ├── switch_fall_through.c │ │ │ └── union.c │ │ ├── Mathematics │ │ │ ├── binary_converter.c │ │ │ ├── calc_average.c │ │ │ ├── factorial.c │ │ │ ├── fibonacci.c │ │ │ ├── sum_2_matrices.c │ │ │ └── triangles.c │ │ ├── algorithms │ │ │ ├── fibonacci │ │ │ └── fibonacci.c │ │ ├── c_version │ │ │ ├── c.out │ │ │ ├── compile_c_versions.bash │ │ │ └── main.c │ │ ├── check_system_specific_type.c │ │ ├── find_c_gcc_default_version.c │ │ ├── find_littleEndian_bigEndian.c │ │ ├── hello_world │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── 01._hello_world │ │ │ │ └── main.c │ │ │ ├── 02._command_line_arguments │ │ │ │ └── main.c │ │ │ ├── 03._command_line_arguments │ │ │ │ └── main.c │ │ │ ├── compile.bash │ │ │ └── reverse_string │ │ │ │ └── main.c │ │ ├── nomain.c │ │ ├── print_functions │ │ │ ├── p1 │ │ │ ├── p2 │ │ │ ├── print_function_1.c │ │ │ └── print_function_2.c │ │ └── timers │ │ │ └── 1_timer_simple.c │ ├── commands.bash │ ├── fundamentals │ │ ├── README.MD │ │ ├── main.c │ │ ├── old │ │ │ ├── Advanced │ │ │ │ └── pragma_attributes.c │ │ │ ├── Data Structure │ │ │ │ ├── Buffers │ │ │ │ │ ├── Circular-Buffer │ │ │ │ │ │ ├── 01-Simple │ │ │ │ │ │ │ ├── circular_buffer.h │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ ├── 02-Complex │ │ │ │ │ │ │ ├── circular_buffer.c │ │ │ │ │ │ │ ├── circular_buffer.h │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ └── README.MD │ │ │ │ │ └── README.MD │ │ │ │ ├── Hash-Tables │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── hash_table_resizing.c │ │ │ │ │ └── hash_table_simple.c │ │ │ │ ├── Linked-List │ │ │ │ │ ├── README.MD │ │ │ │ │ └── Singly linked list │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ └── Type_1 │ │ │ │ │ │ ├── linked_list.c │ │ │ │ │ │ ├── linked_list.h │ │ │ │ │ │ └── main.c │ │ │ │ ├── Queue │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── main.c │ │ │ │ │ ├── queue.c │ │ │ │ │ └── queue.h │ │ │ │ └── README.MD │ │ │ ├── Functions │ │ │ │ └── fgets__puts │ │ │ │ │ └── fgets.c │ │ │ └── Standard-Library │ │ │ │ ├── README.MD │ │ │ │ ├── stdarg_h.c │ │ │ │ └── time_h.c │ │ └── roadmap │ │ │ ├── 1_basic │ │ │ ├── 0_install │ │ │ │ └── readme.md │ │ │ ├── 1_compiler │ │ │ │ └── readme.md │ │ │ ├── 2_data_types_1 │ │ │ │ ├── data_types_1.c │ │ │ │ └── readme.md │ │ │ ├── 3_variables_1 │ │ │ │ ├── README.MD │ │ │ │ └── variables_1.c │ │ │ ├── 4_operators │ │ │ │ └── readme.md │ │ │ ├── 5_control_flow │ │ │ │ ├── main.c │ │ │ │ └── readme.md │ │ │ └── 6_functions │ │ │ │ ├── main.c │ │ │ │ └── readme.md │ │ │ ├── 2_intermediate │ │ │ ├── 10_compiler_2 │ │ │ │ └── readme.md │ │ │ ├── 1_c_keywords │ │ │ │ └── readme.md │ │ │ ├── 2_functions_2 │ │ │ │ ├── prototype.c │ │ │ │ ├── readme.md │ │ │ │ ├── recursion │ │ │ │ └── recursion.c │ │ │ ├── 3_scopes │ │ │ │ ├── main.c │ │ │ │ └── readme.md │ │ │ ├── 4_io_streams │ │ │ │ ├── 1_input_output.c │ │ │ │ ├── 2_file_handling.c │ │ │ │ ├── 2_file_handling.txt │ │ │ │ ├── 3_directories.c │ │ │ │ ├── fgetc.txt │ │ │ │ └── readme.md │ │ │ ├── 5_variables_2 │ │ │ │ ├── main.c │ │ │ │ ├── readme.md │ │ │ │ ├── source1.c │ │ │ │ └── source2.c │ │ │ ├── 6_datatypes_2 │ │ │ │ ├── enum.c │ │ │ │ ├── functions_and_pointers.c │ │ │ │ ├── main.c │ │ │ │ ├── pointer_declarations.c │ │ │ │ ├── readme.md │ │ │ │ ├── restrict.c │ │ │ │ ├── struct.c │ │ │ │ ├── typedef.c │ │ │ │ ├── union.c │ │ │ │ └── volatile.c │ │ │ ├── 7_c_standard_library │ │ │ │ └── readme.md │ │ │ ├── 8_error_handling │ │ │ │ ├── divide_by_zero.c │ │ │ │ ├── file_not_exist.c │ │ │ │ ├── malloc_mem.c │ │ │ │ ├── readme.md │ │ │ │ ├── setjmp.c │ │ │ │ ├── setjmp_couroutine.c │ │ │ │ ├── signal_simple.c │ │ │ │ └── signal_throw.c │ │ │ └── 9_memory │ │ │ │ ├── allocate_and_free_string.c │ │ │ │ ├── memory_management.c │ │ │ │ └── readme.md │ │ │ ├── 3_advanced │ │ │ └── 6_data_structures │ │ │ │ ├── main.c │ │ │ │ └── readme.md │ │ │ └── readme.md │ ├── install_c.md │ ├── keywords_and_terms.md │ └── roadmap.md ├── GO │ ├── README.MD │ ├── commands.bash │ ├── fundamentals │ │ ├── any_types.go │ │ ├── arrays │ │ │ ├── arrays.go │ │ │ ├── get_largets_range.go │ │ │ └── sort_array_num.go │ │ ├── closures.go │ │ ├── errors │ │ │ └── error_struct.go │ │ ├── fibonacci_closure.go │ │ ├── function_values.go │ │ ├── generics.go │ │ ├── go_build_module │ │ │ ├── greetings │ │ │ │ ├── go.mod │ │ │ │ ├── greetings.go │ │ │ │ └── greetings_test.go │ │ │ └── hello │ │ │ │ ├── go.mod │ │ │ │ ├── hello │ │ │ │ └── hello.go │ │ ├── goroutines │ │ │ ├── channels │ │ │ │ ├── buffered_channels.go │ │ │ │ ├── range_close_channels.go │ │ │ │ └── sample.go │ │ │ ├── mutual_exclusion.go │ │ │ ├── sample.go │ │ │ └── select.go │ │ ├── i │ │ │ └── o │ │ │ │ └── readers.go │ │ ├── interfaces │ │ │ ├── assertions.go │ │ │ ├── assertions_switch.go │ │ │ ├── interface_empty.go │ │ │ ├── interface_implicit.go │ │ │ ├── interface_value.go │ │ │ ├── interface_with_nil.go │ │ │ └── interfaces.go │ │ ├── maps │ │ │ ├── README.MD │ │ │ ├── largest_range.go │ │ │ └── maps_loop.go │ │ ├── methods │ │ │ ├── method_and_pointer_direction.go │ │ │ ├── method_on_any_type.go │ │ │ ├── methods.go │ │ │ └── pointer_receivers.go │ │ ├── panic_recover.go │ │ ├── pointers.go │ │ ├── slices │ │ │ ├── README.MD │ │ │ ├── append.go │ │ │ ├── len_cap.go │ │ │ ├── make_slice.go │ │ │ ├── slice_literals.go │ │ │ └── slice_of_slice.go │ │ └── type_parameters.go │ └── recipes │ │ ├── closer │ │ └── closer.go │ │ ├── gb_const_iota.go │ │ ├── print_all_env_vars.go │ │ ├── print_machine_os.go │ │ ├── readme_sample.txt │ │ ├── roles_consts.go │ │ ├── set_max_proc.go │ │ ├── small_restfull_api.go │ │ ├── socket │ │ ├── example2 │ │ │ └── socket_Example2.go │ │ └── simple_socket.go │ │ ├── string_reverse.go │ │ ├── to_string.go │ │ └── write_to_files.go ├── Java │ ├── .gitignore │ ├── Core Principles & Structure │ │ ├── 1_basic │ │ │ ├── 01_creating_class.java │ │ │ ├── 02_nested_classes.java │ │ │ ├── 03_formatting_string.java │ │ │ ├── 04_abstract_class.java │ │ │ ├── 05_interfaces.java │ │ │ └── README.MD │ │ ├── 2_intermediate │ │ │ ├── 01_JavaRecords.java │ │ │ ├── 02_generics.java │ │ │ └── README.MD │ │ ├── 3_advanced │ │ │ ├── MainThreading.java │ │ │ ├── README.MD │ │ │ └── records │ │ │ │ └── MainRecords.java │ │ ├── Data Structures │ │ │ ├── MainStack.java │ │ │ ├── basics.java │ │ │ └── maps.java │ │ ├── README.MD │ │ └── old │ │ │ ├── BreakWithLabelDemo.java │ │ │ ├── OuterClass.java │ │ │ ├── README.MD │ │ │ ├── SwitchWithYield.java │ │ │ ├── anonymous_class.java │ │ │ ├── basic_app.java │ │ │ ├── enum.java │ │ │ ├── filer_map_collec_reduce.java │ │ │ ├── generics_01.java │ │ │ ├── hello_world.java │ │ │ ├── inner_class.java │ │ │ ├── io_operations.java │ │ │ ├── local_class.java │ │ │ ├── regex.java │ │ │ ├── shadowing.java │ │ │ └── simple_array.java │ ├── README.MD │ ├── Recipes │ │ ├── application_properties │ │ │ └── application.properties │ │ ├── builder_patterns │ │ │ └── 01_example.java │ │ ├── databases │ │ │ └── mysql │ │ │ │ └── dependency.xml │ │ ├── enums │ │ │ └── enum_string.java │ │ ├── io │ │ │ └── files │ │ │ │ ├── read_file.java │ │ │ │ ├── scanner.java │ │ │ │ ├── terminal_reader.java │ │ │ │ └── write_file.java │ │ ├── json │ │ │ └── simple_object_to_json.java │ │ ├── loggin │ │ │ ├── simple_logger.java │ │ │ └── simple_logger_02.java │ │ ├── maven │ │ │ ├── developers_license_organization.xml │ │ │ ├── jackson_xml │ │ │ ├── jma.xml │ │ │ ├── json_object.xml │ │ │ ├── junit5_dependency.xml │ │ │ ├── junit_dependency.xml │ │ │ ├── live_reloader-thymeleaft.xml │ │ │ ├── project_main_parent_pom.xml │ │ │ ├── rest-assured.xml │ │ │ ├── spring_dependency_management.xml │ │ │ ├── spring_dependency_management_full.xml │ │ │ ├── spring_jdba.xml │ │ │ ├── spring_loggin.xml │ │ │ └── vulnerable_dependency_spring.xml │ │ ├── threading │ │ │ ├── DaemonThread.java │ │ │ ├── MainThreading.java │ │ │ ├── PythonConsole.java │ │ │ ├── PythonConsoleQueue.java │ │ │ ├── WindowsCMDReader.java │ │ │ └── readme.md │ │ └── try_catch │ │ │ └── autoclosable_implemented.java │ ├── commands.sh │ ├── libraries │ │ └── libGDX │ │ │ └── libGDX.md │ └── small_apps │ │ ├── README.MD │ │ ├── javafx │ │ ├── background_fill │ │ │ └── Main.java │ │ ├── button_styles.css │ │ ├── grid_box_game │ │ │ ├── Main.java │ │ │ └── game.css │ │ ├── moving_arc │ │ │ └── Main.java │ │ ├── scene_graph │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com.koubae │ │ │ │ └── Main.java │ │ ├── scene_switcher │ │ │ └── Main.java │ │ ├── screen_selector │ │ │ └── Main.java │ │ ├── setBorderBox.java │ │ ├── simple_hello_world │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com.koubae │ │ │ │ └── Main.java │ │ ├── simple_layout_01 │ │ │ └── Main.java │ │ ├── simple_layout_02 │ │ │ └── Main.java │ │ └── simple_layout_03 │ │ │ └── Main.java │ │ ├── rawConsoleInput │ │ ├── RawConsoleInput.java │ │ └── readme.md │ │ └── wave_app │ │ └── src │ │ ├── README.MD │ │ └── com │ │ └── waves │ │ ├── App.java │ │ └── Arguments.java ├── JavaScript │ ├── Fetch API │ │ ├── readme.md │ │ └── simple_fetch.js │ ├── Frameworks-Libraries │ │ ├── Codemirror │ │ │ ├── README.MD │ │ │ └── switch_mode.js │ │ ├── README.MD │ │ ├── React │ │ │ ├── Hooks │ │ │ │ ├── custom │ │ │ │ │ ├── useMemoCompare.js │ │ │ │ │ ├── useToggle copy.ts │ │ │ │ │ └── useToggle.js │ │ │ │ ├── useCallback │ │ │ │ │ ├── useAsync.js │ │ │ │ │ └── useCallback_React.memo_simple.js │ │ │ │ ├── useContext │ │ │ │ │ ├── StoringUser.js │ │ │ │ │ └── useContext_simple.js │ │ │ │ ├── useEffect │ │ │ │ │ ├── axios_simple_fetch.js │ │ │ │ │ └── useFetch.js │ │ │ │ ├── useLayoutEffect │ │ │ │ │ └── useMeasure.js │ │ │ │ ├── useReducer │ │ │ │ │ ├── data_fetch_reducer.js │ │ │ │ │ ├── simple_useReducer.js │ │ │ │ │ └── todos_example.js │ │ │ │ └── useState │ │ │ │ │ └── useForm.js │ │ │ ├── README.MD │ │ │ ├── Utils │ │ │ │ └── commands.bash │ │ │ └── package_json_examples │ │ │ │ └── using_jsx__package.json │ │ └── Vue │ │ │ ├── .eslintrc.cjs │ │ │ ├── README.MD │ │ │ ├── assets_default │ │ │ ├── base.css │ │ │ ├── logo.svg │ │ │ └── main.css │ │ │ ├── icons │ │ │ ├── IconCommunity.vue │ │ │ ├── IconDocumentation.vue │ │ │ ├── IconEcosystem.vue │ │ │ ├── IconSupport.vue │ │ │ └── IconTooling.vue │ │ │ └── vue_mouse_listener.js │ ├── Node │ │ ├── Core Principles & Structure │ │ │ ├── CatchingUncaughtExceptions.js │ │ │ ├── NodeImplicitGlobalVars.js │ │ │ ├── README.MD │ │ │ ├── SimpleStream.js │ │ │ ├── access_env_var.js │ │ │ ├── createErrors.js │ │ │ ├── modulePeculiarities.js │ │ │ ├── nextTick.js │ │ │ └── sigterm_TerminateNode.js │ │ ├── NodeShellScript.bash │ │ ├── Package-Json-Recipes │ │ │ └── babel_watch_package.json │ │ ├── README.MD │ │ ├── Recipes │ │ │ ├── Async_Await.js │ │ │ ├── MathGetRandomNumbers.js │ │ │ ├── Promises.js │ │ │ ├── Promisifying.js │ │ │ ├── SimpleConfigFile.js │ │ │ ├── Streams │ │ │ │ ├── Fetch_Stream.js │ │ │ │ ├── README.MD │ │ │ │ └── pipeline.js │ │ │ ├── Web │ │ │ │ ├── server │ │ │ │ │ ├── SimpleStreamPipeServer.js │ │ │ │ │ ├── methods │ │ │ │ │ │ └── GET_POST_DELETE_Methods.js │ │ │ │ │ └── simpleHTTPServer.js │ │ │ │ └── simple_HTTP_Server.js │ │ │ ├── checkIfModuleIsInstalled.js │ │ │ ├── cleanURL.js │ │ │ ├── error_convention_async.js │ │ │ ├── express │ │ │ │ ├── README.MD │ │ │ │ ├── esj_SwitchStatement.ejs │ │ │ │ ├── expressCatchAll.js │ │ │ │ ├── next_error.js │ │ │ │ ├── simpleRouterMiddlewareBoilerplate.js │ │ │ │ └── urlencoded_json_middleware.js │ │ │ ├── functionPerformanceTimers.js │ │ │ ├── log_all_module_methods.js │ │ │ ├── readQueryURL.js │ │ │ └── writeModuleOnlyIfCUrrentFile.js │ │ ├── Stacks │ │ │ └── README.MD │ │ └── commands.bash │ ├── PromiseSimple.js │ ├── README.MD │ ├── Ready-Code-Blocks │ │ ├── README.MD │ │ └── Web-Page-Mirror │ │ │ ├── js │ │ │ ├── app.js │ │ │ ├── basics │ │ │ │ └── 01_game.js │ │ │ ├── fib.js │ │ │ └── utils.js │ │ │ ├── style │ │ │ └── main.css │ │ │ └── templates │ │ │ └── index.html │ ├── Tutorial │ │ ├── Basics - Syntax │ │ │ ├── 01function.js │ │ │ ├── 02_if_else.js │ │ │ ├── 03_ternary_operation.js │ │ │ ├── 04_random_nums.js │ │ │ ├── 05_loops.js │ │ │ ├── 06_fizz_buzz.js │ │ │ ├── 07_lastItemArray.js │ │ │ ├── 08_template_literas.js │ │ │ ├── objectDeconstructing.js │ │ │ └── spread_operator.js │ │ ├── DOM - Interaction │ │ │ ├── 01_querySelection.js │ │ │ ├── 02_addEventListener.js │ │ │ ├── README.MD │ │ │ └── getElementBy.js │ │ ├── README.MD │ │ ├── tagged_template.js │ │ └── utils.js │ ├── Utils │ │ ├── README.MD │ │ ├── array_random_tricks.js │ │ ├── debugger.js │ │ ├── easing.js │ │ └── timers.js │ ├── asyncHandler.js │ ├── btn_switch.js │ ├── create_javascript_table.js │ ├── css.gradient.js │ ├── python_to_javascript.js │ └── re_pass_email.js ├── PHP │ ├── .htaccess │ ├── Core Principles & Structure │ │ ├── README.MD │ │ ├── arrays.php │ │ ├── associative_arrays.php │ │ ├── echo.php │ │ ├── operators_in_place.php │ │ └── return_by_reference.php │ ├── Laravel │ │ ├── DB │ │ │ └── migrationUpdateForeignKey.php │ │ ├── README.MD │ │ └── access_config_values.php │ ├── Lumen │ │ ├── README.MD │ │ └── cors_middleware.php │ ├── README.MD │ ├── Recipes │ │ ├── Cache │ │ │ ├── APCu_.php │ │ │ ├── README.MD │ │ │ └── ob_start_.php │ │ ├── Config │ │ │ ├── abstracts_settings.php │ │ │ └── singleton_config.php │ │ ├── Datetime │ │ │ ├── datetime_for_mysql.php │ │ │ └── simple_datetime_operations.php │ │ ├── Email │ │ │ ├── README.MD │ │ │ ├── simple_example.php │ │ │ └── validate_email_addr.php │ │ ├── README.MD │ │ ├── auto_load.php │ │ ├── auto_loader_require.php │ │ ├── config.php │ │ ├── database │ │ │ ├── database_operation.php │ │ │ ├── mysqli_connectin_and_table_from_sql │ │ │ │ ├── connection.php │ │ │ │ └── db_tables.sql │ │ │ ├── pdo_.php │ │ │ ├── pdo_charset_example.php │ │ │ ├── query_loop.php │ │ │ └── test_query.php │ │ ├── dockblock.php │ │ ├── encoding_php.php │ │ ├── encryption │ │ │ └── encode_decode_helper.php │ │ ├── error_reporting.php │ │ ├── hash_password.php │ │ ├── regex │ │ │ └── simple_routing_match.php │ │ ├── sanitize.php │ │ ├── simple_MVC_Architecture.php │ │ └── use_keyword.php │ ├── Wordpress │ │ ├── README.MD │ │ └── commands.bash │ ├── composer │ │ └── composer_commands.bash │ ├── php_ShellScript.bash │ ├── php_eol.php │ ├── simple_php_todolist.php │ ├── symfony │ │ └── README.MD │ └── xammp_different_php_versions.md ├── Python │ ├── Basics │ │ ├── Part -1 - Functional │ │ │ ├── 01 - Variables-Memory │ │ │ │ ├── 01var_memory.py │ │ │ │ ├── 02func_arg_mutability.py │ │ │ │ ├── 03garbage_collection.py │ │ │ │ ├── 04optimization_interning.py │ │ │ │ ├── 05benchmark_opti.py │ │ │ │ └── README.MD │ │ │ ├── 02 - Numeric Types │ │ │ │ ├── README.MD │ │ │ │ ├── floor.py │ │ │ │ └── integers.py │ │ │ ├── 03 - Function Parameters │ │ │ │ ├── 01_rec_calc_n.py │ │ │ │ ├── 02sum_recursive.py │ │ │ │ ├── 03sum_recursive_g.py │ │ │ │ ├── 04recursive_data_str.py │ │ │ │ ├── 05list_recursive.py │ │ │ │ ├── 06Fibunacci.py │ │ │ │ ├── 07fib_cache.py │ │ │ │ ├── 08example.py │ │ │ │ ├── README.MD │ │ │ │ ├── list.4.gif │ │ │ │ ├── python-factorial-function.png │ │ │ │ ├── rec1.png │ │ │ │ ├── rec_stack.webp │ │ │ │ ├── recu3.png │ │ │ │ ├── recursive_func_factorial.py │ │ │ │ ├── timer.py │ │ │ │ └── unpackig_iterables.py │ │ │ ├── 04 - First-Class-Functions │ │ │ │ ├── 01_docstring_annotation.py │ │ │ │ ├── 02_lambda.py │ │ │ │ ├── 03_lambda_sorted.py │ │ │ │ ├── 04_introspection.py │ │ │ │ ├── 05_inspect_module.py │ │ │ │ ├── 06_map_filter.py │ │ │ │ ├── 07_comprehension_map_filter_alt.py │ │ │ │ ├── 08_lambda_reducing_func.py │ │ │ │ ├── 09_reduce.py │ │ │ │ ├── README.MD │ │ │ │ ├── distance.gif │ │ │ │ ├── formula.gif │ │ │ │ ├── formula2.gif │ │ │ │ ├── partial.py │ │ │ │ └── send_email_partial.py │ │ │ ├── 05 - Scope-Closures-Decorators │ │ │ │ ├── README.MD │ │ │ │ ├── closure_example_2.py │ │ │ │ └── simple_closure.py │ │ │ ├── 06 - Decorators │ │ │ │ ├── 01_basics.py │ │ │ │ ├── 02_basic_wraps.py │ │ │ │ ├── 03_Timer.py │ │ │ │ ├── 04_logger.py │ │ │ │ ├── 05_memoization.py │ │ │ │ ├── 06_decoretor_factory.py │ │ │ │ ├── 07_decorator_class.py │ │ │ │ ├── 08_debug_info.py │ │ │ │ ├── 09_class_deco_advanced.py │ │ │ │ ├── 10_functools_total_ordering.py │ │ │ │ ├── README.MD │ │ │ │ ├── Single Dispatch │ │ │ │ │ ├── 01_basic_parser.py │ │ │ │ │ ├── 02_single_dispatch.py │ │ │ │ │ ├── 03_single_dispatch.py │ │ │ │ │ ├── 04_functools_single_dis.py │ │ │ │ │ └── README.MD │ │ │ │ ├── class_email_deco.py │ │ │ │ ├── flask_login_required.py │ │ │ │ ├── flask_validateJSON.py │ │ │ │ ├── plugins.py │ │ │ │ ├── set_unit.py │ │ │ │ ├── singleton.py │ │ │ │ └── sleep_dec.py │ │ │ ├── 07 - Tuples as Data Records │ │ │ │ ├── 01_randomshot.py │ │ │ │ ├── 02_named_tuplesimple.py │ │ │ │ ├── 03_NT_accessing_items.py │ │ │ │ ├── 04_NT_rename.py │ │ │ │ ├── 05_NT_internals.py │ │ │ │ ├── 06_NT_extending.py │ │ │ │ ├── 07_NT_docstring.py │ │ │ │ ├── 08_NT_prototype.py │ │ │ │ ├── 09_prototype__defaults__.py │ │ │ │ ├── 10_NT_dict.py │ │ │ │ ├── 11_NT_application_returningmultiplevals.py │ │ │ │ ├── 12_advanced_classdecorator_gen.py │ │ │ │ ├── README.MD │ │ │ │ └── nametaple_factory.py │ │ │ ├── 08 - Modules, Packages │ │ │ │ ├── 01 - module_simple │ │ │ │ │ ├── main.py │ │ │ │ │ └── module1_source.py │ │ │ │ ├── 02 - module_simple2 │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── importer.cpython-38.pyc │ │ │ │ │ │ └── module2.cpython-38.pyc │ │ │ │ │ ├── importer.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── module1_source.py │ │ │ │ │ └── module2.py │ │ │ │ ├── 03 - Using__main__ │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── module1.cpython-38.pyc │ │ │ │ │ │ └── timing.cpython-38.pyc │ │ │ │ │ ├── module1.py │ │ │ │ │ ├── run.py │ │ │ │ │ └── timing.py │ │ │ │ ├── 04 - structuring_imports_package │ │ │ │ │ ├── common │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ └── calculator.cpython-38.pyc │ │ │ │ │ │ │ └── calculator.py │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── posts │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── post.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── posts.cpython-38.pyc │ │ │ │ │ │ │ │ ├── post.py │ │ │ │ │ │ │ │ └── posts.py │ │ │ │ │ │ │ └── users │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ └── user.cpython-38.pyc │ │ │ │ │ │ │ │ └── user.py │ │ │ │ │ │ └── validators │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── boolean.cpython-38.pyc │ │ │ │ │ │ │ ├── date.cpython-38.pyc │ │ │ │ │ │ │ ├── json.cpython-38.pyc │ │ │ │ │ │ │ └── numeric.cpython-38.pyc │ │ │ │ │ │ │ ├── boolean.py │ │ │ │ │ │ │ ├── date.py │ │ │ │ │ │ │ ├── json.py │ │ │ │ │ │ │ └── numeric.py │ │ │ │ │ └── main.py │ │ │ │ ├── 05 - zipped_package │ │ │ │ │ ├── common.zip │ │ │ │ │ └── main.py │ │ │ │ └── README.MD │ │ │ ├── 09 - command line args │ │ │ │ ├── 01_example.py │ │ │ │ ├── 02_example.py │ │ │ │ ├── 03_example.py │ │ │ │ ├── 04_example.py │ │ │ │ ├── 05_argparse.py │ │ │ │ ├── 06_argparse_2.py │ │ │ │ ├── 07_args_mult.py │ │ │ │ └── 08_args_custom.py │ │ │ ├── README.MD │ │ │ └── simple-functions │ │ │ │ └── guss_num01.py │ │ ├── Part -2 - Iteration & Generators │ │ │ ├── 01 - Sequences │ │ │ │ ├── 01_copy_sequences.py │ │ │ │ ├── 02_slice.py │ │ │ │ ├── 03_sequence_.py │ │ │ │ ├── 04_custom_sequence.py │ │ │ │ ├── 05_cust_sequence_.py │ │ │ │ ├── 06_cust_seq_poly.py │ │ │ │ ├── Project │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── TODO.txt │ │ │ │ │ ├── poly_seq_1 │ │ │ │ │ │ ├── poly_seq_1.py │ │ │ │ │ │ └── poly_seq_1_test.py │ │ │ │ │ └── poly_seq_2 │ │ │ │ │ │ ├── poly_seq_2.py │ │ │ │ │ │ └── poly_seq_2_test.py │ │ │ │ └── README.MD │ │ │ ├── 02 - Iterables & Iterators │ │ │ │ ├── 01_simple_iteretor.py │ │ │ │ ├── 02_iterable_protocol.py │ │ │ │ ├── 03_simple_iterator_sequence.py │ │ │ │ ├── 04_built-in_iter.py │ │ │ │ ├── 05_csv_reader.py │ │ │ │ ├── 06_consum_for_loop.py │ │ │ │ ├── 07_consum_iter_1.py │ │ │ │ ├── 08_custom_iter_cycle.py │ │ │ │ ├── 09_lazy_val_1.py │ │ │ │ ├── 10_lazy_val_2.py │ │ │ │ ├── 11_lazy_iter_csv.py │ │ │ │ ├── 12_sorting_iter_random.py │ │ │ │ ├── 13_iter_func.py │ │ │ │ ├── 14_test_iter.py │ │ │ │ ├── 15_iter_sentinel.py │ │ │ │ ├── 16_delegating_iter.py │ │ │ │ ├── 17_reverse_iter.py │ │ │ │ ├── Project 2 │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── poly-iter-lazy-2 │ │ │ │ │ │ └── poly_lazy_iter2.py │ │ │ │ │ └── poly-iter-lazy │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── poly_lazy_iter.cpython-38.pyc │ │ │ │ │ │ ├── poly_lazy_iter.py │ │ │ │ │ │ └── poly_lazy_test.py │ │ │ │ ├── README.MD │ │ │ │ └── cars.csv │ │ │ ├── 03_Generators │ │ │ │ ├── 01_simple_generator_function.py │ │ │ │ ├── 02_fib.py │ │ │ │ ├── 03_iter_gen.py │ │ │ │ ├── 04_card_deck_gen.py │ │ │ │ ├── 05_gen_expression.py │ │ │ │ ├── 06_throw_palindroms.py │ │ │ │ ├── 07_close_palindrome.py │ │ │ │ ├── 08_send.py │ │ │ │ ├── 09_csv_pipeline.py │ │ │ │ ├── README.MD │ │ │ │ ├── csv_reader │ │ │ │ │ ├── generator_reader.py │ │ │ │ │ ├── generator_reader2.py │ │ │ │ │ ├── simple.py │ │ │ │ │ └── tickets.csv │ │ │ │ ├── lazy_eval.py │ │ │ │ ├── simple_generator.py │ │ │ │ └── yield-from │ │ │ │ │ ├── yield_from.py │ │ │ │ │ └── yield_from_simple.py │ │ │ ├── 04 - Iteration Tools │ │ │ │ ├── 01_csv_check_length.py │ │ │ │ ├── 02_slicing.py │ │ │ │ ├── 03_chaining.py │ │ │ │ ├── 04_tee.py │ │ │ │ ├── 05_starmap.py │ │ │ │ ├── 06_accumulate.py │ │ │ │ ├── 07_accumulator.py │ │ │ │ ├── 08_ziplongest.py │ │ │ │ ├── 09_lazy_ctx.py │ │ │ │ ├── Combinatorics │ │ │ │ │ └── file.py │ │ │ │ ├── Grouping │ │ │ │ │ ├── cars_2014.csv │ │ │ │ │ └── groupby.py │ │ │ │ ├── Infinite-Iterators │ │ │ │ │ ├── 01_count.py │ │ │ │ │ ├── 02_cycle.py │ │ │ │ │ └── 03_repeat.py │ │ │ │ ├── README.MD │ │ │ │ ├── Selecting -Filtering │ │ │ │ │ ├── 01_filterfalse.py │ │ │ │ │ ├── 02_takewhile.py │ │ │ │ │ ├── 03_dropwhile.py │ │ │ │ │ └── 04_compress.py │ │ │ │ ├── car-brands.txt │ │ │ │ └── turtle_proj │ │ │ │ │ ├── poly_seq_1 │ │ │ │ │ ├── poly_seq_1.py │ │ │ │ │ └── poly_seq_1_test.py │ │ │ │ │ └── poly_seq_2 │ │ │ │ │ ├── poly_seq_2.py │ │ │ │ │ └── poly_seq_2_test.py │ │ │ ├── 05 - Context Managers │ │ │ │ ├── 01_context_manager_protocol_simple.py │ │ │ │ ├── 02_File_ctx_protocol_ie.py │ │ │ │ ├── 03_ctx_iterator_protocol_simple.py │ │ │ │ ├── 04_decimal_ctx.py │ │ │ │ ├── 05_ctx_timing.py │ │ │ │ ├── 06_ctx_stdout.py │ │ │ │ ├── 07_ctx_HTML_tags.py │ │ │ │ ├── 08_ctx_re_entrant.py │ │ │ │ ├── 09_ctx_generator.py │ │ │ │ ├── 10_decorator_ctx.py │ │ │ │ ├── 11_contextlib_contextmanager.py │ │ │ │ ├── 12_nasted_contextmanager.py │ │ │ │ ├── 13_exitstack.py │ │ │ │ ├── README.MD │ │ │ │ └── test.txt │ │ │ ├── 06 - Generator Based Coroutines │ │ │ │ └── README.MD │ │ │ └── README.MD │ │ ├── Part -3- Hash Maps │ │ │ ├── 01- Associate Arrays │ │ │ │ └── README.MD │ │ │ ├── 02- Dictionaries │ │ │ │ ├── 01_chain.py │ │ │ │ ├── 02_symmetric_difference.py │ │ │ │ ├── 03_margin_copying.py │ │ │ │ ├── 04_hash_custom_class.py │ │ │ │ ├── 05_hash_custom_poly.py │ │ │ │ ├── README.MD │ │ │ │ └── some-dict-code │ │ │ │ │ ├── 01_return_dict_from_dict.py │ │ │ │ │ ├── 02_itersaction.py │ │ │ │ │ ├── 03_dict_combiner.py │ │ │ │ │ └── 04_API_difference.py │ │ │ ├── 03- Sets │ │ │ │ ├── 01_set_timing.py │ │ │ │ ├── 02_update_operations.py │ │ │ │ ├── 03_updates_functions.py │ │ │ │ ├── 04_frozenset_class.py │ │ │ │ ├── 05_frozenset_memoizer.py │ │ │ │ ├── JSON_validation │ │ │ │ │ ├── _01_json_validator.py │ │ │ │ │ ├── _02_match_types.py │ │ │ │ │ ├── _03_recursive.py │ │ │ │ │ ├── _04_schema_error.py │ │ │ │ │ └── tests.py │ │ │ │ └── README.MD │ │ │ ├── 04- Serialization and Deserialization │ │ │ │ ├── README.MD │ │ │ │ ├── _01_pickle_dict.py │ │ │ │ ├── _02_pickle_linux.py │ │ │ │ ├── _03_JSON_isoformat.py │ │ │ │ ├── _04_JSON_singledispatch.py │ │ │ │ ├── _05_JSON_functools_dispatch.py │ │ │ │ ├── _06_JSONEncoder_custom_simple.py │ │ │ │ ├── _07_JSON_decoder.py │ │ │ │ ├── _08_JSONDecoder_custom.py │ │ │ │ ├── _09_JSONDecoder_complex.py │ │ │ │ ├── _10_JSON_Schema.py │ │ │ │ ├── _11_marshmellow.py │ │ │ │ ├── _12_YAML.py │ │ │ │ ├── _13_serpy.py │ │ │ │ └── serialize_deserialize │ │ │ │ │ ├── 01_dumps_singledispatch.py │ │ │ │ │ ├── 02_marshmallow.py │ │ │ │ │ └── json_serializer.py │ │ │ ├── 05- Specialized Dictionaries │ │ │ │ ├── README.MD │ │ │ │ ├── _01_DefaultDict.py │ │ │ │ ├── _02_OrderedDict.py │ │ │ │ ├── _03_OrderDict_vs_dict.py │ │ │ │ ├── _04_collections_counter.py │ │ │ │ ├── _05_counter_random.py │ │ │ │ ├── _06_chain_chain.py │ │ │ │ ├── _07_chainmap.py │ │ │ │ ├── _08_UserDict.py │ │ │ │ └── json_dicts │ │ │ │ │ ├── dicts_functions.py │ │ │ │ │ └── jsons │ │ │ │ │ ├── common.json │ │ │ │ │ ├── dev.json │ │ │ │ │ └── prod.json │ │ │ └── README.MD │ │ ├── Part -4- OOP │ │ │ ├── 01 - Classes │ │ │ │ ├── 01_add_method_instance.py │ │ │ │ ├── 02_read_only_circle.py │ │ │ │ ├── 03_read_only_urllib.py │ │ │ │ ├── 04_delete_properties.py │ │ │ │ ├── 05_classmethod_instancemethod.py │ │ │ │ └── README.MD │ │ │ ├── 02 - Polymorphism │ │ │ │ ├── 01_math_operators.py │ │ │ │ ├── 02_comparison_protocols.py │ │ │ │ ├── 03_total_ordering.py │ │ │ │ ├── 04_hash_protocol.py │ │ │ │ ├── 05_bool_protocol.py │ │ │ │ ├── 06_callable_protocol.py │ │ │ │ ├── 07_finalizer_protocol.py │ │ │ │ ├── 08_format.py │ │ │ │ └── README.MD │ │ │ ├── 03 - Single Inheritance │ │ │ │ ├── 01_extending.py │ │ │ │ ├── 02_delegating_parent.py │ │ │ │ ├── 03_slots.py │ │ │ │ └── README.MD │ │ │ ├── 04 - Descriptors │ │ │ │ ├── 01_descriptors.py │ │ │ │ ├── 02_instance_property.py │ │ │ │ ├── 03_weakref.py │ │ │ │ ├── 04_weakref_instance_property.py │ │ │ │ ├── 05_set_name_.py │ │ │ │ ├── 06_property_custom.py │ │ │ │ ├── 07_application_1.py │ │ │ │ ├── 08_application_2.py │ │ │ │ └── README.MD │ │ │ ├── 05 - Enumerators │ │ │ │ ├── 01_enumaration.py │ │ │ │ ├── 02¨_alias.py │ │ │ │ ├── 03_custom_enum.py │ │ │ │ ├── 04_enum_auto.py │ │ │ │ └── README.MD │ │ │ ├── 06 - Exceptions │ │ │ │ ├── 01_example.py │ │ │ │ ├── 02_handle_exception.py │ │ │ │ ├── 03_custom_exceptions.py │ │ │ │ ├── 04_multiple_exception.py │ │ │ │ └── README.MD │ │ │ ├── 07 - Metaprogramming │ │ │ │ ├── 01_descriptor.py │ │ │ │ ├── 02._new_.py │ │ │ │ ├── 03_type.py │ │ │ │ ├── 04_metaclass.py │ │ │ │ ├── 05_decorators_class.py │ │ │ │ ├── 06_decoretor_classes.py │ │ │ │ ├── 07_metaclass_parameters.py │ │ │ │ ├── 07_metaclass_vs_classdeco.py │ │ │ │ ├── 08_prepare_.py │ │ │ │ ├── Attribute-Read-write-Accessor │ │ │ │ │ ├── 01_attributeread_accessor.py │ │ │ │ │ ├── 02_attribute_write_accessor.py │ │ │ │ │ └── accessor_application.py │ │ │ │ ├── README.MD │ │ │ │ └── metaclass-applications │ │ │ │ │ ├── app1_slottedstruct.py │ │ │ │ │ ├── app2_singleton_pattern.py │ │ │ │ │ └── app3_envirorment_config.py │ │ │ ├── Proj_1 │ │ │ │ ├── bank_account.py │ │ │ │ ├── bank_account2.py │ │ │ │ ├── log.txt │ │ │ │ ├── test.py │ │ │ │ └── test2.py │ │ │ └── README.MD │ │ └── README.MD │ ├── DocString-Lint │ │ └── README.MD │ ├── Effective │ │ └── 15_sort_list_group.py │ ├── External Libraries │ │ ├── Flask │ │ │ ├── .gitignore │ │ │ ├── Flask Main │ │ │ │ ├── Configs │ │ │ │ │ └── README.MD │ │ │ │ ├── Patter for Flask │ │ │ │ │ ├── 404.py │ │ │ │ │ ├── API_error.py │ │ │ │ │ ├── API_exception.py │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── SPA_API.py │ │ │ │ │ ├── URL_processor.py │ │ │ │ │ ├── caching_deco.py │ │ │ │ │ ├── checksum.py │ │ │ │ │ ├── dispatch_path.py │ │ │ │ │ ├── dispatch_subdomain.py │ │ │ │ │ ├── endpoint_deco.py │ │ │ │ │ ├── lazy_loading.py │ │ │ │ │ ├── loading_late.py │ │ │ │ │ ├── login_required.py │ │ │ │ │ ├── msg_flashing.html │ │ │ │ │ ├── msg_flshing.py │ │ │ │ │ ├── request_callback.py │ │ │ │ │ ├── sqlite3_config.py │ │ │ │ │ ├── streaming.py │ │ │ │ │ ├── subclass_flask.py │ │ │ │ │ └── templating_deco.py │ │ │ │ ├── Pluggable Views │ │ │ │ │ └── README.MD │ │ │ │ ├── README.MD │ │ │ │ ├── Signals │ │ │ │ │ └── README.MD │ │ │ │ ├── The Application Context │ │ │ │ │ └── README.MD │ │ │ │ ├── The Request Context │ │ │ │ │ └── README.MD │ │ │ │ └── Working with Shell │ │ │ │ │ └── README.MD │ │ │ ├── Flask-Extensions │ │ │ │ ├── Defaults │ │ │ │ │ ├── Jinja2 │ │ │ │ │ │ └── README.MD │ │ │ │ │ ├── README.MD │ │ │ │ │ └── Werkzeug │ │ │ │ │ │ └── README.MD │ │ │ │ ├── Flask-Admin │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── Shop │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── data.sqlite │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ └── sb-admin-2.css │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ │ │ └── list.html │ │ │ │ │ │ │ │ └── notification.html │ │ │ │ │ │ │ ├── custom_create.html │ │ │ │ │ │ │ ├── custom_edit.html │ │ │ │ │ │ │ ├── custom_list.html │ │ │ │ │ │ │ ├── other.html │ │ │ │ │ │ │ └── standalone_.html │ │ │ │ │ │ ├── test.py │ │ │ │ │ │ ├── test_2.py │ │ │ │ │ │ └── views.py │ │ │ │ │ └── examples_01 │ │ │ │ │ │ ├── auth-flask-login │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── database.sqlite │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── my_master.html │ │ │ │ │ │ ├── bootstrap4 │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── data.sqlite │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── admin │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── custom-layout │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── data.sqlite │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ └── layout.css │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ │ ├── edit.html │ │ │ │ │ │ │ ├── layout.html │ │ │ │ │ │ │ └── list.html │ │ │ │ │ │ ├── flask_admin_ │ │ │ │ │ │ ├── INFO.MD │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── _backwards.py │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── actions.py │ │ │ │ │ │ ├── babel.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── sqla │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── validators.py │ │ │ │ │ │ │ │ └── widgets.py │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── rules.py │ │ │ │ │ │ │ ├── upload.py │ │ │ │ │ │ │ ├── validators.py │ │ │ │ │ │ │ └── widgets.py │ │ │ │ │ │ ├── helpers.py │ │ │ │ │ │ ├── menu.py │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ajax.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── filters.py │ │ │ │ │ │ │ ├── form.py │ │ │ │ │ │ │ ├── helpers.py │ │ │ │ │ │ │ ├── template.py │ │ │ │ │ │ │ ├── typefmt.py │ │ │ │ │ │ │ └── widgets.py │ │ │ │ │ │ ├── test.py │ │ │ │ │ │ └── tools.py │ │ │ │ │ │ ├── forms-files-images │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── data.sqlite │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── coding_2.jpg │ │ │ │ │ │ │ ├── coding_2_thumb.jpg │ │ │ │ │ │ │ ├── fireworks.jpg │ │ │ │ │ │ │ ├── fireworks_thumb.jpg │ │ │ │ │ │ │ ├── hedgehog-child-1759027_1920.jpg │ │ │ │ │ │ │ ├── hedgehog-child-1759027_1920_thumb.jpg │ │ │ │ │ │ │ ├── matrix_1.jpg │ │ │ │ │ │ │ └── matrix_1_thumb.jpg │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── create_page.html │ │ │ │ │ │ │ ├── create_user.html │ │ │ │ │ │ │ ├── edit_page.html │ │ │ │ │ │ │ ├── edit_user.html │ │ │ │ │ │ │ └── macros.html │ │ │ │ │ │ ├── templates_2 │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── create_page.html │ │ │ │ │ │ │ ├── create_user.html │ │ │ │ │ │ │ ├── edit_page.html │ │ │ │ │ │ │ ├── edit_user.html │ │ │ │ │ │ │ └── macros.html │ │ │ │ │ │ └── test.py │ │ │ │ │ │ ├── method_view │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── method.test.html │ │ │ │ │ │ │ └── test.html │ │ │ │ │ │ ├── multiple-admin-instances │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── first.html │ │ │ │ │ │ │ └── second.html │ │ │ │ │ │ ├── my_version │ │ │ │ │ │ └── flask_admin │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ └── validators.py │ │ │ │ │ │ │ └── helpers.py │ │ │ │ │ │ ├── simple │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── anotheradmin.html │ │ │ │ │ │ │ ├── myadmin.html │ │ │ │ │ │ │ └── test.html │ │ │ │ │ │ ├── simple_01 │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── data.sqlite │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── custom_create.html │ │ │ │ │ │ │ ├── custom_edit.html │ │ │ │ │ │ │ ├── custom_list.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── standalone_.html │ │ │ │ │ │ └── test.py │ │ │ │ │ │ ├── sqla-association-proxy │ │ │ │ │ │ ├── APP.PY │ │ │ │ │ │ └── README.MD │ │ │ │ │ │ ├── sqla-custom-inline-forms │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── data.sqlite │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ ├── 7b1468ff-019a-44d1-b4bb-729e5a252899.jpg │ │ │ │ │ │ │ └── mario.png │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── field_list.html │ │ │ │ │ │ │ └── locations.html │ │ │ │ │ │ ├── sqla │ │ │ │ │ │ ├── README.MD │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ │ ├── data.py │ │ │ │ │ │ │ ├── database.sqlite │ │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── tree_list.html │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── run_server.py │ │ │ │ │ │ └── very_simple │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ └── test.py │ │ │ │ └── README.MD │ │ │ ├── Flask_Fast-Food │ │ │ │ ├── Config │ │ │ │ │ └── README.MD │ │ │ │ ├── Simple-Form │ │ │ │ │ ├── form.py │ │ │ │ │ ├── templates │ │ │ │ │ │ └── form_01.html │ │ │ │ │ └── wtf_form.py │ │ │ │ └── Templates-Sample │ │ │ │ │ ├── 01Login-form.html │ │ │ │ │ ├── 01base.html │ │ │ │ │ └── macro-flash.html │ │ │ ├── Flask_website_examples │ │ │ │ ├── 00 To-Do WebApp │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.py │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── to_do_app │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── views.py │ │ │ │ │ │ ├── data.sqlite │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── reminder │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── forms.py │ │ │ │ │ │ └── views.py │ │ │ │ │ │ ├── static │ │ │ │ │ │ └── style │ │ │ │ │ │ │ └── main.css │ │ │ │ │ │ ├── tag │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── forms.py │ │ │ │ │ │ └── views.py │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── reminder │ │ │ │ │ │ ├── read_reminder.html │ │ │ │ │ │ └── write_reminder.html │ │ │ │ │ │ ├── search.html │ │ │ │ │ │ └── tag │ │ │ │ │ │ ├── create_tag.html │ │ │ │ │ │ └── tag_view.html │ │ │ │ ├── 01 Request │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── app.py │ │ │ │ │ ├── requirements.txt │ │ │ │ │ ├── static │ │ │ │ │ │ └── style │ │ │ │ │ │ │ └── main.css │ │ │ │ │ └── templates │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── macros │ │ │ │ │ │ └── macro.html │ │ │ │ │ │ ├── request │ │ │ │ │ │ ├── args_get.html │ │ │ │ │ │ ├── query_string.html │ │ │ │ │ │ └── welcome.html │ │ │ │ │ │ ├── sample.html │ │ │ │ │ │ └── session │ │ │ │ │ │ ├── profile.html │ │ │ │ │ │ ├── session_1.html │ │ │ │ │ │ ├── signup.html │ │ │ │ │ │ └── theme.html │ │ │ │ ├── 02 Food-Tracker │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.py │ │ │ │ │ ├── app_func.py │ │ │ │ │ ├── back.up.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── food_tracker.sql │ │ │ │ │ ├── query_data.py │ │ │ │ │ ├── requirements.txt │ │ │ │ │ ├── static │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── theme.css │ │ │ │ │ └── templates │ │ │ │ │ │ ├── add_food.html │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── day.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── 03 Uploads │ │ │ │ │ ├── A Uploads Docs │ │ │ │ │ │ └── app.py │ │ │ │ │ ├── B Version │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app.py │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── macro.html │ │ │ │ │ │ │ ├── pic.html │ │ │ │ │ │ │ ├── query.html │ │ │ │ │ │ │ ├── update.html │ │ │ │ │ │ │ └── upload.html │ │ │ │ │ └── README.MD │ │ │ │ ├── 04 Flaskr │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── app.py │ │ │ │ │ ├── flaskr │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ ├── blog.py │ │ │ │ │ │ ├── db.py │ │ │ │ │ │ ├── schema.sql │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ │ └── register.html │ │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ │ └── blog │ │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── update.html │ │ │ │ │ └── instance │ │ │ │ │ │ └── flaskr.sqlite │ │ │ │ ├── 05 Question - Answer App │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.py │ │ │ │ │ ├── app_func.py │ │ │ │ │ ├── app_query.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── mail_client.py │ │ │ │ │ ├── schema_2.sql │ │ │ │ │ ├── static │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── mystyle.css │ │ │ │ │ │ └── theme.css │ │ │ │ │ └── templates │ │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── new_user.html │ │ │ │ │ │ └── users.html │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── error_pages │ │ │ │ │ │ └── 404.html │ │ │ │ │ │ ├── expert │ │ │ │ │ │ ├── answer.html │ │ │ │ │ │ └── unanswered.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ ├── macro │ │ │ │ │ │ └── show_links.html │ │ │ │ │ │ ├── signup.html │ │ │ │ │ │ └── user │ │ │ │ │ │ ├── ask.html │ │ │ │ │ │ └── question.html │ │ │ │ ├── 06 Social WebSite │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── app.py │ │ │ │ │ ├── app_func.py │ │ │ │ │ ├── database.db │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── images │ │ │ │ │ │ ├── Vampire-Cat.png │ │ │ │ │ │ ├── cat-pet-animal-domestic-104827.jpeg │ │ │ │ │ │ ├── cat.jpg │ │ │ │ │ │ ├── cat_1.jpg │ │ │ │ │ │ ├── cat_2.jpg │ │ │ │ │ │ ├── cat_3.jpg │ │ │ │ │ │ ├── coding_1.jpg │ │ │ │ │ │ ├── hedgehog-child-1759027_1920.jpg │ │ │ │ │ │ ├── ireland-1985088_1920.jpg │ │ │ │ │ │ ├── luigi.png │ │ │ │ │ │ ├── luigi_1.png │ │ │ │ │ │ ├── luigi_2.png │ │ │ │ │ │ ├── luigi_3.png │ │ │ │ │ │ ├── luigi_4.png │ │ │ │ │ │ ├── luigi_5.png │ │ │ │ │ │ ├── luigi_6.png │ │ │ │ │ │ ├── mario.png │ │ │ │ │ │ ├── matrix_1.jpg │ │ │ │ │ │ ├── rabbit-1903016_1920.jpg │ │ │ │ │ │ ├── something_great.jpg │ │ │ │ │ │ ├── something_great_1.jpg │ │ │ │ │ │ └── space_1.jpg │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── alembic.ini │ │ │ │ │ │ ├── env.py │ │ │ │ │ │ ├── script.py.mako │ │ │ │ │ │ └── versions │ │ │ │ │ │ │ └── 888d20855836_first_commit.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── requirements.txt │ │ │ │ │ ├── static │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── united.min.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ └── Ubuntu-regular │ │ │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.eot │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.svg │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.ttf │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.woff │ │ │ │ │ │ │ │ │ └── Ubuntu-regular.woff2 │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ └── brick-wall.png │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ └── img │ │ │ │ │ │ │ └── anonymous.png │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── blank.html │ │ │ │ │ │ ├── error_pages │ │ │ │ │ │ │ ├── 403.html │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ └── 500.html │ │ │ │ │ │ ├── followers.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── macro │ │ │ │ │ │ │ └── macro.html │ │ │ │ │ │ ├── profile.html │ │ │ │ │ │ ├── register.html │ │ │ │ │ │ ├── temp.html │ │ │ │ │ │ └── timeline.html │ │ │ │ │ └── views.py │ │ │ │ ├── 07 WebStore -Clothing │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── app.py │ │ │ │ │ ├── app_func.py │ │ │ │ │ ├── database.db │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── images │ │ │ │ │ │ ├── blouse.jpg │ │ │ │ │ │ ├── faded-short-sleeves-tshirt.jpg │ │ │ │ │ │ ├── printed-dress.jpg │ │ │ │ │ │ ├── printed-dress_2.jpg │ │ │ │ │ │ ├── printed-summer-dress.jpg │ │ │ │ │ │ └── printed-summer-dress_2.jpg │ │ │ │ │ ├── mail_client.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── alembic.ini │ │ │ │ │ │ ├── env.py │ │ │ │ │ │ ├── script.py.mako │ │ │ │ │ │ └── versions │ │ │ │ │ │ │ └── 519938391124_first_init.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── requirements.txt │ │ │ │ │ ├── static │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ │ │ │ ├── cerulean.min.css │ │ │ │ │ │ │ │ ├── flatly.min.css │ │ │ │ │ │ │ │ └── united.min.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ │ │ └── npm.js │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ └── Ubuntu-regular │ │ │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.eot │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.svg │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.ttf │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.woff │ │ │ │ │ │ │ │ │ └── Ubuntu-regular.woff2 │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ ├── imgs │ │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ │ ├── blouse.jpg │ │ │ │ │ │ │ ├── faded-short-sleeves-tshirt.jpg │ │ │ │ │ │ │ ├── printed-dress.jpg │ │ │ │ │ │ │ ├── printed-dress_2.jpg │ │ │ │ │ │ │ ├── printed-dress_full.jpg │ │ │ │ │ │ │ ├── printed-summer-dress.jpg │ │ │ │ │ │ │ └── printed-summer-dress_2.jpg │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── my.js │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── add-product-one.html │ │ │ │ │ │ │ ├── add-product.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── view-order.html │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── cart.html │ │ │ │ │ │ ├── checkout.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── macro │ │ │ │ │ │ │ └── macro.html │ │ │ │ │ │ └── view-product.html │ │ │ │ │ └── views.py │ │ │ │ ├── 08 Forum WebSite │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── app.py │ │ │ │ │ ├── database.db │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── alembic.ini │ │ │ │ │ │ ├── env.py │ │ │ │ │ │ └── script.py.mako │ │ │ │ │ ├── static │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ │ │ │ └── flatly.min.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ │ │ └── npm.js │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ └── Ubuntu-regular │ │ │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.eot │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.svg │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.ttf │ │ │ │ │ │ │ │ │ ├── Ubuntu-regular.woff │ │ │ │ │ │ │ │ │ └── Ubuntu-regular.woff2 │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ └── img │ │ │ │ │ │ │ └── anonymous.png │ │ │ │ │ └── templates │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── login_base.html │ │ │ │ │ │ ├── profile.html │ │ │ │ │ │ ├── security │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── login_user.html │ │ │ │ │ │ └── register_user.html │ │ │ │ │ │ └── thread.html │ │ │ │ ├── 09 Weather App │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── app.py │ │ │ │ │ ├── data.sqlite │ │ │ │ │ └── templates │ │ │ │ │ │ └── weather.html │ │ │ │ ├── 10 Flask -feedparser │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── app.py │ │ │ │ │ └── templates │ │ │ │ │ │ └── view.html │ │ │ │ └── README.MD │ │ │ └── README.MD │ │ ├── Kivy │ │ │ ├── Front-end │ │ │ │ ├── ActionBar │ │ │ │ │ ├── README.MD │ │ │ │ │ └── remove_logo.py │ │ │ │ ├── ActionButton │ │ │ │ │ ├── README.MD │ │ │ │ │ └── button_recipes.kv │ │ │ │ └── README.MD │ │ │ └── README.MD │ │ ├── MyMuPDF │ │ │ ├── README.MD │ │ │ └── sample │ │ │ │ ├── Calendar.pdf │ │ │ │ └── main.py │ │ ├── Odoo │ │ │ ├── README.MD │ │ │ └── Utils │ │ │ │ └── default_server_datetime.py │ │ ├── Pathos │ │ │ └── README.MD │ │ ├── PyTest │ │ │ ├── README.MD │ │ │ ├── fixture_finalization.py │ │ │ └── xunit_style.py │ │ ├── README.MD │ │ ├── Requests │ │ │ ├── README.MD │ │ │ ├── increase_urllib_connectionPool.py │ │ │ ├── simple.py │ │ │ └── simple_http_api.py │ │ ├── Selenium │ │ │ └── quick_selenium_script.py │ │ └── Serpy │ │ │ ├── README.MD │ │ │ └── Serpy-Mini │ │ │ ├── serpy_.py │ │ │ ├── serpy_mini.py │ │ │ └── test.py │ ├── MultiProcessing-Threading │ │ ├── Concurrent │ │ │ ├── README.MD │ │ │ └── race_condition.py │ │ ├── MultiProcessing │ │ │ ├── Queue_.py │ │ │ ├── README.MD │ │ │ ├── deamon_proc.py │ │ │ ├── is_alive.py │ │ │ ├── lock.py │ │ │ ├── loggin.py │ │ │ ├── monte_carlo_algo.py │ │ │ ├── pool_map_timer.py │ │ │ ├── process_name_1.py │ │ │ ├── process_name_2.py │ │ │ ├── state_sharing_value.py │ │ │ └── subclass_process.py │ │ ├── Queue │ │ │ └── README.MD │ │ ├── README.MD │ │ └── Threading │ │ │ ├── README.MD │ │ │ └── examples │ │ │ ├── script_1.py │ │ │ └── script_2_sub_threads.py │ ├── OOP │ │ ├── Dscriptors │ │ │ └── README.MD │ │ ├── README.MD │ │ ├── iterator_protocol.py │ │ ├── reverse_iter.py │ │ └── reverse_protocol.py │ ├── README.MD │ ├── Simple │ │ ├── guess_100.py │ │ └── sphere_vol_cal.py │ ├── Socket │ │ ├── README.MD │ │ ├── chat │ │ │ └── simple_tcp_chat_01 │ │ │ │ ├── README.MD │ │ │ │ ├── client.py │ │ │ │ ├── core.py │ │ │ │ └── server.py │ │ ├── commands.bash │ │ ├── quick_recipes │ │ │ ├── ipv4 │ │ │ │ ├── client.py │ │ │ │ └── server.py │ │ │ └── network_sniffer.py │ │ └── realPythonTutorial │ │ │ ├── README.MD │ │ │ ├── app │ │ │ ├── client │ │ │ │ ├── client.py │ │ │ │ └── lib.py │ │ │ └── server │ │ │ │ ├── lib.py │ │ │ │ └── server.py │ │ │ ├── echo │ │ │ ├── client.py │ │ │ └── server.py │ │ │ └── multiconnections │ │ │ ├── client.py │ │ │ └── server.py │ ├── Standard Libraries │ │ ├── DIS │ │ │ ├── README.MD │ │ │ ├── dis_bytecode_simple.py │ │ │ └── dis_simple.py │ │ ├── Functools │ │ │ ├── README.MD │ │ │ └── cached_propery.py │ │ ├── HTML │ │ │ ├── HTML.parser │ │ │ │ └── README.MD │ │ │ └── README.MD │ │ ├── Heapq │ │ │ ├── README.MD │ │ │ ├── email_scheduler.py │ │ │ └── top_3.py │ │ ├── Itertools │ │ │ └── README.MD │ │ ├── Multiprocessing │ │ │ ├── README.MD │ │ │ └── worker.py │ │ ├── OS │ │ │ └── REDME.MD │ │ ├── README.MD │ │ ├── Random │ │ │ ├── freq_list_seed.py │ │ │ ├── random.choices.py │ │ │ ├── random.sample_deck.py │ │ │ └── random.seed.py │ │ ├── Regular_expression │ │ │ └── README.MD │ │ ├── SYS │ │ │ ├── README.MD │ │ │ ├── direct_errror_file.py │ │ │ ├── stdout.py │ │ │ └── sys.getsizeof.py │ │ ├── TKinter │ │ │ ├── 1_hello_world.py │ │ │ ├── README.MD │ │ │ ├── __pycache__ │ │ │ │ └── tk_imports.cpython-311.pyc │ │ │ ├── recipes │ │ │ │ ├── app │ │ │ │ │ └── src │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── main.py │ │ │ │ ├── assets │ │ │ │ │ ├── download.png │ │ │ │ │ ├── help.txt │ │ │ │ │ └── python.png │ │ │ │ ├── buttons │ │ │ │ │ ├── 1_simple.py │ │ │ │ │ └── 2_button_image.py │ │ │ │ ├── cursor │ │ │ │ │ ├── 1_change_cursor_on_motion.py │ │ │ │ │ └── 2_cursor_selector.py │ │ │ │ ├── element_state.py │ │ │ │ ├── example_1.py │ │ │ │ ├── find_styles.py │ │ │ │ ├── find_styles_2.py │ │ │ │ ├── frame │ │ │ │ │ ├── 1_frame.py │ │ │ │ │ ├── 2_label_frame.py │ │ │ │ │ ├── 3_label_frame_anchor.py │ │ │ │ │ ├── 4_switch_frames.py │ │ │ │ │ └── 5_relif.py │ │ │ │ ├── inputs │ │ │ │ │ ├── 1_password.py │ │ │ │ │ └── 2_sign_in_form.py │ │ │ │ ├── listbox │ │ │ │ │ ├── 1_simple_listbox.py │ │ │ │ │ └── 2_listbox_scroll.py │ │ │ │ ├── menu │ │ │ │ │ ├── 1_menu_botton.py │ │ │ │ │ └── 2_option_menu.py │ │ │ │ ├── multithreading │ │ │ │ │ ├── 1_simple_multithread.py │ │ │ │ │ ├── 2_progress_bar.py │ │ │ │ │ └── assets │ │ │ │ │ │ └── 640x480.jpg │ │ │ │ ├── notebook │ │ │ │ │ ├── 1_simple_notebook.py │ │ │ │ │ └── 2_vertical_tabs.py │ │ │ │ ├── paned_window │ │ │ │ │ ├── 1_simple_paned_window.py │ │ │ │ │ └── 2_simple_paned_window.py │ │ │ │ ├── pop_window_1.py │ │ │ │ ├── scrollbar │ │ │ │ │ └── 1_simple.py │ │ │ │ ├── separator │ │ │ │ │ └── 1_simple.py │ │ │ │ ├── spinbox │ │ │ │ │ └── 1_simple_spinbox.py │ │ │ │ ├── theme_selector.py │ │ │ │ └── trees │ │ │ │ │ └── 1_hierachy.py │ │ │ ├── tk_imports.py │ │ │ ├── tk_widget_adder.py │ │ │ └── tutorial │ │ │ │ ├── 1_hello_world │ │ │ │ ├── 1_hello_world.py │ │ │ │ ├── 2_hello_world.py │ │ │ │ ├── 3_hello_world.py │ │ │ │ ├── 4_hello_world.py │ │ │ │ ├── 5_hello_world.py │ │ │ │ ├── 6_usingttk.py │ │ │ │ └── 7_with_entry.py │ │ │ │ ├── 2_widgets │ │ │ │ ├── combo_box.py │ │ │ │ ├── python.png │ │ │ │ ├── tree_view.py │ │ │ │ └── widget_list.py │ │ │ │ └── window │ │ │ │ ├── python.ico │ │ │ │ ├── simple.py │ │ │ │ └── window_size.py │ │ ├── Turtle │ │ │ └── README.MD │ │ ├── Unittest │ │ │ ├── 01_runner.py │ │ │ └── README.MD │ │ ├── bisect │ │ │ └── bisect_recipe.py │ │ ├── json │ │ │ ├── JSONEncoder_custom.py │ │ │ ├── README.MD │ │ │ ├── custom_decoder_advanced_re.py │ │ │ └── json_decode.py │ │ ├── loggin │ │ │ ├── README.MD │ │ │ └── logger_recipes.py │ │ ├── operator │ │ │ ├── README.MD │ │ │ ├── base.py │ │ │ ├── methodcaller.py │ │ │ ├── operator.attrgetter.py │ │ │ └── sorting.py │ │ └── urllib │ │ │ └── urlopen.py │ ├── Utils │ │ ├── README.MD │ │ ├── color_log │ │ │ ├── color_log_colors.json │ │ │ └── color_log_play.py │ │ ├── database_command.txt │ │ ├── import.py │ │ ├── many_packagase.txt │ │ ├── package_env.txt │ │ └── terminal_v_env.md │ ├── WebScraping │ │ ├── BeautifulSoup │ │ │ ├── README.MD │ │ │ ├── example.py │ │ │ └── simple.py │ │ ├── Pic-Downloader │ │ │ ├── README.MD │ │ │ ├── Tests │ │ │ │ └── test.py │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ └── README.MD │ ├── build_multipart_form_data.py │ ├── copyright_template.py │ ├── decorator_simple.py │ ├── dict_comprehension_efficient.py │ ├── interval_frequency_datetime.py │ ├── lambdas.py │ ├── permutation.py │ ├── ref_counter.py │ ├── sentinel.py │ ├── simple_generator.py │ ├── string_manipulation.py │ ├── switch_case.py │ ├── timers.py │ ├── timers │ │ ├── clock.py │ │ ├── clock_2.py │ │ ├── clock_2_class.py │ │ └── clock_named_tuple.py │ ├── unzip_zip_tar_file.py │ └── whois_socket_client.py ├── README.MD └── StarLark │ └── README.MD ├── README.MD ├── SDLC & Business Models ├── BusinessModel.md ├── README.MD ├── SDLC.MD └── SoftwareDevelopmentLifeCycle.MD ├── Software Architecture ├── APIS │ ├── README.MD │ ├── open_api │ │ ├── REDME.MD │ │ └── openapi_spec.yaml │ └── security_and_oauth.md ├── Design Principles │ ├── Enterprise_integration.md │ ├── Monolith_architecture.md │ ├── OO_Design.md │ ├── SOA.md │ ├── SOLID.md │ ├── microservice_architecture.md │ ├── pool.md │ └── solid.php ├── README.MD ├── System Design │ ├── System Desing.md │ ├── designs │ │ ├── ticket_master │ │ │ ├── Ticket Master.md │ │ │ └── design-ticket-master.png │ │ └── uber │ │ │ ├── Uber.md │ │ │ ├── uber-design-1.png │ │ │ ├── uber-design-2.png │ │ │ └── uber-design-3.png │ └── system-design-steps.png ├── Web Application Architecture │ └── README.MD └── interview_questions.md ├── Software Development ├── Back-End │ ├── API │ │ ├── README.MD │ │ └── SOAP │ │ │ └── README.MD │ ├── Databases │ │ ├── MySQL │ │ │ ├── 02_insert_data.py │ │ │ ├── 03_select_data.py │ │ │ ├── 04_update_data.py │ │ │ ├── 05_delete_data.py │ │ │ ├── README.MD │ │ │ ├── Recipes │ │ │ │ ├── relations.sql │ │ │ │ ├── simple_query.sql │ │ │ │ └── verbose_output │ │ │ │ │ ├── insert_sample.sql │ │ │ │ │ ├── sample_db_dump_skeleton.sql │ │ │ │ │ └── verbose_output.bash │ │ │ ├── comand.bash │ │ │ ├── conn_simple.py │ │ │ └── general_commands.sql │ │ ├── PostgreSQL │ │ │ ├── Python-API │ │ │ │ ├── 01_conn_simple.py │ │ │ │ ├── 02_insert_data.py │ │ │ │ ├── 03_select_data.py │ │ │ │ ├── 04_update_data.py │ │ │ │ └── 05_delete_data.py │ │ │ ├── README.MD │ │ │ ├── Select │ │ │ │ ├── select.sql │ │ │ │ ├── views.sql │ │ │ │ └── window_functions.sql │ │ │ ├── comand.bash │ │ │ ├── general_commands.sql │ │ │ ├── group_by │ │ │ │ └── group_by_recipes.sql │ │ │ └── string_manipulation.sql │ │ ├── README.MD │ │ ├── SQLAlchemy │ │ │ ├── README.MD │ │ │ ├── conn.py │ │ │ ├── create_tables.py │ │ │ └── query.py │ │ └── SQLite │ │ │ ├── Delete │ │ │ └── delete.sql │ │ │ ├── Example │ │ │ ├── 01_simpleCRUD.py │ │ │ ├── delete.sql │ │ │ ├── insert.sql │ │ │ ├── schema.sql │ │ │ ├── select.sql │ │ │ └── update.sql │ │ │ ├── Functions │ │ │ └── date.sql │ │ │ ├── Insert │ │ │ ├── insert.sql │ │ │ └── replace.sql │ │ │ ├── Join │ │ │ └── join.sql │ │ │ ├── Python-APIs │ │ │ ├── 01_conn_simple.py │ │ │ ├── 02_insert_data.py │ │ │ ├── 03_select_data.py │ │ │ ├── 04_update_data.py │ │ │ ├── 05_delete_data.py │ │ │ ├── README.MD │ │ │ ├── _app_conn.py │ │ │ ├── back_up.py │ │ │ ├── common_commit.py │ │ │ ├── image_blob.py │ │ │ └── simple_csv.py │ │ │ ├── README.MD │ │ │ ├── Schema-Database-Table │ │ │ ├── alter_table.sql │ │ │ ├── database.sql │ │ │ ├── drop_table.sql │ │ │ ├── fts_5.sql │ │ │ ├── generated_columns.sql │ │ │ ├── tables.sql │ │ │ └── vacuum.sql │ │ │ ├── Select │ │ │ ├── group_by.sql │ │ │ ├── join.sql │ │ │ ├── limit.sql │ │ │ ├── select_statement.sql │ │ │ └── where.sql │ │ │ ├── Transactions │ │ │ └── transaction.sql │ │ │ ├── Update │ │ │ └── update.sql │ │ │ ├── case.sql │ │ │ ├── commands.sql │ │ │ ├── data_type.sql │ │ │ ├── except.sql │ │ │ ├── img │ │ │ ├── full-outer-join.png │ │ │ ├── inner-join.png │ │ │ └── left-join.png │ │ │ ├── index.sql │ │ │ ├── insersect.sql │ │ │ ├── trigger.sql │ │ │ └── union.sql │ ├── README.MD │ └── SSL │ │ └── commands.bash ├── DevOps │ ├── README.MD │ └── commands.bash ├── Front-End │ ├── AJAX │ │ ├── README.MD │ │ └── simple_httprequest.js │ ├── CSS │ │ ├── README.MD │ │ ├── a_tag_attr.css │ │ ├── loadingSpinnerCSS │ │ │ ├── loadinSpinnerCSS.css │ │ │ └── loadinSpinnerCSS.html │ │ ├── materialDesign.css │ │ ├── media_queries.css │ │ ├── remove_all_style_from_button.css │ │ ├── row_col.css │ │ └── word-wrap.css │ ├── DOM │ │ ├── README.MD │ │ ├── XML_Example │ │ │ ├── XML_nodes │ │ │ │ ├── add_nodes.js │ │ │ │ ├── create_nodes.js │ │ │ │ ├── remove_attr.js │ │ │ │ ├── replace_node.js │ │ │ │ └── set_attr.js │ │ │ ├── acces_node_byindex.js │ │ │ ├── books.xml │ │ │ ├── get_node_name.js │ │ │ ├── get_text_.js │ │ │ ├── loo_node_relationship.js │ │ │ ├── loop_node.js │ │ │ ├── loop_nodes_length.js │ │ │ └── node_type.js │ │ ├── cdata.html │ │ ├── create_nodes │ │ └── empty_nodes.js │ ├── HTML │ │ ├── 01_simple_template.html │ │ ├── README.MD │ │ └── text_area_code.html │ ├── README.MD │ ├── Ready-Design │ │ ├── Forms │ │ │ └── Step_Form │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ └── style.css │ │ ├── README.MD │ │ ├── SVG │ │ │ └── README.MD │ │ └── Web Components │ │ │ ├── Parallax │ │ │ ├── README.MD │ │ │ ├── parallax_collections │ │ │ │ ├── css │ │ │ │ │ ├── Lib │ │ │ │ │ │ └── glider.css │ │ │ │ │ └── main.css │ │ │ │ ├── js │ │ │ │ │ ├── Lib │ │ │ │ │ │ └── glider.js │ │ │ │ │ └── main.js │ │ │ │ └── parallax │ │ │ │ │ ├── .vscode │ │ │ │ │ └── settings.json │ │ │ │ │ ├── static │ │ │ │ │ ├── css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ ├── parallax_cool.css │ │ │ │ │ │ ├── parallax_study_1.css │ │ │ │ │ │ └── parallax_study_2.css │ │ │ │ │ └── js │ │ │ │ │ │ └── main.js │ │ │ │ │ └── templates │ │ │ │ │ ├── index.html │ │ │ │ │ ├── parallax_cool.html │ │ │ │ │ ├── parallax_study_1.html │ │ │ │ │ └── parallax_study_2.html │ │ │ └── parallax_simple_01_css │ │ │ │ ├── img │ │ │ │ ├── image1.jpg │ │ │ │ ├── image2.jpg │ │ │ │ └── image3.jpg │ │ │ │ └── index.html │ │ │ └── README.MD │ ├── XML │ │ ├── DTD │ │ │ ├── README.MD │ │ │ ├── Sample │ │ │ │ ├── sample.dtd │ │ │ │ └── sample.xml │ │ │ └── simple_.xml │ │ ├── README.MD │ │ ├── XML-Schema │ │ │ ├── README.MD │ │ │ ├── reference_to_schema.xml │ │ │ ├── sample_01.xml │ │ │ └── schemas_.xsd │ │ ├── XML_parsing.js │ │ ├── bookstore.xml │ │ ├── breakfast_menu.xml │ │ ├── name_space.xml │ │ ├── xlink_.xml │ │ ├── xml_http_request.js │ │ ├── xslt │ │ │ ├── README.MD │ │ │ ├── apply.xsl │ │ │ ├── cdcatalog.xml │ │ │ ├── cdcatalog.xsl │ │ │ ├── choose_when_otherwise.xsl │ │ │ ├── if_.xsl │ │ │ ├── simple │ │ │ │ ├── breakfast.xml │ │ │ │ └── simple.xsl │ │ │ ├── sort.xsl │ │ │ └── xml_to_xhtml_js.js │ │ └── xslt_xml_.xml │ └── figma_docs.md └── MobileDev │ ├── Android │ ├── Google-AdMob │ │ └── README.MD │ ├── Play-Console-Guides │ │ └── README.MD │ ├── README.MD │ └── utils │ │ ├── README.MD │ │ └── commands.bat │ ├── README.MD │ └── ReactNative │ ├── .vscode │ └── launch.json │ ├── README.MD │ ├── atomic_design │ └── readme.md │ ├── snippets │ ├── Hooks │ │ └── OrientationHook.js │ ├── Navigation │ │ ├── ract_navigation_summary.js │ │ └── react-navigation │ │ │ ├── react_navigation_multiple_screens.js │ │ │ └── react_navigation_simple.js │ ├── React-Native │ │ ├── Colors.js │ │ └── background_style_hack.js │ ├── fetch_simple.js │ ├── progress_bar.js │ ├── progress_bar_convert.js │ └── simple_app_1.js │ └── utils │ ├── README.MD │ ├── commands.bat │ └── config │ └── .eslintrc.js ├── Testing └── README.MD ├── Utils ├── GITHUB.bat ├── README.MD ├── comments_usefull.txt ├── doc_readme.txt ├── gitignore_sample.txt ├── pull_request_1.md ├── readme_pictures.md └── readme_sample.txt ├── bashrc_templates.md ├── commands.md ├── mac_shortcuts.md └── terms.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | 4 | # C compiled files 5 | main 6 | *.o 7 | 8 | 9 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AWS/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/AWS/commands.bash -------------------------------------------------------------------------------- /AWS/doc_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/AWS/doc_readme.txt -------------------------------------------------------------------------------- /Algorithms/Breadth-first/breadth_first_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Algorithms/Breadth-first/breadth_first_list.py -------------------------------------------------------------------------------- /Algorithms/Depth-first/depth_first_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Algorithms/Depth-first/depth_first_list.py -------------------------------------------------------------------------------- /Algorithms/Dijkstra/dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Algorithms/Dijkstra/dijkstra.cpp -------------------------------------------------------------------------------- /Algorithms/Dijkstra/dijkstra.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Algorithms/Dijkstra/dijkstra.java -------------------------------------------------------------------------------- /Algorithms/Dijkstra/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Algorithms/Dijkstra/dijkstra.py -------------------------------------------------------------------------------- /Algorithms/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Algorithms/README.MD -------------------------------------------------------------------------------- /Autonomations/Ansible/ansible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Autonomations/Ansible/ansible.md -------------------------------------------------------------------------------- /Autonomations/Ansible/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Autonomations/Ansible/commands.bash -------------------------------------------------------------------------------- /Autonomations/project_builder_codeigniter__rsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Autonomations/project_builder_codeigniter__rsuite.sh -------------------------------------------------------------------------------- /Autonomations/project_builder_one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Autonomations/project_builder_one.sh -------------------------------------------------------------------------------- /Container & Orchestrations/Docker/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Container & Orchestrations/Docker/README.MD -------------------------------------------------------------------------------- /Container & Orchestrations/Docker/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Container & Orchestrations/Docker/commands.bash -------------------------------------------------------------------------------- /Container & Orchestrations/Docker/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | 4 | exec "$@" 5 | -------------------------------------------------------------------------------- /Container & Orchestrations/Docker/recipes/docker_run_recipes.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Container & Orchestrations/Docker/recipes/docker_run_recipes.bash -------------------------------------------------------------------------------- /Container & Orchestrations/Kubernetes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Container & Orchestrations/Kubernetes/.gitignore -------------------------------------------------------------------------------- /Container & Orchestrations/Kubernetes/NOTES.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Container & Orchestrations/Kubernetes/NOTES.MD -------------------------------------------------------------------------------- /Container & Orchestrations/Kubernetes/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Container & Orchestrations/Kubernetes/README.MD -------------------------------------------------------------------------------- /Container & Orchestrations/Kubernetes/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Container & Orchestrations/Kubernetes/commands.bash -------------------------------------------------------------------------------- /Container & Orchestrations/Kubernetes/dashboard-adminuser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Container & Orchestrations/Kubernetes/dashboard-adminuser.yaml -------------------------------------------------------------------------------- /Container & Orchestrations/Kubernetes/tutorial/liveness_readiness/requirement.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /Game Development/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/README.MD -------------------------------------------------------------------------------- /Game Development/java/Java Game Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/Java Game Development.md -------------------------------------------------------------------------------- /Game Development/java/libGDX/assets/default.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/assets/default.fnt -------------------------------------------------------------------------------- /Game Development/java/libGDX/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/assets/default.png -------------------------------------------------------------------------------- /Game Development/java/libGDX/assets/uiskin.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/assets/uiskin.atlas -------------------------------------------------------------------------------- /Game Development/java/libGDX/assets/uiskin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/assets/uiskin.json -------------------------------------------------------------------------------- /Game Development/java/libGDX/assets/uiskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/assets/uiskin.png -------------------------------------------------------------------------------- /Game Development/java/libGDX/libGDX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/libGDX.md -------------------------------------------------------------------------------- /Game Development/java/libGDX/lib_gdx_commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/lib_gdx_commands.bash -------------------------------------------------------------------------------- /Game Development/java/libGDX/recipes/CustomButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/recipes/CustomButton.java -------------------------------------------------------------------------------- /Game Development/java/libGDX/recipes/ScreenButtonSimple1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/recipes/ScreenButtonSimple1.java -------------------------------------------------------------------------------- /Game Development/java/libGDX/recipes/SpatialHash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/recipes/SpatialHash.java -------------------------------------------------------------------------------- /Game Development/java/libGDX/recipes/TextureID.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/recipes/TextureID.java -------------------------------------------------------------------------------- /Game Development/java/libGDX/recipes/TextureManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/recipes/TextureManager.java -------------------------------------------------------------------------------- /Game Development/java/libGDX/recipes/textSize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/java/libGDX/recipes/textSize.java -------------------------------------------------------------------------------- /Game Development/javascript/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE -------------------------------------------------------------------------------- /Game Development/javascript/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/README.MD -------------------------------------------------------------------------------- /Game Development/javascript/recipes/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/README.MD -------------------------------------------------------------------------------- /Game Development/javascript/recipes/animations/fallingBal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/animations/fallingBal.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/check_browser_support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/check_browser_support.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/check_browser_support2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/check_browser_support2.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/controls/controls_handlers_01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/controls/controls_handlers_01.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/controls/controls_handlers_02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/controls/controls_handlers_02.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/controls/mouse_element_position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/controls/mouse_element_position.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/create_javascript_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/create_javascript_table.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/bricks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/bricks.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/circle.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/grid.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/grid_improved.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/grid_improved.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/pac_man.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/pac_man.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/simple_rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/simple_rect.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/smile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/smile.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/square.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/draws_and_shapes/triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/draws_and_shapes/triangle.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/fill_all_canvas_background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/fill_all_canvas_background.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/font/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/font/simple.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/full_screen_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/full_screen_api.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/grid_css_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/grid_css_only.css -------------------------------------------------------------------------------- /Game Development/javascript/recipes/grid_svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/grid_svg.html -------------------------------------------------------------------------------- /Game Development/javascript/recipes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/index.html -------------------------------------------------------------------------------- /Game Development/javascript/recipes/random_numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/random_numbers.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/random_rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/random_rgb.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/start_up_scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/start_up_scripts/index.html -------------------------------------------------------------------------------- /Game Development/javascript/recipes/start_up_scripts/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/start_up_scripts/main.css -------------------------------------------------------------------------------- /Game Development/javascript/recipes/start_up_scripts/simple_01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/start_up_scripts/simple_01.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/styles_color/dots_multi_color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/styles_color/dots_multi_color.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/styles_color/lineWidth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/styles_color/lineWidth.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/styles_color/multi_color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/styles_color/multi_color.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/styles_color/ranibowBlocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/styles_color/ranibowBlocks.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/styles_color/rgba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/styles_color/rgba.js -------------------------------------------------------------------------------- /Game Development/javascript/recipes/styles_color/transparency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/recipes/styles_color/transparency.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/.DS_Store -------------------------------------------------------------------------------- /Game Development/javascript/threejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/.gitignore -------------------------------------------------------------------------------- /Game Development/javascript/threejs/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/README.MD -------------------------------------------------------------------------------- /Game Development/javascript/threejs/cinematicTank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/cinematicTank.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/index.html -------------------------------------------------------------------------------- /Game Development/javascript/threejs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/main.css -------------------------------------------------------------------------------- /Game Development/javascript/threejs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/main.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/package-lock.json -------------------------------------------------------------------------------- /Game Development/javascript/threejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/package.json -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/core.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/demos/tankMultiCamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/demos/tankMultiCamera.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/recipes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/recipes.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/resizeRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/resizeRenderer.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/shapes/latheGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/shapes/latheGeometry.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/tutorial/01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/tutorial/01.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/tutorial/02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/tutorial/02.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/tutorial/03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/tutorial/03.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/tutorial/04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/tutorial/04.js -------------------------------------------------------------------------------- /Game Development/javascript/threejs/recipes/tutorial/05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/javascript/threejs/recipes/tutorial/05.js -------------------------------------------------------------------------------- /Game Development/python/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/README.MD -------------------------------------------------------------------------------- /Game Development/python/pygame/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/README.MD -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/assets_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/assets_loader.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/camera/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/camera/camera.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/camera/simple_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/camera/simple_camera.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/collisions/collisions_sides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/collisions/collisions_sides.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/draw_chess_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/draw_chess_board.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/fonts/all_default_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/fonts/all_default_fonts.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/fonts/example_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/fonts/example_1.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/fonts/example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/fonts/example_2.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/loader_sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/loader_sound.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/map/random_map_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/map/random_map_generator.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/shapes/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/shapes/shapes.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/starter_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/starter_app.py -------------------------------------------------------------------------------- /Game Development/python/pygame/recipes/starter_app_complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/python/pygame/recipes/starter_app_complete.py -------------------------------------------------------------------------------- /Game Development/unity/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/unity/README.MD -------------------------------------------------------------------------------- /Game Development/unreal_engine/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/unreal_engine/README.MD -------------------------------------------------------------------------------- /Game Development/unreal_engine/snippets/1_plannet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Game Development/unreal_engine/snippets/1_plannet.cpp -------------------------------------------------------------------------------- /Google Ads/google_ads_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Google Ads/google_ads_test.html -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/NeoVim/ChatGPT.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/NeoVim/ChatGPT.MD -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/NeoVim/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/NeoVim/README.MD -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/README.MD -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/commands.bash -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/vim_motions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/vim_motions.md -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/vimrc_examples/.vimrc_example_coc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/vimrc_examples/.vimrc_example_coc -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/vimrc_examples/.vimrc_example_python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/vimrc_examples/.vimrc_example_python -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/vimrc_examples/.vimrc_reverse_tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/vimrc_examples/.vimrc_reverse_tab -------------------------------------------------------------------------------- /IDE - TextEditors/Vim_Family/vimrc_examples/.vimrc_vim_plug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/Vim_Family/vimrc_examples/.vimrc_vim_plug -------------------------------------------------------------------------------- /IDE - TextEditors/VsCode/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/VsCode/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /IDE - TextEditors/VsCode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/VsCode/.vscode/launch.json -------------------------------------------------------------------------------- /IDE - TextEditors/VsCode/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/VsCode/.vscode/settings.json -------------------------------------------------------------------------------- /IDE - TextEditors/VsCode/.vscode/settings_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/VsCode/.vscode/settings_2.json -------------------------------------------------------------------------------- /IDE - TextEditors/VsCode/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/IDE - TextEditors/VsCode/README.MD -------------------------------------------------------------------------------- /Internet Architecture/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Internet Architecture/README.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux/Cygwin/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/Cygwin/README.MD -------------------------------------------------------------------------------- /Linux/GCC-Compiler/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/GCC-Compiler/README.MD -------------------------------------------------------------------------------- /Linux/HyperTerminal/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/HyperTerminal/README.MD -------------------------------------------------------------------------------- /Linux/Mac/.zshrc__1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/Mac/.zshrc__1 -------------------------------------------------------------------------------- /Linux/Mac/starship_2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/Mac/starship_2.toml -------------------------------------------------------------------------------- /Linux/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/README.MD -------------------------------------------------------------------------------- /Linux/Ubuntu-Debian Commands/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/Ubuntu-Debian Commands/README.MD -------------------------------------------------------------------------------- /Linux/Ubuntu/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/Ubuntu/README.MD -------------------------------------------------------------------------------- /Linux/Vim/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/Vim/README.MD -------------------------------------------------------------------------------- /Linux/libvirt/guest_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/libvirt/guest_template.xml -------------------------------------------------------------------------------- /Linux/libvirt/installations.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/libvirt/installations.bash -------------------------------------------------------------------------------- /Linux/libvirt/libvirt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Linux/libvirt/libvirt.md -------------------------------------------------------------------------------- /Machine Lerning & AI/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/README.MD -------------------------------------------------------------------------------- /Machine Lerning & AI/TensorFlow/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/TensorFlow/README.MD -------------------------------------------------------------------------------- /Machine Lerning & AI/TensorFlow/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/TensorFlow/commands.bash -------------------------------------------------------------------------------- /Machine Lerning & AI/cot_monitoring.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/cot_monitoring.pdf -------------------------------------------------------------------------------- /Machine Lerning & AI/course_notes/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/course_notes/image-1.png -------------------------------------------------------------------------------- /Machine Lerning & AI/course_notes/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/course_notes/image-2.png -------------------------------------------------------------------------------- /Machine Lerning & AI/course_notes/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/course_notes/image-3.png -------------------------------------------------------------------------------- /Machine Lerning & AI/course_notes/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/course_notes/image.png -------------------------------------------------------------------------------- /Machine Lerning & AI/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/image-1.png -------------------------------------------------------------------------------- /Machine Lerning & AI/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/image-2.png -------------------------------------------------------------------------------- /Machine Lerning & AI/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/image-3.png -------------------------------------------------------------------------------- /Machine Lerning & AI/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/image-4.png -------------------------------------------------------------------------------- /Machine Lerning & AI/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/image-5.png -------------------------------------------------------------------------------- /Machine Lerning & AI/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/image.png -------------------------------------------------------------------------------- /Machine Lerning & AI/keywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/keywords.md -------------------------------------------------------------------------------- /Machine Lerning & AI/prompting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/prompting.md -------------------------------------------------------------------------------- /Machine Lerning & AI/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Machine Lerning & AI/roadmap.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Makefile -------------------------------------------------------------------------------- /Mathematics/Josephus Problem/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Josephus Problem/README.MD -------------------------------------------------------------------------------- /Mathematics/Josephus Problem/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Josephus Problem/python.py -------------------------------------------------------------------------------- /Mathematics/Polygon/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/README.MD -------------------------------------------------------------------------------- /Mathematics/Polygon/poly-iter-lazy-2/poly_lazy_iter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/poly-iter-lazy-2/poly_lazy_iter2.py -------------------------------------------------------------------------------- /Mathematics/Polygon/poly-iter-lazy/poly_lazy_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/poly-iter-lazy/poly_lazy_iter.py -------------------------------------------------------------------------------- /Mathematics/Polygon/poly-iter-lazy/poly_lazy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/poly-iter-lazy/poly_lazy_test.py -------------------------------------------------------------------------------- /Mathematics/Polygon/poly_seq_1/poly_seq_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/poly_seq_1/poly_seq_1.py -------------------------------------------------------------------------------- /Mathematics/Polygon/poly_seq_1/poly_seq_1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/poly_seq_1/poly_seq_1_test.py -------------------------------------------------------------------------------- /Mathematics/Polygon/poly_seq_2/__pycache__/poly_seq_2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/poly_seq_2/__pycache__/poly_seq_2.cpython-38.pyc -------------------------------------------------------------------------------- /Mathematics/Polygon/poly_seq_2/poly_seq_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/poly_seq_2/poly_seq_2.py -------------------------------------------------------------------------------- /Mathematics/Polygon/poly_seq_2/poly_seq_2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/poly_seq_2/poly_seq_2_test.py -------------------------------------------------------------------------------- /Mathematics/Polygon/stc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/stc.png -------------------------------------------------------------------------------- /Mathematics/Polygon/stc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/Polygon/stc_2.png -------------------------------------------------------------------------------- /Mathematics/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/README.MD -------------------------------------------------------------------------------- /Mathematics/dot_product_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/dot_product_3d.py -------------------------------------------------------------------------------- /Mathematics/fibunacci_sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/fibunacci_sequences.py -------------------------------------------------------------------------------- /Mathematics/matrix_diagonal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/matrix_diagonal.py -------------------------------------------------------------------------------- /Mathematics/pascal_triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/pascal_triangle.py -------------------------------------------------------------------------------- /Mathematics/series_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Mathematics/series_expansion.py -------------------------------------------------------------------------------- /Odoo/module_base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Odoo/module_base/LICENSE -------------------------------------------------------------------------------- /Odoo/module_base/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Odoo/module_base/README.MD -------------------------------------------------------------------------------- /Odoo/module_base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Odoo/module_base/__init__.py -------------------------------------------------------------------------------- /Odoo/module_base/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Odoo/module_base/__manifest__.py -------------------------------------------------------------------------------- /Odoo/module_base/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Odoo/module_base/models/__init__.py -------------------------------------------------------------------------------- /Odoo/module_base/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Odoo/module_base/static/description/index.html -------------------------------------------------------------------------------- /Programming Languages/C++/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Programming Languages/C++/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/.vscode/launch.json -------------------------------------------------------------------------------- /Programming Languages/C++/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/.vscode/settings.json -------------------------------------------------------------------------------- /Programming Languages/C++/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/.vscode/tasks.json -------------------------------------------------------------------------------- /Programming Languages/C++/Core Principles & Structure/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/Core Principles & Structure/README.MD -------------------------------------------------------------------------------- /Programming Languages/C++/Core Principles & Structure/exceptions/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/Core Principles & Structure/exceptions/app -------------------------------------------------------------------------------- /Programming Languages/C++/Core Principles & Structure/misc/static_var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/Core Principles & Structure/misc/static_var -------------------------------------------------------------------------------- /Programming Languages/C++/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/README.MD -------------------------------------------------------------------------------- /Programming Languages/C++/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/commands.sh -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/c_plus_plus_vscode/helloworld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/c_plus_plus_vscode/helloworld -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/cards/Cardgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/cards/Cardgame.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/cards/Cardgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/cards/Cardgame.h -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/cards/cards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/cards/cards -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/cards/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/cards/main.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/hello_world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/hello_world -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/hello_world.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/make_debugger_stop/seg_fault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/make_debugger_stop/seg_fault -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/misc/function_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/misc/function_name.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/version/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/version/version -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/version/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/version/version.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/first_project/version/version_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/first_project/version/version_2.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/recipes/check_if_string_in_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/recipes/check_if_string_in_array.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/recipes/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/recipes/version.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/recipes/version_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/recipes/version_2.cpp -------------------------------------------------------------------------------- /Programming Languages/C++/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C++/roadmap.md -------------------------------------------------------------------------------- /Programming Languages/C/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Programming Languages/C/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/.vscode/settings.json -------------------------------------------------------------------------------- /Programming Languages/C/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/.vscode/tasks.json -------------------------------------------------------------------------------- /Programming Languages/C/External-Libraries/MMsystem_h/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/External-Libraries/MMsystem_h/README.MD -------------------------------------------------------------------------------- /Programming Languages/C/External-Libraries/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/External-Libraries/README.MD -------------------------------------------------------------------------------- /Programming Languages/C/External-Libraries/window_h/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/External-Libraries/window_h/README.MD -------------------------------------------------------------------------------- /Programming Languages/C/External-Libraries/window_h/func_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/External-Libraries/window_h/func_1.c -------------------------------------------------------------------------------- /Programming Languages/C/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/README.MD -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/3d_array_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/3d_array_simple.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/Tricks/calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/Tricks/calendar.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/enum.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/error_handling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/error_handling.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/file.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/memoryAllocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/memoryAllocation.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/pointers.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/preprocessor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/preprocessor.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/storage_classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/storage_classes.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/string.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/struct.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Basics-SimpleTricks/union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Basics-SimpleTricks/union.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Mathematics/binary_converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Mathematics/binary_converter.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Mathematics/calc_average.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Mathematics/calc_average.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Mathematics/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Mathematics/factorial.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Mathematics/fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Mathematics/fibonacci.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Mathematics/sum_2_matrices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Mathematics/sum_2_matrices.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/Mathematics/triangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/Mathematics/triangles.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/algorithms/fibonacci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/algorithms/fibonacci -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/algorithms/fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/algorithms/fibonacci.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/c_version/c.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/c_version/c.out -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/c_version/compile_c_versions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/c_version/compile_c_versions.bash -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/c_version/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/c_version/main.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/check_system_specific_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/check_system_specific_type.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/find_c_gcc_default_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/find_c_gcc_default_version.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/find_littleEndian_bigEndian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/find_littleEndian_bigEndian.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/hello_world/01._hello_world/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/hello_world/01._hello_world/main.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/hello_world/compile.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/hello_world/compile.bash -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/hello_world/reverse_string/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/hello_world/reverse_string/main.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/nomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/nomain.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/print_functions/p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/print_functions/p1 -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/print_functions/p2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/print_functions/p2 -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/print_functions/print_function_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/print_functions/print_function_1.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/print_functions/print_function_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/print_functions/print_function_2.c -------------------------------------------------------------------------------- /Programming Languages/C/Recipes/timers/1_timer_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/Recipes/timers/1_timer_simple.c -------------------------------------------------------------------------------- /Programming Languages/C/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/commands.bash -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/README.MD -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/main.c -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Advanced/pragma_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Advanced/pragma_attributes.c -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Data Structure/Queue/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Data Structure/Queue/main.c -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Data Structure/Queue/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Data Structure/Queue/queue.c -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Data Structure/Queue/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Data Structure/Queue/queue.h -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Data Structure/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Data Structure/README.MD -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Functions/fgets__puts/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Functions/fgets__puts/fgets.c -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Standard-Library/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Standard-Library/README.MD -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Standard-Library/stdarg_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Standard-Library/stdarg_h.c -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/old/Standard-Library/time_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/old/Standard-Library/time_h.c -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/roadmap/3_advanced/6_data_structures/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/C/fundamentals/roadmap/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/fundamentals/roadmap/readme.md -------------------------------------------------------------------------------- /Programming Languages/C/install_c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/install_c.md -------------------------------------------------------------------------------- /Programming Languages/C/keywords_and_terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/keywords_and_terms.md -------------------------------------------------------------------------------- /Programming Languages/C/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/C/roadmap.md -------------------------------------------------------------------------------- /Programming Languages/GO/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/README.MD -------------------------------------------------------------------------------- /Programming Languages/GO/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/commands.bash -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/any_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/any_types.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/arrays/arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/arrays/arrays.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/arrays/get_largets_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/arrays/get_largets_range.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/arrays/sort_array_num.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/arrays/sort_array_num.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/closures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/closures.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/errors/error_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/errors/error_struct.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/fibonacci_closure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/fibonacci_closure.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/function_values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/function_values.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/generics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/generics.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/go_build_module/greetings/go.mod: -------------------------------------------------------------------------------- 1 | module example/greetings 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/go_build_module/hello/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/go_build_module/hello/go.mod -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/go_build_module/hello/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/go_build_module/hello/hello -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/go_build_module/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/go_build_module/hello/hello.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/goroutines/channels/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/goroutines/channels/sample.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/goroutines/mutual_exclusion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/goroutines/mutual_exclusion.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/goroutines/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/goroutines/sample.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/goroutines/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/goroutines/select.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/i/o/readers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/i/o/readers.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/interfaces/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/interfaces/assertions.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/interfaces/assertions_switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/interfaces/assertions_switch.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/interfaces/interface_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/interfaces/interface_empty.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/interfaces/interface_implicit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/interfaces/interface_implicit.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/interfaces/interface_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/interfaces/interface_value.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/interfaces/interface_with_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/interfaces/interface_with_nil.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/interfaces/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/interfaces/interfaces.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/maps/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/maps/README.MD -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/maps/largest_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/maps/largest_range.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/maps/maps_loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/maps/maps_loop.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/methods/method_on_any_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/methods/method_on_any_type.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/methods/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/methods/methods.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/methods/pointer_receivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/methods/pointer_receivers.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/panic_recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/panic_recover.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/pointers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/pointers.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/slices/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/slices/README.MD -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/slices/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/slices/append.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/slices/len_cap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/slices/len_cap.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/slices/make_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/slices/make_slice.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/slices/slice_literals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/slices/slice_literals.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/slices/slice_of_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/slices/slice_of_slice.go -------------------------------------------------------------------------------- /Programming Languages/GO/fundamentals/type_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/fundamentals/type_parameters.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/closer/closer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/closer/closer.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/gb_const_iota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/gb_const_iota.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/print_all_env_vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/print_all_env_vars.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/print_machine_os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/print_machine_os.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/readme_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/readme_sample.txt -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/roles_consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/roles_consts.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/set_max_proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/set_max_proc.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/small_restfull_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/small_restfull_api.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/socket/example2/socket_Example2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/socket/example2/socket_Example2.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/socket/simple_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/socket/simple_socket.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/string_reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/string_reverse.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/to_string.go -------------------------------------------------------------------------------- /Programming Languages/GO/recipes/write_to_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/GO/recipes/write_to_files.go -------------------------------------------------------------------------------- /Programming Languages/Java/.gitignore: -------------------------------------------------------------------------------- 1 | *.class -------------------------------------------------------------------------------- /Programming Languages/Java/Core Principles & Structure/README.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Java/Core Principles & Structure/old/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Core Principles & Structure/old/README.MD -------------------------------------------------------------------------------- /Programming Languages/Java/Core Principles & Structure/old/enum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Core Principles & Structure/old/enum.java -------------------------------------------------------------------------------- /Programming Languages/Java/Core Principles & Structure/old/regex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Core Principles & Structure/old/regex.java -------------------------------------------------------------------------------- /Programming Languages/Java/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/README.MD -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/builder_patterns/01_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/builder_patterns/01_example.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/databases/mysql/dependency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/databases/mysql/dependency.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/enums/enum_string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/enums/enum_string.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/io/files/read_file.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/io/files/read_file.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/io/files/scanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/io/files/scanner.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/io/files/terminal_reader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/io/files/terminal_reader.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/io/files/write_file.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/io/files/write_file.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/json/simple_object_to_json.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/json/simple_object_to_json.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/loggin/simple_logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/loggin/simple_logger.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/loggin/simple_logger_02.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/loggin/simple_logger_02.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/jackson_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/jackson_xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/jma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/jma.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/json_object.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/json_object.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/junit5_dependency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/junit5_dependency.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/junit_dependency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/junit_dependency.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/live_reloader-thymeleaft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/live_reloader-thymeleaft.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/project_main_parent_pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/project_main_parent_pom.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/rest-assured.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/rest-assured.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/spring_jdba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/spring_jdba.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/maven/spring_loggin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/maven/spring_loggin.xml -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/threading/DaemonThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/threading/DaemonThread.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/threading/MainThreading.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/threading/MainThreading.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/threading/PythonConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/threading/PythonConsole.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/threading/PythonConsoleQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/threading/PythonConsoleQueue.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/threading/WindowsCMDReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/threading/WindowsCMDReader.java -------------------------------------------------------------------------------- /Programming Languages/Java/Recipes/threading/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/Recipes/threading/readme.md -------------------------------------------------------------------------------- /Programming Languages/Java/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/commands.sh -------------------------------------------------------------------------------- /Programming Languages/Java/libraries/libGDX/libGDX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/libraries/libGDX/libGDX.md -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/README.MD -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/background_fill/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/background_fill/Main.java -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/button_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/button_styles.css -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/grid_box_game/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/grid_box_game/Main.java -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/grid_box_game/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/grid_box_game/game.css -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/moving_arc/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/moving_arc/Main.java -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/scene_graph/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/scene_graph/pom.xml -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/scene_switcher/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/scene_switcher/Main.java -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/screen_selector/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/screen_selector/Main.java -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/javafx/setBorderBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/javafx/setBorderBox.java -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/rawConsoleInput/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/rawConsoleInput/readme.md -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/wave_app/src/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/wave_app/src/README.MD -------------------------------------------------------------------------------- /Programming Languages/Java/small_apps/wave_app/src/com/waves/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Java/small_apps/wave_app/src/com/waves/App.java -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Fetch API/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Fetch API/readme.md -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Fetch API/simple_fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Fetch API/simple_fetch.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Frameworks-Libraries/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Frameworks-Libraries/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Frameworks-Libraries/React/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Frameworks-Libraries/React/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Frameworks-Libraries/Vue/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Frameworks-Libraries/Vue/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/NodeShellScript.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/NodeShellScript.bash -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/Async_Await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/Async_Await.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/MathGetRandomNumbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/MathGetRandomNumbers.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/Promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/Promises.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/Promisifying.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/Promisifying.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/SimpleConfigFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/SimpleConfigFile.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/Streams/Fetch_Stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/Streams/Fetch_Stream.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/Streams/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/Streams/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/Streams/pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/Streams/pipeline.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/cleanURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/cleanURL.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/express/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/express/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/express/next_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/express/next_error.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Recipes/readQueryURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Recipes/readQueryURL.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/Stacks/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/Stacks/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Node/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Node/commands.bash -------------------------------------------------------------------------------- /Programming Languages/JavaScript/PromiseSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/PromiseSimple.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Ready-Code-Blocks/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Ready-Code-Blocks/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Tutorial/Basics - Syntax/05_loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Tutorial/Basics - Syntax/05_loops.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Tutorial/DOM - Interaction/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Tutorial/DOM - Interaction/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Tutorial/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Tutorial/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Tutorial/tagged_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Tutorial/tagged_template.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Tutorial/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Tutorial/utils.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Utils/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Utils/README.MD -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Utils/array_random_tricks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Utils/array_random_tricks.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Utils/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Utils/debugger.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Utils/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Utils/easing.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/Utils/timers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/Utils/timers.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/asyncHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/asyncHandler.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/btn_switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/btn_switch.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/create_javascript_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/create_javascript_table.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/css.gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/css.gradient.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/python_to_javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/python_to_javascript.js -------------------------------------------------------------------------------- /Programming Languages/JavaScript/re_pass_email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/JavaScript/re_pass_email.js -------------------------------------------------------------------------------- /Programming Languages/PHP/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/.htaccess -------------------------------------------------------------------------------- /Programming Languages/PHP/Core Principles & Structure/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Core Principles & Structure/README.MD -------------------------------------------------------------------------------- /Programming Languages/PHP/Core Principles & Structure/arrays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Core Principles & Structure/arrays.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Core Principles & Structure/echo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Core Principles & Structure/echo.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Laravel/DB/migrationUpdateForeignKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Laravel/DB/migrationUpdateForeignKey.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Laravel/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Laravel/README.MD -------------------------------------------------------------------------------- /Programming Languages/PHP/Laravel/access_config_values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Laravel/access_config_values.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Lumen/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Lumen/README.MD -------------------------------------------------------------------------------- /Programming Languages/PHP/Lumen/cors_middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Lumen/cors_middleware.php -------------------------------------------------------------------------------- /Programming Languages/PHP/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/README.MD -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Cache/APCu_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Cache/APCu_.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Cache/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Cache/README.MD -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Cache/ob_start_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Cache/ob_start_.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Config/abstracts_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Config/abstracts_settings.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Config/singleton_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Config/singleton_config.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Datetime/datetime_for_mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Datetime/datetime_for_mysql.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Email/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Email/README.MD -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Email/simple_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Email/simple_example.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/Email/validate_email_addr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/Email/validate_email_addr.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/README.MD -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/auto_load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/auto_load.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/auto_loader_require.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/auto_loader_require.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/config.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/database/database_operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/database/database_operation.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/database/pdo_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/database/pdo_.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/database/pdo_charset_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/database/pdo_charset_example.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/database/query_loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/database/query_loop.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/database/test_query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/database/test_query.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/dockblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/PHP/Recipes/dockblock.php -------------------------------------------------------------------------------- /Programming Languages/PHP/Recipes/encoding_php.php: -------------------------------------------------------------------------------- 1 | Hola -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask-Extensions/Flask-Admin/examples_01/my_version/flask_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask_website_examples/00 To-Do WebApp/to_do_app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask_website_examples/00 To-Do WebApp/to_do_app/reminder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask_website_examples/00 To-Do WebApp/to_do_app/static/style/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask_website_examples/00 To-Do WebApp/to_do_app/tag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask_website_examples/06 Social WebSite/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask_website_examples/07 WebStore -Clothing/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask_website_examples/08 Forum WebSite/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/Flask_website_examples/08 Forum WebSite/templates/security/base.html: -------------------------------------------------------------------------------- 1 | {% extends "login_base.html" %} -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Flask/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/Flask/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Kivy/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/Kivy/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/MyMuPDF/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/MyMuPDF/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/MyMuPDF/sample/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/MyMuPDF/sample/main.py -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Odoo/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/Odoo/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Pathos/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/Pathos/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/PyTest/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/PyTest/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/PyTest/xunit_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/PyTest/xunit_style.py -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Requests/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/Requests/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Requests/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/Requests/simple.py -------------------------------------------------------------------------------- /Programming Languages/Python/External Libraries/Serpy/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/External Libraries/Serpy/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/MultiProcessing-Threading/Queue/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/MultiProcessing-Threading/Queue/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/MultiProcessing-Threading/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/MultiProcessing-Threading/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/OOP/Dscriptors/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/OOP/Dscriptors/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/OOP/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/OOP/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/OOP/iterator_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/OOP/iterator_protocol.py -------------------------------------------------------------------------------- /Programming Languages/Python/OOP/reverse_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/OOP/reverse_iter.py -------------------------------------------------------------------------------- /Programming Languages/Python/OOP/reverse_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/OOP/reverse_protocol.py -------------------------------------------------------------------------------- /Programming Languages/Python/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Simple/guess_100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Simple/guess_100.py -------------------------------------------------------------------------------- /Programming Languages/Python/Simple/sphere_vol_cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Simple/sphere_vol_cal.py -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/chat/simple_tcp_chat_01/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/chat/simple_tcp_chat_01/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/chat/simple_tcp_chat_01/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/chat/simple_tcp_chat_01/client.py -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/chat/simple_tcp_chat_01/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/chat/simple_tcp_chat_01/core.py -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/chat/simple_tcp_chat_01/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/chat/simple_tcp_chat_01/server.py -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/commands.bash -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/quick_recipes/ipv4/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/quick_recipes/ipv4/client.py -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/quick_recipes/ipv4/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/quick_recipes/ipv4/server.py -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/quick_recipes/network_sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/quick_recipes/network_sniffer.py -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/realPythonTutorial/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/realPythonTutorial/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/realPythonTutorial/echo/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/realPythonTutorial/echo/client.py -------------------------------------------------------------------------------- /Programming Languages/Python/Socket/realPythonTutorial/echo/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Socket/realPythonTutorial/echo/server.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/DIS/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/DIS/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/DIS/dis_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/DIS/dis_simple.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/Functools/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/Functools/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/HTML/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/HTML/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/Heapq/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/Heapq/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/Heapq/top_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/Heapq/top_3.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/Itertools/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/Itertools/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/OS/REDME.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/OS/REDME.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/Random/random.seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/Random/random.seed.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/SYS/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/SYS/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/SYS/stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/SYS/stdout.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/SYS/sys.getsizeof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/SYS/sys.getsizeof.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/TKinter/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/TKinter/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/TKinter/recipes/app/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/TKinter/recipes/app/src/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/TKinter/recipes/assets/help.txt: -------------------------------------------------------------------------------- 1 | Some Help here -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/TKinter/tk_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/TKinter/tk_imports.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/Turtle/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/Turtle/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/Unittest/01_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/Unittest/01_runner.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/Unittest/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/Unittest/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/json/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/json/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/json/json_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/json/json_decode.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/loggin/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/loggin/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/operator/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/operator/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/operator/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/operator/base.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/operator/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/operator/sorting.py -------------------------------------------------------------------------------- /Programming Languages/Python/Standard Libraries/urllib/urlopen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Standard Libraries/urllib/urlopen.py -------------------------------------------------------------------------------- /Programming Languages/Python/Utils/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Utils/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/Utils/color_log/color_log_colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Utils/color_log/color_log_colors.json -------------------------------------------------------------------------------- /Programming Languages/Python/Utils/color_log/color_log_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Utils/color_log/color_log_play.py -------------------------------------------------------------------------------- /Programming Languages/Python/Utils/database_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Utils/database_command.txt -------------------------------------------------------------------------------- /Programming Languages/Python/Utils/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Utils/import.py -------------------------------------------------------------------------------- /Programming Languages/Python/Utils/many_packagase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Utils/many_packagase.txt -------------------------------------------------------------------------------- /Programming Languages/Python/Utils/package_env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Utils/package_env.txt -------------------------------------------------------------------------------- /Programming Languages/Python/Utils/terminal_v_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/Utils/terminal_v_env.md -------------------------------------------------------------------------------- /Programming Languages/Python/WebScraping/BeautifulSoup/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/WebScraping/BeautifulSoup/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/WebScraping/BeautifulSoup/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/WebScraping/BeautifulSoup/example.py -------------------------------------------------------------------------------- /Programming Languages/Python/WebScraping/BeautifulSoup/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/WebScraping/BeautifulSoup/simple.py -------------------------------------------------------------------------------- /Programming Languages/Python/WebScraping/Pic-Downloader/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/WebScraping/Pic-Downloader/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/WebScraping/Pic-Downloader/Tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/WebScraping/Pic-Downloader/Tests/test.py -------------------------------------------------------------------------------- /Programming Languages/Python/WebScraping/Pic-Downloader/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/WebScraping/Pic-Downloader/main.py -------------------------------------------------------------------------------- /Programming Languages/Python/WebScraping/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/WebScraping/README.MD -------------------------------------------------------------------------------- /Programming Languages/Python/build_multipart_form_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/build_multipart_form_data.py -------------------------------------------------------------------------------- /Programming Languages/Python/copyright_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/copyright_template.py -------------------------------------------------------------------------------- /Programming Languages/Python/decorator_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/decorator_simple.py -------------------------------------------------------------------------------- /Programming Languages/Python/dict_comprehension_efficient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/dict_comprehension_efficient.py -------------------------------------------------------------------------------- /Programming Languages/Python/interval_frequency_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/interval_frequency_datetime.py -------------------------------------------------------------------------------- /Programming Languages/Python/lambdas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/lambdas.py -------------------------------------------------------------------------------- /Programming Languages/Python/permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/permutation.py -------------------------------------------------------------------------------- /Programming Languages/Python/ref_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/ref_counter.py -------------------------------------------------------------------------------- /Programming Languages/Python/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/sentinel.py -------------------------------------------------------------------------------- /Programming Languages/Python/simple_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/simple_generator.py -------------------------------------------------------------------------------- /Programming Languages/Python/string_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/string_manipulation.py -------------------------------------------------------------------------------- /Programming Languages/Python/switch_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/switch_case.py -------------------------------------------------------------------------------- /Programming Languages/Python/timers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/timers.py -------------------------------------------------------------------------------- /Programming Languages/Python/timers/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/timers/clock.py -------------------------------------------------------------------------------- /Programming Languages/Python/timers/clock_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/timers/clock_2.py -------------------------------------------------------------------------------- /Programming Languages/Python/timers/clock_2_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/timers/clock_2_class.py -------------------------------------------------------------------------------- /Programming Languages/Python/timers/clock_named_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/timers/clock_named_tuple.py -------------------------------------------------------------------------------- /Programming Languages/Python/unzip_zip_tar_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/unzip_zip_tar_file.py -------------------------------------------------------------------------------- /Programming Languages/Python/whois_socket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/Python/whois_socket_client.py -------------------------------------------------------------------------------- /Programming Languages/README.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/StarLark/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Programming Languages/StarLark/README.MD -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/README.MD -------------------------------------------------------------------------------- /SDLC & Business Models/BusinessModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/SDLC & Business Models/BusinessModel.md -------------------------------------------------------------------------------- /SDLC & Business Models/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/SDLC & Business Models/README.MD -------------------------------------------------------------------------------- /SDLC & Business Models/SDLC.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/SDLC & Business Models/SDLC.MD -------------------------------------------------------------------------------- /SDLC & Business Models/SoftwareDevelopmentLifeCycle.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/SDLC & Business Models/SoftwareDevelopmentLifeCycle.MD -------------------------------------------------------------------------------- /Software Architecture/APIS/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/APIS/README.MD -------------------------------------------------------------------------------- /Software Architecture/APIS/open_api/REDME.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/APIS/open_api/REDME.MD -------------------------------------------------------------------------------- /Software Architecture/APIS/open_api/openapi_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/APIS/open_api/openapi_spec.yaml -------------------------------------------------------------------------------- /Software Architecture/APIS/security_and_oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/APIS/security_and_oauth.md -------------------------------------------------------------------------------- /Software Architecture/Design Principles/Enterprise_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/Design Principles/Enterprise_integration.md -------------------------------------------------------------------------------- /Software Architecture/Design Principles/Monolith_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/Design Principles/Monolith_architecture.md -------------------------------------------------------------------------------- /Software Architecture/Design Principles/OO_Design.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software Architecture/Design Principles/SOA.md: -------------------------------------------------------------------------------- 1 | SOA 2 | ==== 3 | 4 | -------------------------------------------------------------------------------- /Software Architecture/Design Principles/SOLID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/Design Principles/SOLID.md -------------------------------------------------------------------------------- /Software Architecture/Design Principles/microservice_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/Design Principles/microservice_architecture.md -------------------------------------------------------------------------------- /Software Architecture/Design Principles/pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/Design Principles/pool.md -------------------------------------------------------------------------------- /Software Architecture/Design Principles/solid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/Design Principles/solid.php -------------------------------------------------------------------------------- /Software Architecture/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/README.MD -------------------------------------------------------------------------------- /Software Architecture/System Design/System Desing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/System Design/System Desing.md -------------------------------------------------------------------------------- /Software Architecture/System Design/designs/uber/Uber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/System Design/designs/uber/Uber.md -------------------------------------------------------------------------------- /Software Architecture/System Design/designs/uber/uber-design-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/System Design/designs/uber/uber-design-1.png -------------------------------------------------------------------------------- /Software Architecture/System Design/designs/uber/uber-design-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/System Design/designs/uber/uber-design-2.png -------------------------------------------------------------------------------- /Software Architecture/System Design/designs/uber/uber-design-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/System Design/designs/uber/uber-design-3.png -------------------------------------------------------------------------------- /Software Architecture/System Design/system-design-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/System Design/system-design-steps.png -------------------------------------------------------------------------------- /Software Architecture/Web Application Architecture/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/Web Application Architecture/README.MD -------------------------------------------------------------------------------- /Software Architecture/interview_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Architecture/interview_questions.md -------------------------------------------------------------------------------- /Software Development/Back-End/API/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/API/README.MD -------------------------------------------------------------------------------- /Software Development/Back-End/API/SOAP/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/API/SOAP/README.MD -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/02_insert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/02_insert_data.py -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/03_select_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/03_select_data.py -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/04_update_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/04_update_data.py -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/05_delete_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/05_delete_data.py -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/README.MD -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/Recipes/relations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/Recipes/relations.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/Recipes/simple_query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/Recipes/simple_query.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/comand.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/comand.bash -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/conn_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/conn_simple.py -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/MySQL/general_commands.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/MySQL/general_commands.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/PostgreSQL/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/PostgreSQL/README.MD -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/PostgreSQL/Select/views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/PostgreSQL/Select/views.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/PostgreSQL/comand.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/PostgreSQL/comand.bash -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/README.MD -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLAlchemy/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLAlchemy/README.MD -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLAlchemy/conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLAlchemy/conn.py -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLAlchemy/create_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLAlchemy/create_tables.py -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLAlchemy/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLAlchemy/query.py -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Delete/delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Delete/delete.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Example/delete.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM 2 | comments 3 | WHERE id = 5; -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Example/insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Example/insert.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Example/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Example/schema.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Example/select.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Example/select.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Example/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Example/update.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Functions/date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Functions/date.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Insert/insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Insert/insert.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Insert/replace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Insert/replace.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Join/join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Join/join.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/README.MD -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Select/group_by.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Select/group_by.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Select/join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Select/join.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Select/limit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Select/limit.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Select/where.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Select/where.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/Update/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/Update/update.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/case.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/case.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/commands.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/commands.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/data_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/data_type.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/except.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/except.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/img/inner-join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/img/inner-join.png -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/img/left-join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/img/left-join.png -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/index.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/insersect.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/insersect.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/trigger.sql -------------------------------------------------------------------------------- /Software Development/Back-End/Databases/SQLite/union.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/Databases/SQLite/union.sql -------------------------------------------------------------------------------- /Software Development/Back-End/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/README.MD -------------------------------------------------------------------------------- /Software Development/Back-End/SSL/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Back-End/SSL/commands.bash -------------------------------------------------------------------------------- /Software Development/DevOps/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/DevOps/README.MD -------------------------------------------------------------------------------- /Software Development/DevOps/commands.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/DevOps/commands.bash -------------------------------------------------------------------------------- /Software Development/Front-End/AJAX/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/AJAX/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/AJAX/simple_httprequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/AJAX/simple_httprequest.js -------------------------------------------------------------------------------- /Software Development/Front-End/CSS/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/CSS/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/CSS/a_tag_attr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/CSS/a_tag_attr.css -------------------------------------------------------------------------------- /Software Development/Front-End/CSS/materialDesign.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/CSS/materialDesign.css -------------------------------------------------------------------------------- /Software Development/Front-End/CSS/media_queries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/CSS/media_queries.css -------------------------------------------------------------------------------- /Software Development/Front-End/CSS/remove_all_style_from_button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/CSS/remove_all_style_from_button.css -------------------------------------------------------------------------------- /Software Development/Front-End/CSS/row_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/CSS/row_col.css -------------------------------------------------------------------------------- /Software Development/Front-End/CSS/word-wrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/CSS/word-wrap.css -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/XML_Example/books.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/XML_Example/books.xml -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/XML_Example/get_node_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/XML_Example/get_node_name.js -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/XML_Example/get_text_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/XML_Example/get_text_.js -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/XML_Example/loop_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/XML_Example/loop_node.js -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/XML_Example/loop_nodes_length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/XML_Example/loop_nodes_length.js -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/XML_Example/node_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/XML_Example/node_type.js -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/cdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/cdata.html -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/create_nodes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software Development/Front-End/DOM/empty_nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/DOM/empty_nodes.js -------------------------------------------------------------------------------- /Software Development/Front-End/HTML/01_simple_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/HTML/01_simple_template.html -------------------------------------------------------------------------------- /Software Development/Front-End/HTML/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/HTML/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/HTML/text_area_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/HTML/text_area_code.html -------------------------------------------------------------------------------- /Software Development/Front-End/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/Ready-Design/Forms/Step_Form/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/Ready-Design/Forms/Step_Form/main.js -------------------------------------------------------------------------------- /Software Development/Front-End/Ready-Design/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/Ready-Design/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/Ready-Design/SVG/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/Ready-Design/SVG/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/Ready-Design/Web Components/Parallax/parallax_collections/parallax/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Software Development/Front-End/XML/DTD/README.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software Development/Front-End/XML/DTD/Sample/sample.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/DTD/Sample/sample.dtd -------------------------------------------------------------------------------- /Software Development/Front-End/XML/DTD/Sample/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/DTD/Sample/sample.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/DTD/simple_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/DTD/simple_.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/XML/XML-Schema/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/XML-Schema/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/XML/XML-Schema/sample_01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/XML-Schema/sample_01.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/XML-Schema/schemas_.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/XML-Schema/schemas_.xsd -------------------------------------------------------------------------------- /Software Development/Front-End/XML/XML_parsing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/XML_parsing.js -------------------------------------------------------------------------------- /Software Development/Front-End/XML/bookstore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/bookstore.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/breakfast_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/breakfast_menu.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/name_space.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/name_space.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xlink_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xlink_.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xml_http_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xml_http_request.js -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/README.MD -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/apply.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/apply.xsl -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/cdcatalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/cdcatalog.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/cdcatalog.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/cdcatalog.xsl -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/choose_when_otherwise.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/choose_when_otherwise.xsl -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/if_.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/if_.xsl -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/simple/breakfast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/simple/breakfast.xml -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/simple/simple.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/simple/simple.xsl -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/sort.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/sort.xsl -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt/xml_to_xhtml_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt/xml_to_xhtml_js.js -------------------------------------------------------------------------------- /Software Development/Front-End/XML/xslt_xml_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/XML/xslt_xml_.xml -------------------------------------------------------------------------------- /Software Development/Front-End/figma_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/Front-End/figma_docs.md -------------------------------------------------------------------------------- /Software Development/MobileDev/Android/Google-AdMob/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/Android/Google-AdMob/README.MD -------------------------------------------------------------------------------- /Software Development/MobileDev/Android/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/Android/README.MD -------------------------------------------------------------------------------- /Software Development/MobileDev/Android/utils/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/Android/utils/README.MD -------------------------------------------------------------------------------- /Software Development/MobileDev/Android/utils/commands.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/Android/utils/commands.bat -------------------------------------------------------------------------------- /Software Development/MobileDev/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/README.MD -------------------------------------------------------------------------------- /Software Development/MobileDev/ReactNative/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/ReactNative/.vscode/launch.json -------------------------------------------------------------------------------- /Software Development/MobileDev/ReactNative/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/ReactNative/README.MD -------------------------------------------------------------------------------- /Software Development/MobileDev/ReactNative/atomic_design/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/ReactNative/atomic_design/readme.md -------------------------------------------------------------------------------- /Software Development/MobileDev/ReactNative/snippets/fetch_simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/ReactNative/snippets/fetch_simple.js -------------------------------------------------------------------------------- /Software Development/MobileDev/ReactNative/snippets/progress_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/ReactNative/snippets/progress_bar.js -------------------------------------------------------------------------------- /Software Development/MobileDev/ReactNative/snippets/simple_app_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/ReactNative/snippets/simple_app_1.js -------------------------------------------------------------------------------- /Software Development/MobileDev/ReactNative/utils/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/ReactNative/utils/README.MD -------------------------------------------------------------------------------- /Software Development/MobileDev/ReactNative/utils/commands.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Software Development/MobileDev/ReactNative/utils/commands.bat -------------------------------------------------------------------------------- /Testing/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Testing/README.MD -------------------------------------------------------------------------------- /Utils/GITHUB.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Utils/GITHUB.bat -------------------------------------------------------------------------------- /Utils/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Utils/README.MD -------------------------------------------------------------------------------- /Utils/comments_usefull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Utils/comments_usefull.txt -------------------------------------------------------------------------------- /Utils/doc_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Utils/doc_readme.txt -------------------------------------------------------------------------------- /Utils/gitignore_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Utils/gitignore_sample.txt -------------------------------------------------------------------------------- /Utils/pull_request_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Utils/pull_request_1.md -------------------------------------------------------------------------------- /Utils/readme_pictures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Utils/readme_pictures.md -------------------------------------------------------------------------------- /Utils/readme_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/Utils/readme_sample.txt -------------------------------------------------------------------------------- /bashrc_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/bashrc_templates.md -------------------------------------------------------------------------------- /commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/commands.md -------------------------------------------------------------------------------- /mac_shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/mac_shortcuts.md -------------------------------------------------------------------------------- /terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koubae/Programming-CookBook/HEAD/terms.md --------------------------------------------------------------------------------