├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── Algorithmn ├── AlgorithmnMenu.md ├── Analysis │ ├── Analysis.md │ ├── DC │ │ └── DC.md │ ├── DP │ │ ├── Assembly │ │ │ ├── Assembly.md │ │ │ ├── aij.png │ │ │ ├── f1.png │ │ │ ├── f1i.png │ │ │ ├── f2.png │ │ │ ├── fij.png │ │ │ ├── first.png │ │ │ ├── optimal_value.png │ │ │ ├── overview.png │ │ │ ├── recursive_expression.png │ │ │ ├── second.png │ │ │ ├── sij.png │ │ │ ├── sij_array.png │ │ │ └── tij.png │ │ ├── Bellman │ │ │ ├── Bellman.md │ │ │ ├── BellmanFord.c │ │ │ ├── aij.png │ │ │ ├── dmj.png │ │ │ ├── ove.png │ │ │ ├── overview.png │ │ │ ├── recursive_expression.png │ │ │ └── solution.png │ │ ├── DP.md │ │ ├── DP │ │ │ ├── DP.md │ │ │ ├── dmij.png │ │ │ ├── on3lgn.png │ │ │ ├── overview.png │ │ │ ├── recursive_expression.png │ │ │ ├── solution.png │ │ │ ├── time.png │ │ │ └── time1.png │ │ ├── Floyd │ │ │ ├── Floyd.md │ │ │ ├── FloydWarshall.c │ │ │ ├── ckij.png │ │ │ ├── on3.png │ │ │ ├── overview.png │ │ │ ├── recursive_expression.png │ │ │ ├── solution.png │ │ │ ├── time.png │ │ │ └── time1.png │ │ ├── Knapsack │ │ │ ├── Knapsack.c │ │ │ ├── Knapsack.md │ │ │ ├── cij.png │ │ │ ├── cij1.png │ │ │ ├── cnw.png │ │ │ ├── overview.png │ │ │ ├── recursive_expression.png │ │ │ ├── vi.png │ │ │ └── wi.png │ │ ├── LCS │ │ │ ├── LCS.c │ │ │ ├── LCS.md │ │ │ ├── bij.png │ │ │ ├── cij.png │ │ │ ├── cij1.png │ │ │ ├── cij2.png │ │ │ ├── cij3.png │ │ │ ├── cmn.png │ │ │ ├── omn.png │ │ │ ├── omn1.png │ │ │ ├── overview.png │ │ │ └── recursive_expression.png │ │ ├── Matrix │ │ │ ├── Matrix.c │ │ │ ├── Matrix.md │ │ │ ├── m1n.png │ │ │ ├── mij.png │ │ │ ├── mik.png │ │ │ ├── mkj.png │ │ │ ├── on2.png │ │ │ ├── on3.png │ │ │ ├── overview.png │ │ │ ├── pi.png │ │ │ ├── ppp.png │ │ │ ├── recursive_expression.png │ │ │ ├── sij.png │ │ │ └── sum.png │ │ └── MaxSum │ │ │ ├── MaxSum.c │ │ │ ├── MaxSum.md │ │ │ ├── bj.png │ │ │ ├── bj1.png │ │ │ ├── bn.png │ │ │ ├── dataj.png │ │ │ ├── overview.png │ │ │ └── recursive_expression.png │ ├── Greedy │ │ ├── Activity │ │ │ ├── Activity.md │ │ │ └── overview.png │ │ ├── Dijkstra │ │ │ ├── Dijkstra.c │ │ │ ├── Dijkstra.md │ │ │ ├── oevlgv.png │ │ │ └── overview.png │ │ ├── Greedy.md │ │ └── Knapsack │ │ │ ├── Knapsack.c │ │ │ ├── Knapsack.md │ │ │ └── overview.png │ ├── Random │ │ ├── Random.md │ │ ├── combination_optimal_problem.png │ │ └── functional_optimal_problem.png │ ├── Search │ │ ├── 15Puzzle │ │ │ ├── 15Puzzle.md │ │ │ ├── fi.png │ │ │ ├── gi.png │ │ │ ├── lc_function.png │ │ │ ├── overview.png │ │ │ ├── state_tree_bfs.png │ │ │ └── state_tree_lc_search.png │ │ ├── BackTrackforKnapsack.cpp │ │ ├── NQueen │ │ │ ├── NQueen.c │ │ │ ├── NQueen.md │ │ │ ├── bound_function.png │ │ │ ├── overview.png │ │ │ ├── state_tree.png │ │ │ └── xi.png │ │ ├── Search.md │ │ ├── tree_backtrack.png │ │ └── tree_bound_branch.png │ ├── overhead.png │ └── recursive_tree.png ├── Computability │ ├── Computability.md │ ├── NPC.png │ └── problem.png ├── Encode │ ├── Arithmetic │ │ ├── Arithmetic.cpp │ │ ├── Arithmetic.md │ │ └── example.gif │ ├── Encode.md │ ├── Huffman │ │ ├── Huffman.cpp │ │ ├── Huffman.md │ │ ├── example.gif │ │ └── huffmantree.gif │ └── LZW │ │ ├── 1.gif │ │ ├── 2.gif │ │ ├── LZW.cpp │ │ └── LZW.md └── Sort │ ├── BubbleSort │ ├── BubbleSort.c │ ├── BubbleSort.md │ ├── o1.png │ ├── on.png │ └── on2.png │ ├── BucketSort │ ├── BucketSort.c │ ├── BucketSort.md │ ├── f.png │ └── on.png │ ├── CountingSort │ ├── CountingSort.c │ ├── CountingSort.md │ └── okn.png │ ├── HeapSort │ ├── HeapSort.c │ ├── HeapSort.md │ ├── example.png │ ├── example1.png │ ├── example2.png │ ├── max_heap.png │ ├── min_heap.png │ ├── olgn.png │ ├── on.png │ ├── on1.png │ └── onlgn.png │ ├── InsertSort │ ├── InsertSort.c │ ├── InsertSort.md │ ├── example.png │ ├── o1.png │ ├── on.png │ └── on2.png │ ├── MergeSort │ ├── MergeSort.c │ ├── MergeSort.md │ ├── on.png │ └── onlgn.png │ ├── Overview │ ├── Overview.md │ ├── best.png │ ├── comparison.png │ ├── decision_expression.png │ └── decision_tree.png │ ├── QuickSort │ ├── QuickSort.c │ ├── QuickSort.md │ ├── compare.png │ ├── example.png │ ├── on.png │ ├── on2.png │ └── onlgn.png │ ├── RadixSort │ ├── RadixSort.c │ ├── RadixSort.md │ └── odkn.png │ └── Sort.md ├── Creativity ├── Creativity.md ├── ICC.png ├── behance.png ├── codrops.png ├── example1.svg ├── fsvi.jpg ├── la_camomille.png ├── smasshing_magazine.png ├── thedesigninspiration.png └── zcool.png ├── Database ├── Database.md └── lock │ └── lock.md ├── Embedded_System ├── Embedded_System.md ├── PARWAN │ ├── AC.png │ ├── ALU.png │ ├── Control_Section.png │ ├── IR.png │ ├── MAR.png │ ├── PARWAN.md │ ├── PARWAN_DOWN_DESIGN.png │ ├── PARWAN_TOP_DESIGN.png │ ├── PC.png │ ├── S1.png │ ├── S2.png │ ├── S3.png │ ├── S4.png │ ├── S5.png │ ├── S6.png │ ├── S7.png │ ├── S8.png │ ├── S9.png │ ├── SHU.png │ └── SR.png ├── assembly │ └── assembly.md ├── autogen │ └── autogen.md ├── cache │ ├── Cache.png │ ├── cache.md │ ├── cache.vsdx │ ├── cache_access_time.png │ ├── directly.png │ ├── directly_example.png │ ├── directly_example.psd │ ├── directly_way.png │ ├── directly_way.vsdx │ ├── group_example.psd │ ├── group_way.png │ ├── group_way.vsdx │ ├── read_consistent.png │ ├── read_consistent.vsdx │ ├── whole_address.png │ ├── whole_address_example.png │ ├── whole_address_example.psd │ ├── whole_address_way.png │ ├── whole_address_way.vsdx │ ├── write_consistent.png │ └── write_consistent.vsdx ├── concept │ └── concept.md ├── dma │ ├── AB_synchronized.png │ ├── A_synchronized.png │ ├── DMA_controller.png │ ├── DMA_controller.vsdx │ ├── EDMA.png │ ├── EDMA3_transfer.png │ ├── block_transfer.png │ ├── dma.md │ ├── ordered_transfer.png │ └── part_transfer.png ├── dsp │ └── dsp.md ├── interruption │ ├── C64X.png │ ├── C64X_interrupt_selector.png │ ├── VIC.png │ ├── interruption.md │ ├── interruption.png │ ├── interruption_control.png │ └── interruption_model.png └── store │ └── store.md ├── LICENSE ├── MIT.md ├── Multimedia ├── 1.gif ├── 1d_dct.png ├── 2.gif ├── 2d_dct.png ├── 3d_dct.png ├── 3neighbourhood2dimention.png ├── A-law.png ├── CMYK_transfer.png ├── Entropy.png ├── Hierarchical_jpeg.png ├── MCU.png ├── MIDI_interface.png ├── MP3_compression_performance.png ├── Multimedia.md ├── Multimedia.pdf ├── SNR.png ├── SQNR.png ├── Sequential_jpeg.png ├── TDM_Carrier_Standards.png ├── Video_standard.png ├── YIQ_transfer.png ├── YUV_transfer.png ├── analog_signal.png ├── audio.png ├── b_frame_coding1.png ├── dithering.png ├── dpcm.png ├── i_frame_coding.png ├── i_frame_coding1.png ├── information_size.png ├── layer_of_video_object.png ├── mu-law.png ├── network_layer.png ├── p_frame_coding.png ├── p_frame_coding1.png ├── pi.png ├── protocol_stack.png ├── research.png ├── sound_level.png ├── time_for_2dlog.png ├── time_for_searching_mvs.png ├── video.png └── wireless_network_standards.png ├── Network ├── Application │ ├── Application.md │ ├── dns │ │ ├── dn_tree.png │ │ └── dns.md │ ├── http │ │ ├── cors_headers │ │ │ └── cors_headers.md │ │ ├── different_versions_of_http │ │ │ └── different_versions_of_http.md │ │ ├── fetch_metadata_headers │ │ │ └── fetch_metadata_headers.md │ │ ├── http.md │ │ ├── http_reponse_status_code │ │ │ └── http_reponse_status_code.md │ │ ├── http_request_methods │ │ │ └── http_request_methods.md │ │ ├── idempotence_of_http_methods │ │ │ └── idempotence_of_http_methods.md │ │ └── resource_caching_headers │ │ │ └── resource_caching_headers.md │ ├── rpc │ │ └── rpc.md │ └── web │ │ └── web.md ├── Coding │ ├── Coding.md │ ├── IO │ │ └── IO.md │ ├── accept │ │ └── accept.md │ ├── bind │ │ └── bind.md │ ├── client.c │ ├── close │ │ └── close.md │ ├── comm_func.c │ ├── comm_func.h │ ├── connect │ │ └── connect.md │ ├── listen │ │ ├── listen.md │ │ └── two_queue.png │ ├── model │ │ ├── loop_server_tcp.png │ │ ├── loop_server_udp.png │ │ ├── model.md │ │ ├── parallel_server_tcp_model1.png │ │ ├── parallel_server_tcp_model2.png │ │ ├── parallel_server_tcp_model3.png │ │ ├── parallel_server_tcp_model4.png │ │ ├── parallel_server_tcp_model5.png │ │ ├── parallel_server_udp_model1.png │ │ └── parallel_server_udp_model2.png │ ├── poll │ │ └── poll.md │ ├── read │ │ └── read.md │ ├── select │ │ └── select.md │ ├── server.c │ ├── socket │ │ ├── UDP │ │ │ ├── UDP.md │ │ │ ├── udp_model.png │ │ │ ├── udpclient.c │ │ │ └── udpserver.c │ │ ├── original │ │ │ ├── ICMP.png │ │ │ ├── original.md │ │ │ └── raw.c │ │ └── socket.md │ └── write │ │ └── write.md ├── Network.md ├── Overview │ ├── Overview.md │ ├── bs_model.png │ └── cs_model.png └── Transport │ ├── OOB │ ├── OOB.md │ ├── OOB.png │ └── example.png │ ├── Transport.md │ ├── tcp_header.gif │ └── udp_header.gif ├── OS ├── IO │ ├── IO.md │ ├── blocking_io_accept.png │ ├── blocking_io_connect.png │ ├── blocking_io_read.png │ ├── blocking_io_write.png │ ├── disblocking_io.png │ ├── select_io.png │ └── signal_driven_io.png ├── OS.md └── pt │ ├── IPC │ ├── IPC.md │ ├── mmap │ │ └── mmap.md │ ├── pipe_fifo │ │ ├── fifo │ │ │ ├── fifo_read │ │ │ ├── fifo_read.c │ │ │ ├── fifo_write │ │ │ └── fifo_write.c │ │ ├── pipe.png │ │ ├── pipe │ │ │ ├── pipetest_first │ │ │ ├── pipetest_first.c │ │ │ ├── pipetest_second │ │ │ └── pipetest_second.c │ │ └── pipe_fifo.md │ ├── queue │ │ └── queue.md │ ├── semaphore │ │ └── semaphore.md │ └── socket │ │ ├── client │ │ ├── client.c │ │ ├── server │ │ ├── server.c │ │ ├── socket.md │ │ └── socketpair.png │ ├── Signal │ └── Signal.md │ ├── create │ └── create.md │ ├── daemon │ ├── create_with_inetd.png │ ├── daemon.md │ └── inetd_list.png │ ├── kill │ └── kill.md │ └── pt.md ├── Programming ├── CSS │ ├── Attribute │ │ └── Attribute.md │ ├── CSS.md │ ├── Framework │ │ └── Framework.md │ ├── external │ │ └── external.md │ ├── flexbox │ │ └── flexbox.md │ ├── grid │ │ └── grid.md │ ├── internal │ │ └── internal.md │ ├── less │ │ ├── extend │ │ │ └── extend.md │ │ ├── less.md │ │ ├── logo.png │ │ ├── overview │ │ │ └── overview.md │ │ └── variables │ │ │ └── variables.md │ ├── logo.jpg │ └── selector │ │ └── selector.md ├── CSharp │ ├── Args │ │ ├── Args.cs │ │ └── Args.md │ ├── BitOperation │ │ ├── BitOperation.cs │ │ └── BitOperation.md │ ├── CSharpMenu.md │ ├── Enum │ │ ├── Enum.cs │ │ ├── Enum.md │ │ └── 新建文本文档.txt │ └── File │ │ ├── File.cs │ │ ├── File.md │ │ └── myfile.txt ├── HTML │ ├── DOM │ │ └── DOM.md │ ├── DOMstructure │ │ ├── DOMstructure.md │ │ └── dom_tree.jpg │ ├── HTML.md │ ├── access │ │ └── access.md │ ├── extra_markup │ │ ├── extra_markup.md │ │ └── iframe.png │ ├── flash_video_audio │ │ ├── flash_video_audio.md │ │ └── timeline.png │ ├── forms │ │ ├── checkbox.png │ │ ├── date_input.png │ │ ├── email_input.png │ │ ├── form_validation.png │ │ ├── forms.md │ │ ├── group_form_control.png │ │ ├── image_button.png │ │ ├── label_form_contro.png │ │ ├── multiple_drop_down_list_box.png │ │ ├── password.png │ │ ├── placeholder.png │ │ ├── radio_button.png │ │ ├── search_input.png │ │ ├── single_drop_down_list_box.png │ │ ├── submit_button.png │ │ ├── subscribe.png │ │ ├── subscribe.psd │ │ ├── text_area.png │ │ ├── text_input.png │ │ ├── upload_file.png │ │ └── url_input.png │ ├── head │ │ └── head.md │ ├── image │ │ └── image.md │ ├── link │ │ └── link.md │ ├── list │ │ └── list.md │ ├── mode │ │ └── mode.md │ ├── node │ │ └── node.md │ ├── sandbox_to_csp │ │ └── sandbox_to_csp.md │ ├── structure │ │ └── structure.md │ ├── tables │ │ └── tables.md │ ├── tag │ │ └── tag.md │ └── text │ │ └── text.md ├── Java │ ├── Class │ │ ├── ArrayClassObj.java │ │ ├── Class.md │ │ ├── EqualsDemo.java │ │ ├── ExplicitStatic.java │ │ ├── Garbage.java │ │ ├── Leaf.java │ │ ├── LeastCommonAncestorWithoutRoots.java │ │ ├── Music4.java │ │ ├── Overloading.java │ │ ├── Sandwich.java │ │ ├── SimpArray.java │ │ └── Singleton.java │ ├── Collection │ │ ├── Collection.md │ │ ├── Containers(JDK1.4).gif │ │ ├── DateDemo.java │ │ ├── HashTableDemo.java │ │ ├── RandomDemo.java │ │ ├── StackDemo.java │ │ ├── UseIterator.java │ │ └── VectorDemo.java │ ├── Exception │ │ ├── AlwaysFinally.java │ │ ├── Exception.md │ │ ├── ExceptionMethods.java │ │ ├── NeverCaught.java │ │ ├── OnOffSwitch.java │ │ └── ThrowOut.java │ ├── GUI │ │ ├── Class.png │ │ ├── Desktop App.java │ │ ├── GUI.md │ │ └── SimpChat.java │ ├── IO │ │ ├── IO.md │ │ └── IOStreamDemo.java │ ├── InnerClass │ │ ├── InnerClass.md │ │ ├── Local_InnerClass.java │ │ ├── Member_InnerClass.java │ │ └── Unnamed_InnerClass.java │ ├── JDBC │ │ └── JDBC.md │ ├── Java.md │ ├── Network │ │ └── Network.md │ ├── Overview │ │ └── Overview.md │ ├── Package │ │ └── Package.md │ ├── Thread │ │ ├── 3state.gif │ │ ├── Thread.md │ │ ├── ThreadsDemo1.java │ │ ├── ThreadsDemo2.java │ │ └── ThreadsDemo3.java │ └── Type │ │ └── Type.md ├── JavaScript │ ├── Framework │ │ ├── Classie │ │ │ ├── Classie.md │ │ │ └── classie.js │ │ ├── Framework.md │ │ ├── GreenSock │ │ │ ├── DrawSVGPlugin.zip │ │ │ ├── GreenSock-CheatsheetV1-1.pdf │ │ │ ├── GreenSock.md │ │ │ ├── api.png │ │ │ └── greensock-js.zip │ │ ├── Interact │ │ │ ├── Interact.md │ │ │ ├── logo - 複製.svg │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ ├── Modernizr │ │ │ ├── Modernizr.md │ │ │ ├── logo.png │ │ │ └── logo1.png │ │ ├── angular │ │ │ ├── angular.md │ │ │ ├── angular1 │ │ │ │ ├── angular1.md │ │ │ │ ├── angularjs_templates │ │ │ │ │ ├── angularjs_templates.md │ │ │ │ │ └── tutorial_02.png │ │ │ │ ├── bootstrapping │ │ │ │ │ ├── bootstrapping.md │ │ │ │ │ └── tutorial_00.png │ │ │ │ ├── components │ │ │ │ │ ├── components.md │ │ │ │ │ └── tutorial_03.png │ │ │ │ ├── directory_and_file │ │ │ │ │ └── directory_and_file.md │ │ │ │ ├── environment_setup │ │ │ │ │ └── environment_setup.md │ │ │ │ ├── filtering_repeaters │ │ │ │ │ ├── filtering_repeaters.md │ │ │ │ │ └── tutorial_05.png │ │ │ │ ├── static_template │ │ │ │ │ └── static_template.md │ │ │ │ └── two_way_data_binding │ │ │ │ │ └── two_way_data_binding.md │ │ │ └── logo.png │ │ ├── dynamics │ │ │ ├── dynamics.md │ │ │ └── dynamics.min.js │ │ ├── eslint │ │ │ ├── configuration │ │ │ │ └── configuration.md │ │ │ ├── eslint.md │ │ │ ├── installation │ │ │ │ └── installation.md │ │ │ └── logo.png │ │ ├── goog │ │ │ ├── goog.md │ │ │ ├── leaky_boat │ │ │ │ └── leaky_boat.md │ │ │ ├── slow_loop │ │ │ │ └── slow_loop.md │ │ │ └── slow_switch │ │ │ │ └── slow_switch.md │ │ ├── jquery │ │ │ ├── jquery-2.1.4.min.js │ │ │ ├── jquery.md │ │ │ └── master.m3u8 │ │ ├── node │ │ │ ├── child_process │ │ │ │ └── child_process.md │ │ │ ├── cmd │ │ │ │ └── cmd.md │ │ │ ├── node.md │ │ │ ├── node.png │ │ │ ├── npm │ │ │ │ ├── lock_dependencies │ │ │ │ │ └── lock_dependencies.md │ │ │ │ └── npm.md │ │ │ └── static_server │ │ │ │ └── static_server.md │ │ ├── react │ │ │ ├── add_on │ │ │ │ ├── add_on.md │ │ │ │ └── animation │ │ │ │ │ └── animation.md │ │ │ ├── communication_between_components │ │ │ │ └── communication_between_components.md │ │ │ ├── dangerously_set_innerhtml │ │ │ │ └── dangerously_set_innerhtml.md │ │ │ ├── display_data │ │ │ │ └── display_data.md │ │ │ ├── dom_event_listner │ │ │ │ └── dom_event_listner.md │ │ │ ├── expose_component_functions │ │ │ │ └── expose_component_functions.md │ │ │ ├── false_in_jsx │ │ │ │ └── false_in_jsx.md │ │ │ ├── forms │ │ │ │ └── forms.md │ │ │ ├── if_else_jsx │ │ │ │ └── if_else_jsx.md │ │ │ ├── initial_data_with_ajax │ │ │ │ └── initial_data_with_ajax.md │ │ │ ├── inline_styles │ │ │ │ └── inline_styles.md │ │ │ ├── interactivity_dynamic_uis │ │ │ │ └── interactivity_dynamic_uis.md │ │ │ ├── jsx_gotcha │ │ │ │ └── jsx_gotcha.md │ │ │ ├── jsx_spread_attributes │ │ │ │ └── jsx_spread_attributes.md │ │ │ ├── jsx_syntax │ │ │ │ └── jsx_syntax.md │ │ │ ├── max_jsx_root_node │ │ │ │ └── max_jsx_root_node.md │ │ │ ├── mountain │ │ │ │ ├── mountain.md │ │ │ │ └── preview.png │ │ │ ├── mouting_not_receive_props │ │ │ │ └── mouting_not_receive_props.md │ │ │ ├── multiple_components │ │ │ │ └── multiple_components.md │ │ │ ├── navigation │ │ │ │ ├── navigation.md │ │ │ │ └── preview.png │ │ │ ├── null_controlled_input │ │ │ │ └── null_controlled_input.md │ │ │ ├── paginate │ │ │ │ ├── paginate.md │ │ │ │ └── preview.png │ │ │ ├── props_in_get_initial_state │ │ │ │ └── props_in_get_initial_state.md │ │ │ ├── quick_started │ │ │ │ └── quick_started.md │ │ │ ├── react-timeline.png │ │ │ ├── react.md │ │ │ ├── react.png │ │ │ ├── react_and_pjax │ │ │ │ ├── logo.png │ │ │ │ └── react_and_pjax.md │ │ │ ├── react_hot_loader │ │ │ │ └── react_hot_loader.md │ │ │ ├── react_router │ │ │ │ ├── 1.png │ │ │ │ ├── histories │ │ │ │ │ └── histories.md │ │ │ │ ├── index │ │ │ │ │ └── index.md │ │ │ │ ├── introduction │ │ │ │ │ └── introduction.md │ │ │ │ ├── react_router.md │ │ │ │ ├── route_configuration │ │ │ │ │ └── route_configuration.md │ │ │ │ └── route_matching │ │ │ │ │ └── route_matching.md │ │ │ ├── rect_loading │ │ │ │ ├── preview.png │ │ │ │ └── rect_loading.md │ │ │ ├── refs_to_components │ │ │ │ └── refs_to_components.md │ │ │ ├── reusable_components │ │ │ │ └── reusable_components.md │ │ │ ├── self_close │ │ │ │ └── self_close.md │ │ │ ├── shorthand_px │ │ │ │ └── shorthand_px.md │ │ │ ├── slider │ │ │ │ ├── preview.png │ │ │ │ ├── slider.css │ │ │ │ ├── slider.jsx │ │ │ │ └── slider.md │ │ │ ├── think_in_react │ │ │ │ ├── think_in_react.md │ │ │ │ ├── thinking-in-react-components.png │ │ │ │ └── thinking-in-react-mock.png │ │ │ ├── tooling_integration │ │ │ │ ├── language_tooling │ │ │ │ │ └── language_tooling.md │ │ │ │ ├── package_management │ │ │ │ │ └── package_management.md │ │ │ │ ├── server_side_env │ │ │ │ │ └── server_side_env.md │ │ │ │ └── tooling_integration.md │ │ │ ├── transfering_props │ │ │ │ └── transfering_props.md │ │ │ ├── tutorials │ │ │ │ └── tutorials.md │ │ │ ├── type_of_children_props │ │ │ │ └── type_of_children_props.md │ │ │ ├── typer │ │ │ │ ├── preview.png │ │ │ │ └── typer.md │ │ │ ├── undefined_props_children │ │ │ │ └── undefined_props_children.md │ │ │ ├── use_react_with_other_libraries │ │ │ │ └── use_react_with_other_libraries.md │ │ │ ├── why_react │ │ │ │ └── why_react.md │ │ │ └── working_with_the_browser │ │ │ │ └── working_with_the_browser.md │ │ ├── reactivex │ │ │ ├── logo.png │ │ │ └── reactivex.md │ │ ├── redux │ │ │ ├── action │ │ │ │ └── action.md │ │ │ ├── data_flow │ │ │ │ └── data_flow.md │ │ │ ├── introduction │ │ │ │ └── introduction.md │ │ │ ├── logo.png │ │ │ ├── react_and_redux │ │ │ │ └── react_and_redux.md │ │ │ ├── reducer │ │ │ │ └── reducer.md │ │ │ ├── redux.md │ │ │ └── store │ │ │ │ └── store.md │ │ ├── underscore │ │ │ ├── array_functions │ │ │ │ └── array_functions.md │ │ │ ├── array_index │ │ │ │ └── array_index.md │ │ │ ├── array_like │ │ │ │ └── array_like.md │ │ │ ├── createAssigner │ │ │ │ └── createAssigner.md │ │ │ ├── flatten_an_array │ │ │ │ └── flatten_an_array.md │ │ │ ├── for_in_compatibility │ │ │ │ └── for_in_compatibility.md │ │ │ ├── group │ │ │ │ └── group.md │ │ │ ├── is_equal │ │ │ │ └── is_equal.md │ │ │ ├── object_functions │ │ │ │ └── object_functions.md │ │ │ ├── random_order │ │ │ │ └── random_order.md │ │ │ ├── something_about_NaN │ │ │ │ └── something_about_NaN.md │ │ │ ├── type_inference_and_tutorials │ │ │ │ └── type_inference_and_tutorials.md │ │ │ ├── underscore.md │ │ │ ├── underscore.png │ │ │ ├── unique_array │ │ │ │ └── unique_array.md │ │ │ └── void0_undefined │ │ │ │ └── void0_undefined.md │ │ ├── vue │ │ │ ├── class_style │ │ │ │ └── class_style.md │ │ │ ├── computed_properties_and_watchers │ │ │ │ └── computed_properties_and_watchers.md │ │ │ ├── event_handling │ │ │ │ └── event_handling.md │ │ │ ├── form_input_bindings │ │ │ │ └── form_input_bindings.md │ │ │ ├── logical_rendering │ │ │ │ └── logical_rendering.md │ │ │ ├── quick_started │ │ │ │ └── quick_started.md │ │ │ ├── template_syntax │ │ │ │ └── template_syntax.md │ │ │ ├── vue.md │ │ │ ├── vue.png │ │ │ └── vue_instances │ │ │ │ ├── lifecycle.png │ │ │ │ └── vue_instances.md │ │ ├── walkway │ │ │ ├── walkway.md │ │ │ └── walkway.min.js │ │ └── webpack │ │ │ ├── bundle_style │ │ │ └── bundle_style.md │ │ │ ├── es3_compatible_webpack_plugin │ │ │ └── es3_compatible_webpack_plugin.md │ │ │ ├── installation │ │ │ └── installation.md │ │ │ ├── loader │ │ │ └── loader.md │ │ │ ├── resolve │ │ │ └── resolve.md │ │ │ ├── tree_shaking │ │ │ └── tree_shaking.md │ │ │ ├── usage │ │ │ ├── babel-loader.png │ │ │ ├── how-it-works.png │ │ │ ├── json-loader.png │ │ │ ├── project-structure.png │ │ │ ├── usage.md │ │ │ └── yaml-loader.png │ │ │ ├── webpack.md │ │ │ ├── webpack_and_fa │ │ │ └── webpack_and_fa.md │ │ │ ├── webpack_and_react │ │ │ ├── preview.png │ │ │ └── webpack_and_react.md │ │ │ └── what-is-webpack.png │ ├── JavaScript.md │ ├── Lexical │ │ └── Lexical.md │ ├── Type │ │ ├── Arithmetic │ │ │ └── Arithmetic.md │ │ ├── Date&Time │ │ │ └── Date&Time.md │ │ ├── Infinity,NaN │ │ │ └── Infinity,NaN.md │ │ ├── Precision │ │ │ └── Precision.md │ │ ├── Text │ │ │ └── Text.md │ │ ├── Type.js │ │ ├── Type.md │ │ └── Wrapper │ │ │ └── Wrapper.md │ ├── array │ │ ├── array.md │ │ ├── array_detection │ │ │ └── array_detection.md │ │ └── array_methods │ │ │ └── array_methods.md │ ├── aspect_oriented_programming │ │ └── aspect_oriented_programming.md │ ├── async_programming │ │ └── async_programming.md │ ├── atomics │ │ └── atomics.md │ ├── bubble_and_capture │ │ └── bubble_and_capture.md │ ├── closure │ │ └── closure.md │ ├── currying │ │ └── currying.md │ ├── data_structure │ │ ├── array │ │ │ └── array.md │ │ ├── bt_bst │ │ │ ├── an_organizational_chart.png │ │ │ └── bt_bst.md │ │ ├── data_structure.md │ │ ├── dictionary │ │ │ └── dictionary.md │ │ ├── graphs │ │ │ ├── a_digraph.png │ │ │ ├── an_unordered_graph.png │ │ │ └── graphs.md │ │ ├── hashing │ │ │ └── hashing.md │ │ ├── linked_lists │ │ │ ├── circularly_linked_lists.png │ │ │ ├── doubly_linked_lists.png │ │ │ ├── linked_list.png │ │ │ └── linked_lists.md │ │ ├── list │ │ │ └── list.md │ │ ├── queue │ │ │ └── queue.md │ │ ├── sets │ │ │ └── sets.md │ │ └── stack │ │ │ └── stack.md │ ├── easing │ │ └── easing.md │ ├── es6 │ │ ├── arrow_functions │ │ │ └── arrow_functions.md │ │ ├── block_scope │ │ │ └── block_scope.md │ │ ├── definition │ │ │ └── definition.md │ │ ├── destructuring_assignment │ │ │ └── destructuring_assignment.md │ │ ├── es6.md │ │ ├── global │ │ │ └── global.md │ │ ├── promise │ │ │ └── promise.md │ │ ├── rest_param │ │ │ └── rest_param.md │ │ └── spread_operators │ │ │ └── spread_operators.md │ ├── estree │ │ └── estree.md │ ├── events_loop │ │ └── events_loop.md │ ├── generator │ │ ├── generator.md │ │ └── state.png │ ├── high_performance │ │ ├── ajax │ │ │ └── ajax.md │ │ ├── algorithms_flow_control │ │ │ └── algorithms_flow_control.md │ │ ├── building_and_deploying │ │ │ └── building_and_deploying.md │ │ ├── data_access │ │ │ ├── activation_object.png │ │ │ ├── add_scope_chain.png │ │ │ ├── closure_execution_context_scope_chain.png │ │ │ ├── closure_scope_chain.png │ │ │ ├── data_access.md │ │ │ ├── object_member.png │ │ │ ├── object_member.psd │ │ │ ├── prototype_chains.png │ │ │ ├── prototype_chains.psd │ │ │ ├── scope_chain.psd │ │ │ └── scope_chain_augmentation.png │ │ ├── dom_scripting │ │ │ └── dom_scripting.md │ │ ├── high_performance.md │ │ ├── loading_and_execution │ │ │ └── loading_and_execution.md │ │ ├── practices │ │ │ └── practices.md │ │ ├── responsive_interfaces │ │ │ └── responsive_interfaces.md │ │ ├── string_regular_expressions │ │ │ ├── case1.png │ │ │ ├── case1.psd │ │ │ ├── case2.png │ │ │ ├── case2.psd │ │ │ └── string_regular_expressions.md │ │ ├── tools │ │ │ └── tools.md │ │ └── virtual_dom │ │ │ └── virtual_dom.md │ ├── jsdoc │ │ ├── abstract │ │ │ └── abstract.md │ │ ├── access │ │ │ └── access.md │ │ ├── alias │ │ │ └── alias.md │ │ ├── async │ │ │ └── async.md │ │ ├── augments │ │ │ └── augments.md │ │ ├── author │ │ │ └── author.md │ │ ├── borrows │ │ │ └── borrows.md │ │ ├── callback │ │ │ └── callback.md │ │ ├── class │ │ │ └── class.md │ │ ├── jsdoc.md │ │ └── namepaths │ │ │ └── namepaths.md │ ├── jsonp │ │ └── jsonp.md │ ├── memory_leak │ │ └── memory_leak.md │ ├── module_system_style │ │ └── module_system_style.md │ ├── object │ │ └── object.md │ ├── parameter │ │ └── parameter.md │ ├── reflect │ │ └── reflect.md │ ├── regular │ │ ├── basic_skills │ │ │ └── basic_skills.md │ │ ├── markup_data_formats │ │ │ └── markup_data_formats.md │ │ ├── numbers │ │ │ └── numbers.md │ │ ├── programming │ │ │ └── programming.md │ │ ├── regular.md │ │ ├── source_code_and_log_files │ │ │ └── source_code_and_log_files.md │ │ ├── url_path_internet_address │ │ │ └── url_path_internet_address.md │ │ ├── validation_formatting │ │ │ └── validation_formatting.md │ │ └── words_lines_special │ │ │ └── words_lines_special.md │ ├── shim_and_polyfills │ │ └── shim_and_polyfills.md │ ├── strict_mode │ │ └── strict_mode.md │ ├── tc39 │ │ ├── process │ │ │ └── process.md │ │ ├── stage4 │ │ │ └── stage4.md │ │ └── tc39.md │ ├── unit_tests │ │ └── unit_tests.md │ ├── wasm │ │ └── wasm.md │ ├── web_api │ │ ├── web_api.md │ │ ├── websocket │ │ │ └── websocket.md │ │ ├── worker │ │ │ └── worker.md │ │ └── xhr │ │ │ └── xhr.md │ └── webgl │ │ ├── SVG │ │ ├── SVG.md │ │ ├── calibration_parameters │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── calibration_parameters.md │ │ │ ├── example.svg │ │ │ ├── panel.png │ │ │ ├── resize_svg1.png │ │ │ └── resize_svg2.png │ │ ├── convert_shapes_to_path │ │ │ └── convert_shapes_to_path.md │ │ └── introduction │ │ │ ├── configuration.png │ │ │ ├── example.svg │ │ │ ├── example1.svg │ │ │ ├── example2.svg │ │ │ ├── example3.svg │ │ │ ├── interpSpline01.png │ │ │ ├── interpSpline02.png │ │ │ ├── interpSpline03.png │ │ │ ├── interpSpline04.png │ │ │ ├── introduction.md │ │ │ ├── linecap.png │ │ │ ├── linejoin.png │ │ │ └── logo.png │ │ ├── canvas │ │ ├── animate_drawing_of_svg_path │ │ │ └── animate_drawing_of_svg_path.md │ │ ├── canvas.md │ │ ├── drawing_an_svg │ │ │ ├── demo.png │ │ │ └── drawing_an_svg.md │ │ ├── finding_contours │ │ │ ├── draw1.jpg │ │ │ ├── draw2.jpg │ │ │ ├── draw3.jpg │ │ │ ├── example1.png │ │ │ ├── example2.png │ │ │ ├── example3.png │ │ │ └── finding_contours.md │ │ └── line_drawing │ │ │ ├── bulb_animation.png │ │ │ ├── canvas_glow.png │ │ │ └── line_drawing.md │ │ ├── glsl │ │ ├── gl_obj_js │ │ │ └── gl_obj_js.md │ │ ├── glsl.md │ │ ├── glsl_basics │ │ │ └── glsl_basics.md │ │ ├── graphic_rendering_pipeline │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── graphic_rendering_pipeline.md │ │ ├── images │ │ │ ├── 1.jpeg │ │ │ ├── 2.jpeg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpeg │ │ │ ├── 6.png │ │ │ └── 7.jpg │ │ ├── vertex_shaders │ │ │ └── vertex_shaders.md │ │ └── webgl_js │ │ │ └── webgl_js.md │ │ ├── images │ │ ├── 1.jpeg │ │ ├── 10.jpeg │ │ ├── 11.jpeg │ │ ├── 12.jpg │ │ ├── 13.jpeg │ │ ├── 14.jpeg │ │ ├── 15.jpeg │ │ ├── 2.png │ │ ├── 3.jpg │ │ ├── 4.jpeg │ │ ├── 5.jpeg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpeg │ │ └── 9.jpeg │ │ ├── three │ │ ├── VR │ │ │ ├── VR.md │ │ │ ├── a_simple_demo │ │ │ │ └── a_simple_demo.md │ │ │ └── webvr │ │ │ │ └── webvr.md │ │ ├── camera │ │ │ ├── 1.gif │ │ │ ├── 1.png │ │ │ └── camera.md │ │ ├── create_a_scene │ │ │ └── create_a_scene.md │ │ ├── matrix_transformations │ │ │ └── matrix_transformations.md │ │ └── three.md │ │ └── webgl.md ├── PHP │ ├── PHP.md │ ├── crash │ │ ├── array_operators.png │ │ ├── bitwise_operators.png │ │ ├── crash.md │ │ ├── example │ │ │ ├── example.sln │ │ │ └── example │ │ │ │ ├── Code │ │ │ │ ├── AdminCommonAction.class.php │ │ │ │ └── CampaignAction.class.php │ │ │ │ ├── example.phpproj │ │ │ │ └── index.php │ │ └── logical_operators.png │ └── laravel │ │ ├── cache │ │ └── cache.md │ │ ├── conf │ │ └── conf.md │ │ ├── database │ │ └── database.md │ │ ├── eloquent │ │ └── eloquent.md │ │ ├── install │ │ └── install.md │ │ └── laravel.md ├── ProgrammingMenu.md ├── Shell │ ├── Shell.md │ └── array │ │ └── array.md ├── TypeScript │ ├── TypeScript.md │ ├── advanced_types │ │ └── advanced_types.md │ ├── brief_description │ │ └── brief_description.md │ ├── classes │ │ └── classes.md │ ├── enums │ │ └── enums.md │ ├── functions │ │ └── functions.md │ ├── generics │ │ └── generics.md │ ├── integrations │ │ └── integrations.md │ ├── interfaces │ │ └── interfaces.md │ ├── iterators │ │ └── iterators.md │ ├── modules │ │ └── modules.md │ ├── namespaces │ │ └── namespaces.md │ ├── namespaces_and_modules │ │ └── namespaces_and_modules.md │ ├── symbol │ │ └── symbol.md │ ├── type_compatibility │ │ └── type_compatibility.md │ ├── type_inferences │ │ └── type_inferences.md │ ├── types │ │ └── types.md │ └── variable_declarations │ │ └── variable_declarations.md ├── c │ ├── CJson │ │ ├── CJson.md │ │ └── cjson.zip │ ├── c.md │ └── conversion_of_str │ │ └── conversion_of_str.md └── ruby │ ├── installation │ ├── cost.png │ ├── installation.md │ └── version.png │ ├── programming │ └── programming.md │ └── ruby.md ├── README.md ├── SUMMARY.md ├── Thought ├── OOP │ └── OOP.md ├── ThoughtMenu.md ├── elegant │ └── elegant.md ├── recruitment │ ├── Recruitment_Proccess.png │ ├── Recruitment_Proccess.vsdx │ └── recruitment.md └── simple │ └── simple.md ├── antirez ├── 75 │ ├── 1.png │ ├── 2.png │ └── 75.md ├── antirez.md └── redis_manifesto │ └── redis_manifesto.md ├── architecture ├── ATAM │ ├── ATAM.md │ ├── conceptual_flow.png │ ├── phases.png │ └── utility_tree.png ├── QA │ ├── QA.md │ ├── availability │ │ ├── availability.md │ │ ├── availability_define.png │ │ ├── availability_scenario.png │ │ ├── availability_tactics.png │ │ └── scenario_list.png │ ├── modifiability │ │ ├── modifiability.md │ │ ├── modifiability_scenario.png │ │ ├── modifiability_tactics.png │ │ └── scenario_list.png │ ├── performance │ │ ├── performance.md │ │ ├── performance_scenario.png │ │ ├── performance_tactics.png │ │ └── scenario_list.png │ ├── security │ │ ├── scenario_list.png │ │ ├── security.md │ │ ├── security_scenario.png │ │ └── security_tactics.png │ ├── testability │ │ ├── scenario_list.png │ │ ├── testability.md │ │ ├── testability_define.png │ │ ├── testability_scenario.png │ │ └── testability_tactics.png │ └── usability │ │ ├── scenario_list.png │ │ ├── usability.md │ │ ├── usability_scenario.png │ │ └── usability_tactics.png ├── Style │ ├── Style.md │ ├── callandreturn │ │ └── callandreturn.md │ ├── centric │ │ └── centric.md │ ├── dataflow │ │ └── dataflow.md │ ├── independent │ │ └── independent.md │ ├── style.png │ └── virtualmachine │ │ └── virtualmachine.md ├── architecture.md ├── document │ ├── Documenting_proccess.png │ ├── Documenting_proccess.vsdx │ ├── activity │ │ ├── activity.md │ │ └── example.png │ ├── class │ │ ├── class.md │ │ └── example.png │ ├── communication │ │ ├── communication.md │ │ └── example.png │ ├── component │ │ ├── component.md │ │ └── example.png │ ├── deployment │ │ ├── composite_structure.png │ │ ├── composite_structure1.png │ │ ├── deployment.md │ │ └── example.png │ ├── document.md │ ├── interaction │ │ ├── example.png │ │ └── interaction.md │ ├── object │ │ ├── example.png │ │ └── object.md │ ├── package │ │ ├── example.png │ │ └── package.md │ ├── responsibility.png │ ├── sequence │ │ ├── example.png │ │ └── sequence.md │ ├── state │ │ ├── example.png │ │ └── state.md │ ├── timing │ │ ├── example.png │ │ └── timing.md │ └── usecase │ │ ├── example.png │ │ └── usecase.md └── pwa │ └── pwa.md ├── coder.md ├── contribution.md ├── cover.jpg ├── cover_book.jpg ├── cover_book.psd ├── cover_read.jpg ├── cover_read.png ├── cover_read.psd ├── falcoon ├── bg1.jpg ├── bg2.jpg ├── bg3.jpg ├── bg4.jpg ├── bg5.jpg ├── bg6.jpg ├── bg7.jpg └── falcoon.md ├── frontend └── frontend.md ├── git ├── commit_message_convention │ └── commit_message_convention.md ├── configuration │ └── configuration.md ├── get │ └── get.md ├── git.md ├── git_commands │ └── git_commands.md ├── model │ ├── centr-decentr@2x.png │ ├── git-model@2x.png │ ├── hotfix-branches@2x.png │ ├── main-branches@2x.png │ ├── merge-without-ff@2x.png │ ├── model.md │ ├── nvie-small@2x.jpg │ └── pdf@2x.png ├── patch │ └── patch.md ├── record │ ├── file_status.png │ └── record.md ├── shrink_sizes │ └── shrink_sizes.md └── submodule │ └── submodule.md ├── hacker.md ├── kenyahara ├── kenyahara.md ├── the_riddle_of_the_macaroni_hole.jpg └── white.jpg ├── photo.png ├── photo.psd ├── post ├── 1217_mission_of_shenzhen │ ├── 1217_mission_of_shenzhen.md │ ├── 16-12-17MD_of_shenzhen.png │ ├── map1.png │ ├── task1.png │ ├── task2.png │ ├── task3.png │ ├── task4.png │ ├── task5.png │ ├── task6.png │ ├── walk.png │ └── whole.png ├── 22_react_opensrc │ ├── 1.gif │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.gif │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22_react_opensrc.md │ ├── 3.gif │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── IDE │ └── IDE.md ├── array_inference_in_javascript │ └── array_inference_in_javascript.md ├── auto_deployed_gitbook_projects │ └── auto_deployed_gitbook_projects.md ├── base_frontend │ ├── 1.gif │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ └── base_frontend.md ├── basics_of_css_blend_mode │ ├── 1.jpg │ └── basics_of_css_blend_mode.md ├── bpm_detection_with_javascript │ ├── .1.svg.swp │ ├── 1.png │ ├── 1.svg │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── bpm_detection_with_javascript.md ├── code_review_best_practices │ └── code_review_best_practices.md ├── complex_font_size │ ├── complex_font_size.md │ └── font-size-table.png ├── converting_roman_numerals │ └── converting_roman_numerals.md ├── create_watermarks_with_canvas │ ├── create_watermarks_with_canvas.md │ ├── server_watermarks.png │ └── sever_img.png ├── css_blend_mode │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── css_blend_mode.md ├── discover_city │ ├── 105553116284597604.jpg │ ├── 1365716587100394165.jpg │ ├── 167477611243055386.jpg │ ├── 2053078480228153042.jpg │ ├── 2260244063086772625.jpg │ ├── 2452772947073979547.jpg │ ├── 2681612103140512641.jpg │ ├── 2740158898296196493.jpg │ ├── 3177008062233481665.jpg │ ├── 3678314995755237178.jpg │ ├── 6597230295356500030.jpg │ ├── 6597515068866581331.jpg │ ├── 6619542684816849582.jpg │ └── discover_city.md ├── dnn_2_image │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── dnn_2_image.md ├── draw_image_using_edge_detection_and_svg │ └── draw_image_using_edge_detection_and_svg.md ├── drawing_audio_waveforms │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── drawing_audio_waveforms.md ├── face_morph │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ └── face_morph.md ├── face_swap │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ └── face_swap.md ├── facial_landmark │ ├── Bush-Schwarzenegger-Morph.jpg │ ├── Facial-Feature-Detection-1024x577.jpg │ ├── facial_landmark.md │ └── taaz-before-after.jpg ├── float_clear │ └── float_clear.md ├── frontend_code_in_big_company │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 14.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ └── frontend_code_in_big_company.md ├── frontend_interview │ └── frontend_interview.md ├── heat_distortion │ ├── DistortionEffect_800x600.jpg │ ├── TextAntilope.jpg │ ├── both-maps-297x300.jpg │ ├── distortion-map.jpg │ ├── distortion-normal.jpg │ ├── distortion-sine.jpg │ ├── distortion-slant.jpg │ ├── heat_distortion.md │ └── sine.png ├── how_to_draw │ ├── 1.png │ ├── 2.png │ ├── example.svg │ ├── how_to_draw.md │ ├── panel.png │ └── preview.png ├── http_and_get │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── http_and_get.md ├── idn │ └── idn.md ├── kaleidoscope │ ├── kaleidoscope.md │ └── preview.png ├── leverage_browser_caching │ ├── caching_checklist │ │ └── caching_checklist.md │ ├── invalidate_update │ │ ├── 1.png │ │ └── invalidate_update.md │ ├── leverage_browser_caching.md │ └── optimal_cache_control │ │ ├── 1.png │ │ └── optimal_cache_control.md ├── mingtocat │ ├── mingtocat.md │ └── preview.gif ├── modular_js_with_style │ └── modular_js_with_style.md ├── mouse_event │ ├── mouse_event.md │ ├── mouseover-bubble-nested.svg │ ├── mouseover-mouseout-from-outside.svg │ ├── mouseover-mouseout-over-elems.svg │ ├── mouseover-mouseout.svg │ └── mouseover-to-child.svg ├── opencv_vs_matlab │ ├── 1.jpg │ └── opencv_vs_matlab.md ├── optimize_image_for_seo │ ├── how-i-met-your-highfive.gif │ ├── jpegmini-image-file-optimization.jpg │ ├── maintain-the-left-reading-line.png │ ├── not-welcome-to-your-company.jpg │ ├── optimize_image_for_seo.md │ └── post-to-facebook.png ├── point_mesh │ └── point_mesh.md ├── post.md ├── preload_prefetch_chrome │ ├── 0_26d5UlWhql2NZ0Eg_.png │ ├── 0_KKong0kz69LOteD3_.png │ ├── 0_QL0ztXPZ1wUXpRKX_.png │ ├── 0_Um55iV_tEBO3eXEs_.png │ ├── 0_rDnsYXceRwO-xxSZ_.png │ ├── 1_5QsDQsYJ4ts-4Tl0_1dZwQ.png │ ├── 1_BTi3YhvCAYiJYRpjNQft9Q.jpeg │ ├── 1_BxecU2LjN-uGAW_uQgDTdw.png │ ├── 1_PSMeFcC3AXDUmdNf5l19Ug.jpeg │ ├── 1_QGUllBDRLMjdy1uawXG8EQ.jpeg │ ├── 1_SKYdHNpGldFFUPZBDZQgSQ.png │ ├── 1_W4_tAMHlFs6tunMxbXQjFA.png │ ├── 1_fZH0GKzI42x7IgxKfiaddA.png │ ├── 1_osYEtZ6gZnmstK4fpcJTrg.png │ ├── 1_r2RiRVrghz5iDUnhBX8W1Q.png │ ├── 1_rppoHbaTTJQNVZBO4j_NAQ.png │ └── preload_prefetch_chrome.md ├── presentational_and_container_components │ ├── 1.jpeg │ └── presentational_and_container_components.md ├── prototype_of_javascript │ ├── 1.jpg │ ├── 1.png │ ├── 2.png │ └── prototype_of_javascript.md ├── rain │ ├── 755px-GGB_reflection_in_raindrops.jpg │ ├── RainEffects.jpg │ ├── drop-color.png │ ├── drop-color2.png │ ├── drop-merged.png │ ├── drop1.png │ ├── rain.md │ ├── raindrops-no-texture.jpg │ ├── screen1_dropdetail.jpg │ ├── screen2_droptrail.jpg │ ├── texture-drizzle-bg.png │ ├── texture-drizzle-fg.png │ └── webgl-1.png ├── reusable_react_components │ └── reusable_react_components.md ├── security_consultant │ ├── 1.jpg │ └── security_consultant.md ├── so_a_web_designer │ ├── Unicorn.jpg │ ├── so_a_web_designer.md │ ├── unicorn01.jpg │ ├── unicorn02.jpg │ └── unicorn03.jpg ├── style_svg_use │ ├── 1.png │ ├── 1_1.png │ ├── 2.png │ ├── 2_1.png │ ├── 3.png │ ├── 3_1.png │ ├── Screen-Shot-2015-07-15-at-13.21.02.png │ ├── StylingSVGuse.jpg │ ├── StylingSVGuse_codropsdrops.png │ ├── shadow-dom.jpg │ └── style_svg_use.md ├── the_gooey_effect │ ├── artifacts-on-edges.png │ └── the_gooey_effect.md ├── topological_webgl │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ └── topological_webgl.md ├── what_happens_when │ └── what_happens_when.md ├── whole_front_end │ ├── v2-4965d74fec780c0988c05018f1758234_b.png │ ├── v2-ae9f857074809a33e0b075e51424bd62_b.png │ ├── v2-bdaf689721ed080a5948f09710cb6bf8_b.png │ ├── v2-c9ce1ee3dbd21b96b4c1d320efbfd175_b.png │ └── whole_front_end.md └── yolo │ ├── Screen_Shot_2016-11-17_at_11.14.54_AM.png │ ├── Screen_Shot_2016-11-17_at_12.03.22_PM.png │ ├── Screen_Shot_2016-11-17_at_12.26.06_PM.png │ ├── Screen_Shot_2016-11-26_at_11.22.46_PM.png │ ├── model2.png │ └── yolo.md ├── projectManagement ├── communication │ ├── communication.md │ ├── communication_today.png │ └── processes.png ├── context │ ├── context.md │ ├── organiazational_structures.png │ ├── scrume_framework.png │ ├── threeSphereModel.jpg │ └── tranditional_phases.png ├── cost │ ├── cost.md │ ├── cost_baseline.png │ ├── cost_estimate.png │ ├── ev_formulas.jpg │ ├── evc.png │ ├── processes.png │ └── software_development_estimate.png ├── human │ ├── conflict_handling_model.png │ ├── convery_7_habits.png │ ├── herzberg.png │ ├── human.md │ ├── influce_and_power.png │ ├── maslow_hierarchy.png │ ├── processes.png │ ├── raci.png │ ├── raci_charts.png │ ├── ram.png │ ├── resource_histogram.png │ └── resource_leveling.png ├── integration │ ├── integration.md │ ├── payback_period.png │ ├── planning_stages.png │ ├── processes.png │ └── weighted_scoring_model.png ├── introduction │ ├── framework.jpg │ ├── introduction.md │ └── triple_constraint.jpg ├── processGroups │ ├── 5processes.png │ ├── burndown_chart.jpg │ ├── kick_off_agenda.png │ ├── lesson_learned_reports.png │ ├── map.png │ ├── methodology.png │ ├── milestone_report.png │ ├── processGroups.md │ ├── product_backlog.png │ ├── project_charter1.png │ ├── project_charter2.png │ ├── sprint_backlog.png │ ├── stakeholder_register.png │ └── time.png ├── projectManagement.md ├── quality │ ├── cause_and_effect_diagrams.png │ ├── checksheet.png │ ├── flowcharts.png │ ├── histograms.png │ ├── pareto_charts.png │ ├── processes.png │ ├── quality.md │ ├── quality_control_charts.png │ ├── run_charts.png │ ├── scatter_diagrams.png │ └── testing.jpg ├── review │ └── review.md ├── scope │ ├── correct.png │ ├── processes.png │ ├── project_scope_statements.png │ ├── rtm.png │ ├── scope.md │ └── wbs_dictionary.jpg └── time │ ├── cpm.png │ ├── critical_chain.png │ ├── processes.png │ └── time.md ├── qa ├── Programming │ └── c │ │ └── conversion_of_str │ │ └── conversion_of_str.md ├── adddns.md ├── amazon.png ├── android_ionic_cordova.md ├── asymmetric_keys_on_servers.md ├── atom_ubntu_32.md ├── avoid_xss_when_trying_to_modify_content_via_dom.md ├── axios_download_within_same_request.md ├── base64_js.md ├── better_browser.md ├── better_browser_icon1.png ├── better_browser_icon2.png ├── better_browser_icon3.png ├── build_gr_rsm.md ├── build_virtual_AGC.md ├── callback_in_php.md ├── cassandra.md ├── cassandra_banner.jpg ├── cassandra_consistency.png ├── cassandra_logo.png ├── cgi_difference.md ├── charset_of_files.md ├── check_PC_in_PHP.md ├── check_connecting_status.md ├── composerinstall.md ├── convert_json_to_md.md ├── cppreleasing.md ├── crontablog.md ├── curl.md ├── defaultwindowsize.md ├── detectSquares.md ├── detect_disabled_change.md ├── detect_ie.md ├── difference_between_link_and_import.md ├── difference_between_storage.md ├── dlib.md ├── dlib_1.png ├── dlib_10.png ├── dlib_11.png ├── dlib_12.png ├── dlib_13.png ├── dlib_14.png ├── dlib_15.png ├── dlib_16.png ├── dlib_17.png ├── dlib_18.png ├── dlib_19.png ├── dlib_2.png ├── dlib_20.png ├── dlib_3.png ├── dlib_4.png ├── dlib_5.png ├── dlib_6.png ├── dlib_7.png ├── dlib_8.png ├── dlib_9.png ├── dlibonlinux.md ├── doctype.md ├── double_boot_system.md ├── dpkg.md ├── dynamic_function_name.md ├── eta_ate.md ├── etag.md ├── ffmpeg_c_cpp.md ├── footercss.md ├── fps_of_a_page │ └── fps_of_a_page.md ├── free_cached_memory_in_Ubuntu.md ├── get_real_ip_with_php.md ├── gist.md ├── gist.png ├── git_chinese_windows.md ├── gitbook.md ├── gitbook_1.jpg ├── github_ssh.md ├── gqxronlinux.md ├── hide_inputfile_ie8.md ├── how_does_js_emulate_private_members.md ├── iframe.md ├── iframe_size.md ├── iniframe_javascript.md ├── interactjsmobile.md ├── js_projects_with_lerna.md ├── json2md.png ├── json_encode_chinese_php.md ├── lerna.png ├── linuxcommands.md ├── mac_linux_boot.jpg ├── mac_linux_disk_utility.jpg ├── mac_linux_installer_partitions.jpg ├── master_slave_synchronization.md ├── menubtncss.md ├── mysql_log.md ├── navicateremoteaccess.md ├── nodejsandnpmonwindows.md ├── opencvonlinux.md ├── osmocombbonlinux.md ├── parse_json.md ├── pgp.md ├── pgp_work.png ├── preview_image │ └── preview_image.md ├── qa.md ├── rem.md ├── remove_restore_dom.md ├── resloadjs.md ├── scroll │ └── scroll.md ├── scrollbar_width.md ├── scrollbarcss.md ├── scrollbarparts_thumb.png ├── set_up_portal.md ├── shadowsocks1.jpeg ├── shadowsocks_on_vultr.md ├── shadowsocs2.jpg ├── shellfor.md ├── smartPic.md ├── snook.png ├── specify_ssh_on_git.md ├── ssh-puttykey.png ├── sublimepluggin.md ├── svncommands.md ├── timestamp.md ├── tl_wn722n_ubuntu.md ├── tlide_and_caret.md ├── trianglecss.md ├── typesetting_css.md ├── ubuntuversion.md ├── uploadwithajax.md ├── url_uri.md ├── uta_atu.md ├── value_of.md ├── virtualAGC.png ├── what_new_html5.md ├── wifidog_openwrt.png ├── win-8-ie-scrollbar_thumb.jpg ├── xamppcpp.md └── zip_rar_tar.md ├── security_vulnerabilities ├── broken_authentication │ └── broken_authentication.md ├── injection │ └── injection.md ├── security_vulnerabilities.md ├── sensitive_data_exposure │ └── sensitive_data_exposure.md └── xxe │ └── xxe.md ├── summary ├── 1 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ └── 4.md ├── 2 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ └── 4.md ├── 3 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ └── 4.md ├── architecture │ └── architecture.md ├── docker │ ├── container_explainer.png │ ├── container_explainer_zn.png │ ├── docker-filesystems-multilayer.png │ ├── docker.md │ ├── en.md │ ├── logo.png │ ├── tagger.png │ ├── tagger_zn.png │ └── zh.md ├── ffmpeg │ └── ffmpeg.md ├── format │ └── format.md ├── gimp │ └── gimp.md ├── graduation │ └── graduation.md ├── gsm │ ├── architecture │ │ └── architecture.md │ ├── gsm.md │ └── stack │ │ ├── gsm-protocol-stack.gif │ │ └── stack.md ├── imagemagick │ ├── examp1.png │ ├── gimp.png │ ├── imagemagick.md │ └── logo.jpg ├── jpush │ └── jpush.md ├── m3u8 │ ├── m3u8.md │ └── official_document.pdf ├── redis │ ├── logo.png │ └── redis.md └── summary.md ├── translation ├── 3_new_css_features │ └── 3_new_css_features.md ├── align_svg │ └── align_svg.md ├── angular_vs_react │ ├── EgrRejl.png │ └── angular_vs_react.md ├── apollo_11 │ └── apollo_11.md ├── be_asynchronous │ └── be_asynchronous.md ├── creativity_is_important │ └── creativity_is_important.md ├── distributing_react_components │ └── distributing_react_components.md ├── give_it_five_minutes │ └── give_it_five_minutes.md ├── google_interview_university │ └── google_interview_university.md ├── hours_are_bullshit │ └── hours_are_bullshit.md ├── how_we_css_at_bigcommerce │ └── how_we_css_at_bigcommerce.md ├── improve_angular_performance_with_react │ ├── angular_plus_react.png │ ├── improve_angular_performance_with_react.md │ ├── ng-stats.png │ └── watchers-demo.png ├── making_react_native_apps_accessible │ └── making_react_native_apps_accessible.md ├── memory_leak_detection_in_cpp │ ├── author.jpg │ ├── cover110.small.jpg │ └── memory_leak_detection_in_cpp.md ├── misunderstand_1 │ └── misunderstand_1.md ├── misunderstand_2 │ └── misunderstand_2.md ├── opencv_vs_matlab │ ├── 1.jpg │ └── opencv_vs_matlab.md ├── react_aha │ └── react_aha.md ├── react_reusable_components │ └── react_reusable_components.md ├── stack_overflow_architecture │ ├── SO-Architecture-Bosun-Websockets.png │ ├── SO-Architecture-IIS-NY-WEB01.png │ ├── SO-Architecture-IIS-NY-WEB10.png │ ├── SO-Architecture-Opserver-DBTier.png │ ├── SO-Architecture-Opserver-HAProxy.png │ ├── SO-Architecture-Opserver-WebTier.png │ ├── SO-Architecture-Redis-Utilization.png │ ├── TEb0jiPh.jpg │ ├── layout.png │ └── stack_overflow_architecture.md ├── style_svg_use │ ├── 1.png │ ├── 1_1.png │ ├── 2.png │ ├── 2_1.png │ ├── 3.png │ ├── 3_1.png │ ├── Screen-Shot-2015-07-15-at-13.21.02.png │ ├── StylingSVGuse.jpg │ ├── StylingSVGuse_codropsdrops.png │ ├── shadow-dom.jpg │ └── style_svg_use.md ├── successful_git_branching │ ├── centr-decentr@2x.png │ ├── fb@2x.png │ ├── git-model@2x.png │ ├── hotfix-branches@2x.png │ ├── main-branches@2x.png │ ├── merge-without-ff@2x.png │ ├── pdf@2x.png │ └── successful_git_branching.md ├── things_i_wish_i_were_told_about_react │ └── things_i_wish_i_were_told_about_react.md ├── translation.md ├── webgl_potential │ ├── Unreal-Engine-UDK-11-300x187.jpg │ ├── grotto-uv.png │ ├── logo-300x1441.png │ └── webgl_potential.md └── your_timeline_for_learning_react │ ├── react-timeline.png │ └── your_timeline_for_learning_react.md └── vi ├── opencv ├── logo.png └── opencv.md └── vi.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/.gitignore -------------------------------------------------------------------------------- /Algorithmn/AlgorithmnMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/AlgorithmnMenu.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/Analysis.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DC/DC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DC/DC.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Assembly/aij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Assembly/aij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Assembly/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Assembly/f1.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Assembly/f1i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Assembly/f1i.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Assembly/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Assembly/f2.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Assembly/fij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Assembly/fij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Assembly/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Assembly/first.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Assembly/sij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Assembly/sij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Assembly/tij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Assembly/tij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Bellman/Bellman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Bellman/Bellman.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Bellman/aij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Bellman/aij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Bellman/dmj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Bellman/dmj.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Bellman/ove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Bellman/ove.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/DP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/DP.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/DP/DP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/DP/DP.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/DP/dmij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/DP/dmij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/DP/on3lgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/DP/on3lgn.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/DP/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/DP/overview.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/DP/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/DP/solution.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/DP/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/DP/time.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/DP/time1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/DP/time1.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Floyd/Floyd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Floyd/Floyd.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Floyd/ckij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Floyd/ckij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Floyd/on3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Floyd/on3.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Floyd/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Floyd/overview.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Floyd/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Floyd/solution.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Floyd/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Floyd/time.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Floyd/time1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Floyd/time1.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Knapsack/cij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Knapsack/cij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Knapsack/cij1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Knapsack/cij1.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Knapsack/cnw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Knapsack/cnw.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Knapsack/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Knapsack/vi.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Knapsack/wi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Knapsack/wi.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/LCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/LCS.c -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/LCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/LCS.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/bij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/bij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/cij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/cij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/cij1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/cij1.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/cij2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/cij2.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/cij3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/cij3.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/cmn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/cmn.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/omn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/omn.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/omn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/omn1.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/LCS/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/LCS/overview.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/Matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/Matrix.c -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/Matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/Matrix.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/m1n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/m1n.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/mij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/mij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/mik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/mik.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/mkj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/mkj.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/on2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/on2.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/on3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/on3.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/pi.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/ppp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/ppp.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/sij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/sij.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/Matrix/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/Matrix/sum.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/MaxSum/MaxSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/MaxSum/MaxSum.c -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/MaxSum/MaxSum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/MaxSum/MaxSum.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/MaxSum/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/MaxSum/bj.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/MaxSum/bj1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/MaxSum/bj1.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/MaxSum/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/MaxSum/bn.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/DP/MaxSum/dataj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/DP/MaxSum/dataj.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/Greedy/Greedy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/Greedy/Greedy.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/Random/Random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/Random/Random.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/Search/NQueen/xi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/Search/NQueen/xi.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/Search/Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/Search/Search.md -------------------------------------------------------------------------------- /Algorithmn/Analysis/overhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/overhead.png -------------------------------------------------------------------------------- /Algorithmn/Analysis/recursive_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Analysis/recursive_tree.png -------------------------------------------------------------------------------- /Algorithmn/Computability/Computability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Computability/Computability.md -------------------------------------------------------------------------------- /Algorithmn/Computability/NPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Computability/NPC.png -------------------------------------------------------------------------------- /Algorithmn/Computability/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Computability/problem.png -------------------------------------------------------------------------------- /Algorithmn/Encode/Arithmetic/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/Arithmetic/example.gif -------------------------------------------------------------------------------- /Algorithmn/Encode/Encode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/Encode.md -------------------------------------------------------------------------------- /Algorithmn/Encode/Huffman/Huffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/Huffman/Huffman.cpp -------------------------------------------------------------------------------- /Algorithmn/Encode/Huffman/Huffman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/Huffman/Huffman.md -------------------------------------------------------------------------------- /Algorithmn/Encode/Huffman/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/Huffman/example.gif -------------------------------------------------------------------------------- /Algorithmn/Encode/Huffman/huffmantree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/Huffman/huffmantree.gif -------------------------------------------------------------------------------- /Algorithmn/Encode/LZW/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/LZW/1.gif -------------------------------------------------------------------------------- /Algorithmn/Encode/LZW/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/LZW/2.gif -------------------------------------------------------------------------------- /Algorithmn/Encode/LZW/LZW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/LZW/LZW.cpp -------------------------------------------------------------------------------- /Algorithmn/Encode/LZW/LZW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Encode/LZW/LZW.md -------------------------------------------------------------------------------- /Algorithmn/Sort/BubbleSort/BubbleSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BubbleSort/BubbleSort.c -------------------------------------------------------------------------------- /Algorithmn/Sort/BubbleSort/BubbleSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BubbleSort/BubbleSort.md -------------------------------------------------------------------------------- /Algorithmn/Sort/BubbleSort/o1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BubbleSort/o1.png -------------------------------------------------------------------------------- /Algorithmn/Sort/BubbleSort/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BubbleSort/on.png -------------------------------------------------------------------------------- /Algorithmn/Sort/BubbleSort/on2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BubbleSort/on2.png -------------------------------------------------------------------------------- /Algorithmn/Sort/BucketSort/BucketSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BucketSort/BucketSort.c -------------------------------------------------------------------------------- /Algorithmn/Sort/BucketSort/BucketSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BucketSort/BucketSort.md -------------------------------------------------------------------------------- /Algorithmn/Sort/BucketSort/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BucketSort/f.png -------------------------------------------------------------------------------- /Algorithmn/Sort/BucketSort/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/BucketSort/on.png -------------------------------------------------------------------------------- /Algorithmn/Sort/CountingSort/okn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/CountingSort/okn.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/HeapSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/HeapSort.c -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/HeapSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/HeapSort.md -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/example.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/example1.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/example2.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/max_heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/max_heap.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/min_heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/min_heap.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/olgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/olgn.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/on.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/on1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/on1.png -------------------------------------------------------------------------------- /Algorithmn/Sort/HeapSort/onlgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/HeapSort/onlgn.png -------------------------------------------------------------------------------- /Algorithmn/Sort/InsertSort/InsertSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/InsertSort/InsertSort.c -------------------------------------------------------------------------------- /Algorithmn/Sort/InsertSort/InsertSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/InsertSort/InsertSort.md -------------------------------------------------------------------------------- /Algorithmn/Sort/InsertSort/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/InsertSort/example.png -------------------------------------------------------------------------------- /Algorithmn/Sort/InsertSort/o1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/InsertSort/o1.png -------------------------------------------------------------------------------- /Algorithmn/Sort/InsertSort/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/InsertSort/on.png -------------------------------------------------------------------------------- /Algorithmn/Sort/InsertSort/on2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/InsertSort/on2.png -------------------------------------------------------------------------------- /Algorithmn/Sort/MergeSort/MergeSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/MergeSort/MergeSort.c -------------------------------------------------------------------------------- /Algorithmn/Sort/MergeSort/MergeSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/MergeSort/MergeSort.md -------------------------------------------------------------------------------- /Algorithmn/Sort/MergeSort/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/MergeSort/on.png -------------------------------------------------------------------------------- /Algorithmn/Sort/MergeSort/onlgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/MergeSort/onlgn.png -------------------------------------------------------------------------------- /Algorithmn/Sort/Overview/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/Overview/Overview.md -------------------------------------------------------------------------------- /Algorithmn/Sort/Overview/best.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/Overview/best.png -------------------------------------------------------------------------------- /Algorithmn/Sort/Overview/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/Overview/comparison.png -------------------------------------------------------------------------------- /Algorithmn/Sort/QuickSort/QuickSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/QuickSort/QuickSort.c -------------------------------------------------------------------------------- /Algorithmn/Sort/QuickSort/QuickSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/QuickSort/QuickSort.md -------------------------------------------------------------------------------- /Algorithmn/Sort/QuickSort/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/QuickSort/compare.png -------------------------------------------------------------------------------- /Algorithmn/Sort/QuickSort/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/QuickSort/example.png -------------------------------------------------------------------------------- /Algorithmn/Sort/QuickSort/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/QuickSort/on.png -------------------------------------------------------------------------------- /Algorithmn/Sort/QuickSort/on2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/QuickSort/on2.png -------------------------------------------------------------------------------- /Algorithmn/Sort/QuickSort/onlgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/QuickSort/onlgn.png -------------------------------------------------------------------------------- /Algorithmn/Sort/RadixSort/RadixSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/RadixSort/RadixSort.c -------------------------------------------------------------------------------- /Algorithmn/Sort/RadixSort/RadixSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/RadixSort/RadixSort.md -------------------------------------------------------------------------------- /Algorithmn/Sort/RadixSort/odkn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/RadixSort/odkn.png -------------------------------------------------------------------------------- /Algorithmn/Sort/Sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Algorithmn/Sort/Sort.md -------------------------------------------------------------------------------- /Creativity/Creativity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/Creativity.md -------------------------------------------------------------------------------- /Creativity/ICC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/ICC.png -------------------------------------------------------------------------------- /Creativity/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/behance.png -------------------------------------------------------------------------------- /Creativity/codrops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/codrops.png -------------------------------------------------------------------------------- /Creativity/example1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/example1.svg -------------------------------------------------------------------------------- /Creativity/fsvi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/fsvi.jpg -------------------------------------------------------------------------------- /Creativity/la_camomille.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/la_camomille.png -------------------------------------------------------------------------------- /Creativity/smasshing_magazine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/smasshing_magazine.png -------------------------------------------------------------------------------- /Creativity/thedesigninspiration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/thedesigninspiration.png -------------------------------------------------------------------------------- /Creativity/zcool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Creativity/zcool.png -------------------------------------------------------------------------------- /Database/Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Database/Database.md -------------------------------------------------------------------------------- /Database/lock/lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Database/lock/lock.md -------------------------------------------------------------------------------- /Embedded_System/Embedded_System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/Embedded_System.md -------------------------------------------------------------------------------- /Embedded_System/PARWAN/AC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/AC.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/ALU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/ALU.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/IR.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/MAR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/MAR.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/PARWAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/PARWAN.md -------------------------------------------------------------------------------- /Embedded_System/PARWAN/PC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/PC.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S1.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S2.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S3.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S4.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S5.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S6.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S7.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S8.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/S9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/S9.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/SHU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/SHU.png -------------------------------------------------------------------------------- /Embedded_System/PARWAN/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/PARWAN/SR.png -------------------------------------------------------------------------------- /Embedded_System/assembly/assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/assembly/assembly.md -------------------------------------------------------------------------------- /Embedded_System/autogen/autogen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/autogen/autogen.md -------------------------------------------------------------------------------- /Embedded_System/cache/Cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/Cache.png -------------------------------------------------------------------------------- /Embedded_System/cache/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/cache.md -------------------------------------------------------------------------------- /Embedded_System/cache/cache.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/cache.vsdx -------------------------------------------------------------------------------- /Embedded_System/cache/directly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/directly.png -------------------------------------------------------------------------------- /Embedded_System/cache/directly_way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/directly_way.png -------------------------------------------------------------------------------- /Embedded_System/cache/directly_way.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/directly_way.vsdx -------------------------------------------------------------------------------- /Embedded_System/cache/group_example.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/group_example.psd -------------------------------------------------------------------------------- /Embedded_System/cache/group_way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/group_way.png -------------------------------------------------------------------------------- /Embedded_System/cache/group_way.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/group_way.vsdx -------------------------------------------------------------------------------- /Embedded_System/cache/read_consistent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/read_consistent.png -------------------------------------------------------------------------------- /Embedded_System/cache/whole_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/cache/whole_address.png -------------------------------------------------------------------------------- /Embedded_System/concept/concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/concept/concept.md -------------------------------------------------------------------------------- /Embedded_System/dma/AB_synchronized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/AB_synchronized.png -------------------------------------------------------------------------------- /Embedded_System/dma/A_synchronized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/A_synchronized.png -------------------------------------------------------------------------------- /Embedded_System/dma/DMA_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/DMA_controller.png -------------------------------------------------------------------------------- /Embedded_System/dma/DMA_controller.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/DMA_controller.vsdx -------------------------------------------------------------------------------- /Embedded_System/dma/EDMA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/EDMA.png -------------------------------------------------------------------------------- /Embedded_System/dma/EDMA3_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/EDMA3_transfer.png -------------------------------------------------------------------------------- /Embedded_System/dma/block_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/block_transfer.png -------------------------------------------------------------------------------- /Embedded_System/dma/dma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/dma.md -------------------------------------------------------------------------------- /Embedded_System/dma/ordered_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/ordered_transfer.png -------------------------------------------------------------------------------- /Embedded_System/dma/part_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dma/part_transfer.png -------------------------------------------------------------------------------- /Embedded_System/dsp/dsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/dsp/dsp.md -------------------------------------------------------------------------------- /Embedded_System/interruption/C64X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/interruption/C64X.png -------------------------------------------------------------------------------- /Embedded_System/interruption/VIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/interruption/VIC.png -------------------------------------------------------------------------------- /Embedded_System/store/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Embedded_System/store/store.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/LICENSE -------------------------------------------------------------------------------- /MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/MIT.md -------------------------------------------------------------------------------- /Multimedia/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/1.gif -------------------------------------------------------------------------------- /Multimedia/1d_dct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/1d_dct.png -------------------------------------------------------------------------------- /Multimedia/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/2.gif -------------------------------------------------------------------------------- /Multimedia/2d_dct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/2d_dct.png -------------------------------------------------------------------------------- /Multimedia/3d_dct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/3d_dct.png -------------------------------------------------------------------------------- /Multimedia/3neighbourhood2dimention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/3neighbourhood2dimention.png -------------------------------------------------------------------------------- /Multimedia/A-law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/A-law.png -------------------------------------------------------------------------------- /Multimedia/CMYK_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/CMYK_transfer.png -------------------------------------------------------------------------------- /Multimedia/Entropy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/Entropy.png -------------------------------------------------------------------------------- /Multimedia/Hierarchical_jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/Hierarchical_jpeg.png -------------------------------------------------------------------------------- /Multimedia/MCU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/MCU.png -------------------------------------------------------------------------------- /Multimedia/MIDI_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/MIDI_interface.png -------------------------------------------------------------------------------- /Multimedia/Multimedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/Multimedia.md -------------------------------------------------------------------------------- /Multimedia/Multimedia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/Multimedia.pdf -------------------------------------------------------------------------------- /Multimedia/SNR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/SNR.png -------------------------------------------------------------------------------- /Multimedia/SQNR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/SQNR.png -------------------------------------------------------------------------------- /Multimedia/Sequential_jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/Sequential_jpeg.png -------------------------------------------------------------------------------- /Multimedia/TDM_Carrier_Standards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/TDM_Carrier_Standards.png -------------------------------------------------------------------------------- /Multimedia/Video_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/Video_standard.png -------------------------------------------------------------------------------- /Multimedia/YIQ_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/YIQ_transfer.png -------------------------------------------------------------------------------- /Multimedia/YUV_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/YUV_transfer.png -------------------------------------------------------------------------------- /Multimedia/analog_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/analog_signal.png -------------------------------------------------------------------------------- /Multimedia/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/audio.png -------------------------------------------------------------------------------- /Multimedia/b_frame_coding1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/b_frame_coding1.png -------------------------------------------------------------------------------- /Multimedia/dithering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/dithering.png -------------------------------------------------------------------------------- /Multimedia/dpcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/dpcm.png -------------------------------------------------------------------------------- /Multimedia/i_frame_coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/i_frame_coding.png -------------------------------------------------------------------------------- /Multimedia/i_frame_coding1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/i_frame_coding1.png -------------------------------------------------------------------------------- /Multimedia/information_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/information_size.png -------------------------------------------------------------------------------- /Multimedia/layer_of_video_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/layer_of_video_object.png -------------------------------------------------------------------------------- /Multimedia/mu-law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/mu-law.png -------------------------------------------------------------------------------- /Multimedia/network_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/network_layer.png -------------------------------------------------------------------------------- /Multimedia/p_frame_coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/p_frame_coding.png -------------------------------------------------------------------------------- /Multimedia/p_frame_coding1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/p_frame_coding1.png -------------------------------------------------------------------------------- /Multimedia/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/pi.png -------------------------------------------------------------------------------- /Multimedia/protocol_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/protocol_stack.png -------------------------------------------------------------------------------- /Multimedia/research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/research.png -------------------------------------------------------------------------------- /Multimedia/sound_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/sound_level.png -------------------------------------------------------------------------------- /Multimedia/time_for_2dlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/time_for_2dlog.png -------------------------------------------------------------------------------- /Multimedia/time_for_searching_mvs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/time_for_searching_mvs.png -------------------------------------------------------------------------------- /Multimedia/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/video.png -------------------------------------------------------------------------------- /Multimedia/wireless_network_standards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Multimedia/wireless_network_standards.png -------------------------------------------------------------------------------- /Network/Application/Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Application/Application.md -------------------------------------------------------------------------------- /Network/Application/dns/dn_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Application/dns/dn_tree.png -------------------------------------------------------------------------------- /Network/Application/dns/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Application/dns/dns.md -------------------------------------------------------------------------------- /Network/Application/http/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Application/http/http.md -------------------------------------------------------------------------------- /Network/Application/rpc/rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Application/rpc/rpc.md -------------------------------------------------------------------------------- /Network/Application/web/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Application/web/web.md -------------------------------------------------------------------------------- /Network/Coding/Coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/Coding.md -------------------------------------------------------------------------------- /Network/Coding/IO/IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/IO/IO.md -------------------------------------------------------------------------------- /Network/Coding/accept/accept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/accept/accept.md -------------------------------------------------------------------------------- /Network/Coding/bind/bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/bind/bind.md -------------------------------------------------------------------------------- /Network/Coding/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/client.c -------------------------------------------------------------------------------- /Network/Coding/close/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/close/close.md -------------------------------------------------------------------------------- /Network/Coding/comm_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/comm_func.c -------------------------------------------------------------------------------- /Network/Coding/comm_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/comm_func.h -------------------------------------------------------------------------------- /Network/Coding/connect/connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/connect/connect.md -------------------------------------------------------------------------------- /Network/Coding/listen/listen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/listen/listen.md -------------------------------------------------------------------------------- /Network/Coding/listen/two_queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/listen/two_queue.png -------------------------------------------------------------------------------- /Network/Coding/model/loop_server_tcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/model/loop_server_tcp.png -------------------------------------------------------------------------------- /Network/Coding/model/loop_server_udp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/model/loop_server_udp.png -------------------------------------------------------------------------------- /Network/Coding/model/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/model/model.md -------------------------------------------------------------------------------- /Network/Coding/poll/poll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/poll/poll.md -------------------------------------------------------------------------------- /Network/Coding/read/read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/read/read.md -------------------------------------------------------------------------------- /Network/Coding/select/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/select/select.md -------------------------------------------------------------------------------- /Network/Coding/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/server.c -------------------------------------------------------------------------------- /Network/Coding/socket/UDP/UDP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/socket/UDP/UDP.md -------------------------------------------------------------------------------- /Network/Coding/socket/UDP/udp_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/socket/UDP/udp_model.png -------------------------------------------------------------------------------- /Network/Coding/socket/UDP/udpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/socket/UDP/udpclient.c -------------------------------------------------------------------------------- /Network/Coding/socket/UDP/udpserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/socket/UDP/udpserver.c -------------------------------------------------------------------------------- /Network/Coding/socket/original/ICMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/socket/original/ICMP.png -------------------------------------------------------------------------------- /Network/Coding/socket/original/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/socket/original/raw.c -------------------------------------------------------------------------------- /Network/Coding/socket/socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/socket/socket.md -------------------------------------------------------------------------------- /Network/Coding/write/write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Coding/write/write.md -------------------------------------------------------------------------------- /Network/Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Network.md -------------------------------------------------------------------------------- /Network/Overview/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Overview/Overview.md -------------------------------------------------------------------------------- /Network/Overview/bs_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Overview/bs_model.png -------------------------------------------------------------------------------- /Network/Overview/cs_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Overview/cs_model.png -------------------------------------------------------------------------------- /Network/Transport/OOB/OOB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Transport/OOB/OOB.md -------------------------------------------------------------------------------- /Network/Transport/OOB/OOB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Transport/OOB/OOB.png -------------------------------------------------------------------------------- /Network/Transport/OOB/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Transport/OOB/example.png -------------------------------------------------------------------------------- /Network/Transport/Transport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Transport/Transport.md -------------------------------------------------------------------------------- /Network/Transport/tcp_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Transport/tcp_header.gif -------------------------------------------------------------------------------- /Network/Transport/udp_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Network/Transport/udp_header.gif -------------------------------------------------------------------------------- /OS/IO/IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/IO/IO.md -------------------------------------------------------------------------------- /OS/IO/blocking_io_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/IO/blocking_io_accept.png -------------------------------------------------------------------------------- /OS/IO/blocking_io_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/IO/blocking_io_connect.png -------------------------------------------------------------------------------- /OS/IO/blocking_io_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/IO/blocking_io_read.png -------------------------------------------------------------------------------- /OS/IO/blocking_io_write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/IO/blocking_io_write.png -------------------------------------------------------------------------------- /OS/IO/disblocking_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/IO/disblocking_io.png -------------------------------------------------------------------------------- /OS/IO/select_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/IO/select_io.png -------------------------------------------------------------------------------- /OS/IO/signal_driven_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/IO/signal_driven_io.png -------------------------------------------------------------------------------- /OS/OS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/OS.md -------------------------------------------------------------------------------- /OS/pt/IPC/IPC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/IPC.md -------------------------------------------------------------------------------- /OS/pt/IPC/mmap/mmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/mmap/mmap.md -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/fifo/fifo_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/fifo/fifo_read -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/fifo/fifo_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/fifo/fifo_read.c -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/fifo/fifo_write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/fifo/fifo_write -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/fifo/fifo_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/fifo/fifo_write.c -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/pipe.png -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/pipe/pipetest_first: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/pipe/pipetest_first -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/pipe/pipetest_first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/pipe/pipetest_first.c -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/pipe/pipetest_second: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/pipe/pipetest_second -------------------------------------------------------------------------------- /OS/pt/IPC/pipe_fifo/pipe_fifo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/pipe_fifo/pipe_fifo.md -------------------------------------------------------------------------------- /OS/pt/IPC/queue/queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/queue/queue.md -------------------------------------------------------------------------------- /OS/pt/IPC/semaphore/semaphore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/semaphore/semaphore.md -------------------------------------------------------------------------------- /OS/pt/IPC/socket/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/socket/client -------------------------------------------------------------------------------- /OS/pt/IPC/socket/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/socket/client.c -------------------------------------------------------------------------------- /OS/pt/IPC/socket/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/socket/server -------------------------------------------------------------------------------- /OS/pt/IPC/socket/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/socket/server.c -------------------------------------------------------------------------------- /OS/pt/IPC/socket/socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/socket/socket.md -------------------------------------------------------------------------------- /OS/pt/IPC/socket/socketpair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/IPC/socket/socketpair.png -------------------------------------------------------------------------------- /OS/pt/Signal/Signal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/Signal/Signal.md -------------------------------------------------------------------------------- /OS/pt/create/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/create/create.md -------------------------------------------------------------------------------- /OS/pt/daemon/create_with_inetd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/daemon/create_with_inetd.png -------------------------------------------------------------------------------- /OS/pt/daemon/daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/daemon/daemon.md -------------------------------------------------------------------------------- /OS/pt/daemon/inetd_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/daemon/inetd_list.png -------------------------------------------------------------------------------- /OS/pt/kill/kill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/kill/kill.md -------------------------------------------------------------------------------- /OS/pt/pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/OS/pt/pt.md -------------------------------------------------------------------------------- /Programming/CSS/Attribute/Attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/Attribute/Attribute.md -------------------------------------------------------------------------------- /Programming/CSS/CSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/CSS.md -------------------------------------------------------------------------------- /Programming/CSS/Framework/Framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/Framework/Framework.md -------------------------------------------------------------------------------- /Programming/CSS/external/external.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/external/external.md -------------------------------------------------------------------------------- /Programming/CSS/flexbox/flexbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/flexbox/flexbox.md -------------------------------------------------------------------------------- /Programming/CSS/grid/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/grid/grid.md -------------------------------------------------------------------------------- /Programming/CSS/internal/internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/internal/internal.md -------------------------------------------------------------------------------- /Programming/CSS/less/extend/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/less/extend/extend.md -------------------------------------------------------------------------------- /Programming/CSS/less/less.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/less/less.md -------------------------------------------------------------------------------- /Programming/CSS/less/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/less/logo.png -------------------------------------------------------------------------------- /Programming/CSS/less/overview/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/less/overview/overview.md -------------------------------------------------------------------------------- /Programming/CSS/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/logo.jpg -------------------------------------------------------------------------------- /Programming/CSS/selector/selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSS/selector/selector.md -------------------------------------------------------------------------------- /Programming/CSharp/Args/Args.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSharp/Args/Args.cs -------------------------------------------------------------------------------- /Programming/CSharp/Args/Args.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSharp/Args/Args.md -------------------------------------------------------------------------------- /Programming/CSharp/CSharpMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSharp/CSharpMenu.md -------------------------------------------------------------------------------- /Programming/CSharp/Enum/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSharp/Enum/Enum.cs -------------------------------------------------------------------------------- /Programming/CSharp/Enum/Enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSharp/Enum/Enum.md -------------------------------------------------------------------------------- /Programming/CSharp/Enum/新建文本文档.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSharp/Enum/新建文本文档.txt -------------------------------------------------------------------------------- /Programming/CSharp/File/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSharp/File/File.cs -------------------------------------------------------------------------------- /Programming/CSharp/File/File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/CSharp/File/File.md -------------------------------------------------------------------------------- /Programming/CSharp/File/myfile.txt: -------------------------------------------------------------------------------- 1 | Hello, World 2 | abcdefghijklmnopqrstuvwxyz 3 | ABCDEFGHIJKLMNOPQRSTUVWXYZ 4 | 0123456789 5 | -------------------------------------------------------------------------------- /Programming/HTML/DOM/DOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/DOM/DOM.md -------------------------------------------------------------------------------- /Programming/HTML/HTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/HTML.md -------------------------------------------------------------------------------- /Programming/HTML/access/access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/access/access.md -------------------------------------------------------------------------------- /Programming/HTML/extra_markup/iframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/extra_markup/iframe.png -------------------------------------------------------------------------------- /Programming/HTML/forms/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/checkbox.png -------------------------------------------------------------------------------- /Programming/HTML/forms/date_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/date_input.png -------------------------------------------------------------------------------- /Programming/HTML/forms/email_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/email_input.png -------------------------------------------------------------------------------- /Programming/HTML/forms/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/forms.md -------------------------------------------------------------------------------- /Programming/HTML/forms/image_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/image_button.png -------------------------------------------------------------------------------- /Programming/HTML/forms/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/password.png -------------------------------------------------------------------------------- /Programming/HTML/forms/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/placeholder.png -------------------------------------------------------------------------------- /Programming/HTML/forms/radio_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/radio_button.png -------------------------------------------------------------------------------- /Programming/HTML/forms/search_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/search_input.png -------------------------------------------------------------------------------- /Programming/HTML/forms/submit_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/submit_button.png -------------------------------------------------------------------------------- /Programming/HTML/forms/subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/subscribe.png -------------------------------------------------------------------------------- /Programming/HTML/forms/subscribe.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/subscribe.psd -------------------------------------------------------------------------------- /Programming/HTML/forms/text_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/text_area.png -------------------------------------------------------------------------------- /Programming/HTML/forms/text_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/text_input.png -------------------------------------------------------------------------------- /Programming/HTML/forms/upload_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/upload_file.png -------------------------------------------------------------------------------- /Programming/HTML/forms/url_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/forms/url_input.png -------------------------------------------------------------------------------- /Programming/HTML/head/head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/head/head.md -------------------------------------------------------------------------------- /Programming/HTML/image/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/image/image.md -------------------------------------------------------------------------------- /Programming/HTML/link/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/link/link.md -------------------------------------------------------------------------------- /Programming/HTML/list/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/list/list.md -------------------------------------------------------------------------------- /Programming/HTML/mode/mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/mode/mode.md -------------------------------------------------------------------------------- /Programming/HTML/node/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/node/node.md -------------------------------------------------------------------------------- /Programming/HTML/structure/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/structure/structure.md -------------------------------------------------------------------------------- /Programming/HTML/tables/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/tables/tables.md -------------------------------------------------------------------------------- /Programming/HTML/tag/tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/tag/tag.md -------------------------------------------------------------------------------- /Programming/HTML/text/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/HTML/text/text.md -------------------------------------------------------------------------------- /Programming/Java/Class/ArrayClassObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/ArrayClassObj.java -------------------------------------------------------------------------------- /Programming/Java/Class/Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/Class.md -------------------------------------------------------------------------------- /Programming/Java/Class/EqualsDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/EqualsDemo.java -------------------------------------------------------------------------------- /Programming/Java/Class/Garbage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/Garbage.java -------------------------------------------------------------------------------- /Programming/Java/Class/Leaf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/Leaf.java -------------------------------------------------------------------------------- /Programming/Java/Class/Music4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/Music4.java -------------------------------------------------------------------------------- /Programming/Java/Class/Overloading.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/Overloading.java -------------------------------------------------------------------------------- /Programming/Java/Class/Sandwich.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/Sandwich.java -------------------------------------------------------------------------------- /Programming/Java/Class/SimpArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/SimpArray.java -------------------------------------------------------------------------------- /Programming/Java/Class/Singleton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Class/Singleton.java -------------------------------------------------------------------------------- /Programming/Java/Collection/Collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Collection/Collection.md -------------------------------------------------------------------------------- /Programming/Java/Collection/DateDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Collection/DateDemo.java -------------------------------------------------------------------------------- /Programming/Java/Exception/Exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Exception/Exception.md -------------------------------------------------------------------------------- /Programming/Java/Exception/ThrowOut.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Exception/ThrowOut.java -------------------------------------------------------------------------------- /Programming/Java/GUI/Class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/GUI/Class.png -------------------------------------------------------------------------------- /Programming/Java/GUI/Desktop App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/GUI/Desktop App.java -------------------------------------------------------------------------------- /Programming/Java/GUI/GUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/GUI/GUI.md -------------------------------------------------------------------------------- /Programming/Java/GUI/SimpChat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/GUI/SimpChat.java -------------------------------------------------------------------------------- /Programming/Java/IO/IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/IO/IO.md -------------------------------------------------------------------------------- /Programming/Java/IO/IOStreamDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/IO/IOStreamDemo.java -------------------------------------------------------------------------------- /Programming/Java/InnerClass/InnerClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/InnerClass/InnerClass.md -------------------------------------------------------------------------------- /Programming/Java/JDBC/JDBC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/JDBC/JDBC.md -------------------------------------------------------------------------------- /Programming/Java/Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Java.md -------------------------------------------------------------------------------- /Programming/Java/Network/Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Network/Network.md -------------------------------------------------------------------------------- /Programming/Java/Overview/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Overview/Overview.md -------------------------------------------------------------------------------- /Programming/Java/Package/Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Package/Package.md -------------------------------------------------------------------------------- /Programming/Java/Thread/3state.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Thread/3state.gif -------------------------------------------------------------------------------- /Programming/Java/Thread/Thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Thread/Thread.md -------------------------------------------------------------------------------- /Programming/Java/Thread/ThreadsDemo1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Thread/ThreadsDemo1.java -------------------------------------------------------------------------------- /Programming/Java/Thread/ThreadsDemo2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Thread/ThreadsDemo2.java -------------------------------------------------------------------------------- /Programming/Java/Thread/ThreadsDemo3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Thread/ThreadsDemo3.java -------------------------------------------------------------------------------- /Programming/Java/Type/Type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Java/Type/Type.md -------------------------------------------------------------------------------- /Programming/JavaScript/JavaScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/JavaScript.md -------------------------------------------------------------------------------- /Programming/JavaScript/Lexical/Lexical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/Lexical/Lexical.md -------------------------------------------------------------------------------- /Programming/JavaScript/Type/Text/Text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/Type/Text/Text.md -------------------------------------------------------------------------------- /Programming/JavaScript/Type/Type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/Type/Type.js -------------------------------------------------------------------------------- /Programming/JavaScript/Type/Type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/Type/Type.md -------------------------------------------------------------------------------- /Programming/JavaScript/array/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/array/array.md -------------------------------------------------------------------------------- /Programming/JavaScript/atomics/atomics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/atomics/atomics.md -------------------------------------------------------------------------------- /Programming/JavaScript/closure/closure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/closure/closure.md -------------------------------------------------------------------------------- /Programming/JavaScript/easing/easing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/easing/easing.md -------------------------------------------------------------------------------- /Programming/JavaScript/es6/arrow_functions/arrow_functions.md: -------------------------------------------------------------------------------- 1 | # Arrow Functions 2 | 3 | -------------------------------------------------------------------------------- /Programming/JavaScript/es6/es6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/es6/es6.md -------------------------------------------------------------------------------- /Programming/JavaScript/estree/estree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/estree/estree.md -------------------------------------------------------------------------------- /Programming/JavaScript/jsdoc/jsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/jsdoc/jsdoc.md -------------------------------------------------------------------------------- /Programming/JavaScript/jsonp/jsonp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/jsonp/jsonp.md -------------------------------------------------------------------------------- /Programming/JavaScript/object/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/object/object.md -------------------------------------------------------------------------------- /Programming/JavaScript/reflect/reflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/reflect/reflect.md -------------------------------------------------------------------------------- /Programming/JavaScript/regular/regular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/regular/regular.md -------------------------------------------------------------------------------- /Programming/JavaScript/tc39/tc39.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/tc39/tc39.md -------------------------------------------------------------------------------- /Programming/JavaScript/wasm/wasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/wasm/wasm.md -------------------------------------------------------------------------------- /Programming/JavaScript/web_api/web_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/web_api/web_api.md -------------------------------------------------------------------------------- /Programming/JavaScript/web_api/xhr/xhr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/web_api/xhr/xhr.md -------------------------------------------------------------------------------- /Programming/JavaScript/webgl/SVG/SVG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/webgl/SVG/SVG.md -------------------------------------------------------------------------------- /Programming/JavaScript/webgl/glsl/glsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/webgl/glsl/glsl.md -------------------------------------------------------------------------------- /Programming/JavaScript/webgl/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/webgl/images/2.png -------------------------------------------------------------------------------- /Programming/JavaScript/webgl/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/webgl/images/3.jpg -------------------------------------------------------------------------------- /Programming/JavaScript/webgl/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/webgl/images/6.jpg -------------------------------------------------------------------------------- /Programming/JavaScript/webgl/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/webgl/images/7.jpg -------------------------------------------------------------------------------- /Programming/JavaScript/webgl/webgl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/JavaScript/webgl/webgl.md -------------------------------------------------------------------------------- /Programming/PHP/PHP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/PHP/PHP.md -------------------------------------------------------------------------------- /Programming/PHP/crash/array_operators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/PHP/crash/array_operators.png -------------------------------------------------------------------------------- /Programming/PHP/crash/crash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/PHP/crash/crash.md -------------------------------------------------------------------------------- /Programming/PHP/crash/example/example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/PHP/crash/example/example.sln -------------------------------------------------------------------------------- /Programming/PHP/laravel/cache/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/PHP/laravel/cache/cache.md -------------------------------------------------------------------------------- /Programming/PHP/laravel/conf/conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/PHP/laravel/conf/conf.md -------------------------------------------------------------------------------- /Programming/PHP/laravel/laravel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/PHP/laravel/laravel.md -------------------------------------------------------------------------------- /Programming/ProgrammingMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/ProgrammingMenu.md -------------------------------------------------------------------------------- /Programming/Shell/Shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Shell/Shell.md -------------------------------------------------------------------------------- /Programming/Shell/array/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/Shell/array/array.md -------------------------------------------------------------------------------- /Programming/TypeScript/TypeScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/TypeScript/TypeScript.md -------------------------------------------------------------------------------- /Programming/TypeScript/classes/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/TypeScript/classes/classes.md -------------------------------------------------------------------------------- /Programming/TypeScript/enums/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/TypeScript/enums/enums.md -------------------------------------------------------------------------------- /Programming/TypeScript/modules/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/TypeScript/modules/modules.md -------------------------------------------------------------------------------- /Programming/TypeScript/symbol/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/TypeScript/symbol/symbol.md -------------------------------------------------------------------------------- /Programming/TypeScript/types/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/TypeScript/types/types.md -------------------------------------------------------------------------------- /Programming/c/CJson/CJson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/c/CJson/CJson.md -------------------------------------------------------------------------------- /Programming/c/CJson/cjson.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/c/CJson/cjson.zip -------------------------------------------------------------------------------- /Programming/c/c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/c/c.md -------------------------------------------------------------------------------- /Programming/ruby/installation/cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/ruby/installation/cost.png -------------------------------------------------------------------------------- /Programming/ruby/installation/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/ruby/installation/version.png -------------------------------------------------------------------------------- /Programming/ruby/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Programming/ruby/ruby.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /Thought/OOP/OOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Thought/OOP/OOP.md -------------------------------------------------------------------------------- /Thought/ThoughtMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Thought/ThoughtMenu.md -------------------------------------------------------------------------------- /Thought/elegant/elegant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Thought/elegant/elegant.md -------------------------------------------------------------------------------- /Thought/recruitment/recruitment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/Thought/recruitment/recruitment.md -------------------------------------------------------------------------------- /Thought/simple/simple.md: -------------------------------------------------------------------------------- 1 | ##The laws of Simplicity (簡單法則) [Back](./../ThoughtMenu.md) 2 | 3 | - 4 | -------------------------------------------------------------------------------- /antirez/75/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/antirez/75/1.png -------------------------------------------------------------------------------- /antirez/75/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/antirez/75/2.png -------------------------------------------------------------------------------- /antirez/75/75.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/antirez/75/75.md -------------------------------------------------------------------------------- /antirez/antirez.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/antirez/antirez.md -------------------------------------------------------------------------------- /architecture/ATAM/ATAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/ATAM/ATAM.md -------------------------------------------------------------------------------- /architecture/ATAM/conceptual_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/ATAM/conceptual_flow.png -------------------------------------------------------------------------------- /architecture/ATAM/phases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/ATAM/phases.png -------------------------------------------------------------------------------- /architecture/ATAM/utility_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/ATAM/utility_tree.png -------------------------------------------------------------------------------- /architecture/QA/QA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/QA/QA.md -------------------------------------------------------------------------------- /architecture/QA/security/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/QA/security/security.md -------------------------------------------------------------------------------- /architecture/QA/usability/usability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/QA/usability/usability.md -------------------------------------------------------------------------------- /architecture/Style/Style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/Style/Style.md -------------------------------------------------------------------------------- /architecture/Style/centric/centric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/Style/centric/centric.md -------------------------------------------------------------------------------- /architecture/Style/dataflow/dataflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/Style/dataflow/dataflow.md -------------------------------------------------------------------------------- /architecture/Style/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/Style/style.png -------------------------------------------------------------------------------- /architecture/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/architecture.md -------------------------------------------------------------------------------- /architecture/document/class/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/class/class.md -------------------------------------------------------------------------------- /architecture/document/class/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/class/example.png -------------------------------------------------------------------------------- /architecture/document/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/document.md -------------------------------------------------------------------------------- /architecture/document/object/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/object/example.png -------------------------------------------------------------------------------- /architecture/document/object/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/object/object.md -------------------------------------------------------------------------------- /architecture/document/package/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/package/example.png -------------------------------------------------------------------------------- /architecture/document/package/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/package/package.md -------------------------------------------------------------------------------- /architecture/document/responsibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/responsibility.png -------------------------------------------------------------------------------- /architecture/document/state/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/state/example.png -------------------------------------------------------------------------------- /architecture/document/state/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/state/state.md -------------------------------------------------------------------------------- /architecture/document/timing/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/timing/example.png -------------------------------------------------------------------------------- /architecture/document/timing/timing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/timing/timing.md -------------------------------------------------------------------------------- /architecture/document/usecase/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/usecase/example.png -------------------------------------------------------------------------------- /architecture/document/usecase/usecase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/document/usecase/usecase.md -------------------------------------------------------------------------------- /architecture/pwa/pwa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/architecture/pwa/pwa.md -------------------------------------------------------------------------------- /coder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/coder.md -------------------------------------------------------------------------------- /contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/contribution.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/cover_book.jpg -------------------------------------------------------------------------------- /cover_book.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/cover_book.psd -------------------------------------------------------------------------------- /cover_read.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/cover_read.jpg -------------------------------------------------------------------------------- /cover_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/cover_read.png -------------------------------------------------------------------------------- /cover_read.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/cover_read.psd -------------------------------------------------------------------------------- /falcoon/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/falcoon/bg1.jpg -------------------------------------------------------------------------------- /falcoon/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/falcoon/bg2.jpg -------------------------------------------------------------------------------- /falcoon/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/falcoon/bg3.jpg -------------------------------------------------------------------------------- /falcoon/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/falcoon/bg4.jpg -------------------------------------------------------------------------------- /falcoon/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/falcoon/bg5.jpg -------------------------------------------------------------------------------- /falcoon/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/falcoon/bg6.jpg -------------------------------------------------------------------------------- /falcoon/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/falcoon/bg7.jpg -------------------------------------------------------------------------------- /falcoon/falcoon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/falcoon/falcoon.md -------------------------------------------------------------------------------- /frontend/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/frontend/frontend.md -------------------------------------------------------------------------------- /git/configuration/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/configuration/configuration.md -------------------------------------------------------------------------------- /git/get/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/get/get.md -------------------------------------------------------------------------------- /git/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/git.md -------------------------------------------------------------------------------- /git/git_commands/git_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/git_commands/git_commands.md -------------------------------------------------------------------------------- /git/model/centr-decentr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/model/centr-decentr@2x.png -------------------------------------------------------------------------------- /git/model/git-model@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/model/git-model@2x.png -------------------------------------------------------------------------------- /git/model/hotfix-branches@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/model/hotfix-branches@2x.png -------------------------------------------------------------------------------- /git/model/main-branches@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/model/main-branches@2x.png -------------------------------------------------------------------------------- /git/model/merge-without-ff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/model/merge-without-ff@2x.png -------------------------------------------------------------------------------- /git/model/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/model/model.md -------------------------------------------------------------------------------- /git/model/nvie-small@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/model/nvie-small@2x.jpg -------------------------------------------------------------------------------- /git/model/pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/model/pdf@2x.png -------------------------------------------------------------------------------- /git/patch/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/patch/patch.md -------------------------------------------------------------------------------- /git/record/file_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/record/file_status.png -------------------------------------------------------------------------------- /git/record/record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/record/record.md -------------------------------------------------------------------------------- /git/shrink_sizes/shrink_sizes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/shrink_sizes/shrink_sizes.md -------------------------------------------------------------------------------- /git/submodule/submodule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/git/submodule/submodule.md -------------------------------------------------------------------------------- /hacker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/hacker.md -------------------------------------------------------------------------------- /kenyahara/kenyahara.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/kenyahara/kenyahara.md -------------------------------------------------------------------------------- /kenyahara/white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/kenyahara/white.jpg -------------------------------------------------------------------------------- /photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/photo.png -------------------------------------------------------------------------------- /photo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/photo.psd -------------------------------------------------------------------------------- /post/1217_mission_of_shenzhen/map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/1217_mission_of_shenzhen/map1.png -------------------------------------------------------------------------------- /post/1217_mission_of_shenzhen/task1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/1217_mission_of_shenzhen/task1.png -------------------------------------------------------------------------------- /post/1217_mission_of_shenzhen/task2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/1217_mission_of_shenzhen/task2.png -------------------------------------------------------------------------------- /post/1217_mission_of_shenzhen/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/1217_mission_of_shenzhen/walk.png -------------------------------------------------------------------------------- /post/22_react_opensrc/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/1.gif -------------------------------------------------------------------------------- /post/22_react_opensrc/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/1.png -------------------------------------------------------------------------------- /post/22_react_opensrc/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/10.png -------------------------------------------------------------------------------- /post/22_react_opensrc/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/11.png -------------------------------------------------------------------------------- /post/22_react_opensrc/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/12.png -------------------------------------------------------------------------------- /post/22_react_opensrc/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/13.png -------------------------------------------------------------------------------- /post/22_react_opensrc/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/14.png -------------------------------------------------------------------------------- /post/22_react_opensrc/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/15.png -------------------------------------------------------------------------------- /post/22_react_opensrc/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/16.png -------------------------------------------------------------------------------- /post/22_react_opensrc/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/17.png -------------------------------------------------------------------------------- /post/22_react_opensrc/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/18.png -------------------------------------------------------------------------------- /post/22_react_opensrc/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/19.png -------------------------------------------------------------------------------- /post/22_react_opensrc/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/2.gif -------------------------------------------------------------------------------- /post/22_react_opensrc/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/2.png -------------------------------------------------------------------------------- /post/22_react_opensrc/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/20.png -------------------------------------------------------------------------------- /post/22_react_opensrc/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/21.png -------------------------------------------------------------------------------- /post/22_react_opensrc/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/3.gif -------------------------------------------------------------------------------- /post/22_react_opensrc/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/3.png -------------------------------------------------------------------------------- /post/22_react_opensrc/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/4.png -------------------------------------------------------------------------------- /post/22_react_opensrc/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/5.png -------------------------------------------------------------------------------- /post/22_react_opensrc/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/6.png -------------------------------------------------------------------------------- /post/22_react_opensrc/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/7.png -------------------------------------------------------------------------------- /post/22_react_opensrc/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/8.png -------------------------------------------------------------------------------- /post/22_react_opensrc/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/22_react_opensrc/9.png -------------------------------------------------------------------------------- /post/IDE/IDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/IDE/IDE.md -------------------------------------------------------------------------------- /post/base_frontend/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/1.gif -------------------------------------------------------------------------------- /post/base_frontend/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/1.png -------------------------------------------------------------------------------- /post/base_frontend/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/10.png -------------------------------------------------------------------------------- /post/base_frontend/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/11.png -------------------------------------------------------------------------------- /post/base_frontend/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/12.png -------------------------------------------------------------------------------- /post/base_frontend/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/13.png -------------------------------------------------------------------------------- /post/base_frontend/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/14.png -------------------------------------------------------------------------------- /post/base_frontend/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/15.png -------------------------------------------------------------------------------- /post/base_frontend/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/2.png -------------------------------------------------------------------------------- /post/base_frontend/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/3.png -------------------------------------------------------------------------------- /post/base_frontend/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/4.png -------------------------------------------------------------------------------- /post/base_frontend/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/5.png -------------------------------------------------------------------------------- /post/base_frontend/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/6.png -------------------------------------------------------------------------------- /post/base_frontend/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/7.png -------------------------------------------------------------------------------- /post/base_frontend/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/8.png -------------------------------------------------------------------------------- /post/base_frontend/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/9.png -------------------------------------------------------------------------------- /post/base_frontend/base_frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/base_frontend/base_frontend.md -------------------------------------------------------------------------------- /post/basics_of_css_blend_mode/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/basics_of_css_blend_mode/1.jpg -------------------------------------------------------------------------------- /post/css_blend_mode/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/css_blend_mode/1.png -------------------------------------------------------------------------------- /post/css_blend_mode/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/css_blend_mode/2.png -------------------------------------------------------------------------------- /post/css_blend_mode/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/css_blend_mode/3.png -------------------------------------------------------------------------------- /post/css_blend_mode/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/css_blend_mode/4.png -------------------------------------------------------------------------------- /post/css_blend_mode/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/css_blend_mode/5.png -------------------------------------------------------------------------------- /post/css_blend_mode/css_blend_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/css_blend_mode/css_blend_mode.md -------------------------------------------------------------------------------- /post/discover_city/discover_city.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/discover_city/discover_city.md -------------------------------------------------------------------------------- /post/dnn_2_image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/dnn_2_image/1.png -------------------------------------------------------------------------------- /post/dnn_2_image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/dnn_2_image/2.png -------------------------------------------------------------------------------- /post/dnn_2_image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/dnn_2_image/3.png -------------------------------------------------------------------------------- /post/dnn_2_image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/dnn_2_image/4.png -------------------------------------------------------------------------------- /post/dnn_2_image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/dnn_2_image/5.png -------------------------------------------------------------------------------- /post/dnn_2_image/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/dnn_2_image/6.png -------------------------------------------------------------------------------- /post/dnn_2_image/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/dnn_2_image/7.png -------------------------------------------------------------------------------- /post/dnn_2_image/dnn_2_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/dnn_2_image/dnn_2_image.md -------------------------------------------------------------------------------- /post/drawing_audio_waveforms/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/drawing_audio_waveforms/1.png -------------------------------------------------------------------------------- /post/drawing_audio_waveforms/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/drawing_audio_waveforms/2.png -------------------------------------------------------------------------------- /post/drawing_audio_waveforms/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/drawing_audio_waveforms/3.png -------------------------------------------------------------------------------- /post/drawing_audio_waveforms/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/drawing_audio_waveforms/4.png -------------------------------------------------------------------------------- /post/drawing_audio_waveforms/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/drawing_audio_waveforms/5.png -------------------------------------------------------------------------------- /post/drawing_audio_waveforms/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/drawing_audio_waveforms/6.png -------------------------------------------------------------------------------- /post/face_morph/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_morph/1.jpg -------------------------------------------------------------------------------- /post/face_morph/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_morph/2.jpg -------------------------------------------------------------------------------- /post/face_morph/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_morph/3.jpg -------------------------------------------------------------------------------- /post/face_morph/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_morph/4.jpg -------------------------------------------------------------------------------- /post/face_morph/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_morph/5.jpg -------------------------------------------------------------------------------- /post/face_morph/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_morph/6.jpg -------------------------------------------------------------------------------- /post/face_morph/face_morph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_morph/face_morph.md -------------------------------------------------------------------------------- /post/face_swap/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_swap/1.jpg -------------------------------------------------------------------------------- /post/face_swap/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_swap/2.jpg -------------------------------------------------------------------------------- /post/face_swap/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_swap/3.jpg -------------------------------------------------------------------------------- /post/face_swap/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_swap/4.jpg -------------------------------------------------------------------------------- /post/face_swap/face_swap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/face_swap/face_swap.md -------------------------------------------------------------------------------- /post/float_clear/float_clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/float_clear/float_clear.md -------------------------------------------------------------------------------- /post/heat_distortion/TextAntilope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/heat_distortion/TextAntilope.jpg -------------------------------------------------------------------------------- /post/heat_distortion/sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/heat_distortion/sine.png -------------------------------------------------------------------------------- /post/how_to_draw/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/how_to_draw/1.png -------------------------------------------------------------------------------- /post/how_to_draw/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/how_to_draw/2.png -------------------------------------------------------------------------------- /post/how_to_draw/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/how_to_draw/example.svg -------------------------------------------------------------------------------- /post/how_to_draw/how_to_draw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/how_to_draw/how_to_draw.md -------------------------------------------------------------------------------- /post/how_to_draw/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/how_to_draw/panel.png -------------------------------------------------------------------------------- /post/how_to_draw/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/how_to_draw/preview.png -------------------------------------------------------------------------------- /post/http_and_get/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/http_and_get/1.png -------------------------------------------------------------------------------- /post/http_and_get/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/http_and_get/2.png -------------------------------------------------------------------------------- /post/http_and_get/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/http_and_get/3.png -------------------------------------------------------------------------------- /post/http_and_get/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/http_and_get/4.png -------------------------------------------------------------------------------- /post/http_and_get/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/http_and_get/5.png -------------------------------------------------------------------------------- /post/http_and_get/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/http_and_get/6.png -------------------------------------------------------------------------------- /post/http_and_get/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/http_and_get/7.png -------------------------------------------------------------------------------- /post/http_and_get/http_and_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/http_and_get/http_and_get.md -------------------------------------------------------------------------------- /post/idn/idn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/idn/idn.md -------------------------------------------------------------------------------- /post/kaleidoscope/kaleidoscope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/kaleidoscope/kaleidoscope.md -------------------------------------------------------------------------------- /post/kaleidoscope/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/kaleidoscope/preview.png -------------------------------------------------------------------------------- /post/mingtocat/mingtocat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/mingtocat/mingtocat.md -------------------------------------------------------------------------------- /post/mingtocat/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/mingtocat/preview.gif -------------------------------------------------------------------------------- /post/mouse_event/mouse_event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/mouse_event/mouse_event.md -------------------------------------------------------------------------------- /post/opencv_vs_matlab/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/opencv_vs_matlab/1.jpg -------------------------------------------------------------------------------- /post/point_mesh/point_mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/point_mesh/point_mesh.md -------------------------------------------------------------------------------- /post/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/post.md -------------------------------------------------------------------------------- /post/prototype_of_javascript/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/prototype_of_javascript/1.jpg -------------------------------------------------------------------------------- /post/prototype_of_javascript/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/prototype_of_javascript/1.png -------------------------------------------------------------------------------- /post/prototype_of_javascript/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/prototype_of_javascript/2.png -------------------------------------------------------------------------------- /post/rain/RainEffects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/RainEffects.jpg -------------------------------------------------------------------------------- /post/rain/drop-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/drop-color.png -------------------------------------------------------------------------------- /post/rain/drop-color2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/drop-color2.png -------------------------------------------------------------------------------- /post/rain/drop-merged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/drop-merged.png -------------------------------------------------------------------------------- /post/rain/drop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/drop1.png -------------------------------------------------------------------------------- /post/rain/rain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/rain.md -------------------------------------------------------------------------------- /post/rain/raindrops-no-texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/raindrops-no-texture.jpg -------------------------------------------------------------------------------- /post/rain/screen1_dropdetail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/screen1_dropdetail.jpg -------------------------------------------------------------------------------- /post/rain/screen2_droptrail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/screen2_droptrail.jpg -------------------------------------------------------------------------------- /post/rain/texture-drizzle-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/texture-drizzle-bg.png -------------------------------------------------------------------------------- /post/rain/texture-drizzle-fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/texture-drizzle-fg.png -------------------------------------------------------------------------------- /post/rain/webgl-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/rain/webgl-1.png -------------------------------------------------------------------------------- /post/security_consultant/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/security_consultant/1.jpg -------------------------------------------------------------------------------- /post/so_a_web_designer/Unicorn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/so_a_web_designer/Unicorn.jpg -------------------------------------------------------------------------------- /post/so_a_web_designer/unicorn01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/so_a_web_designer/unicorn01.jpg -------------------------------------------------------------------------------- /post/so_a_web_designer/unicorn02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/so_a_web_designer/unicorn02.jpg -------------------------------------------------------------------------------- /post/so_a_web_designer/unicorn03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/so_a_web_designer/unicorn03.jpg -------------------------------------------------------------------------------- /post/style_svg_use/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/1.png -------------------------------------------------------------------------------- /post/style_svg_use/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/1_1.png -------------------------------------------------------------------------------- /post/style_svg_use/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/2.png -------------------------------------------------------------------------------- /post/style_svg_use/2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/2_1.png -------------------------------------------------------------------------------- /post/style_svg_use/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/3.png -------------------------------------------------------------------------------- /post/style_svg_use/3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/3_1.png -------------------------------------------------------------------------------- /post/style_svg_use/StylingSVGuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/StylingSVGuse.jpg -------------------------------------------------------------------------------- /post/style_svg_use/shadow-dom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/shadow-dom.jpg -------------------------------------------------------------------------------- /post/style_svg_use/style_svg_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/style_svg_use/style_svg_use.md -------------------------------------------------------------------------------- /post/topological_webgl/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/1.png -------------------------------------------------------------------------------- /post/topological_webgl/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/10.png -------------------------------------------------------------------------------- /post/topological_webgl/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/11.png -------------------------------------------------------------------------------- /post/topological_webgl/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/2.png -------------------------------------------------------------------------------- /post/topological_webgl/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/3.png -------------------------------------------------------------------------------- /post/topological_webgl/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/4.png -------------------------------------------------------------------------------- /post/topological_webgl/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/5.png -------------------------------------------------------------------------------- /post/topological_webgl/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/6.png -------------------------------------------------------------------------------- /post/topological_webgl/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/7.png -------------------------------------------------------------------------------- /post/topological_webgl/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/8.png -------------------------------------------------------------------------------- /post/topological_webgl/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/topological_webgl/9.png -------------------------------------------------------------------------------- /post/yolo/model2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/yolo/model2.png -------------------------------------------------------------------------------- /post/yolo/yolo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/post/yolo/yolo.md -------------------------------------------------------------------------------- /projectManagement/context/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/context/context.md -------------------------------------------------------------------------------- /projectManagement/cost/cost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/cost/cost.md -------------------------------------------------------------------------------- /projectManagement/cost/ev_formulas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/cost/ev_formulas.jpg -------------------------------------------------------------------------------- /projectManagement/cost/evc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/cost/evc.png -------------------------------------------------------------------------------- /projectManagement/cost/processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/cost/processes.png -------------------------------------------------------------------------------- /projectManagement/human/herzberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/human/herzberg.png -------------------------------------------------------------------------------- /projectManagement/human/human.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/human/human.md -------------------------------------------------------------------------------- /projectManagement/human/processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/human/processes.png -------------------------------------------------------------------------------- /projectManagement/human/raci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/human/raci.png -------------------------------------------------------------------------------- /projectManagement/human/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/human/ram.png -------------------------------------------------------------------------------- /projectManagement/projectManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/projectManagement.md -------------------------------------------------------------------------------- /projectManagement/quality/quality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/quality/quality.md -------------------------------------------------------------------------------- /projectManagement/quality/testing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/quality/testing.jpg -------------------------------------------------------------------------------- /projectManagement/review/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/review/review.md -------------------------------------------------------------------------------- /projectManagement/scope/correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/scope/correct.png -------------------------------------------------------------------------------- /projectManagement/scope/processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/scope/processes.png -------------------------------------------------------------------------------- /projectManagement/scope/rtm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/scope/rtm.png -------------------------------------------------------------------------------- /projectManagement/scope/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/scope/scope.md -------------------------------------------------------------------------------- /projectManagement/time/cpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/time/cpm.png -------------------------------------------------------------------------------- /projectManagement/time/processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/time/processes.png -------------------------------------------------------------------------------- /projectManagement/time/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/projectManagement/time/time.md -------------------------------------------------------------------------------- /qa/adddns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/adddns.md -------------------------------------------------------------------------------- /qa/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/amazon.png -------------------------------------------------------------------------------- /qa/android_ionic_cordova.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/android_ionic_cordova.md -------------------------------------------------------------------------------- /qa/asymmetric_keys_on_servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/asymmetric_keys_on_servers.md -------------------------------------------------------------------------------- /qa/atom_ubntu_32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/atom_ubntu_32.md -------------------------------------------------------------------------------- /qa/base64_js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/base64_js.md -------------------------------------------------------------------------------- /qa/better_browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/better_browser.md -------------------------------------------------------------------------------- /qa/better_browser_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/better_browser_icon1.png -------------------------------------------------------------------------------- /qa/better_browser_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/better_browser_icon2.png -------------------------------------------------------------------------------- /qa/better_browser_icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/better_browser_icon3.png -------------------------------------------------------------------------------- /qa/build_gr_rsm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/build_gr_rsm.md -------------------------------------------------------------------------------- /qa/build_virtual_AGC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/build_virtual_AGC.md -------------------------------------------------------------------------------- /qa/callback_in_php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/callback_in_php.md -------------------------------------------------------------------------------- /qa/cassandra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/cassandra.md -------------------------------------------------------------------------------- /qa/cassandra_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/cassandra_banner.jpg -------------------------------------------------------------------------------- /qa/cassandra_consistency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/cassandra_consistency.png -------------------------------------------------------------------------------- /qa/cassandra_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/cassandra_logo.png -------------------------------------------------------------------------------- /qa/cgi_difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/cgi_difference.md -------------------------------------------------------------------------------- /qa/charset_of_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/charset_of_files.md -------------------------------------------------------------------------------- /qa/check_PC_in_PHP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/check_PC_in_PHP.md -------------------------------------------------------------------------------- /qa/check_connecting_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/check_connecting_status.md -------------------------------------------------------------------------------- /qa/composerinstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/composerinstall.md -------------------------------------------------------------------------------- /qa/convert_json_to_md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/convert_json_to_md.md -------------------------------------------------------------------------------- /qa/cppreleasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/cppreleasing.md -------------------------------------------------------------------------------- /qa/crontablog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/crontablog.md -------------------------------------------------------------------------------- /qa/curl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/curl.md -------------------------------------------------------------------------------- /qa/defaultwindowsize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/defaultwindowsize.md -------------------------------------------------------------------------------- /qa/detectSquares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/detectSquares.md -------------------------------------------------------------------------------- /qa/detect_disabled_change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/detect_disabled_change.md -------------------------------------------------------------------------------- /qa/detect_ie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/detect_ie.md -------------------------------------------------------------------------------- /qa/difference_between_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/difference_between_storage.md -------------------------------------------------------------------------------- /qa/dlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib.md -------------------------------------------------------------------------------- /qa/dlib_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_1.png -------------------------------------------------------------------------------- /qa/dlib_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_10.png -------------------------------------------------------------------------------- /qa/dlib_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_11.png -------------------------------------------------------------------------------- /qa/dlib_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_12.png -------------------------------------------------------------------------------- /qa/dlib_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_13.png -------------------------------------------------------------------------------- /qa/dlib_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_14.png -------------------------------------------------------------------------------- /qa/dlib_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_15.png -------------------------------------------------------------------------------- /qa/dlib_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_16.png -------------------------------------------------------------------------------- /qa/dlib_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_17.png -------------------------------------------------------------------------------- /qa/dlib_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_18.png -------------------------------------------------------------------------------- /qa/dlib_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_19.png -------------------------------------------------------------------------------- /qa/dlib_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_2.png -------------------------------------------------------------------------------- /qa/dlib_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_20.png -------------------------------------------------------------------------------- /qa/dlib_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_3.png -------------------------------------------------------------------------------- /qa/dlib_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_4.png -------------------------------------------------------------------------------- /qa/dlib_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_5.png -------------------------------------------------------------------------------- /qa/dlib_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_6.png -------------------------------------------------------------------------------- /qa/dlib_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_7.png -------------------------------------------------------------------------------- /qa/dlib_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_8.png -------------------------------------------------------------------------------- /qa/dlib_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlib_9.png -------------------------------------------------------------------------------- /qa/dlibonlinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dlibonlinux.md -------------------------------------------------------------------------------- /qa/doctype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/doctype.md -------------------------------------------------------------------------------- /qa/double_boot_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/double_boot_system.md -------------------------------------------------------------------------------- /qa/dpkg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dpkg.md -------------------------------------------------------------------------------- /qa/dynamic_function_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/dynamic_function_name.md -------------------------------------------------------------------------------- /qa/eta_ate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/eta_ate.md -------------------------------------------------------------------------------- /qa/etag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/etag.md -------------------------------------------------------------------------------- /qa/ffmpeg_c_cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/ffmpeg_c_cpp.md -------------------------------------------------------------------------------- /qa/footercss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/footercss.md -------------------------------------------------------------------------------- /qa/fps_of_a_page/fps_of_a_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/fps_of_a_page/fps_of_a_page.md -------------------------------------------------------------------------------- /qa/free_cached_memory_in_Ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/free_cached_memory_in_Ubuntu.md -------------------------------------------------------------------------------- /qa/get_real_ip_with_php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/get_real_ip_with_php.md -------------------------------------------------------------------------------- /qa/gist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/gist.md -------------------------------------------------------------------------------- /qa/gist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/gist.png -------------------------------------------------------------------------------- /qa/git_chinese_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/git_chinese_windows.md -------------------------------------------------------------------------------- /qa/gitbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/gitbook.md -------------------------------------------------------------------------------- /qa/gitbook_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/gitbook_1.jpg -------------------------------------------------------------------------------- /qa/github_ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/github_ssh.md -------------------------------------------------------------------------------- /qa/gqxronlinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/gqxronlinux.md -------------------------------------------------------------------------------- /qa/hide_inputfile_ie8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/hide_inputfile_ie8.md -------------------------------------------------------------------------------- /qa/iframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/iframe.md -------------------------------------------------------------------------------- /qa/iframe_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/iframe_size.md -------------------------------------------------------------------------------- /qa/iniframe_javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/iniframe_javascript.md -------------------------------------------------------------------------------- /qa/interactjsmobile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/interactjsmobile.md -------------------------------------------------------------------------------- /qa/js_projects_with_lerna.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/js_projects_with_lerna.md -------------------------------------------------------------------------------- /qa/json2md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/json2md.png -------------------------------------------------------------------------------- /qa/json_encode_chinese_php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/json_encode_chinese_php.md -------------------------------------------------------------------------------- /qa/lerna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/lerna.png -------------------------------------------------------------------------------- /qa/linuxcommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/linuxcommands.md -------------------------------------------------------------------------------- /qa/mac_linux_boot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/mac_linux_boot.jpg -------------------------------------------------------------------------------- /qa/mac_linux_disk_utility.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/mac_linux_disk_utility.jpg -------------------------------------------------------------------------------- /qa/mac_linux_installer_partitions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/mac_linux_installer_partitions.jpg -------------------------------------------------------------------------------- /qa/master_slave_synchronization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/master_slave_synchronization.md -------------------------------------------------------------------------------- /qa/menubtncss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/menubtncss.md -------------------------------------------------------------------------------- /qa/mysql_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/mysql_log.md -------------------------------------------------------------------------------- /qa/navicateremoteaccess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/navicateremoteaccess.md -------------------------------------------------------------------------------- /qa/nodejsandnpmonwindows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/nodejsandnpmonwindows.md -------------------------------------------------------------------------------- /qa/opencvonlinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/opencvonlinux.md -------------------------------------------------------------------------------- /qa/osmocombbonlinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/osmocombbonlinux.md -------------------------------------------------------------------------------- /qa/parse_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/parse_json.md -------------------------------------------------------------------------------- /qa/pgp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/pgp.md -------------------------------------------------------------------------------- /qa/pgp_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/pgp_work.png -------------------------------------------------------------------------------- /qa/preview_image/preview_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/preview_image/preview_image.md -------------------------------------------------------------------------------- /qa/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/qa.md -------------------------------------------------------------------------------- /qa/rem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/rem.md -------------------------------------------------------------------------------- /qa/remove_restore_dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/remove_restore_dom.md -------------------------------------------------------------------------------- /qa/resloadjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/resloadjs.md -------------------------------------------------------------------------------- /qa/scroll/scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/scroll/scroll.md -------------------------------------------------------------------------------- /qa/scrollbar_width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/scrollbar_width.md -------------------------------------------------------------------------------- /qa/scrollbarcss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/scrollbarcss.md -------------------------------------------------------------------------------- /qa/scrollbarparts_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/scrollbarparts_thumb.png -------------------------------------------------------------------------------- /qa/set_up_portal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/set_up_portal.md -------------------------------------------------------------------------------- /qa/shadowsocks1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/shadowsocks1.jpeg -------------------------------------------------------------------------------- /qa/shadowsocks_on_vultr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/shadowsocks_on_vultr.md -------------------------------------------------------------------------------- /qa/shadowsocs2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/shadowsocs2.jpg -------------------------------------------------------------------------------- /qa/shellfor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/shellfor.md -------------------------------------------------------------------------------- /qa/smartPic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/smartPic.md -------------------------------------------------------------------------------- /qa/snook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/snook.png -------------------------------------------------------------------------------- /qa/specify_ssh_on_git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/specify_ssh_on_git.md -------------------------------------------------------------------------------- /qa/ssh-puttykey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/ssh-puttykey.png -------------------------------------------------------------------------------- /qa/sublimepluggin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/sublimepluggin.md -------------------------------------------------------------------------------- /qa/svncommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/svncommands.md -------------------------------------------------------------------------------- /qa/timestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/timestamp.md -------------------------------------------------------------------------------- /qa/tl_wn722n_ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/tl_wn722n_ubuntu.md -------------------------------------------------------------------------------- /qa/tlide_and_caret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/tlide_and_caret.md -------------------------------------------------------------------------------- /qa/trianglecss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/trianglecss.md -------------------------------------------------------------------------------- /qa/typesetting_css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/typesetting_css.md -------------------------------------------------------------------------------- /qa/ubuntuversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/ubuntuversion.md -------------------------------------------------------------------------------- /qa/uploadwithajax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/uploadwithajax.md -------------------------------------------------------------------------------- /qa/url_uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/url_uri.md -------------------------------------------------------------------------------- /qa/uta_atu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/uta_atu.md -------------------------------------------------------------------------------- /qa/value_of.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/value_of.md -------------------------------------------------------------------------------- /qa/virtualAGC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/virtualAGC.png -------------------------------------------------------------------------------- /qa/what_new_html5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/what_new_html5.md -------------------------------------------------------------------------------- /qa/wifidog_openwrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/wifidog_openwrt.png -------------------------------------------------------------------------------- /qa/win-8-ie-scrollbar_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/win-8-ie-scrollbar_thumb.jpg -------------------------------------------------------------------------------- /qa/xamppcpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/xamppcpp.md -------------------------------------------------------------------------------- /qa/zip_rar_tar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/qa/zip_rar_tar.md -------------------------------------------------------------------------------- /security_vulnerabilities/xxe/xxe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/security_vulnerabilities/xxe/xxe.md -------------------------------------------------------------------------------- /summary/1/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/1/1.md -------------------------------------------------------------------------------- /summary/1/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/1/2.md -------------------------------------------------------------------------------- /summary/1/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/1/3.md -------------------------------------------------------------------------------- /summary/1/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/1/4.md -------------------------------------------------------------------------------- /summary/2/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/2/1.md -------------------------------------------------------------------------------- /summary/2/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/2/2.md -------------------------------------------------------------------------------- /summary/2/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/2/3.md -------------------------------------------------------------------------------- /summary/2/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/2/4.md -------------------------------------------------------------------------------- /summary/3/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/3/1.md -------------------------------------------------------------------------------- /summary/3/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/3/2.md -------------------------------------------------------------------------------- /summary/3/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/3/3.md -------------------------------------------------------------------------------- /summary/3/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/3/4.md -------------------------------------------------------------------------------- /summary/architecture/architecture.md: -------------------------------------------------------------------------------- 1 | # Architecture 2 | 3 | -------------------------------------------------------------------------------- /summary/docker/container_explainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/docker/container_explainer.png -------------------------------------------------------------------------------- /summary/docker/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/docker/docker.md -------------------------------------------------------------------------------- /summary/docker/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/docker/en.md -------------------------------------------------------------------------------- /summary/docker/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/docker/logo.png -------------------------------------------------------------------------------- /summary/docker/tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/docker/tagger.png -------------------------------------------------------------------------------- /summary/docker/tagger_zn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/docker/tagger_zn.png -------------------------------------------------------------------------------- /summary/docker/zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/docker/zh.md -------------------------------------------------------------------------------- /summary/ffmpeg/ffmpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/ffmpeg/ffmpeg.md -------------------------------------------------------------------------------- /summary/format/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/format/format.md -------------------------------------------------------------------------------- /summary/gimp/gimp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/gimp/gimp.md -------------------------------------------------------------------------------- /summary/graduation/graduation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/graduation/graduation.md -------------------------------------------------------------------------------- /summary/gsm/architecture/architecture.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /summary/gsm/gsm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/gsm/gsm.md -------------------------------------------------------------------------------- /summary/gsm/stack/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/gsm/stack/stack.md -------------------------------------------------------------------------------- /summary/imagemagick/examp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/imagemagick/examp1.png -------------------------------------------------------------------------------- /summary/imagemagick/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/imagemagick/gimp.png -------------------------------------------------------------------------------- /summary/imagemagick/imagemagick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/imagemagick/imagemagick.md -------------------------------------------------------------------------------- /summary/imagemagick/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/imagemagick/logo.jpg -------------------------------------------------------------------------------- /summary/jpush/jpush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/jpush/jpush.md -------------------------------------------------------------------------------- /summary/m3u8/m3u8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/m3u8/m3u8.md -------------------------------------------------------------------------------- /summary/m3u8/official_document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/m3u8/official_document.pdf -------------------------------------------------------------------------------- /summary/redis/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/redis/logo.png -------------------------------------------------------------------------------- /summary/redis/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/redis/redis.md -------------------------------------------------------------------------------- /summary/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/summary/summary.md -------------------------------------------------------------------------------- /translation/align_svg/align_svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/align_svg/align_svg.md -------------------------------------------------------------------------------- /translation/apollo_11/apollo_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/apollo_11/apollo_11.md -------------------------------------------------------------------------------- /translation/opencv_vs_matlab/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/opencv_vs_matlab/1.jpg -------------------------------------------------------------------------------- /translation/react_aha/react_aha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/react_aha/react_aha.md -------------------------------------------------------------------------------- /translation/style_svg_use/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/style_svg_use/1.png -------------------------------------------------------------------------------- /translation/style_svg_use/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/style_svg_use/1_1.png -------------------------------------------------------------------------------- /translation/style_svg_use/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/style_svg_use/2.png -------------------------------------------------------------------------------- /translation/style_svg_use/2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/style_svg_use/2_1.png -------------------------------------------------------------------------------- /translation/style_svg_use/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/style_svg_use/3.png -------------------------------------------------------------------------------- /translation/style_svg_use/3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/style_svg_use/3_1.png -------------------------------------------------------------------------------- /translation/translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/translation/translation.md -------------------------------------------------------------------------------- /vi/opencv/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/vi/opencv/logo.png -------------------------------------------------------------------------------- /vi/opencv/opencv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/vi/opencv/opencv.md -------------------------------------------------------------------------------- /vi/vi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleen42/PersonalWiki/HEAD/vi/vi.md --------------------------------------------------------------------------------