├── .gitignore ├── Architecture ├── Code_design │ ├── Algorithms │ │ ├── Min_max │ │ │ ├── Heap │ │ │ │ └── deno_binary_heap.deno.txt │ │ │ └── min_max.theory.txt │ │ ├── Search │ │ │ ├── Search_tree │ │ │ │ ├── deno_red_black_tree.deno.txt │ │ │ │ └── search_tree.theory.txt │ │ │ ├── bidirectional_map.deno.txt │ │ │ ├── graph.theory.txt │ │ │ ├── hash_table.theory.txt │ │ │ ├── linked_list.theory.txt │ │ │ ├── random_access_array.theory.txt │ │ │ └── searching.theory.txt │ │ ├── Shuffle │ │ │ ├── shuffle.deno.txt │ │ │ └── shuffle.theory.txt │ │ ├── algorithms.theory.txt │ │ ├── information_theory.theory.txt │ │ ├── merge.theory.txt │ │ ├── shortest_path.theory.txt │ │ └── sorting.theory.txt │ ├── Requirements │ │ ├── abstraction.theory.txt │ │ ├── compatibility.theory.txt │ │ ├── extensibility.theory.txt │ │ ├── flexibility.theory.txt │ │ ├── interactivity.theory.txt │ │ ├── interchangeability.theory.txt │ │ ├── maintainability.theory.txt │ │ ├── modularity.theory.txt │ │ ├── requirements.theory.txt │ │ ├── reusability.theory.txt │ │ ├── software_rot.theory.txt │ │ └── stability.theory.txt │ ├── Software_methodology │ │ ├── domain_driven_design.theory.txt │ │ └── general_programming.theory.txt │ └── Types │ │ ├── Simple │ │ ├── bit.theory.txt │ │ ├── boolean.theory.txt │ │ ├── character.theory.txt │ │ ├── emptiness.theory.txt │ │ ├── enum.theory.txt │ │ ├── float_fixed_point.theory.txt │ │ ├── functions_programming.theory.txt │ │ ├── integers.theory.txt │ │ └── pointer_references.theory.txt │ │ ├── aggregate.theory.txt │ │ ├── object_oriented.theory.txt │ │ ├── polymorphism.theory.txt │ │ └── types.theory.txt ├── Dependencies │ ├── Compatibility │ │ ├── Deprecation_security │ │ │ └── Deprecation_security │ │ │ │ └── gemnasium.saas.txt │ │ ├── Upgrades_automation │ │ │ └── dependabot.saas.txt │ │ ├── Versioning │ │ │ ├── Changelog │ │ │ │ ├── Generation │ │ │ │ │ ├── conventional_changelog.node.txt │ │ │ │ │ └── headway.saas.txt │ │ │ │ └── changelog.theory.txt │ │ │ ├── SemVer │ │ │ │ ├── deno_semver.deno.txt │ │ │ │ ├── node-semver.node_cli.txt │ │ │ │ └── semver-diff.node.txt │ │ │ ├── Version_notification │ │ │ │ └── update-notifier.node.txt │ │ │ └── versioning.theory.txt │ │ └── standards_list.theory.txt │ ├── Dependency_loading │ │ ├── Autoloading │ │ │ └── PSR0_PSR4.php.txt │ │ └── Loaders │ │ │ ├── UMD.javascript.txt │ │ │ ├── browserify.node_cli.txt │ │ │ ├── loader_comparison.summary.txt │ │ │ ├── requirejs.javascript.txt │ │ │ ├── systemjs.node_cli.txt │ │ │ └── webpack.node_cli.txt │ ├── Dependency_manager │ │ ├── CDN │ │ │ ├── deno_land.deno.txt │ │ │ ├── esm_sh.saas.txt │ │ │ └── jsr.deno.txt │ │ ├── Client │ │ │ ├── bower.node_cli.txt │ │ │ ├── corepack.node.txt │ │ │ └── npm │ │ │ │ ├── global-directory.node.txt │ │ │ │ ├── normalize-package-data.node.txt │ │ │ │ ├── npm.node_cli.txt │ │ │ │ ├── npx.cli.txt │ │ │ │ ├── read-package-up.node.txt │ │ │ │ ├── read-pkg.node.txt │ │ │ │ └── write-package.node.txt │ │ ├── Publish │ │ │ ├── np.node.txt │ │ │ ├── publish-please.node.txt │ │ │ ├── release-it.node.txt │ │ │ └── release-please.node.txt │ │ └── Search │ │ │ └── pkg_go_dev.saas.txt │ ├── Packaging │ │ ├── Binary_OS_packages │ │ │ └── deno_compile.deno.txt │ │ └── OS_packages │ │ │ └── deb_packaging.theory.txt │ └── Runtime_manager │ │ ├── Deno │ │ └── dvm.deno.txt │ │ └── Node │ │ ├── n.node.txt │ │ └── nvm.node.txt ├── Functional │ ├── Functors │ │ ├── mimic-function.node.txt │ │ ├── node-function-name.node.txt │ │ └── rename-fn.node.txt │ ├── Immutable │ │ └── immutable.javascript.txt │ └── Utilities │ │ ├── Cartesian_product │ │ └── deno_permutation.deno.txt │ │ ├── Clone │ │ └── clone.node.txt │ │ ├── Equal │ │ ├── deep_equal.node.txt │ │ ├── fast-deep-equal.node.txt │ │ └── fast-equals.node.txt │ │ ├── Filter_arrays │ │ └── deno_map_non_nullish.deno.txt │ │ ├── Filter_objects │ │ ├── deno_filter.deno.txt │ │ ├── deno_omit_pick.deno.txt │ │ ├── filter-obj.node.txt │ │ ├── json-mask.node.txt │ │ └── omit.js.node.txt │ │ ├── Find │ │ └── deno_find.deno.txt │ │ ├── Get │ │ ├── dot-prop.node.txt │ │ ├── get-value.node.txt │ │ ├── object-path.javascript.txt │ │ └── safe-get-prop.node.txt │ │ ├── Group │ │ └── deno_group.deno.txt │ │ ├── Invert │ │ └── deno_invert.deno.txt │ │ ├── Join │ │ └── deno_join_to_string.deno.txt │ │ ├── Map_objects │ │ ├── deno_map.deno.txt │ │ └── map-obj.javascript.txt │ │ ├── Merge │ │ ├── deep-merge.node.txt │ │ ├── deepmerge.node.txt │ │ ├── deno_deep_merge.deno.txt │ │ └── merge-deep.node.txt │ │ ├── Once │ │ ├── once.node.txt │ │ └── onetime.node.txt │ │ ├── Partition │ │ └── deno_partition.deno.txt │ │ ├── Reduce │ │ └── deno_reduce.deno.txt │ │ ├── Set_operation │ │ └── deno_set_operation.deno.txt │ │ ├── Slice │ │ └── deno_take_drop.deno.txt │ │ ├── Sort_min_max │ │ ├── deno_sort_min_max.deno.txt │ │ └── sort-on.node.txt │ │ ├── Unique │ │ └── deno_distinct.deno.txt │ │ ├── Zip │ │ └── deno_zip.deno.txt │ │ ├── deno_sum.deno.txt │ │ ├── recompose.react.txt │ │ ├── reselect.node.txt │ │ └── underscore_lodash_immutable.javascript.txt ├── Performance │ ├── Async │ │ ├── Abstraction │ │ │ └── async-done.node.txt │ │ ├── Callbacks │ │ │ ├── async.javascript.txt │ │ │ ├── bach.node.txt │ │ │ └── now-and-later.node.txt │ │ ├── Debugging │ │ │ └── why-is-node-running.node.txt │ │ ├── Events │ │ │ ├── eventemitter2.javascript.txt │ │ │ ├── p-event.node.txt │ │ │ └── propagate.node.txt │ │ ├── Iterators │ │ │ └── async-iterator-all.node.txt │ │ ├── Promises │ │ │ ├── Cancel │ │ │ │ ├── deno_abort.deno.txt │ │ │ │ └── p-cancelable.node.txt │ │ │ ├── Detect │ │ │ │ ├── is-promise.node.txt │ │ │ │ └── p-is-promise.node.txt │ │ │ ├── Errors │ │ │ │ ├── p-finally.node.txt │ │ │ │ ├── p-reflect.node.txt │ │ │ │ └── p-settle.node.txt │ │ │ ├── Filter │ │ │ │ └── p-filter.node.txt │ │ │ ├── Find │ │ │ │ └── p-locate.node.txt │ │ │ ├── Helpers │ │ │ │ ├── bluebird.javascript.txt │ │ │ │ └── q.javascript.txt │ │ │ ├── Map │ │ │ │ ├── deno_pooled_map.deno.txt │ │ │ │ ├── p-all.node.txt │ │ │ │ ├── p-map-series.node.txt │ │ │ │ ├── p-map.node.txt │ │ │ │ ├── p-props.node.txt │ │ │ │ └── p-times.node.txt │ │ │ ├── Merge │ │ │ │ └── deno_mux_async_iterator.deno.txt │ │ │ ├── Normalize │ │ │ │ └── p-try.node.txt │ │ │ ├── Reduce │ │ │ │ ├── p-reduce.node.txt │ │ │ │ └── p-waterfall.node.txt │ │ │ ├── Split │ │ │ │ └── deno_tee.deno.txt │ │ │ ├── Test │ │ │ │ ├── p-every.node.txt │ │ │ │ └── p-one.node.txt │ │ │ └── Timeout │ │ │ │ └── deno_delay.deno.txt │ │ ├── Retry │ │ │ └── deno_retry.deno.txt │ │ ├── Signals │ │ │ ├── signal-exit.node.txt │ │ │ └── signal_handler.c.txt │ │ └── Streams │ │ │ ├── Combine │ │ │ ├── deno_stream_combine.deno.txt │ │ │ └── merge-streams.node.txt │ │ │ ├── Create │ │ │ ├── deno_streams_create.deno.txt │ │ │ └── from.node.txt │ │ │ ├── Detect │ │ │ └── is-stream.node.txt │ │ │ ├── Errors │ │ │ └── pump.node.txt │ │ │ ├── JSON │ │ │ ├── concatenated_json.format.txt │ │ │ ├── deno_json_sequence.deno.txt │ │ │ ├── json_sequence.format.txt │ │ │ ├── json_text_sequence.format.txt │ │ │ ├── jsonlines.format.txt │ │ │ ├── ndjson.format.txt │ │ │ └── ndjson.node_cli.txt │ │ │ ├── Mapping │ │ │ ├── concurrent-transform.node.txt │ │ │ ├── deno_stream_map.deno.txt │ │ │ ├── parallel-transform.node.txt │ │ │ ├── rapid-stream.node.txt │ │ │ ├── through.node.txt │ │ │ ├── through2-concurrent.node.txt │ │ │ ├── through2.node.txt │ │ │ └── throughv.node.txt │ │ │ ├── Slice │ │ │ └── deno_stream_slice.deno.txt │ │ │ ├── Split │ │ │ └── deno_stream_split.deno.txt │ │ │ ├── Waiting │ │ │ ├── end-of-stream.node.txt │ │ │ ├── get-stdin.node.txt │ │ │ ├── get-stream.node.txt │ │ │ ├── on-finished.node.txt │ │ │ ├── raw-body.node.txt │ │ │ ├── stream-to-array.node.txt │ │ │ └── stream-to-promise.node.txt │ │ │ └── event-stream.node.txt │ ├── Caching │ │ ├── Fingerprints │ │ │ └── versionator.express.txt │ │ ├── HTTP │ │ │ ├── Conditional │ │ │ │ ├── cacheable-request.node.txt │ │ │ │ ├── deno_etag.deno.txt │ │ │ │ ├── etag.node.txt │ │ │ │ ├── fresh.node.txt │ │ │ │ └── http-cache-semantics.node.txt │ │ │ └── Vary │ │ │ │ └── vary.node.txt │ │ ├── LRU │ │ │ ├── deno_lru.deno.txt │ │ │ ├── flru.javascript.txt │ │ │ ├── lru-cache.node.txt │ │ │ ├── quick-lru.javascript.txt │ │ │ └── tiny-lru.javascript.txt │ │ ├── Memoization │ │ │ ├── Distributed │ │ │ │ └── powertools_lambda_idempotency.node.txt │ │ │ └── Process │ │ │ │ ├── deno_memoize.deno.txt │ │ │ │ ├── fast-memoize.javascript.txt │ │ │ │ ├── memoize-one.node.txt │ │ │ │ ├── memoize.javascript.txt │ │ │ │ ├── micro-memoize.javascript.txt │ │ │ │ └── moize.javascript.txt │ │ └── caching.theory.txt │ ├── Compression │ │ ├── HTTP │ │ │ ├── compressible.node.txt │ │ │ ├── compression.express.txt │ │ │ ├── decompress-response.node.txt │ │ │ └── middy_http_content_encoding.middy.txt │ │ ├── Protocols │ │ │ ├── Brotli │ │ │ │ ├── brotli.js.node.txt │ │ │ │ └── iltorb.node.txt │ │ │ ├── Gzip │ │ │ │ └── gulp-gzip.gulp.txt │ │ │ ├── LZMA │ │ │ │ ├── decompress-tarxz.node.txt │ │ │ │ ├── js-lzma.javascript.txt │ │ │ │ ├── libarchivejs.javascript.txt │ │ │ │ ├── lzma-js.javascript.txt │ │ │ │ ├── lzma-native.node.txt │ │ │ │ ├── lzmajs.javascript.txt │ │ │ │ └── node-xz.node.txt │ │ │ └── zpaq │ │ │ │ └── libzpaq.c++.txt │ │ ├── Types │ │ │ └── Varint │ │ │ │ ├── varint.deno.txt │ │ │ │ └── varint.theory.txt │ │ ├── compression.theory.txt │ │ └── compression_algos.theory.txt │ ├── Concurrency │ │ ├── Debugging │ │ │ └── go_concurrency_debugging.cli.txt │ │ ├── Locks │ │ │ └── deno_flocks.deno.txt │ │ └── concurrency.theory.txt │ ├── Lazy_calculation │ │ └── Lazy_loading │ │ │ ├── HTML_images │ │ │ └── jquery.lazyload.jquery.txt │ │ │ ├── Infinite_scrolling │ │ │ └── nginfinitescroll.angular.txt │ │ │ └── Pagination │ │ │ ├── express-paginate.express.txt │ │ │ └── jquery-bootstrap-pagination.bootstrap.txt │ ├── Limiting │ │ ├── Concurrency │ │ │ └── p-limit.node.txt │ │ ├── Debounce │ │ │ ├── debounce-fn.node.txt │ │ │ ├── deno_debounce.deno.txt │ │ │ └── p-debounce.node.txt │ │ ├── Throttle │ │ │ ├── Rate_limiting │ │ │ │ ├── express-rate-limit.node.txt │ │ │ │ └── token_bucket.theory.txt │ │ │ └── Utilities │ │ │ │ ├── deno_throttle.deno.txt │ │ │ │ └── p-throttle.node.txt │ │ └── Timeout │ │ │ ├── Server │ │ │ ├── connect-timeout.express.txt │ │ │ └── toobusy.node.txt │ │ │ ├── delay.node.txt │ │ │ └── p-timeout.node.txt │ ├── Memory_management │ │ ├── garbage_collection.theory.txt │ │ ├── memory_management.theory.txt │ │ └── virtual_memory.theory.txt │ ├── Parallelism │ │ └── parallellism.theory.txt │ ├── Performance_analytics │ │ └── Client_side │ │ │ ├── phantomas.node_cli.txt │ │ │ └── response-time.express.txt │ ├── Performance_debugging │ │ ├── Flame_graphs │ │ │ ├── davidmarkclements_0x.node.txt │ │ │ ├── flamegraph.node.txt │ │ │ └── stackvis.node.txt │ │ └── Profiling │ │ │ └── go_profiling.cli.txt │ ├── Performance_testing │ │ ├── Benchmark │ │ │ ├── benchmark.js.javascript.txt │ │ │ ├── benchmarkjs.javascript.txt │ │ │ ├── deno_bench.deno.txt │ │ │ ├── go_test_bench.cli.txt │ │ │ ├── matcha.javascript.txt │ │ │ ├── nanobench.javascript.txt │ │ │ ├── speedracergg.javascript.txt │ │ │ └── wedgetail.javascript.txt │ │ ├── Duration_timing │ │ │ ├── hirestime.javascript.txt │ │ │ ├── marky.javascript.txt │ │ │ ├── nanotimer.javascript.txt │ │ │ └── perfy.javascript.txt │ │ ├── Load_testing │ │ │ └── tsung.cli.txt │ │ ├── Now │ │ │ ├── browser-process-hrtime.javascript.txt │ │ │ ├── perfnow.js.javascript.txt │ │ │ └── performance-now.javascript.txt │ │ └── Stopwatch │ │ │ ├── easytimer.javascript.txt │ │ │ ├── pauseable.js.javascript.txt │ │ │ ├── timer-stopwatch.javascript.txt │ │ │ └── timer.js.javascript.txt │ ├── Precalculation │ │ ├── Pooling │ │ │ └── generic-pool.node.txt │ │ └── precalculation.theory.txt │ ├── cpu_optimization.theory.txt │ └── performance.theory.txt └── Security │ ├── Authentication │ ├── Common_websites │ │ └── cognito.aws.txt │ ├── Framework │ │ └── passport.express.txt │ ├── HTTP │ │ ├── basic-auth.javascript.txt │ │ └── web_authentication.http.txt │ └── JWT │ │ ├── jws.node.txt │ │ ├── jwt.format.txt │ │ └── pgjwt.postgres.txt │ ├── Authorization │ ├── Framework │ │ ├── IAM.aws.txt │ │ ├── STS.aws.txt │ │ └── connect-roles.express.txt │ ├── OAuth │ │ ├── Client │ │ │ └── oauth_js.javascript.txt │ │ ├── Server │ │ │ ├── oauth2orize.node.txt │ │ │ └── passport-oauth2.express.txt │ │ └── oauth.protocol.txt │ └── authorization.theory.txt │ ├── Cryptography │ ├── Algorithm │ │ ├── General │ │ │ ├── Hash │ │ │ │ ├── hash_function.theory.txt │ │ │ │ └── pwd.node.txt │ │ │ ├── block_ciphers.theory.txt │ │ │ ├── crypto_padding.theory.txt │ │ │ ├── mac_digital_signature.theory.txt │ │ │ └── stream_ciphers.theory.txt │ │ └── Specific │ │ │ ├── algo_mac.theory.txt │ │ │ └── algos_classiques.theory.txt │ ├── Certifications │ │ └── certifications.theory.txt │ ├── Checksum │ │ └── luhn.format.txt │ ├── Cryptanalyse │ │ ├── Brute_force │ │ │ └── express-brute.express.txt │ │ ├── crypta_attacks.theory.txt │ │ ├── crypta_classique_attacks.theory.txt │ │ └── cryptanalyse.theory.txt │ ├── Database │ │ └── vault.postgres.txt │ ├── Email │ │ └── openPGP.gui.txt │ ├── History │ │ └── histoire_crypto.theory.txt │ ├── Key │ │ ├── crypto_key.format.txt │ │ └── keygrip.node.txt │ ├── Legal │ │ └── crypto_laws.theory.txt │ ├── Random │ │ ├── interval_random.deno.txt │ │ ├── pgc32.deno.txt │ │ └── random.theory.txt │ └── Theory │ │ ├── asymetric_crypto.theory.txt │ │ ├── authentication.theory.txt │ │ ├── crypto_general.theory.txt │ │ ├── crypto_goals.theory.txt │ │ ├── crypto_hardware.theory.txt │ │ ├── crypto_systems.theory.txt │ │ └── information_security.theory.txt │ ├── Privacy │ ├── Fingerprinting │ │ └── fingerprinting.theory.txt │ ├── Referrer │ │ └── referrer.theory.txt │ └── tracking.theory.txt │ ├── Security_general │ ├── Injection │ │ ├── XSS │ │ │ ├── CSP │ │ │ │ └── CSP.theory.txt │ │ │ ├── Sanitize │ │ │ │ └── HTML │ │ │ │ │ └── deno_escape.deno.txt │ │ │ └── xss.theory.txt │ │ └── injection.theory.txt │ ├── Isolation │ │ ├── Origins │ │ │ ├── CORS │ │ │ │ ├── cors.express.txt │ │ │ │ ├── cors.theory.txt │ │ │ │ └── middy_cors.middy.txt │ │ │ ├── CSRF │ │ │ │ ├── csrf.theory.txt │ │ │ │ └── csurf.express.txt │ │ │ ├── clickjacking.theory.txt │ │ │ ├── corp.theory.txt │ │ │ ├── same_origin_policy.theory.txt │ │ │ └── window_opener.theory.txt │ │ └── Process │ │ │ └── web_process_isolation.theory.txt │ ├── Permissions │ │ └── web_permissions.theory.txt │ ├── Sniffing │ │ └── sniffing.theory.txt │ ├── Web │ │ ├── helmet.express.txt │ │ ├── middy-security-headers.middy.txt │ │ └── web_security.theory.txt │ └── normalization_security.theory.txt │ └── Steganography │ ├── steganography.theory.txt │ └── stego_logiciels.cli_gui.txt ├── Business ├── Law │ ├── licences.theory.txt │ ├── pci_dss.theory.txt │ └── psd2.theory.txt ├── Money │ └── Payment │ │ └── stripe.saas.txt ├── Office │ ├── Project_management │ │ ├── Pivotal_Tracker.saas.txt │ │ └── project_management.theory.txt │ └── Team_management │ │ ├── people_management.theory.txt │ │ └── team_management.theory.txt └── Promotion │ ├── Ads │ └── Badges │ │ └── shields.io.images.txt │ └── SEO │ └── SEO.theory.txt ├── Communication └── Messaging │ ├── Chat │ └── General │ │ └── gitter.im.saas.txt │ └── MIME │ ├── Content_negotiation │ ├── deno_negotiation.deno.txt │ ├── middy_http_content_negotiation.middy.txt │ └── negotiator_accepts.node.txt │ ├── Content_type │ └── content-type.node.txt │ ├── Extensions │ ├── mime-db.json.txt │ ├── mime-types.node.txt │ └── mime.node.txt │ ├── Matching │ └── type-is.node.txt │ └── Parsing │ ├── media-typer.node.txt │ └── media_types.deno.txt ├── Data ├── Data_management │ ├── Fake_data │ │ ├── Composite │ │ │ └── json-schema-faker.node.txt │ │ ├── Generic │ │ │ ├── casual.node.txt │ │ │ ├── chance.javascript.txt │ │ │ └── faker.js.javascript.txt │ │ ├── Programming_language │ │ │ └── eslump.node.txt │ │ ├── RegExp │ │ │ └── randexp.javascript.txt │ │ └── mocker-data-generator.javascript.txt │ ├── ORM │ │ ├── Key_value │ │ │ ├── keyv.node.txt │ │ │ └── powertools_lambda_parameters.aws.txt │ │ └── Many_types │ │ │ └── waterline.node.txt │ └── Validation │ │ ├── API_request_response │ │ ├── api_request_response_validation.summary.txt │ │ └── middy_validator.middy.txt │ │ ├── DOM_binding │ │ └── JavaScript │ │ │ ├── backbone-validation.backbone.txt │ │ │ └── redux-form.redux.txt │ │ ├── General │ │ ├── JSON_schema │ │ │ ├── JSON_schema.format.txt │ │ │ ├── Registry │ │ │ │ └── eventbridge_schemas.aws.txt │ │ │ └── Validation │ │ │ │ ├── ajv.javascript.txt │ │ │ │ ├── amanda.javascript.txt │ │ │ │ ├── is-my-json-valid.node.txt │ │ │ │ ├── jayschema.javascript.txt │ │ │ │ ├── jest-json-schema.javascript.txt │ │ │ │ ├── jsen.javascript.txt │ │ │ │ ├── jsonschema.node.txt │ │ │ │ ├── jsv.javascript.txt │ │ │ │ ├── kriszyp_json_schema.javascript.txt │ │ │ │ ├── pg_jsonschema.postgres.txt │ │ │ │ ├── revalidator.javascript.txt │ │ │ │ ├── tv4.javascript.txt │ │ │ │ └── z-schema.javascript.txt │ │ ├── JTD │ │ │ └── JTD.format.txt │ │ ├── approvejs.javascript.txt │ │ ├── async-validator.javascript.txt │ │ ├── indicative.javascript.txt │ │ ├── jest-validate.node.txt │ │ ├── joi.node.txt │ │ ├── obey.javascript.txt │ │ ├── schm.javascript.txt │ │ ├── skema.javascript.txt │ │ ├── spected.javascript.txt │ │ ├── structure.javascript.txt │ │ ├── superstruct.javascript.txt │ │ ├── swagger-model-validator.javascript.txt │ │ ├── valid.js.javascript.txt │ │ ├── validate.js.javascript.txt │ │ ├── validatorjs.javascript.txt │ │ ├── whitelister.javascript.txt │ │ └── yup.javascript.txt │ │ ├── Specific_types │ │ ├── is-mergeable-object.node.txt │ │ ├── is-plain-obj.node.txt │ │ └── is-plain-objects.javascript.txt │ │ └── validation.theory.txt ├── Data_types │ ├── Data_format │ │ └── data_format.theory.txt │ ├── Documents │ │ └── mongodb.database.txt │ ├── Flat_tables │ │ └── s3_tables.aws.txt │ ├── Key_value │ │ └── Structured │ │ │ ├── elasticache.database.txt │ │ │ └── redis.database.txt │ ├── Offline │ │ ├── Databases │ │ │ ├── Client_only │ │ │ │ ├── Browser_local │ │ │ │ │ └── Single_value │ │ │ │ │ │ └── lowdb.node.txt │ │ │ │ └── Browser_only │ │ │ │ │ └── Key_value │ │ │ │ │ └── localforage.javascript.txt │ │ │ └── Local │ │ │ │ └── On_disk │ │ │ │ └── deno_kv.deno.txt │ │ └── utilities │ │ │ └── offline.javascript.txt │ └── Relations │ │ ├── Database │ │ ├── postgres.database.txt │ │ └── rds.aws.txt │ │ ├── Population │ │ ├── backbone-relational.backbone.txt │ │ └── normalizr.javascript.txt │ │ └── SQL │ │ └── Sanitize │ │ └── sql_template_tag.javascript.txt ├── Files │ ├── Distributed_filesystem │ │ └── Protocols │ │ │ └── FTP.protocol.txt │ ├── Files_general │ │ ├── Archives │ │ │ ├── Tar │ │ │ │ ├── deno_tar.deno.txt │ │ │ │ ├── gulp-tar.gulp.txt │ │ │ │ ├── node-tar.node.txt │ │ │ │ ├── tar-stream.node.txt │ │ │ │ └── tar.cli.txt │ │ │ └── Zip │ │ │ │ ├── adm-zip.node.txt │ │ │ │ ├── jszip.javascript.txt │ │ │ │ ├── node-archiver.node.txt │ │ │ │ ├── node-native-zip.node.txt │ │ │ │ ├── node-stream-zip.node.txt │ │ │ │ ├── node-unzip.node.txt │ │ │ │ ├── node-zip-stream.node.txt │ │ │ │ ├── node-zip.node.txt │ │ │ │ ├── node-zipstream.node.txt │ │ │ │ ├── yauzl.node.txt │ │ │ │ ├── yazl.node.txt │ │ │ │ └── zip.js.node.txt │ │ ├── Commands │ │ │ ├── Cache_files │ │ │ │ └── find-cache-dir.node.txt │ │ │ ├── Check │ │ │ │ ├── deno_exists.deno.txt │ │ │ │ ├── locate-path.node.txt │ │ │ │ ├── path-exists.node.txt │ │ │ │ └── path-type.node.txt │ │ │ ├── Copy │ │ │ │ ├── copy-file.node.txt │ │ │ │ ├── cpy.node.txt │ │ │ │ └── deno_copy.deno.txt │ │ │ ├── Create_directory │ │ │ │ ├── deno_mkdir.deno.txt │ │ │ │ ├── make-dir.node.txt │ │ │ │ └── mkdirp.node.txt │ │ │ ├── Delete │ │ │ │ ├── del.node.txt │ │ │ │ ├── deno_remove.deno.txt │ │ │ │ └── rimraf.node.txt │ │ │ ├── Ensure │ │ │ │ └── deno_ensure.deno.txt │ │ │ ├── Error_handling │ │ │ │ └── graceful-fs.node.txt │ │ │ ├── Find │ │ │ │ ├── Globbing │ │ │ │ │ ├── deno_expand_glob.deno.txt │ │ │ │ │ ├── glob-stream.node.txt │ │ │ │ │ └── glob.node.txt │ │ │ │ └── Root │ │ │ │ │ ├── escalade.node.txt │ │ │ │ │ ├── find-up.node.txt │ │ │ │ │ └── pkg-dir.node.txt │ │ │ ├── Hard_links │ │ │ │ └── deno_link.deno.txt │ │ │ ├── List │ │ │ │ ├── Deep │ │ │ │ │ ├── deno_walk.deno.txt │ │ │ │ │ ├── fs-readdir-recursive.node.txt │ │ │ │ │ ├── readdir-enhanced.node.txt │ │ │ │ │ ├── readdirp.node.txt │ │ │ │ │ └── recursive-readdir.node.txt │ │ │ │ └── Shallow │ │ │ │ │ └── deno_readdir.deno.txt │ │ │ ├── Metadata │ │ │ │ └── deno_stat.deno.txt │ │ │ ├── Move │ │ │ │ ├── deno_rename.deno.txt │ │ │ │ ├── move-concurrently.node.txt │ │ │ │ ├── move-file.node.txt │ │ │ │ └── node-mv.node.txt │ │ │ ├── Open │ │ │ │ └── deno_open.deno.txt │ │ │ ├── Read │ │ │ │ └── deno_read_file.deno.txt │ │ │ ├── Symlinks │ │ │ │ ├── Create │ │ │ │ │ └── deno_symlink.deno.txt │ │ │ │ └── Read │ │ │ │ │ └── deno_readlink.deno.txt │ │ │ ├── Temporary_files │ │ │ │ ├── deno_temp.deno.txt │ │ │ │ ├── node-temp.node.txt │ │ │ │ ├── node-tmp.node.txt │ │ │ │ ├── temp-dir.node.txt │ │ │ │ ├── temp-write.node.txt │ │ │ │ ├── tempfile.node.txt │ │ │ │ └── tempy.node.txt │ │ │ ├── Truncate │ │ │ │ └── deno_truncate.deno.txt │ │ │ ├── Unnecessary_files │ │ │ │ └── junk.node.txt │ │ │ ├── Watch │ │ │ │ ├── chokidar.node.txt │ │ │ │ ├── deno_watch.deno.txt │ │ │ │ ├── gaze.node.txt │ │ │ │ └── glob-watcher.node.txt │ │ │ └── Write │ │ │ │ ├── Atomic │ │ │ │ ├── fast-write-atomic.node.txt │ │ │ │ ├── fs-write-stream-atomic.node.txt │ │ │ │ ├── steno.node.txt │ │ │ │ ├── write-file-atomic.node.txt │ │ │ │ └── write-files-atomic.node.txt │ │ │ │ └── Generic │ │ │ │ └── deno_write_file.deno.txt │ │ ├── File_paths │ │ │ └── deno_path.deno.txt │ │ ├── Filesystem_abstraction │ │ │ ├── deno_io.deno.txt │ │ │ ├── file_descriptor.os.txt │ │ │ └── vinyl.node.txt │ │ └── file_uri_scheme.identifier.txt │ └── Virtual_filesystem │ │ └── Fuse │ │ └── s3fs_fuse.cli.txt ├── Markup │ ├── HTML │ │ ├── HTML.language.txt │ │ └── Transpiler │ │ │ └── jade.language.txt │ ├── Markdown │ │ ├── Parsing │ │ │ └── markdown-link-extractor.node.txt │ │ ├── Rendering │ │ │ └── marked.node_cli.txt │ │ └── Syntax │ │ │ └── markdown.language.txt │ └── Templates │ │ ├── Flat_strings │ │ ├── deno_printf.deno.txt │ │ └── sprintf.js.javascript.txt │ │ ├── HTML │ │ └── classnames.javascript.txt │ │ ├── Strings │ │ ├── consolidate.node.txt │ │ └── mustache_hogan_handlebars.node_cli.txt │ │ └── URI │ │ ├── uri-templates.javascript.txt │ │ └── uri_templates.format.txt ├── Serialization │ ├── Binary │ │ └── Utilities │ │ │ └── deno_binary.deno.txt │ ├── Concatenation │ │ └── Front-matter │ │ │ ├── front-matter.node.txt │ │ │ ├── front_matter.deno.txt │ │ │ ├── gray-matter.node.txt │ │ │ └── markdown-to-json.cli.txt │ ├── JSON_like │ │ ├── CSON │ │ │ ├── cson.format.txt │ │ │ └── cson_parser.node_cli.txt │ │ ├── ESON │ │ │ └── eson.node.txt │ │ ├── HJSON │ │ │ ├── hjson-js.javascript_cli.txt │ │ │ └── hjson.format.txt │ │ ├── JSON │ │ │ ├── Beautification │ │ │ │ └── prettyjson.node_cli.txt │ │ │ ├── Canonical │ │ │ │ ├── canonical-json.javascript.txt │ │ │ │ ├── fast-json-stable-stringify.javascript.txt │ │ │ │ ├── fast-safe-stringify.node.txt │ │ │ │ ├── json-stable-stringify.javascript.txt │ │ │ │ ├── json_canonical_form.format.txt │ │ │ │ └── son.haskell.txt │ │ │ ├── Circular │ │ │ │ ├── circular-json-es6.node.txt │ │ │ │ ├── circular-json.javascript.txt │ │ │ │ ├── json-js-cycle.javascript.txt │ │ │ │ ├── json-stringify-safe.node.txt │ │ │ │ └── safe-json-stringify.node.txt │ │ │ ├── Parser_serializer │ │ │ │ └── json-js.javascript.txt │ │ │ ├── Syntax │ │ │ │ └── json.format.txt │ │ │ └── Viewer_editor │ │ │ │ ├── json_formatter.chrome-extension.txt │ │ │ │ ├── json_view_for_chrome.chrome-extension.txt │ │ │ │ └── json_viewer.chrome-extension.txt │ │ ├── JSON5 │ │ │ ├── JSON5.format.txt │ │ │ └── json5.javascript.txt │ │ └── JSONC │ │ │ ├── deno_jsonc.deno.txt │ │ │ └── jsonc.format.txt │ ├── Memory_efficient │ │ └── Protobuf │ │ │ ├── protobuf.format.txt │ │ │ └── protobufjs.javascript.txt │ ├── Print │ │ ├── concordance.node.txt │ │ ├── deno_inspect.deno.txt │ │ ├── jsfmt.javascript.txt │ │ └── pretty-format.javascript.txt │ ├── Query │ │ └── JSON │ │ │ ├── JMESPath │ │ │ ├── jmespath.format.txt │ │ │ └── powertools_lambda_jmespath.node.txt │ │ │ ├── JSON_path │ │ │ ├── dchester_jsonpath.javascript.txt │ │ │ ├── f5io_jsonpath.node.txt │ │ │ ├── fastpath.node.txt │ │ │ ├── jquery_jsonpath.javascript.txt │ │ │ ├── jsonpath.format.txt │ │ │ └── s3u_jsonpath.node.txt │ │ │ ├── JSON_pointer │ │ │ ├── json-pointer.node.txt │ │ │ ├── json-ptr.javascript.txt │ │ │ ├── json_pointer.format.txt │ │ │ ├── jsonpointer.js.javascript.txt │ │ │ └── node-jsonpointer.node.txt │ │ │ └── jsonata.node.txt │ ├── Schemaful │ │ └── XML │ │ │ └── Syntax │ │ │ └── XML.format.txt │ ├── Simplistic │ │ ├── INI │ │ │ ├── Parser_serializer │ │ │ │ ├── deno_ini.deno.txt │ │ │ │ └── ini_node.node.txt │ │ │ └── ini.format.txt │ │ └── TOML │ │ │ ├── Parsers_serializers │ │ │ ├── toml-node.javascript.txt │ │ │ └── toml.deno.txt │ │ │ └── toml.format.txt │ ├── Table │ │ ├── CSV │ │ │ ├── Parser_serializer │ │ │ │ ├── csv.deno.txt │ │ │ │ └── csv.node.txt │ │ │ └── Syntax │ │ │ │ └── dsv_tsv_csv.format.txt │ │ └── Excel │ │ │ └── Parsing_serializing │ │ │ └── xlsx.javascript.txt │ ├── Type_rich │ │ └── YAML │ │ │ ├── Beautifier │ │ │ └── prettier_yaml.node_cli.txt │ │ │ ├── Linting │ │ │ └── yamllint.cli.txt │ │ │ ├── Parser_serializer │ │ │ ├── deno_yaml.deno.txt │ │ │ ├── js-yaml.javascript.txt │ │ │ └── yaml.js.javascript.txt │ │ │ └── yaml.format.txt │ └── serialization_formats.summary.txt └── State │ ├── Client_server_state │ ├── Cookies │ │ ├── Parsing │ │ │ ├── Request │ │ │ │ ├── cookie-parser.express.txt │ │ │ │ ├── deno_cookie.deno.txt │ │ │ │ └── middy_aws_cookie_parser.middy.txt │ │ │ └── String │ │ │ │ ├── cookie.node.txt │ │ │ │ ├── jquery-cookie.jquery.txt │ │ │ │ └── js-cookie.javascript.txt │ │ ├── Session │ │ │ └── express-session.express.txt │ │ ├── Sign │ │ │ ├── cookie-signature.node.txt │ │ │ └── deno_cookie_sign.deno.txt │ │ └── cookies.theory.txt │ └── General │ │ ├── connect-flash.express.txt │ │ └── express-state.express.txt │ ├── Databases_general │ └── database_theory.theory.txt │ ├── Identifiers │ ├── Decentralized │ │ ├── ULID │ │ │ ├── ulid.deno.txt │ │ │ ├── ulid.identifier.txt │ │ │ └── ulid.javascript.txt │ │ ├── UUID │ │ │ ├── deno_uuid.deno.txt │ │ │ ├── uuid.identifier.txt │ │ │ └── uuidjs.node.txt │ │ ├── cuid2.javascript.txt │ │ ├── nanoid.javascript.txt │ │ └── snowflake.identifier.txt │ ├── Full-content │ │ └── data_uri.identifier.txt │ ├── Hash │ │ ├── ni.identifier.txt │ │ ├── pg_hashids.postgres.txt │ │ └── sigmund.node.txt │ ├── Human-friendly │ │ ├── nih.identifier.txt │ │ └── tag.identifier.txt │ ├── Others │ │ ├── doi.identifier.txt │ │ ├── oid.identifier.txt │ │ ├── publicid_fpi.identifier.txt │ │ └── urn.identifier.txt │ ├── URI │ │ ├── Manipulation │ │ │ ├── Path_parameters │ │ │ │ └── middy_http_urlencode_path_parser.middy.txt │ │ │ ├── Query_string │ │ │ │ └── qs.node.txt │ │ │ └── uri.js.javascript.txt │ │ └── URI.identifier.txt │ ├── identifiers.summary.txt │ └── web_architecture.theory.txt │ └── state.theory.txt ├── Data_science ├── Big_data │ └── big_data.theory.txt └── Computation │ └── Math │ ├── abstract_algebra.theory.txt │ ├── algebra.theory.txt │ ├── algebra_equations.theory.txt │ ├── analysis.theory.txt │ ├── arithmetic.theory.txt │ ├── calculus.theory.txt │ ├── combinatorics.theory.txt │ ├── financial_math.theory.txt │ ├── functions_math.theory.txt │ ├── game_theory.theory.txt │ ├── graph_theory.theory.txt │ ├── logic.theory.txt │ ├── math_summary.theory.txt │ ├── matrices.theory.txt │ ├── number_theory.theory.txt │ ├── numeral_history.theory.txt │ ├── numeral_systems.theory.txt │ ├── numerical_analysis.theory.txt │ ├── order_theory.theory.txt │ ├── set_theory.theory.txt │ ├── statistics_theory.theory.txt │ └── survey.theory.txt ├── Design ├── CSS │ └── General │ │ ├── CSS.language.txt │ │ └── CSS_in_JavaScript │ │ ├── aphrodite.javascript.txt │ │ ├── cssx.javascript.txt │ │ ├── jss.javascript.txt │ │ └── react-css.react.txt └── Visual │ ├── Animations │ └── Specific_animations │ │ └── General │ │ └── animate.css.css.txt │ ├── Colors │ ├── Manipulation │ │ ├── color-convert.node.txt │ │ └── tinycolor.node.txt │ └── Terminal │ │ ├── Apply │ │ ├── ansi-colors.node.txt │ │ ├── chalk.node_cli.txt │ │ ├── colorette.node.txt │ │ ├── colors.js.node.txt │ │ ├── deno_set_colors.deno.txt │ │ ├── kleur.node.txt │ │ └── yoctocolors.node.txt │ │ ├── Detection │ │ ├── deno_color_enabled.deno.txt │ │ └── supports-color.node.txt │ │ └── Gradients │ │ ├── gradient-string.node.txt │ │ └── tinygradient.node.txt │ └── Typography │ └── typography.theory.txt ├── DevOps ├── Configuration │ ├── Configuration_data │ │ ├── Dotenv │ │ │ └── dotenv.deno.txt │ │ ├── cosmiconfig.node.txt │ │ ├── docker-gen.docker.txt │ │ ├── dockerize.docker.txt │ │ └── rc.node.txt │ ├── Configuration_files │ │ ├── conf.node.txt │ │ └── configstore.node.txt │ └── Configuration_management │ │ └── opswork.aws.txt ├── Deployment │ ├── Continuous_integration │ │ ├── Helpers │ │ │ ├── ci-info.javascript.txt │ │ │ ├── ci-parallel-vars.node.txt │ │ │ ├── env-ci.node.txt │ │ │ └── is-ci.javascript.txt │ │ └── Services │ │ │ ├── docker_cloud.docker.txt │ │ │ ├── github_actions.saas.txt │ │ │ └── travis.saas.txt │ └── Deployment_general │ │ ├── Deploying │ │ ├── 12_factor.theory.txt │ │ ├── installating_files.theory.txt │ │ └── jamstack.theory.txt │ │ └── On_premise │ │ └── directconnect.aws.txt ├── Infrastructure │ ├── CDN │ │ ├── PaaS │ │ │ └── netlify.saas.txt │ │ └── cloudfront.aws.txt │ ├── FaaS_serverless │ │ ├── IaaS │ │ │ ├── Batch │ │ │ │ ├── middy_sqs_partial_batch_failure.middy.txt │ │ │ │ └── powertools_lambda_batch.aws.txt │ │ │ └── lambda.aws.txt │ │ └── PaaS │ │ │ └── deno_deploy.deno.txt │ ├── IaC │ │ ├── CloudFormation │ │ │ ├── Assets │ │ │ │ └── cdk_assets.aws.txt │ │ │ ├── CDK │ │ │ │ └── cdk.aws.txt │ │ │ ├── CI_CD │ │ │ │ ├── aws_cloudformation_github_deploy.github.txt │ │ │ │ ├── git_sync.aws.txt │ │ │ │ └── sam_pipeline_init.cli.txt │ │ │ ├── CLI │ │ │ │ ├── aws-cfn-control.cli.txt │ │ │ │ ├── cfn-teleport.cli.txt │ │ │ │ ├── rain.cli.txt │ │ │ │ └── sceptre.cli.txt │ │ │ ├── Core │ │ │ │ ├── cloud_control.aws.txt │ │ │ │ ├── cloudformation.aws.txt │ │ │ │ ├── cloudformation_extensions.aws.txt │ │ │ │ └── serverless.cli.txt │ │ │ ├── Diagrams │ │ │ │ ├── aws-cloudformation-stacks-graph.cli.txt │ │ │ │ ├── cdk-dia.cli.txt │ │ │ │ ├── cfn-diagram.cli.txt │ │ │ │ └── rain-tree.cli.txt │ │ │ ├── Diff │ │ │ │ └── cdk-diff.node.txt │ │ │ ├── Generate │ │ │ │ └── former2.cli.txt │ │ │ ├── Linting │ │ │ │ ├── cdk-nag.aws.txt │ │ │ │ ├── cdk-validator-cfnguard.node.txt │ │ │ │ ├── cfn-guard.aws.txt │ │ │ │ └── cfn-lint.aws.txt │ │ │ ├── PR_comment │ │ │ │ ├── actions_cfn_diff.github.txt │ │ │ │ └── cdk_notifier.github.txt │ │ │ ├── SAM │ │ │ │ ├── sam_cli.aws.txt │ │ │ │ ├── sam_transform.aws.txt │ │ │ │ └── sar.aws.txt │ │ │ ├── Testing │ │ │ │ ├── Integration │ │ │ │ │ └── cdk_integ_tests.node.txt │ │ │ │ └── Unit │ │ │ │ │ └── cdk_assertions.node.txt │ │ │ └── UI │ │ │ │ ├── cloudformation_designer.aws.txt │ │ │ │ └── infrastructure_composer.aws.txt │ │ └── Pulumi │ │ │ ├── pulumi.saas.txt │ │ │ └── pulumi_aws.saas.txt │ ├── IaaS │ │ ├── AWS │ │ │ ├── aws_actions.aws.txt │ │ │ ├── aws_auth.aws.txt │ │ │ ├── aws_billing.aws.txt │ │ │ ├── aws_cli.aws.txt │ │ │ ├── aws_config.aws.txt │ │ │ ├── aws_endpoint.aws.txt │ │ │ ├── aws_general.aws.txt │ │ │ ├── aws_identifiers.aws.txt │ │ │ ├── aws_javascript.aws.txt │ │ │ ├── aws_list_services.aws.txt │ │ │ ├── aws_network.aws.txt │ │ │ ├── aws_new_service.aws.txt │ │ │ ├── aws_regions.aws.txt │ │ │ ├── aws_signature.aws.txt │ │ │ ├── aws_support.aws.txt │ │ │ ├── aws_tags.aws.txt │ │ │ └── aws_toolkit.aws.txt │ │ └── Compute │ │ │ └── ec2.aws.txt │ ├── PaaS │ │ ├── beanstalk.aws.txt │ │ └── heroku.saas.txt │ └── SaaS │ │ └── Google_APIs.saas.txt ├── Supervision │ ├── Cluster_orchestration │ │ ├── autoscaling.aws.txt │ │ ├── docker_swarm.docker.txt │ │ └── kubernetes.cli.txt │ └── Process_supervisor │ │ ├── forever.node_cli.txt │ │ └── pm2.node_cli.txt └── Virtualization │ └── Containers │ ├── Core_abstraction │ ├── docker.cli.txt │ ├── docker_compose.docker.txt │ ├── is-docker.node.txt │ └── is-inside-container.node.txt │ └── containers.theory.txt ├── Dev_helpers ├── Automation │ ├── Build_automation │ │ ├── Autotools │ │ │ ├── autotools.cli.txt │ │ │ └── make.cli.txt │ │ ├── cmake.cli.txt │ │ ├── grunt.javascript.txt │ │ └── gulp.javascript.txt │ ├── Desktop_automation │ │ ├── Screenshots │ │ │ └── webshot.node.txt │ │ └── copy-paste.node.txt │ ├── Live_reloading │ │ ├── livereload.node.txt │ │ └── nodemon.node.txt │ └── Scaffolding │ │ ├── API_stubs │ │ ├── autorest.cli.txt │ │ ├── openapi-codegen.node.txt │ │ ├── swagger-codegen.java.txt │ │ ├── swagger-node-codegen.node.txt │ │ └── swagger-node.node.txt │ │ └── Generic │ │ └── yeoman.cli.txt ├── Coding │ ├── Documentation │ │ ├── API │ │ │ └── OpenAPI │ │ │ │ ├── dapperbox.node.txt │ │ │ │ ├── open-api-renderer.node.txt │ │ │ │ ├── pretty-swag.node.txt │ │ │ │ ├── redoc.node.txt │ │ │ │ ├── spectacle.node.txt │ │ │ │ ├── swagger-markdown.node.txt │ │ │ │ ├── swagger-ui.node.txt │ │ │ │ ├── swagger2markup.node.txt │ │ │ │ └── widdershins.node_cli.txt │ │ ├── From_code_itself │ │ │ ├── godoc.cli.txt │ │ │ └── typedoc.node.txt │ │ ├── From_comments │ │ │ ├── Generators │ │ │ │ ├── deno_doc.deno.txt │ │ │ │ ├── documentation.js.node.txt │ │ │ │ ├── dox.node.txt │ │ │ │ ├── doxygen.many.txt │ │ │ │ ├── esdoc.node.txt │ │ │ │ ├── go_doc.cli.txt │ │ │ │ └── jsdoc.node.txt │ │ │ ├── Linting │ │ │ │ └── eslint-plugin-jsdoc.node.txt │ │ │ ├── Parsing │ │ │ │ ├── comment-parser.node.txt │ │ │ │ ├── jest-docblock.node.txt │ │ │ │ └── parse-comments.node.txt │ │ │ └── Tags │ │ │ │ ├── jsdoc_tags.node.txt │ │ │ │ └── tsdoc.node.txt │ │ └── UI_component │ │ │ └── Tutorial │ │ │ └── torturial.jquery.txt │ ├── IDE │ │ └── Configuration │ │ │ └── editorconfig.ini.txt │ ├── Open_source │ │ ├── Contributors_listing │ │ │ ├── all-contributors.node.txt │ │ │ ├── git-authors-cli.node.txt │ │ │ ├── github-contributors-list.node.txt │ │ │ ├── hall-of-fame.node.txt │ │ │ └── name-your-contributors.node.txt │ │ └── open_source.theory.txt │ ├── Source_code │ │ └── organisation_sources.theory.txt │ └── Version_control │ │ ├── Git │ │ ├── VCS.theory.txt │ │ ├── git │ │ │ ├── git.cli.txt │ │ │ └── husky.node.txt │ │ └── lint-staged.cli.txt │ │ └── GitHub │ │ ├── Apps │ │ └── github_apps.saas.txt │ │ ├── github.saas.txt │ │ ├── github_api.saas.txt │ │ ├── github_cli.cli.txt │ │ └── github_webhooks.saas.txt ├── Insights │ ├── Logging │ │ ├── Aggregator │ │ │ └── cloudwatch_logs.aws.txt │ │ ├── Automatic_logging │ │ │ ├── Errors │ │ │ │ ├── errorhandler.express.txt │ │ │ │ ├── finalhandler.express.txt │ │ │ │ └── middy_error_handler.middy.txt │ │ │ └── Network_interaction │ │ │ │ └── cloudtrail.aws.txt │ │ ├── Dashboard │ │ │ └── bugsnag.saas.txt │ │ ├── Error_shape │ │ │ └── HTTP │ │ │ │ ├── deno_http_errors.deno.txt │ │ │ │ ├── http_errors.node.txt │ │ │ │ └── middy_http_error.middy.txt │ │ ├── Logger │ │ │ └── Server_side │ │ │ │ ├── consola.node.txt │ │ │ │ ├── debug.node.txt │ │ │ │ ├── deno_log.deno.txt │ │ │ │ ├── log4js.node.txt │ │ │ │ ├── pino.node.txt │ │ │ │ ├── powertools_lambda_logger.aws.txt │ │ │ │ ├── signale.node.txt │ │ │ │ ├── tracer.node.txt │ │ │ │ └── winston.node.txt │ │ └── Request_logging │ │ │ ├── express-winston.node.txt │ │ │ ├── middy_http_input_output_logger.middy.txt │ │ │ └── morgan.express.txt │ └── Monitoring │ │ ├── Custom_metrics │ │ └── Alerting │ │ │ └── vitalsigns.node.txt │ │ ├── Host_metrics │ │ ├── Alerting │ │ │ └── cloudwatch_alarms.aws.txt │ │ ├── Collecting │ │ │ ├── Cloudwatch │ │ │ │ ├── aws_embedded_metrics.aws.txt │ │ │ │ ├── cloudwatch_contributor_insights.aws.txt │ │ │ │ ├── cloudwatch_metrics.aws.txt │ │ │ │ ├── cloudwatch_observability.aws.txt │ │ │ │ └── powertools_lambda_metrics.aws.txt │ │ │ └── Statsd │ │ │ │ ├── hot-shots.node.txt │ │ │ │ ├── statsd-client.node.txt │ │ │ │ ├── statsd.node.txt │ │ │ │ └── statsd_protocol.protocol.txt │ │ └── Dashboard │ │ │ └── cloudwatch_dashboard.aws.txt │ │ └── Uptime_monitoring │ │ └── Health_checks │ │ └── grpc-health-check.node.txt └── Quality_assurance │ ├── Debugging │ ├── Environment_reporting │ │ └── envinfo.node.txt │ ├── General_debugger │ │ ├── Browser │ │ │ ├── about.identifier.txt │ │ │ ├── react-devtools.react.txt │ │ │ ├── react-render-visualizer.react.txt │ │ │ ├── redux-devtools.redux.txt │ │ │ └── view-source.identifier.txt │ │ └── Server_side │ │ │ ├── bashdb.c_c++_x86.txt │ │ │ ├── express-debug.express.txt │ │ │ ├── gdb.c_c++_x86.txt │ │ │ ├── nm.x86.txt │ │ │ └── xdebug.php.txt │ ├── Stack_traces │ │ ├── Async │ │ │ ├── asynctrace.node.txt │ │ │ ├── long-promises.node.txt │ │ │ ├── longjohn.node.txt │ │ │ ├── node-stackup.node.txt │ │ │ ├── trace.node.txt │ │ │ └── trycatch.node.txt │ │ ├── Beautify │ │ │ ├── clarify.javascript.txt │ │ │ ├── clean-stack.node.txt │ │ │ ├── cute-stack.node.txt │ │ │ └── pretty-error.node.txt │ │ ├── Context │ │ │ └── better-stack-traces.javascript.txt │ │ ├── Generation │ │ │ ├── njstrace.node.txt │ │ │ └── tracekit.javascript.txt │ │ ├── Nesting │ │ │ └── nested-error-stacks.node.txt │ │ └── Parsing │ │ │ ├── callsites.node.txt │ │ │ ├── error-callsites.node.txt │ │ │ ├── node-stack-trace.node.txt │ │ │ ├── stack-chain.node.txt │ │ │ ├── stack-utils.node.txt │ │ │ ├── stackback.node.txt │ │ │ ├── stackman.node.txt │ │ │ └── stacktrace.js.javascript.txt │ └── Tracing │ │ └── go_tracing.cli.txt │ └── Testing │ ├── Assertions │ ├── HTTP │ │ ├── chai-http.node.txt │ │ ├── frisby.node.txt │ │ └── supertest.node.txt │ ├── ava_assertions.node_cli.txt │ ├── chai.javascript.txt │ ├── deno_assertions.deno.txt │ ├── expect_more.javascript.txt │ ├── jasmine_assertions.javascript.txt │ ├── jasmine_matchers.javascript.txt │ ├── jasmine_utils.javascript.txt │ ├── jest-extended.javascript.txt │ ├── jest_assertions.javascript.txt │ ├── must_js.javascript.txt │ ├── node_assert.node.txt │ ├── node_tap_assertions.javascript.txt │ ├── power-assert.javascript.txt │ ├── should_js.javascript.txt │ ├── tape-modern_assertions.javascript.txt │ ├── tape_assertions.javascript.txt │ └── unexpected.javascript.txt │ ├── Browser_testing │ └── Selenium │ │ ├── Client │ │ ├── selenium-webdriver.node.txt │ │ └── wd.js.node.txt │ │ └── Test_runner │ │ ├── browserstack.saas.txt │ │ ├── saucelabs.saas.txt │ │ └── selenium_webdriver.cli.txt │ ├── Coverage │ ├── Go │ │ └── go_test_cover.cli.txt │ ├── LCOV │ │ ├── Badges │ │ │ ├── lcov-badge.cli.txt │ │ │ └── lcov2badge.node.txt │ │ ├── Core │ │ │ ├── blanket.javascript.txt │ │ │ └── istanbul.node_cli.txt │ │ ├── Merging │ │ │ └── lcov-result-merger.cli_node.txt │ │ ├── Parsing │ │ │ ├── lcov-parse.javascript.txt │ │ │ └── lcov.js.javascript.txt │ │ ├── Reporting │ │ │ ├── codecov.saas.txt │ │ │ └── coveralls.saas.txt │ │ ├── Source_maps │ │ │ └── lcov-sourcemap.node.txt │ │ └── lcov.format.txt │ ├── V8 │ │ ├── Core │ │ │ ├── c8.node.txt │ │ │ ├── deno_coverage.deno.txt │ │ │ └── v8-to-instanbul.node.txt │ │ ├── Merging │ │ │ └── v8-coverage-merge.node.txt │ │ └── v8_coverage.format.txt │ └── coverage.theory.txt │ ├── Data_driven_test │ ├── jest-each.javascript.txt │ ├── jest_data_driven.javascript.txt │ ├── sazerac.javascript.txt │ ├── testcheck.node.txt │ └── testing_quick.go.txt │ ├── Diff_testing │ ├── ava_snapshots.node_cli.txt │ ├── deno_snapshots.deno.txt │ ├── go_examples.cli.txt │ ├── jest_snapshots.javascript.txt │ ├── node_snapshots.node.txt │ ├── node_tap_snapshots.javascript.txt │ └── snap-shot-it.javascript.txt │ ├── Fuzzy_testing │ └── big-list-of-naughty-strings.json_txt.txt │ ├── Mocking │ ├── Dependencies │ │ ├── jest_modules.javascript.txt │ │ └── node_test_mock_module.node_cli.txt │ ├── Generic │ │ ├── chai-spies.javascript.txt │ │ ├── deno_mock.deno.txt │ │ ├── jasmine_spies.javascript.txt │ │ ├── jest_mocks.javascript.txt │ │ ├── node_tests_mocks.node.txt │ │ ├── sinon.node.txt │ │ ├── tape_mock.javascript.txt │ │ └── testdouble.javascript.txt │ ├── HTTP │ │ ├── Request_mocking │ │ │ ├── Client_side │ │ │ │ ├── jasmine_ajax.javascript.txt │ │ │ │ └── nise.javascript.txt │ │ │ └── Server_side │ │ │ │ ├── interceptors.javascript.txt │ │ │ │ └── nock.node.txt │ │ └── Request_stubs │ │ │ └── node-mocks-http.node.txt │ ├── Specific_framework │ │ └── enzyme.react.txt │ └── Timers │ │ ├── deno_time.deno.txt │ │ ├── fake_timers.javascript.txt │ │ ├── jasmine_timers.javascript.txt │ │ ├── jest_timers.javascript.txt │ │ └── mocktimers.node.txt │ ├── Platforms │ ├── Browsers │ │ └── karma.cli.txt │ └── Node │ │ ├── autochecker.node.txt │ │ ├── testen.node.txt │ │ └── trevor.node.txt │ ├── Reporting │ ├── TAP │ │ ├── Merging │ │ │ └── tap-merge.javascript.txt │ │ ├── Parsing │ │ │ ├── tap-out.javascript.txt │ │ │ └── tap-parser.node.txt │ │ ├── Reporting │ │ │ └── tap_reporters.javascript.txt │ │ ├── Serialiazing │ │ │ ├── supertap.node.txt │ │ │ ├── tape-modern.javascript.txt │ │ │ └── tape.node_cli.txt │ │ └── tap.format.txt │ ├── ava_reporters.node_cli.txt │ ├── jasmine_reporters.node_cli.txt │ ├── jest_reporters.node_cli.txt │ ├── mocha_reporters.node_cli.txt │ ├── node-tap_reporters.javascript_cli.txt │ └── node-test_reporters.node_cli.txt │ ├── Smoke_testing │ ├── cigar.cli.txt │ ├── dredd.javascript.txt │ └── swagger-test-templates.node.txt │ ├── Stress_testing │ └── gremlins.js.javascript.txt │ ├── Test_runner │ ├── ava.node_cli.txt │ ├── deno_test.deno.txt │ ├── go_test.cli.txt │ ├── jasmine.node_cli.txt │ ├── jest.node_cli.txt │ ├── mocha.node_cli.txt │ ├── node_tap.javascript_cli.txt │ ├── node_test.node_cli.txt │ └── qunit.cli.txt │ ├── Visual_testing │ ├── argus-eyes.cli.txt │ ├── phantomcss.node.txt │ └── wraith.node.txt │ └── testing.theory.txt ├── LICENSE ├── Languages ├── C++ │ └── C++.language.txt ├── C │ ├── C.language.txt │ ├── Compiling │ │ └── gcc │ │ │ ├── cpp.cli.txt │ │ │ ├── feature_test_macro.cli.txt │ │ │ ├── gcc.cli.txt │ │ │ └── gcc_optimization.cli.txt │ └── shared_libraries.theory.txt ├── Coding_style │ └── Linting │ │ ├── CSS │ │ ├── csslint.node_cli.txt │ │ ├── immutable-css.node_cli.txt │ │ ├── postcss-bem-linter.postcss.txt │ │ ├── scss-lint.cli.txt │ │ └── stylelint.node_cli.txt │ │ ├── CoffeeScript │ │ └── coffeelint.coffeescript.txt │ │ ├── Go │ │ ├── go_msan.cli.txt │ │ └── go_vet.cli.txt │ │ ├── HTML │ │ ├── htmlhint.node_cli.txt │ │ ├── nu_html_checker.cli.txt │ │ └── w3cjs.node.txt │ │ ├── JavaScript │ │ ├── eslint.node_cli.txt │ │ └── jshint.node_cli.txt │ │ ├── JavaScript_CSS │ │ └── hound.saas.txt │ │ ├── TypeScript │ │ ├── deno_lint.deno.txt │ │ └── typescript_eslint.node_cli.txt │ │ └── remark-lint.node_cli.txt ├── CoffeeScript │ └── coffeescript.language.txt ├── Go │ ├── go_build.cli.txt │ ├── go_cli.cli.txt │ ├── go_language.language.txt │ ├── go_modules.cli.txt │ └── go_standard_library.go.txt ├── Inter_language │ └── Version_migration │ │ └── Go │ │ └── go_fix.cli.txt ├── JavaScript │ ├── Data_binding │ │ └── stickit.backbone.txt │ ├── Deno │ │ ├── Node_deno │ │ │ ├── deno2node.deno.txt │ │ │ ├── denoify.node.txt │ │ │ ├── dnt.deno.txt │ │ │ └── node_shims.deno.txt │ │ └── deno.javascript.txt │ ├── JavaScript_core │ │ └── JavaScript.language.txt │ ├── JavaScript_frameworks │ │ ├── MVC │ │ │ ├── Minimalistic │ │ │ │ └── Backbone │ │ │ │ │ ├── backbone.collectionsubset.backbone.txt │ │ │ │ │ └── backbone_marionette.javascript.txt │ │ │ └── Opiniated │ │ │ │ └── angular.javascript.txt │ │ └── View │ │ │ └── One_way_data_binding │ │ │ └── Virtual_DOM │ │ │ └── React │ │ │ ├── backbone-react-component.react.txt │ │ │ ├── react-engine.react.txt │ │ │ ├── react-helmet.react.txt │ │ │ └── react.javascript.txt │ ├── Node │ │ ├── nodejs.javascript.txt │ │ └── require-from-string.node.txt │ └── State_management │ │ └── Flux │ │ ├── Redux │ │ ├── redux-actions.redux.txt │ │ ├── redux-promise-middleware.redux.txt │ │ ├── redux-storage.redux.txt │ │ ├── redux-thunk.redux.txt │ │ ├── redux-undo.redux.txt │ │ └── redux.flux.txt │ │ ├── Reflux │ │ └── reflux.flux.txt │ │ ├── flux.javascript.txt │ │ └── react-refetch.flux.txt ├── Language_processing │ ├── Beautifiers │ │ ├── CSS │ │ │ ├── General │ │ │ │ ├── csscomb.node_cli.txt │ │ │ │ ├── perfectionist.node_cli.txt │ │ │ │ ├── prettier_css.node_cli.txt │ │ │ │ └── stylefmt.node_cli.txt │ │ │ └── Sorting │ │ │ │ ├── css-declaration-sorter.node_cli.txt │ │ │ │ └── postcss-sorting.postcss.txt │ │ ├── Go │ │ │ └── go_fmt.cli.txt │ │ ├── HTML │ │ │ └── prettier_html.cli_node.txt │ │ ├── JavaScript │ │ │ ├── es-beautifier.node.txt │ │ │ ├── esformatter.node.txt │ │ │ ├── js-beautify.node.txt │ │ │ ├── jsfmt.node.txt │ │ │ └── uglify_beautify.node_cli.txt │ │ └── Multi_language │ │ │ ├── deno_fmt.deno.txt │ │ │ └── prettier.node_cli.txt │ ├── Minification │ │ ├── CSS │ │ │ ├── cleancss.node_cli.txt │ │ │ ├── cssnano.node_cli.txt │ │ │ └── csso.node_cli.txt │ │ ├── HTML │ │ │ └── tidy-html5.cli.txt │ │ └── JavaScript │ │ │ └── Uglify.node_cli.txt │ └── Post_processing │ │ ├── CSS │ │ ├── compass.sass.txt │ │ ├── less.language.txt │ │ ├── postcss.language.txt │ │ ├── sass.language.txt │ │ └── stylus.language.txt │ │ └── JavaScript │ │ ├── babel.node_cli.txt │ │ └── core-js.javascript.txt ├── Metaprogramming │ ├── Compile_time_generation │ │ └── go_generate.cli.txt │ ├── Parsing │ │ ├── AST_format │ │ │ ├── JavaScript │ │ │ │ ├── estree.format.txt │ │ │ │ ├── jsx_ast.format.txt │ │ │ │ └── shift.format.txt │ │ │ └── TypeScript │ │ │ │ ├── tsestree.format.txt │ │ │ │ └── typescript-eslint-parser.node.txt │ │ ├── Parse_tokenize │ │ │ ├── CSS │ │ │ │ ├── gonzales-pe.node.txt │ │ │ │ ├── parser-lib.node.txt │ │ │ │ └── reworkcss.node.txt │ │ │ └── JavaScript │ │ │ │ ├── acorn.javascript_cli.txt │ │ │ │ ├── babel_parser.javascript_cli.txt │ │ │ │ ├── espree.javascript.txt │ │ │ │ └── esprima.javascript_cli.txt │ │ ├── Serialize │ │ │ └── JavaScript │ │ │ │ ├── escodegen.node.txt │ │ │ │ └── recast.node.txt │ │ ├── Traverse │ │ │ └── JavaScript │ │ │ │ ├── acorn-walk.node.txt │ │ │ │ ├── eslint-visitor-keys.node.txt │ │ │ │ └── typescript-eslint-visitor-keys.node.txt │ │ └── parsing.theory.txt │ └── Source_maps │ │ ├── Concatenation │ │ ├── combine-source-map.node.txt │ │ ├── concat-with-sourcemaps.node.txt │ │ ├── mapcat.node.txt │ │ └── source-map-concat.node.txt │ │ ├── Core │ │ ├── fast-source-map.javascript.txt │ │ ├── mozilla_source_map.javascript.txt │ │ └── source-list-map.javascript.txt │ │ ├── Format │ │ └── source_map.format.txt │ │ ├── Location │ │ ├── convert-source-map.node.txt │ │ ├── inline-source-map.node.txt │ │ ├── source-map-resolve.javascript.txt │ │ └── source-map-url.javascript.txt │ │ ├── Mappings │ │ └── sourcemap-codec.javascript.txt │ │ ├── Reverse_compilation │ │ └── shuji.node.txt │ │ ├── Stack_traces │ │ ├── node-source-map-support.node.txt │ │ ├── sourcemapped-stacktrace.javascript.txt │ │ └── stack-source-map.javascript.txt │ │ ├── Validation │ │ └── sourcemap-validator.node.txt │ │ └── Visualization │ │ └── source-map-visualization.javascript.txt ├── PHP │ └── PHP.language.txt ├── Python │ └── Python.language.txt ├── R │ └── R.language.txt ├── Static_analysis │ ├── Complexity_size_analysis │ │ └── JavaScript │ │ │ ├── escomplex.node.txt │ │ │ ├── plato.node_cli.txt │ │ │ └── sloc.javascript_cli.txt │ ├── Dead_code │ │ ├── CSS │ │ │ ├── mincss.node_cli.txt │ │ │ └── uncss.node_cli.txt │ │ └── JavaScript │ │ │ └── shrimpit.cli.txt │ ├── Duplicated_code │ │ └── JavaScript │ │ │ ├── jscpd.node_cli.txt │ │ │ ├── jsinspect.cli.txt │ │ │ └── synt.node_cli.txt │ ├── General │ │ ├── CSS │ │ │ ├── cssstats.node_cli.txt │ │ │ └── stylestats_analyze-css.node_cli.txt │ │ ├── JavaScript │ │ │ └── globals.json.txt │ │ └── Multiple_languages │ │ │ └── codeclimate.saas.txt │ └── Type_checking │ │ ├── TypeScript │ │ ├── Ambient_generation │ │ │ └── tsd-jsdoc.node.txt │ │ ├── Core │ │ │ ├── ts-node.node.txt │ │ │ ├── tsx.node.txt │ │ │ └── typescript.language.txt │ │ └── Testing │ │ │ ├── deno_test_types.deno.txt │ │ │ ├── ts-expect.node.txt │ │ │ └── tsd.node.txt │ │ └── flow.language.txt ├── VBA │ ├── Excel_Formulas.language.txt │ ├── Excel_objet_model.language.txt │ ├── PowerPoint_object_model.language.txt │ └── VBA.language.txt └── x86 │ ├── Assembler │ └── nasm.cli.txt │ ├── MMX_SSE.language.txt │ ├── x86.language.txt │ ├── x86_64.language.txt │ ├── x86_C_compilation.language.txt │ ├── x86_General.language.txt │ ├── x86_Segmentation_Paging_Tasks.language.txt │ ├── x86_encodage_opcodes.language.txt │ ├── x86_extensions.language.txt │ └── x87.language.txt ├── Multimedia ├── Advanced_graphics │ └── Game │ │ ├── Design_gamification │ │ └── game_design.theory.txt │ │ └── Engines │ │ └── 2D │ │ ├── SDL │ │ └── sdl.c.txt │ │ └── SFML │ │ ├── sfml.c++.txt │ │ ├── sfml_audio.c++.txt │ │ ├── sfml_graphics.c++.txt │ │ ├── sfml_network.c++.txt │ │ ├── sfml_system.c++.txt │ │ └── sfml_window.c++.txt ├── Geospatial │ └── IP_geolocation │ │ └── geoip-lite.node.txt ├── Graphics │ └── 3D │ │ └── OpenGL │ │ └── opengl.c.txt ├── Images │ ├── Common_images │ │ ├── Emoji │ │ │ ├── Detection │ │ │ │ └── emoji-regex.node.txt │ │ │ └── List │ │ │ │ ├── emoj.node.txt │ │ │ │ ├── emojilib.node.txt │ │ │ │ └── unicode-emoji-json.node.txt │ │ └── Icons │ │ │ └── zocial.css_fonts.txt │ ├── Favicon │ │ ├── Manipulation │ │ │ └── favico.js.javascript.txt │ │ └── Serving │ │ │ └── serve-favicon.express.txt │ ├── Image_display │ │ ├── Carousel │ │ │ ├── cycle2.jquery.txt │ │ │ └── slick.jquery.txt │ │ └── Lightbox │ │ │ └── magnificpopup.jquery.txt │ └── Image_manipulation │ │ ├── Diff │ │ └── resemble.js.node.txt │ │ ├── Info │ │ └── image-size.node.txt │ │ └── Minification │ │ └── imagemin.node_cli.txt └── Media │ └── Audio │ └── audio_rates.theory.txt ├── Music ├── complex_tone.txt ├── general.txt ├── narrowing_widening.txt ├── piano.txt ├── pitch.txt ├── scale.txt ├── to_check.txt ├── tuning.txt └── value.txt ├── Networking └── Networking_protocols │ ├── DNS │ ├── Client │ │ └── deno_dns.deno.txt │ ├── DNS.protocol.txt │ └── Registration │ │ └── route53.aws.txt │ ├── IP │ └── IP.protocol.txt │ ├── Load_balancing │ └── Load_balancer │ │ └── elb.aws.txt │ ├── Networking_general │ ├── network.theory.txt │ └── protocols.theory.txt │ ├── Phones │ └── tel_uri_scheme.identifier.txt │ ├── Proxy │ ├── HTTP │ │ ├── forwarded.node.txt │ │ ├── http-proxy.node.txt │ │ ├── proxy-addr.node.txt │ │ └── request-ip.node.txt │ └── Localhost │ │ └── localtunnel.node.txt │ ├── QUIC │ └── deno_quic.deno.txt │ ├── Service_discovery │ └── DHCP.protocol.txt │ ├── TCP │ ├── Library │ │ └── deno_tcp.deno.txt │ └── TCP.protocol.txt │ ├── TLS │ ├── HTTPS │ │ └── HTTPS.protocol.txt │ ├── Library │ │ ├── deno_tls.deno.txt │ │ └── express-enforces-ssl.express.txt │ └── SSL.protocol.txt │ └── UDP │ ├── Library │ └── deno_udp.deno.txt │ └── UDP.protocol.txt ├── Platforms ├── Browser │ ├── Browser_extensions │ │ └── Chrome │ │ │ └── Chrome_extensions_apps.javascript.txt │ ├── DOM │ │ ├── Abstraction │ │ │ ├── fetch-blob.javascript.txt │ │ │ ├── jsdom.node.txt │ │ │ └── rackt_history.javascript.txt │ │ ├── DOM.javascript.txt │ │ ├── Manipulation │ │ │ └── jQuery_cheerio.javascript.txt │ │ └── Virtual_DOM │ │ │ └── react-templates.react.txt │ └── Headless_browser │ │ ├── casperjs.node_cli.txt │ │ └── phantomjs.node_cli.txt ├── Desktop │ ├── Desktop_only_features │ │ └── Notifications │ │ │ ├── growl.node.txt │ │ │ └── node-notifier.node.txt │ └── OS │ │ ├── Executable │ │ ├── elf.format.txt │ │ └── object_formats.format.txt │ │ ├── OS_Kernel │ │ ├── OS_Boot_kernel.theory.txt │ │ ├── OS_Gestion_memoire.theory.txt │ │ ├── OS_filesystem.theory.txt │ │ └── Process │ │ │ ├── loading_time.format.txt │ │ │ └── process.theory.txt │ │ ├── Partitions │ │ ├── CHS_LBA.theory.txt │ │ ├── MBR.format.txt │ │ └── type_partitions.format.txt │ │ ├── System │ │ └── CPU.theory.txt │ │ ├── architectures.theory.txt │ │ ├── calcul_binaire.algorithm.txt │ │ ├── little_big_endian.format.txt │ │ └── taille_octet_bits_bytes.theory.txt ├── Interoperability │ ├── Browser │ │ ├── Browser_list │ │ │ └── browserslist.node_cli.txt │ │ ├── CSS │ │ │ ├── Linting │ │ │ │ └── doiuse.node_cli.txt │ │ │ ├── Normalizer │ │ │ │ └── normalize.css.css.txt │ │ │ └── Transpiler │ │ │ │ ├── autoprefixer.node_cli.txt │ │ │ │ └── cssnext.postcss.txt │ │ ├── Device_identification │ │ │ ├── User_agent │ │ │ │ └── deno_user_agent.deno.txt │ │ │ ├── express-device.express.txt │ │ │ └── session.js.javascript.txt │ │ └── Feature_support │ │ │ ├── caniuse.json.txt │ │ │ ├── feature.js.javascript.txt │ │ │ └── modernizr.javascript.txt │ ├── Node │ │ ├── node-latest.node.txt │ │ └── node-releases.node.txt │ └── OS │ │ ├── Applications │ │ └── open.node.txt │ │ ├── Environment_variables │ │ ├── cross-env.node.txt │ │ ├── fullname.node.txt │ │ ├── osenv.node.txt │ │ ├── passwd-user.node.txt │ │ └── username.node.txt │ │ ├── Identification │ │ ├── deno_os.deno.txt │ │ ├── getos.node.txt │ │ ├── is-windows.node.txt │ │ ├── is-wsl.node.txt │ │ ├── macos-release.node.txt │ │ ├── os-name.node.txt │ │ ├── systeminformation.node.txt │ │ └── windows-release.node.txt │ │ ├── Path │ │ ├── XDG │ │ │ ├── xdg-basedir.node.txt │ │ │ └── xdg.theory.txt │ │ ├── env-paths.node.txt │ │ ├── node-cachedir.node.txt │ │ └── unc-path-regex.node.txt │ │ ├── Permissions │ │ ├── is-admin.node.txt │ │ ├── is-elevated.node.txt │ │ ├── is-root.node.txt │ │ └── isexe.node.txt │ │ ├── Spawn │ │ ├── deno_command.deno.txt │ │ ├── execa.node.txt │ │ ├── node-cross-spawn.node.txt │ │ ├── npm-path.node.txt │ │ ├── npm-run-path.node.txt │ │ ├── npm-run.node.txt │ │ └── path-key.node.txt │ │ └── cross-os.summary.txt ├── Mobile │ └── Mobile_responsiveness │ │ └── mobile_strategy.theory.txt └── Terminal │ ├── CLI │ ├── Input │ │ ├── Flags │ │ │ ├── caporal.node.txt │ │ │ ├── commander.node.txt │ │ │ ├── deno_flags.deno.txt │ │ │ ├── minimist.node.txt │ │ │ └── yargs.node.txt │ │ └── Prompt │ │ │ ├── deno_prompt.deno.txt │ │ │ ├── enquirer.node.txt │ │ │ ├── inquirer.node.txt │ │ │ └── prompts.node.txt │ ├── Interactive │ │ ├── ANSI_sequences │ │ │ ├── Creation │ │ │ │ └── ansi-styles.node.txt │ │ │ ├── Detection │ │ │ │ ├── ansi-regex.node.txt │ │ │ │ └── has-ansi.node.txt │ │ │ ├── Normalization │ │ │ │ ├── cli-truncate.node.txt │ │ │ │ ├── deno_strip_color.deno.txt │ │ │ │ ├── slice-ansi.node.txt │ │ │ │ ├── string-width.node.txt │ │ │ │ ├── strip-ansi-stream.node.txt │ │ │ │ ├── strip-ansi.node.txt │ │ │ │ ├── unicode-width.deno.txt │ │ │ │ └── wrap-ansi.node.txt │ │ │ └── ansi_sequences.theory.txt │ │ ├── Cursor │ │ │ └── cli-cursor.node.txt │ │ └── Detection │ │ │ └── is-interactive.node.txt │ └── Output │ │ ├── Progress_bars │ │ ├── ascii-progress.node.txt │ │ ├── cli-progress.node.txt │ │ ├── deno_progress_bar.deno.txt │ │ ├── gauge.node.txt │ │ └── node-progress.node.txt │ │ ├── Spinners │ │ ├── cli-spinners.node.txt │ │ ├── deno_spinner.deno.txt │ │ └── ora.node.txt │ │ └── Symbols │ │ ├── figures.node.txt │ │ └── log-symbols.node.txt │ ├── Terminal_general │ ├── Emulator │ │ ├── is-unicode-supported.node.txt │ │ └── terminal_emulator.summary.txt │ ├── Prompt │ │ └── PS1 │ │ │ └── powerline-shell.cli.txt │ └── Remote │ │ └── SSH │ │ └── SSH.protocol.txt │ └── Unix_commands │ └── coreutils │ └── node-which.node.txt ├── README.md ├── RPC ├── Client │ ├── Scraping_crawling │ │ ├── Broken_links │ │ │ ├── link-check.node.txt │ │ │ └── lychee.cli.txt │ │ ├── Crawler │ │ │ └── simplecrawler.node.txt │ │ └── Detection │ │ │ └── isbot.node.txt │ └── Simple_client │ │ ├── File_downloads │ │ └── download.node_cli.txt │ │ ├── HTTP │ │ ├── axios.javascript.txt │ │ ├── bent.node.txt │ │ ├── cross-fetch.javascript.txt │ │ ├── fetch.javascript.txt │ │ ├── got.node.txt │ │ ├── http-console.cli.txt │ │ ├── http-prompt.tui.txt │ │ ├── http_client.summary.txt │ │ ├── httpie.cli.txt │ │ ├── isomorphic-fetch.javascript.txt │ │ ├── ky.javascript.txt │ │ ├── needle.node.txt │ │ ├── node-fetch.node.txt │ │ ├── pgsql_http.postgres.txt │ │ ├── phin.node.txt │ │ ├── postman.gui.txt │ │ ├── qwest.javascript.txt │ │ ├── r2.javascript.txt │ │ ├── request.node.txt │ │ ├── reqwest.javascript.txt │ │ ├── superagent.javascript.txt │ │ ├── trae.javascript.txt │ │ ├── unfetch.javascript.txt │ │ └── wuzz.tui.txt │ │ ├── Multi_protocols │ │ └── curl.cli.txt │ │ └── SDK │ │ └── From_API_specification │ │ ├── openapi-client.javascript.txt │ │ ├── swagger-codegen.javascript.txt │ │ ├── swagger-inspector.gui.txt │ │ ├── swagger-js-codegen.javascript.txt │ │ ├── swagger-js.node.txt │ │ ├── swagger_codegen_bash.cli.txt │ │ └── vorpal_openapi.cli.txt ├── Inter_process │ ├── API_gateway │ │ └── api_gateway.aws.txt │ ├── API_specification │ │ ├── Formats │ │ │ ├── agreed.format.txt │ │ │ └── openapi.format.txt │ │ ├── Formats_conversion │ │ │ ├── openapi2insomnia.node.txt │ │ │ ├── openapi2postman.node.txt │ │ │ ├── swagger2postman2.node.txt │ │ │ └── swaggman.node.txt │ │ ├── Generation │ │ │ └── OpenAPI │ │ │ │ ├── apicurio-studio.gui.txt │ │ │ │ ├── fastify-swagger.node.txt │ │ │ │ ├── hapi-swagger.node.txt │ │ │ │ ├── hapi-swaggered.node.txt │ │ │ │ ├── koa-joi-router-docs.node.txt │ │ │ │ ├── koa-swagger-decorator.node.txt │ │ │ │ ├── loopback-swagger.node.txt │ │ │ │ ├── nestjs_swagger.node.txt │ │ │ │ ├── openapi-designer.gui.txt │ │ │ │ ├── openapi-gui.gui.txt │ │ │ │ ├── sails_hook_swagger_generator.node.txt │ │ │ │ ├── swagger-definer.node.txt │ │ │ │ ├── swagger-editor.gui.txt │ │ │ │ └── swagger-jsdoc.node_cli.txt │ │ ├── Parsing_validating │ │ │ └── OpenAPI │ │ │ │ ├── oai-ts-core.node.txt │ │ │ │ ├── speccy.node_cli.txt │ │ │ │ ├── swagger-express-middleware.node.txt │ │ │ │ ├── swagger-node-runner.node.txt │ │ │ │ ├── swagger-parser.node.txt │ │ │ │ ├── swagger-tools.node.txt │ │ │ │ ├── swagger2.node.txt │ │ │ │ └── sway.node.txt │ │ └── Specifications_list │ │ │ └── openapi-directory.node_gui.txt │ ├── HTTP │ │ ├── Body │ │ │ ├── JSON │ │ │ │ └── middy_http_json_body_parser.middy.txt │ │ │ ├── Multipart │ │ │ │ ├── middy_http_multipart_body_parser.middy.txt │ │ │ │ ├── multer.express.txt │ │ │ │ └── multiparty.express.txt │ │ │ ├── Multiple │ │ │ │ └── body-parser.express.txt │ │ │ └── URL_encode │ │ │ │ └── middy_http_urlencode_body_parser.middy.txt │ │ ├── HTTP.protocol.txt │ │ ├── Headers │ │ │ ├── content-disposition.node.txt │ │ │ ├── deno_headers.deno.txt │ │ │ ├── li.node.txt │ │ │ └── node-parse-prefer-header.node.txt │ │ ├── Methods │ │ │ ├── deno_methods.deno.txt │ │ │ └── method-override.express.txt │ │ ├── Response │ │ │ ├── File │ │ │ │ └── send.node.txt │ │ │ └── String │ │ │ │ └── middy_http_response_serializer.middy.txt │ │ ├── Statuses │ │ │ ├── deno_http_status.deno.txt │ │ │ └── statuses.node.txt │ │ └── Streaming │ │ │ └── range-parser.node.txt │ ├── Inter_process_communication │ │ ├── List │ │ │ ├── fastlist.c.txt │ │ │ ├── pid-from-port.node.txt │ │ │ ├── process-exists.node.txt │ │ │ ├── ps-list.node.txt │ │ │ ├── ps.cli.txt │ │ │ └── tasklist.node.txt │ │ └── Signals │ │ │ ├── fkill.node.txt │ │ │ ├── signals.theory.txt │ │ │ └── taskkill.node.txt │ ├── Interface_definition │ │ └── IDL │ │ │ ├── GraphQL │ │ │ ├── Beautifiers │ │ │ │ └── prettier_graphql.node_cli.txt │ │ │ ├── Debugging │ │ │ │ ├── Query │ │ │ │ │ └── graphiql.react.txt │ │ │ │ └── Schema │ │ │ │ │ └── graphql-voyager.react.txt │ │ │ ├── Format │ │ │ │ └── graphql.format.txt │ │ │ ├── Realtime │ │ │ │ └── graphql-subscriptions.graphqljs.txt │ │ │ ├── Schema_generation │ │ │ │ └── From_specification │ │ │ │ │ └── swagger-to-graphql.node.txt │ │ │ ├── Server_execution │ │ │ │ ├── Schemaless │ │ │ │ │ └── graphql-anywhere.node.txt │ │ │ │ ├── graphql_tools.graphqljs.txt │ │ │ │ └── graphqljs.node.txt │ │ │ └── Web_server │ │ │ │ ├── express-graphql.express.txt │ │ │ │ ├── graphql-server.node.txt │ │ │ │ └── koa-graphql.koa.txt │ │ │ ├── REST │ │ │ └── REST.theory.txt │ │ │ ├── gRPC │ │ │ ├── gRPC.protocol.txt │ │ │ └── grpc-node.node.txt │ │ │ └── json-rpc.format.txt │ ├── Semantic_web │ │ └── Linked_data │ │ │ └── JSON_reference │ │ │ ├── json-refs.javascript.txt │ │ │ ├── json-schema-ref-parser.javascript.txt │ │ │ └── json_reference.format.txt │ └── URI_routing │ │ ├── Client_side │ │ ├── react-router.react.txt │ │ └── redux-simple-router.redux.txt │ │ └── Server_side │ │ ├── Hostname │ │ └── vhost.express.txt │ │ └── Path │ │ ├── middy-router.middy.txt │ │ ├── path-to-regexp.node.txt │ │ └── urlpattern.format.txt ├── Messages_tasks │ ├── Orchestration │ │ ├── step_functions.aws.txt │ │ └── swf.aws.txt │ ├── PubSub │ │ ├── eventbridge_pipes.aws.txt │ │ ├── eventbridge_rules.aws.txt │ │ └── sns.aws.txt │ ├── Task_coordination │ │ ├── orchestrator.node.txt │ │ └── undertaker.node.txt │ ├── Task_queue │ │ └── SQS │ │ │ ├── goaws.docker.txt │ │ │ ├── sqs.aws.txt │ │ │ ├── sqs_bulk_loader.node.txt │ │ │ ├── sqs_consumer.node.txt │ │ │ ├── sqs_grep.node.txt │ │ │ └── sqs_producer.node.txt │ └── Task_scheduler │ │ ├── cron │ │ ├── cron.format.txt │ │ ├── deno_cron.deno.txt │ │ └── pg_cron.postgres.txt │ │ └── eventbridge_scheduler.aws.txt ├── Realtime │ ├── Realtime_server │ │ └── express.io.express.txt │ ├── Server_sent_events │ │ └── deno_server_sent_events.deno.txt │ ├── Syndication │ │ ├── Formats │ │ │ ├── rss_2.format.txt │ │ │ └── syndication.summary.txt │ │ └── Parser │ │ │ └── node-feedparser.node.txt │ └── WebSocket │ │ └── Server │ │ ├── WebSocket.protocol.txt │ │ ├── deno_websocket.deno.txt │ │ ├── engine.io.node.txt │ │ ├── socket.io.node.txt │ │ └── ws.node_cli.txt └── Server │ ├── API_generation │ └── From_database │ │ └── postgrest.cli.txt │ ├── BaaS │ ├── From_API_specification │ │ └── prisma.saas.txt │ └── From_database │ │ └── supabase.saas.txt │ ├── Mock_server │ └── Configuration_driven │ │ └── json_server.cli.txt │ ├── Server_framework │ ├── MVC │ │ └── Declarative │ │ │ └── sails.express.txt │ └── Micro_framework │ │ ├── Declarative │ │ ├── blueoak_server.node.txt │ │ ├── express_openapi.node.txt │ │ ├── hapi_openapi.node.txt │ │ ├── micro_framework_declarative.summary.txt │ │ └── swagger2_koa.node.txt │ │ ├── Minimalist │ │ ├── deno_http.deno.txt │ │ └── express.node.txt │ │ └── Serverless │ │ └── AWS_Lambda │ │ └── middy.node.txt │ └── Static_server │ ├── Directory_listing │ └── serve-index.express.txt │ ├── For_development │ └── http-server.cli.txt │ └── For_production │ ├── S3 │ ├── s3.aws.txt │ └── scottyjs.cli.txt │ ├── deno_file_server.deno.txt │ ├── glacier.aws.txt │ ├── serve-static.express.txt │ └── st.express.txt ├── Repository_helpers ├── Index │ ├── create_index.sed │ ├── create_index.sh │ ├── index.md │ └── presentation.md ├── contribution_ideas.txt └── to_learn.txt ├── Roadmaps ├── roadmap-async-abstraction.txt ├── roadmap-autoformat.txt ├── roadmap-autoserver.txt ├── roadmap-autotask-backup.txt ├── roadmap-autotask.txt ├── roadmap-babel.txt ├── roadmap-better-cli.txt ├── roadmap-codecov-check.txt ├── roadmap-cutting-edge.txt ├── roadmap-demoo.txt ├── roadmap-dev-tasks.txt ├── roadmap-difftest.txt ├── roadmap-enhanced-stack.txt ├── roadmap-eslint-plugin-portable.txt ├── roadmap-fast-cartesian.txt ├── roadmap-general.txt ├── roadmap-iterator.txt ├── roadmap-json-schema.txt ├── roadmap-log-process-errors.txt ├── roadmap-merge-iterable.txt ├── roadmap-modern-errors.txt ├── roadmap-new-gulp.txt ├── roadmap-nve.txt ├── roadmap-open-source-analytics.txt ├── roadmap-portable-nodejs-guide.txt ├── roadmap-portable-path.txt ├── roadmap-publish-check.txt ├── roadmap-sourcemaps.txt ├── roadmap-spyd.txt ├── roadmap-test-each.txt ├── roadmap-unicode.txt ├── roadmap-unix-permissions.txt ├── roadmap-validate-path.txt └── todo.txt ├── To_sort ├── Bash_Unix │ ├── Bash │ │ ├── bash.txt │ │ ├── bash_variables.txt │ │ ├── batch_bash_equivalences.txt │ │ ├── colorisation_shell.txt │ │ ├── common_options.txt │ │ ├── differences_bash_sh.txt │ │ ├── differences_versions_bash.txt │ │ ├── expansion_susbitution.txt │ │ ├── fichiers_configuration.txt │ │ ├── history.txt │ │ ├── hotkeys_console.txt │ │ ├── prompt_bash.txt │ │ └── shell_options.txt │ ├── Commandes │ │ ├── 7z.txt │ │ ├── abs_makepkg.txt │ │ ├── agrep.txt │ │ ├── alias_unalias.txt │ │ ├── anacron.txt │ │ ├── at_atq_atrm_batch.txt │ │ ├── awk.txt │ │ ├── base64.txt │ │ ├── basename_dirname.txt │ │ ├── cal_ncal.txt │ │ ├── cat_tac.txt │ │ ├── cd.txt │ │ ├── chkdupexe.txt │ │ ├── chmod.txt │ │ ├── clear.txt │ │ ├── cloud-init.txt │ │ ├── command_builtin_enable.txt │ │ ├── cp_mv.txt │ │ ├── cron_crontab.txt │ │ ├── csplit.txt │ │ ├── cut.txt │ │ ├── date.txt │ │ ├── dd.txt │ │ ├── df.txt │ │ ├── dmesg.txt │ │ ├── du.txt │ │ ├── echo.txt │ │ ├── env_printenv.txt │ │ ├── expand_unexpand.txt │ │ ├── factor.txt │ │ ├── find.txt │ │ ├── fold.txt │ │ ├── getopts_getopt.txt │ │ ├── grep_egrep_fgrep_rgrep.txt │ │ ├── hash.txt │ │ ├── head_tail.txt │ │ ├── help.txt │ │ ├── history.txt │ │ ├── iconv.txt │ │ ├── id.txt │ │ ├── info.txt │ │ ├── ipcalc.txt │ │ ├── kill.txt │ │ ├── less.txt │ │ ├── line.txt │ │ ├── ln_link.txt │ │ ├── locate.txt │ │ ├── look.txt │ │ ├── ls_dir_vdir.txt │ │ ├── lsattr_chattr.txt │ │ ├── man.txt │ │ ├── mapfile_readarray.txt │ │ ├── mesg.txt │ │ ├── mkdir.txt │ │ ├── mkfifo.txt │ │ ├── mknod.txt │ │ ├── mktemp.txt │ │ ├── more.txt │ │ ├── mount.txt │ │ ├── mtrace.txt │ │ ├── ncat.txt │ │ ├── nice_renice.txt │ │ ├── nohup.txt │ │ ├── od_hexdump_hd.txt │ │ ├── pacman.txt │ │ ├── passwd.txt │ │ ├── paste_join.txt │ │ ├── pathchk.txt │ │ ├── popd_pushd_dirs.txt │ │ ├── printf.txt │ │ ├── pwd.txt │ │ ├── read.txt │ │ ├── readlink.txt │ │ ├── rev.txt │ │ ├── rm_unlink.txt │ │ ├── rmdir.txt │ │ ├── sed.txt │ │ ├── seq.txt │ │ ├── shred.txt │ │ ├── shuf.txt │ │ ├── sleep.txt │ │ ├── sort.txt │ │ ├── split.txt │ │ ├── stat.txt │ │ ├── stdbuf.txt │ │ ├── sum_cksum_md5sum_shasum.txt │ │ ├── sync.txt │ │ ├── tee.txt │ │ ├── time_times.txt │ │ ├── top.txt │ │ ├── touch.txt │ │ ├── tr.txt │ │ ├── trap.txt │ │ ├── truncate.txt │ │ ├── tsort.txt │ │ ├── tty.txt │ │ ├── type_which.txt │ │ ├── ulimit.txt │ │ ├── umask.txt │ │ ├── uname_arch.txt │ │ ├── uniq.txt │ │ ├── updatedb.txt │ │ ├── upstart.txt │ │ ├── uptime.txt │ │ ├── watch.txt │ │ ├── wc.txt │ │ ├── whatis_apropos.txt │ │ ├── whereis.txt │ │ ├── write_wall.txt │ │ ├── xargs.txt │ │ ├── xdotool.txt │ │ ├── yes.txt │ │ └── zdump.txt │ ├── Options_avec_ou_sans_whitespace.txt │ ├── afaire_unix.txt │ ├── atime_ctime_mtime.txt │ ├── buffering.txt │ ├── character_block_special_files.txt │ ├── droits_d_acces.txt │ ├── fifo_unamedpipe.txt │ ├── human_readable_sizes.txt │ ├── lock.txt │ ├── newline.txt │ ├── packets_essentiels.txt │ ├── regexps.txt │ ├── repertoire_dev.txt │ ├── sequence_echappement_backslash.txt │ ├── sequence_echappement_date.txt │ ├── specifications.txt │ ├── taille_des_fichiers.txt │ └── users_and_groups.txt ├── C++ │ ├── Gnome │ │ ├── Atkmm │ │ │ └── atkmm.txt │ │ ├── Cairomm │ │ │ └── cairomm.txt │ │ ├── GObject │ │ │ └── GObject.txt │ │ ├── Gdkmm │ │ │ └── gdkmm.txt │ │ ├── Giomm │ │ │ └── giomm.txt │ │ ├── Glibmm │ │ │ └── Glibmm.txt │ │ ├── Gtkmm │ │ │ └── gtkmm.txt │ │ ├── Pangomm │ │ │ └── pangomm.txt │ │ ├── glade.txt │ │ └── libsigc++ │ │ │ └── libsigc++.txt │ ├── argument_dependent_lookup.txt │ ├── exception_safety.txt │ ├── generic_programming.txt │ ├── metaprogramming.txt │ ├── naming_convention.txt │ └── optimization.txt └── Utilities_to_sort │ ├── C++ │ ├── Boost │ │ ├── Images │ │ │ └── random.jpg │ │ ├── any.txt │ │ ├── array.txt │ │ ├── boost.txt │ │ ├── boost_uuid.txt │ │ ├── call_traits.txt │ │ ├── compressed_pair.txt │ │ ├── concept_check_assert.txt │ │ ├── crc.txt │ │ ├── date_time.txt │ │ ├── dynamic_bitset.txt │ │ ├── filesystem.txt │ │ ├── function_bind_mem_fn.txt │ │ ├── hash.txt │ │ ├── iterator.txt │ │ ├── lexical_cast.txt │ │ ├── random.txt │ │ ├── range_algorithm.txt │ │ ├── ref.txt │ │ ├── serialization.txt │ │ ├── smart_ptr.txt │ │ ├── swap.txt │ │ ├── thread.txt │ │ ├── timer.txt │ │ ├── tribool.txt │ │ ├── tuple.txt │ │ ├── type_traits.txt │ │ └── variant.txt │ └── Standard_library │ │ ├── algorithm.txt │ │ ├── bitset.txt │ │ ├── containers.txt │ │ ├── exception.txt │ │ ├── functional.txt │ │ ├── iterator.txt │ │ ├── limits.txt │ │ ├── locale.txt │ │ ├── memory.txt │ │ ├── new.txt │ │ ├── streams.txt │ │ ├── string.txt │ │ ├── typeinfo.txt │ │ ├── utility.txt │ │ └── valarray.txt │ └── C │ ├── Glibc │ ├── IO_filedescriptors.txt │ ├── IO_memoire.txt │ ├── IO_normale.txt │ ├── attributs_fichiers.txt │ ├── caracteres.txt │ ├── communication_interprocess.txt │ ├── dynamic_allocation.txt │ ├── encodage_crypto.txt │ ├── erreurs.txt │ ├── extension_64_bits.txt │ ├── fichiers_temporaires.txt │ ├── goto.txt │ ├── limites.txt │ ├── options_programme.txt │ ├── program_execution.txt │ ├── repertoires.txt │ ├── signaux.txt │ ├── strings.txt │ ├── systeme_de_fichier.txt │ ├── time.txt │ ├── unfinished.txt │ └── wchar_wstr.txt │ └── Standard_library │ ├── C89 │ ├── assert.txt │ ├── ctype.txt │ ├── errno.txt │ ├── float.txt │ ├── limits.txt │ ├── locale.txt │ ├── math.txt │ ├── setjmp.txt │ ├── signal.txt │ ├── stdarg.txt │ ├── stddef.txt │ ├── stdio.txt │ ├── stdlib.txt │ ├── string.txt │ └── time.txt │ ├── C95 │ ├── iso646.txt │ ├── wchar.txt │ └── wctype.txt │ └── C99 │ ├── inttypes.txt │ ├── stdbool.txt │ └── stdint.txt ├── Types ├── Date_time │ └── Date_time_general │ │ ├── Date_picker │ │ └── bootstrap-datepicker.bootstrap.txt │ │ ├── Date_popovers │ │ └── jquery-timeago.jquery.txt │ │ └── Utilities │ │ ├── Duration_parsing │ │ └── parse-ms.node.txt │ │ ├── Duration_serializing │ │ ├── deno_fmt_duration.deno.txt │ │ ├── ms.node_cli.txt │ │ ├── pretty-hrtime.node.txt │ │ ├── pretty-ms.node.txt │ │ └── pretty-time.node.txt │ │ ├── date-fns.javascript.txt │ │ ├── day.js.javascript.txt │ │ ├── deno_datetime.deno.txt │ │ ├── js-joda.javascript.txt │ │ ├── luxon.javascript.txt │ │ └── moment.javascript.txt ├── Numbers │ ├── Numbers_general │ │ └── Arbitrary_precision │ │ │ └── Integers │ │ │ └── Source_map_VLQ │ │ │ ├── source-list-map-vlq.javascript.txt │ │ │ ├── source_map_vlq.format.txt │ │ │ └── vlq.javascript.txt │ └── Units │ │ └── Human_friendly_units │ │ └── Bytes │ │ ├── bytes.node.txt │ │ └── deno_bytes.deno.txt └── Strings │ └── Strings_general │ ├── Diff │ ├── Patch │ │ ├── json_merge_patch.format.txt │ │ ├── json_patch.format.txt │ │ └── patch.cli.txt │ ├── VCDiff │ │ ├── vcdiff.format.txt │ │ └── xdelta.cli.txt │ ├── cmp.cli.txt │ ├── comm.cli.txt │ ├── diff3.cli.txt │ └── diff_sdiff.cli.txt │ ├── Encoding │ └── base64_base32_hex_octal │ │ ├── base64-js.javascript.txt │ │ ├── base64_58_32_85_hex.deno.txt │ │ ├── base64_base32_hex_octal.format.txt │ │ ├── js-base64.javascript.txt │ │ └── mathiasbynens_base64.javascript.txt │ ├── Manipulation │ ├── Case │ │ ├── camelcase-keys.node.txt │ │ ├── camelcase.node.txt │ │ ├── decamelize.node.txt │ │ ├── deno_case.deno.txt │ │ ├── humanize-string.node.txt │ │ └── titleize.node.txt │ ├── Concatenation │ │ ├── gulp-concat.gulp.txt │ │ └── gulp-header-footer.gulp.txt │ ├── Indent │ │ ├── detect-indent.node.txt │ │ ├── indent-string.node.txt │ │ ├── min-indent.node.txt │ │ ├── redent.node.txt │ │ └── strip-indent.node.txt │ ├── Newline │ │ ├── Detect │ │ │ ├── deno_detect_newline.deno.txt │ │ │ └── detect-newline.node.txt │ │ ├── Format │ │ │ └── deno_format_newline.deno.txt │ │ └── Strip │ │ │ └── strip-final-newline.node.txt │ ├── Reverse │ │ └── deno_reverse.deno.txt │ ├── Slugify │ │ ├── deno_slugify.deno.txt │ │ ├── simov_slugify.javascript.txt │ │ └── sindresorhus_slugify.node.txt │ └── Utilities │ │ ├── pluralize.javascript.txt │ │ ├── underscore.string.javascript.txt │ │ └── yn.node.txt │ ├── Matching │ ├── Globbing │ │ ├── Braces │ │ │ └── brace-expansion.javascript.txt │ │ ├── Detection │ │ │ └── deno_isglob.deno.txt │ │ ├── Format │ │ │ └── globbing.format.txt │ │ └── Match │ │ │ ├── deno_glob.deno.txt │ │ │ └── minimatch.node.txt │ ├── Path │ │ ├── common-path-prefix.javascript.txt │ │ └── deno_common.deno.txt │ ├── RegExp │ │ ├── Escape │ │ │ ├── deno_regexp_escape.deno.txt │ │ │ └── escape-string-regexp.node.txt │ │ ├── Format │ │ │ └── posix_class.format.txt │ │ ├── Replace │ │ │ └── gulp-replace.gulp.txt │ │ └── Tokenize │ │ │ └── ret.node.txt │ └── balanced-match.javascript.txt │ ├── Search │ └── Fuzzy │ │ └── deno_levenshtein.deno.txt │ └── Validation │ └── validator.js.javascript.txt └── UX ├── Accessibility ├── Empathy_engineering │ └── empathy_engineering.theory.txt └── accessibility.theory.txt ├── Behavior ├── Analytics │ ├── analytics.theory.txt │ └── angulartics.angular.txt └── Copy_paste │ └── Server │ ├── clipboard-cli.node.txt │ ├── clipboardy.node.txt │ └── node-copy-paste.node.txt ├── Boxes ├── Modals │ └── avgrund.jquery.txt └── Toast_notification │ └── angular_growl_2.angular.txt ├── Components_framework └── Full │ └── Bootstrap │ ├── bootlint.cli.txt │ └── bootstrap.javascript_css.txt ├── Forms ├── Form_input │ └── Autosize │ │ └── autosize.javascript.txt ├── Form_select │ ├── chosen.jquery.txt │ └── select2.jquery.txt ├── Form_sliders │ └── knob.jquery.txt ├── Progress_bars │ └── nprogress.javascript.txt ├── Rich_editor │ ├── Autocompletion │ │ └── Inside_input │ │ │ └── typeahead.js.jquery.txt │ └── RTF │ │ ├── ckeditor.javascript.txt │ │ └── redactor.jquery.txt └── Spinners │ ├── Buttons │ └── ladda.javascript.txt │ └── General │ └── spinkit.css.txt ├── General └── Theory │ ├── UX_animations.theory.txt │ ├── UX_consent.theory.txt │ ├── UX_forms.theory.txt │ ├── UX_general.theory.txt │ ├── UX_interactions.theory.txt │ ├── UX_mobile.theory.txt │ ├── UX_performance.theory.txt │ └── usability.theory.txt ├── Information_structure ├── Hamburger_menu │ └── Whole_menu │ │ ├── meny.javascript.txt │ │ └── snap.js.javascript.txt ├── Layout │ ├── Bricks │ │ └── masonry.javascript.txt │ └── Sticky_header │ │ └── headroom.js.jquery.txt ├── Presentations │ └── Web │ │ └── fullpage.js.jquery.txt └── Tables │ ├── ng-grid.angular.txt │ └── ngtable.angular.txt ├── Interaction ├── Gestures │ └── hammer.js.javascript.txt ├── Keyboard │ └── mousetrap.javascript.txt ├── Orientation │ └── parallax.js.javascript.txt └── Scrolling │ ├── Animate_on_scroll │ ├── scrollreveal.javascript.txt │ ├── skrollr.javascript.txt │ ├── stroll.javascript.txt │ └── waypoints.javascript.txt │ └── Enhanced_scrolling │ ├── nicescroll.jquery.txt │ └── slimscroll.jquery.txt └── Text ├── Content └── content_strategy.theory.txt └── i18n ├── Country-dependent └── Data │ └── countries-list.node.txt ├── Encoding ├── All │ ├── Detection │ │ ├── jschardet.node.txt │ │ └── node_chardet.node.txt │ ├── Encode_decode │ │ ├── iconv_lite.node.txt │ │ └── node_iconv.node.txt │ ├── comparatif_encodage.theory.txt │ └── histoire_encodage.theory.txt ├── Non-Unicode │ ├── detailed_encoding.format.txt │ └── summary_encoding.format.txt └── Unicode │ ├── Data │ └── unicode-data.node.txt │ ├── Detection │ └── astral-regex.node.txt │ ├── Formats │ ├── unicode.format.txt │ ├── unicode_language_tags.format.txt │ ├── utf16_ucs2.format.txt │ ├── utf32_ucs4.format.txt │ └── utf8.format.txt │ └── Width │ ├── get-east-asian-width.node.txt │ └── is-fullwidth-code-point.node.txt ├── General ├── c++_internationalization.c++.txt └── gtk_internationalization.gtk.txt ├── Recognition └── os-locale.node.txt ├── Translation └── Library │ ├── Extraction │ ├── gettext.many.txt │ └── i18n.node.txt │ ├── Formats │ └── po2json.node_cli.txt │ └── Replacement │ ├── angular_translate.angular.txt │ └── jed.javascript.txt └── internationalization.theory.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/.gitignore -------------------------------------------------------------------------------- /Architecture/Code_design/Algorithms/Search/graph.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Algorithms/Search/graph.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Algorithms/algorithms.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Algorithms/algorithms.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Algorithms/merge.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Algorithms/merge.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Algorithms/sorting.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Algorithms/sorting.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Requirements/modularity.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Requirements/modularity.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Requirements/stability.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Requirements/stability.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/Simple/bit.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/Simple/bit.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/Simple/boolean.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/Simple/boolean.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/Simple/character.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/Simple/character.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/Simple/emptiness.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/Simple/emptiness.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/Simple/enum.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/Simple/enum.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/Simple/integers.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/Simple/integers.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/aggregate.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/aggregate.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/object_oriented.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/object_oriented.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/polymorphism.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/polymorphism.theory.txt -------------------------------------------------------------------------------- /Architecture/Code_design/Types/types.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Code_design/Types/types.theory.txt -------------------------------------------------------------------------------- /Architecture/Dependencies/Runtime_manager/Deno/dvm.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Dependencies/Runtime_manager/Deno/dvm.deno.txt -------------------------------------------------------------------------------- /Architecture/Dependencies/Runtime_manager/Node/n.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Dependencies/Runtime_manager/Node/n.node.txt -------------------------------------------------------------------------------- /Architecture/Dependencies/Runtime_manager/Node/nvm.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Dependencies/Runtime_manager/Node/nvm.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Functors/mimic-function.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Functors/mimic-function.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Functors/rename-fn.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Functors/rename-fn.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Immutable/immutable.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Immutable/immutable.javascript.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Clone/clone.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Clone/clone.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Equal/deep_equal.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Equal/deep_equal.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Find/deno_find.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Find/deno_find.deno.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Get/dot-prop.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Get/dot-prop.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Get/get-value.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Get/get-value.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Group/deno_group.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Group/deno_group.deno.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Merge/deep-merge.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Merge/deep-merge.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Merge/deepmerge.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Merge/deepmerge.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Merge/merge-deep.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Merge/merge-deep.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Once/once.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Once/once.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Once/onetime.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Once/onetime.node.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/Zip/deno_zip.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/Zip/deno_zip.deno.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/deno_sum.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/deno_sum.deno.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/recompose.react.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/recompose.react.txt -------------------------------------------------------------------------------- /Architecture/Functional/Utilities/reselect.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Functional/Utilities/reselect.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Callbacks/bach.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Callbacks/bach.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Events/p-event.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Events/p-event.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Events/propagate.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Events/propagate.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Promises/Map/p-all.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Promises/Map/p-all.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Promises/Map/p-map.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Promises/Map/p-map.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Promises/Test/p-one.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Promises/Test/p-one.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Retry/deno_retry.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Retry/deno_retry.deno.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Signals/signal-exit.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Signals/signal-exit.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Signals/signal_handler.c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Signals/signal_handler.c.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Streams/Create/from.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Streams/Create/from.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Async/Streams/Errors/pump.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Async/Streams/Errors/pump.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Caching/HTTP/Vary/vary.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Caching/HTTP/Vary/vary.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Caching/LRU/deno_lru.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Caching/LRU/deno_lru.deno.txt -------------------------------------------------------------------------------- /Architecture/Performance/Caching/LRU/flru.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Caching/LRU/flru.javascript.txt -------------------------------------------------------------------------------- /Architecture/Performance/Caching/LRU/lru-cache.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Caching/LRU/lru-cache.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/Caching/caching.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Caching/caching.theory.txt -------------------------------------------------------------------------------- /Architecture/Performance/Compression/compression.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Compression/compression.theory.txt -------------------------------------------------------------------------------- /Architecture/Performance/Concurrency/concurrency.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Concurrency/concurrency.theory.txt -------------------------------------------------------------------------------- /Architecture/Performance/Limiting/Timeout/delay.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/Limiting/Timeout/delay.node.txt -------------------------------------------------------------------------------- /Architecture/Performance/cpu_optimization.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/cpu_optimization.theory.txt -------------------------------------------------------------------------------- /Architecture/Performance/performance.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Performance/performance.theory.txt -------------------------------------------------------------------------------- /Architecture/Security/Authentication/JWT/jws.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Authentication/JWT/jws.node.txt -------------------------------------------------------------------------------- /Architecture/Security/Authentication/JWT/jwt.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Authentication/JWT/jwt.format.txt -------------------------------------------------------------------------------- /Architecture/Security/Authentication/JWT/pgjwt.postgres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Authentication/JWT/pgjwt.postgres.txt -------------------------------------------------------------------------------- /Architecture/Security/Authorization/Framework/IAM.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Authorization/Framework/IAM.aws.txt -------------------------------------------------------------------------------- /Architecture/Security/Authorization/Framework/STS.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Authorization/Framework/STS.aws.txt -------------------------------------------------------------------------------- /Architecture/Security/Cryptography/Checksum/luhn.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Cryptography/Checksum/luhn.format.txt -------------------------------------------------------------------------------- /Architecture/Security/Cryptography/Email/openPGP.gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Cryptography/Email/openPGP.gui.txt -------------------------------------------------------------------------------- /Architecture/Security/Cryptography/Key/keygrip.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Cryptography/Key/keygrip.node.txt -------------------------------------------------------------------------------- /Architecture/Security/Cryptography/Random/pgc32.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Cryptography/Random/pgc32.deno.txt -------------------------------------------------------------------------------- /Architecture/Security/Cryptography/Random/random.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Cryptography/Random/random.theory.txt -------------------------------------------------------------------------------- /Architecture/Security/Privacy/Referrer/referrer.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Privacy/Referrer/referrer.theory.txt -------------------------------------------------------------------------------- /Architecture/Security/Privacy/tracking.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Architecture/Security/Privacy/tracking.theory.txt -------------------------------------------------------------------------------- /Business/Law/licences.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Business/Law/licences.theory.txt -------------------------------------------------------------------------------- /Business/Law/pci_dss.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Business/Law/pci_dss.theory.txt -------------------------------------------------------------------------------- /Business/Law/psd2.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Business/Law/psd2.theory.txt -------------------------------------------------------------------------------- /Business/Money/Payment/stripe.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Business/Money/Payment/stripe.saas.txt -------------------------------------------------------------------------------- /Business/Office/Project_management/Pivotal_Tracker.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Business/Office/Project_management/Pivotal_Tracker.saas.txt -------------------------------------------------------------------------------- /Business/Office/Team_management/team_management.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Business/Office/Team_management/team_management.theory.txt -------------------------------------------------------------------------------- /Business/Promotion/Ads/Badges/shields.io.images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Business/Promotion/Ads/Badges/shields.io.images.txt -------------------------------------------------------------------------------- /Business/Promotion/SEO/SEO.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Business/Promotion/SEO/SEO.theory.txt -------------------------------------------------------------------------------- /Communication/Messaging/Chat/General/gitter.im.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Communication/Messaging/Chat/General/gitter.im.saas.txt -------------------------------------------------------------------------------- /Communication/Messaging/MIME/Extensions/mime-db.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Communication/Messaging/MIME/Extensions/mime-db.json.txt -------------------------------------------------------------------------------- /Communication/Messaging/MIME/Extensions/mime-types.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Communication/Messaging/MIME/Extensions/mime-types.node.txt -------------------------------------------------------------------------------- /Communication/Messaging/MIME/Extensions/mime.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Communication/Messaging/MIME/Extensions/mime.node.txt -------------------------------------------------------------------------------- /Communication/Messaging/MIME/Matching/type-is.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Communication/Messaging/MIME/Matching/type-is.node.txt -------------------------------------------------------------------------------- /Communication/Messaging/MIME/Parsing/media-typer.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Communication/Messaging/MIME/Parsing/media-typer.node.txt -------------------------------------------------------------------------------- /Communication/Messaging/MIME/Parsing/media_types.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Communication/Messaging/MIME/Parsing/media_types.deno.txt -------------------------------------------------------------------------------- /Data/Data_management/Fake_data/Generic/casual.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/Fake_data/Generic/casual.node.txt -------------------------------------------------------------------------------- /Data/Data_management/ORM/Key_value/keyv.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/ORM/Key_value/keyv.node.txt -------------------------------------------------------------------------------- /Data/Data_management/ORM/Many_types/waterline.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/ORM/Many_types/waterline.node.txt -------------------------------------------------------------------------------- /Data/Data_management/Validation/General/JTD/JTD.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/Validation/General/JTD/JTD.format.txt -------------------------------------------------------------------------------- /Data/Data_management/Validation/General/joi.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/Validation/General/joi.node.txt -------------------------------------------------------------------------------- /Data/Data_management/Validation/General/obey.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/Validation/General/obey.javascript.txt -------------------------------------------------------------------------------- /Data/Data_management/Validation/General/schm.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/Validation/General/schm.javascript.txt -------------------------------------------------------------------------------- /Data/Data_management/Validation/General/yup.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/Validation/General/yup.javascript.txt -------------------------------------------------------------------------------- /Data/Data_management/Validation/validation.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_management/Validation/validation.theory.txt -------------------------------------------------------------------------------- /Data/Data_types/Data_format/data_format.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_types/Data_format/data_format.theory.txt -------------------------------------------------------------------------------- /Data/Data_types/Documents/mongodb.database.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_types/Documents/mongodb.database.txt -------------------------------------------------------------------------------- /Data/Data_types/Flat_tables/s3_tables.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_types/Flat_tables/s3_tables.aws.txt -------------------------------------------------------------------------------- /Data/Data_types/Key_value/Structured/redis.database.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_types/Key_value/Structured/redis.database.txt -------------------------------------------------------------------------------- /Data/Data_types/Offline/utilities/offline.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_types/Offline/utilities/offline.javascript.txt -------------------------------------------------------------------------------- /Data/Data_types/Relations/Database/postgres.database.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_types/Relations/Database/postgres.database.txt -------------------------------------------------------------------------------- /Data/Data_types/Relations/Database/rds.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Data_types/Relations/Database/rds.aws.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Tar/deno_tar.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Tar/deno_tar.deno.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Tar/gulp-tar.gulp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Tar/gulp-tar.gulp.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Tar/node-tar.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Tar/node-tar.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Tar/tar-stream.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Tar/tar-stream.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Tar/tar.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Tar/tar.cli.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Zip/adm-zip.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Zip/adm-zip.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Zip/jszip.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Zip/jszip.javascript.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Zip/node-unzip.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Zip/node-unzip.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Zip/node-zip.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Zip/node-zip.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Zip/yauzl.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Zip/yauzl.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Zip/yazl.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Zip/yazl.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Archives/Zip/zip.js.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Archives/Zip/zip.js.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Check/path-type.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Check/path-type.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Copy/copy-file.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Copy/copy-file.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Copy/cpy.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Copy/cpy.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Copy/deno_copy.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Copy/deno_copy.deno.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Delete/del.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Delete/del.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Delete/rimraf.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Delete/rimraf.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Move/deno_rename.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Move/deno_rename.deno.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Move/move-file.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Move/move-file.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Move/node-mv.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Move/node-mv.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Open/deno_open.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Open/deno_open.deno.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Watch/chokidar.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Watch/chokidar.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Watch/deno_watch.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Watch/deno_watch.deno.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/Commands/Watch/gaze.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/Commands/Watch/gaze.node.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/File_paths/deno_path.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/File_paths/deno_path.deno.txt -------------------------------------------------------------------------------- /Data/Files/Files_general/file_uri_scheme.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Files_general/file_uri_scheme.identifier.txt -------------------------------------------------------------------------------- /Data/Files/Virtual_filesystem/Fuse/s3fs_fuse.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Files/Virtual_filesystem/Fuse/s3fs_fuse.cli.txt -------------------------------------------------------------------------------- /Data/Markup/HTML/HTML.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/HTML/HTML.language.txt -------------------------------------------------------------------------------- /Data/Markup/HTML/Transpiler/jade.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/HTML/Transpiler/jade.language.txt -------------------------------------------------------------------------------- /Data/Markup/Markdown/Rendering/marked.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/Markdown/Rendering/marked.node_cli.txt -------------------------------------------------------------------------------- /Data/Markup/Markdown/Syntax/markdown.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/Markdown/Syntax/markdown.language.txt -------------------------------------------------------------------------------- /Data/Markup/Templates/Flat_strings/deno_printf.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/Templates/Flat_strings/deno_printf.deno.txt -------------------------------------------------------------------------------- /Data/Markup/Templates/HTML/classnames.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/Templates/HTML/classnames.javascript.txt -------------------------------------------------------------------------------- /Data/Markup/Templates/Strings/consolidate.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/Templates/Strings/consolidate.node.txt -------------------------------------------------------------------------------- /Data/Markup/Templates/URI/uri-templates.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/Templates/URI/uri-templates.javascript.txt -------------------------------------------------------------------------------- /Data/Markup/Templates/URI/uri_templates.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Markup/Templates/URI/uri_templates.format.txt -------------------------------------------------------------------------------- /Data/Serialization/Binary/Utilities/deno_binary.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Binary/Utilities/deno_binary.deno.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/CSON/cson.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/CSON/cson.format.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/CSON/cson_parser.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/CSON/cson_parser.node_cli.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/ESON/eson.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/ESON/eson.node.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/HJSON/hjson.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/HJSON/hjson.format.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/JSON/Canonical/son.haskell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/JSON/Canonical/son.haskell.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/JSON/Syntax/json.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/JSON/Syntax/json.format.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/JSON5/JSON5.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/JSON5/JSON5.format.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/JSON5/json5.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/JSON5/json5.javascript.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/JSONC/deno_jsonc.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/JSONC/deno_jsonc.deno.txt -------------------------------------------------------------------------------- /Data/Serialization/JSON_like/JSONC/jsonc.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/JSON_like/JSONC/jsonc.format.txt -------------------------------------------------------------------------------- /Data/Serialization/Print/concordance.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Print/concordance.node.txt -------------------------------------------------------------------------------- /Data/Serialization/Print/deno_inspect.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Print/deno_inspect.deno.txt -------------------------------------------------------------------------------- /Data/Serialization/Print/jsfmt.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Print/jsfmt.javascript.txt -------------------------------------------------------------------------------- /Data/Serialization/Print/pretty-format.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Print/pretty-format.javascript.txt -------------------------------------------------------------------------------- /Data/Serialization/Query/JSON/JMESPath/jmespath.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Query/JSON/JMESPath/jmespath.format.txt -------------------------------------------------------------------------------- /Data/Serialization/Query/JSON/JSON_path/fastpath.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Query/JSON/JSON_path/fastpath.node.txt -------------------------------------------------------------------------------- /Data/Serialization/Query/JSON/JSON_path/jsonpath.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Query/JSON/JSON_path/jsonpath.format.txt -------------------------------------------------------------------------------- /Data/Serialization/Query/JSON/jsonata.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Query/JSON/jsonata.node.txt -------------------------------------------------------------------------------- /Data/Serialization/Schemaful/XML/Syntax/XML.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Schemaful/XML/Syntax/XML.format.txt -------------------------------------------------------------------------------- /Data/Serialization/Simplistic/INI/ini.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Simplistic/INI/ini.format.txt -------------------------------------------------------------------------------- /Data/Serialization/Simplistic/TOML/toml.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Simplistic/TOML/toml.format.txt -------------------------------------------------------------------------------- /Data/Serialization/Table/CSV/Parser_serializer/csv.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Table/CSV/Parser_serializer/csv.deno.txt -------------------------------------------------------------------------------- /Data/Serialization/Table/CSV/Parser_serializer/csv.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Table/CSV/Parser_serializer/csv.node.txt -------------------------------------------------------------------------------- /Data/Serialization/Table/CSV/Syntax/dsv_tsv_csv.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Table/CSV/Syntax/dsv_tsv_csv.format.txt -------------------------------------------------------------------------------- /Data/Serialization/Type_rich/YAML/Linting/yamllint.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Type_rich/YAML/Linting/yamllint.cli.txt -------------------------------------------------------------------------------- /Data/Serialization/Type_rich/YAML/yaml.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/Type_rich/YAML/yaml.format.txt -------------------------------------------------------------------------------- /Data/Serialization/serialization_formats.summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/Serialization/serialization_formats.summary.txt -------------------------------------------------------------------------------- /Data/State/Client_server_state/Cookies/cookies.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Client_server_state/Cookies/cookies.theory.txt -------------------------------------------------------------------------------- /Data/State/Databases_general/database_theory.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Databases_general/database_theory.theory.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Decentralized/ULID/ulid.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Decentralized/ULID/ulid.deno.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Decentralized/UUID/uuidjs.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Decentralized/UUID/uuidjs.node.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Decentralized/cuid2.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Decentralized/cuid2.javascript.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Decentralized/nanoid.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Decentralized/nanoid.javascript.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Full-content/data_uri.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Full-content/data_uri.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Hash/ni.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Hash/ni.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Hash/pg_hashids.postgres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Hash/pg_hashids.postgres.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Hash/sigmund.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Hash/sigmund.node.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Human-friendly/nih.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Human-friendly/nih.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Human-friendly/tag.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Human-friendly/tag.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Others/doi.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Others/doi.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Others/oid.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Others/oid.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Others/publicid_fpi.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Others/publicid_fpi.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/Others/urn.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/Others/urn.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/URI/URI.identifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/URI/URI.identifier.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/identifiers.summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/identifiers.summary.txt -------------------------------------------------------------------------------- /Data/State/Identifiers/web_architecture.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/Identifiers/web_architecture.theory.txt -------------------------------------------------------------------------------- /Data/State/state.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data/State/state.theory.txt -------------------------------------------------------------------------------- /Data_science/Big_data/big_data.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Big_data/big_data.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/abstract_algebra.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/abstract_algebra.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/algebra.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/algebra.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/algebra_equations.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/algebra_equations.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/analysis.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/analysis.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/arithmetic.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/arithmetic.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/calculus.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/calculus.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/combinatorics.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/combinatorics.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/financial_math.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/financial_math.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/functions_math.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/functions_math.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/game_theory.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/game_theory.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/graph_theory.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/graph_theory.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/logic.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/logic.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/math_summary.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/math_summary.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/matrices.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/matrices.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/number_theory.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/number_theory.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/numeral_history.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/numeral_history.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/numeral_systems.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/numeral_systems.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/numerical_analysis.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/numerical_analysis.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/order_theory.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/order_theory.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/set_theory.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/set_theory.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/statistics_theory.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/statistics_theory.theory.txt -------------------------------------------------------------------------------- /Data_science/Computation/Math/survey.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Data_science/Computation/Math/survey.theory.txt -------------------------------------------------------------------------------- /Design/CSS/General/CSS.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/CSS/General/CSS.language.txt -------------------------------------------------------------------------------- /Design/CSS/General/CSS_in_JavaScript/cssx.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/CSS/General/CSS_in_JavaScript/cssx.javascript.txt -------------------------------------------------------------------------------- /Design/CSS/General/CSS_in_JavaScript/jss.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/CSS/General/CSS_in_JavaScript/jss.javascript.txt -------------------------------------------------------------------------------- /Design/CSS/General/CSS_in_JavaScript/react-css.react.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/CSS/General/CSS_in_JavaScript/react-css.react.txt -------------------------------------------------------------------------------- /Design/Visual/Colors/Manipulation/color-convert.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Colors/Manipulation/color-convert.node.txt -------------------------------------------------------------------------------- /Design/Visual/Colors/Manipulation/tinycolor.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Colors/Manipulation/tinycolor.node.txt -------------------------------------------------------------------------------- /Design/Visual/Colors/Terminal/Apply/ansi-colors.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Colors/Terminal/Apply/ansi-colors.node.txt -------------------------------------------------------------------------------- /Design/Visual/Colors/Terminal/Apply/chalk.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Colors/Terminal/Apply/chalk.node_cli.txt -------------------------------------------------------------------------------- /Design/Visual/Colors/Terminal/Apply/colorette.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Colors/Terminal/Apply/colorette.node.txt -------------------------------------------------------------------------------- /Design/Visual/Colors/Terminal/Apply/colors.js.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Colors/Terminal/Apply/colors.js.node.txt -------------------------------------------------------------------------------- /Design/Visual/Colors/Terminal/Apply/kleur.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Colors/Terminal/Apply/kleur.node.txt -------------------------------------------------------------------------------- /Design/Visual/Colors/Terminal/Apply/yoctocolors.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Colors/Terminal/Apply/yoctocolors.node.txt -------------------------------------------------------------------------------- /Design/Visual/Typography/typography.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Design/Visual/Typography/typography.theory.txt -------------------------------------------------------------------------------- /DevOps/Configuration/Configuration_data/rc.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Configuration/Configuration_data/rc.node.txt -------------------------------------------------------------------------------- /DevOps/Configuration/Configuration_files/conf.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Configuration/Configuration_files/conf.node.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/CDN/PaaS/netlify.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/CDN/PaaS/netlify.saas.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/CDN/cloudfront.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/CDN/cloudfront.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/FaaS_serverless/IaaS/lambda.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/FaaS_serverless/IaaS/lambda.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaC/CloudFormation/CDK/cdk.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaC/CloudFormation/CDK/cdk.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaC/CloudFormation/CLI/rain.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaC/CloudFormation/CLI/rain.cli.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaC/CloudFormation/SAM/sar.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaC/CloudFormation/SAM/sar.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaC/Pulumi/pulumi.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaC/Pulumi/pulumi.saas.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaC/Pulumi/pulumi_aws.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaC/Pulumi/pulumi_aws.saas.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_actions.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_actions.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_auth.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_auth.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_billing.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_billing.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_cli.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_cli.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_config.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_config.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_endpoint.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_endpoint.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_general.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_general.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_identifiers.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_identifiers.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_javascript.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_javascript.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_list_services.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_list_services.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_network.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_network.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_new_service.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_new_service.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_regions.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_regions.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_signature.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_signature.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_support.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_support.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_tags.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_tags.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/AWS/aws_toolkit.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/AWS/aws_toolkit.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/IaaS/Compute/ec2.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/IaaS/Compute/ec2.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/PaaS/beanstalk.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/PaaS/beanstalk.aws.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/PaaS/heroku.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/PaaS/heroku.saas.txt -------------------------------------------------------------------------------- /DevOps/Infrastructure/SaaS/Google_APIs.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Infrastructure/SaaS/Google_APIs.saas.txt -------------------------------------------------------------------------------- /DevOps/Supervision/Cluster_orchestration/kubernetes.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Supervision/Cluster_orchestration/kubernetes.cli.txt -------------------------------------------------------------------------------- /DevOps/Supervision/Process_supervisor/forever.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Supervision/Process_supervisor/forever.node_cli.txt -------------------------------------------------------------------------------- /DevOps/Supervision/Process_supervisor/pm2.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Supervision/Process_supervisor/pm2.node_cli.txt -------------------------------------------------------------------------------- /DevOps/Virtualization/Containers/containers.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/DevOps/Virtualization/Containers/containers.theory.txt -------------------------------------------------------------------------------- /Dev_helpers/Automation/Build_automation/cmake.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Automation/Build_automation/cmake.cli.txt -------------------------------------------------------------------------------- /Dev_helpers/Automation/Build_automation/gulp.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Automation/Build_automation/gulp.javascript.txt -------------------------------------------------------------------------------- /Dev_helpers/Automation/Live_reloading/livereload.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Automation/Live_reloading/livereload.node.txt -------------------------------------------------------------------------------- /Dev_helpers/Automation/Live_reloading/nodemon.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Automation/Live_reloading/nodemon.node.txt -------------------------------------------------------------------------------- /Dev_helpers/Automation/Scaffolding/Generic/yeoman.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Automation/Scaffolding/Generic/yeoman.cli.txt -------------------------------------------------------------------------------- /Dev_helpers/Coding/Documentation/API/OpenAPI/redoc.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Coding/Documentation/API/OpenAPI/redoc.node.txt -------------------------------------------------------------------------------- /Dev_helpers/Coding/IDE/Configuration/editorconfig.ini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Coding/IDE/Configuration/editorconfig.ini.txt -------------------------------------------------------------------------------- /Dev_helpers/Coding/Open_source/open_source.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Coding/Open_source/open_source.theory.txt -------------------------------------------------------------------------------- /Dev_helpers/Coding/Version_control/Git/VCS.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Coding/Version_control/Git/VCS.theory.txt -------------------------------------------------------------------------------- /Dev_helpers/Coding/Version_control/Git/git/git.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Coding/Version_control/Git/git/git.cli.txt -------------------------------------------------------------------------------- /Dev_helpers/Coding/Version_control/Git/git/husky.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Coding/Version_control/Git/git/husky.node.txt -------------------------------------------------------------------------------- /Dev_helpers/Coding/Version_control/Git/lint-staged.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Coding/Version_control/Git/lint-staged.cli.txt -------------------------------------------------------------------------------- /Dev_helpers/Coding/Version_control/GitHub/github.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Coding/Version_control/GitHub/github.saas.txt -------------------------------------------------------------------------------- /Dev_helpers/Insights/Logging/Dashboard/bugsnag.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Insights/Logging/Dashboard/bugsnag.saas.txt -------------------------------------------------------------------------------- /Dev_helpers/Quality_assurance/Testing/testing.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Dev_helpers/Quality_assurance/Testing/testing.theory.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/LICENSE -------------------------------------------------------------------------------- /Languages/C++/C++.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/C++/C++.language.txt -------------------------------------------------------------------------------- /Languages/C/C.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/C/C.language.txt -------------------------------------------------------------------------------- /Languages/C/Compiling/gcc/cpp.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/C/Compiling/gcc/cpp.cli.txt -------------------------------------------------------------------------------- /Languages/C/Compiling/gcc/feature_test_macro.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/C/Compiling/gcc/feature_test_macro.cli.txt -------------------------------------------------------------------------------- /Languages/C/Compiling/gcc/gcc.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/C/Compiling/gcc/gcc.cli.txt -------------------------------------------------------------------------------- /Languages/C/Compiling/gcc/gcc_optimization.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/C/Compiling/gcc/gcc_optimization.cli.txt -------------------------------------------------------------------------------- /Languages/C/shared_libraries.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/C/shared_libraries.theory.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/CSS/csslint.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/CSS/csslint.node_cli.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/CSS/scss-lint.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/CSS/scss-lint.cli.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/CSS/stylelint.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/CSS/stylelint.node_cli.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/Go/go_msan.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/Go/go_msan.cli.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/Go/go_vet.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/Go/go_vet.cli.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/HTML/htmlhint.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/HTML/htmlhint.node_cli.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/HTML/nu_html_checker.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/HTML/nu_html_checker.cli.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/HTML/w3cjs.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/HTML/w3cjs.node.txt -------------------------------------------------------------------------------- /Languages/Coding_style/Linting/remark-lint.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Coding_style/Linting/remark-lint.node_cli.txt -------------------------------------------------------------------------------- /Languages/CoffeeScript/coffeescript.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/CoffeeScript/coffeescript.language.txt -------------------------------------------------------------------------------- /Languages/Go/go_build.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Go/go_build.cli.txt -------------------------------------------------------------------------------- /Languages/Go/go_cli.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Go/go_cli.cli.txt -------------------------------------------------------------------------------- /Languages/Go/go_language.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Go/go_language.language.txt -------------------------------------------------------------------------------- /Languages/Go/go_modules.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Go/go_modules.cli.txt -------------------------------------------------------------------------------- /Languages/Go/go_standard_library.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Go/go_standard_library.go.txt -------------------------------------------------------------------------------- /Languages/JavaScript/Data_binding/stickit.backbone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/JavaScript/Data_binding/stickit.backbone.txt -------------------------------------------------------------------------------- /Languages/JavaScript/Deno/Node_deno/deno2node.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/JavaScript/Deno/Node_deno/deno2node.deno.txt -------------------------------------------------------------------------------- /Languages/JavaScript/Deno/Node_deno/denoify.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/JavaScript/Deno/Node_deno/denoify.node.txt -------------------------------------------------------------------------------- /Languages/JavaScript/Deno/Node_deno/dnt.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/JavaScript/Deno/Node_deno/dnt.deno.txt -------------------------------------------------------------------------------- /Languages/JavaScript/Deno/Node_deno/node_shims.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/JavaScript/Deno/Node_deno/node_shims.deno.txt -------------------------------------------------------------------------------- /Languages/JavaScript/Deno/deno.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/JavaScript/Deno/deno.javascript.txt -------------------------------------------------------------------------------- /Languages/JavaScript/Node/nodejs.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/JavaScript/Node/nodejs.javascript.txt -------------------------------------------------------------------------------- /Languages/JavaScript/Node/require-from-string.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/JavaScript/Node/require-from-string.node.txt -------------------------------------------------------------------------------- /Languages/Language_processing/Beautifiers/Go/go_fmt.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Language_processing/Beautifiers/Go/go_fmt.cli.txt -------------------------------------------------------------------------------- /Languages/Metaprogramming/Parsing/parsing.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Metaprogramming/Parsing/parsing.theory.txt -------------------------------------------------------------------------------- /Languages/PHP/PHP.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/PHP/PHP.language.txt -------------------------------------------------------------------------------- /Languages/Python/Python.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Python/Python.language.txt -------------------------------------------------------------------------------- /Languages/R/R.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/R/R.language.txt -------------------------------------------------------------------------------- /Languages/Static_analysis/Dead_code/CSS/mincss.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Static_analysis/Dead_code/CSS/mincss.node_cli.txt -------------------------------------------------------------------------------- /Languages/Static_analysis/Dead_code/CSS/uncss.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Static_analysis/Dead_code/CSS/uncss.node_cli.txt -------------------------------------------------------------------------------- /Languages/Static_analysis/General/CSS/cssstats.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Static_analysis/General/CSS/cssstats.node_cli.txt -------------------------------------------------------------------------------- /Languages/Static_analysis/Type_checking/flow.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/Static_analysis/Type_checking/flow.language.txt -------------------------------------------------------------------------------- /Languages/VBA/Excel_Formulas.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/VBA/Excel_Formulas.language.txt -------------------------------------------------------------------------------- /Languages/VBA/Excel_objet_model.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/VBA/Excel_objet_model.language.txt -------------------------------------------------------------------------------- /Languages/VBA/PowerPoint_object_model.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/VBA/PowerPoint_object_model.language.txt -------------------------------------------------------------------------------- /Languages/VBA/VBA.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/VBA/VBA.language.txt -------------------------------------------------------------------------------- /Languages/x86/Assembler/nasm.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/Assembler/nasm.cli.txt -------------------------------------------------------------------------------- /Languages/x86/MMX_SSE.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/MMX_SSE.language.txt -------------------------------------------------------------------------------- /Languages/x86/x86.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/x86.language.txt -------------------------------------------------------------------------------- /Languages/x86/x86_64.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/x86_64.language.txt -------------------------------------------------------------------------------- /Languages/x86/x86_C_compilation.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/x86_C_compilation.language.txt -------------------------------------------------------------------------------- /Languages/x86/x86_General.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/x86_General.language.txt -------------------------------------------------------------------------------- /Languages/x86/x86_Segmentation_Paging_Tasks.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/x86_Segmentation_Paging_Tasks.language.txt -------------------------------------------------------------------------------- /Languages/x86/x86_encodage_opcodes.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/x86_encodage_opcodes.language.txt -------------------------------------------------------------------------------- /Languages/x86/x86_extensions.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/x86_extensions.language.txt -------------------------------------------------------------------------------- /Languages/x86/x87.language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Languages/x86/x87.language.txt -------------------------------------------------------------------------------- /Multimedia/Advanced_graphics/Game/Engines/2D/SDL/sdl.c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Advanced_graphics/Game/Engines/2D/SDL/sdl.c.txt -------------------------------------------------------------------------------- /Multimedia/Geospatial/IP_geolocation/geoip-lite.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Geospatial/IP_geolocation/geoip-lite.node.txt -------------------------------------------------------------------------------- /Multimedia/Graphics/3D/OpenGL/opengl.c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Graphics/3D/OpenGL/opengl.c.txt -------------------------------------------------------------------------------- /Multimedia/Images/Common_images/Emoji/List/emoj.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Images/Common_images/Emoji/List/emoj.node.txt -------------------------------------------------------------------------------- /Multimedia/Images/Common_images/Icons/zocial.css_fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Images/Common_images/Icons/zocial.css_fonts.txt -------------------------------------------------------------------------------- /Multimedia/Images/Favicon/Serving/serve-favicon.express.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Images/Favicon/Serving/serve-favicon.express.txt -------------------------------------------------------------------------------- /Multimedia/Images/Image_display/Carousel/cycle2.jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Images/Image_display/Carousel/cycle2.jquery.txt -------------------------------------------------------------------------------- /Multimedia/Images/Image_display/Carousel/slick.jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Images/Image_display/Carousel/slick.jquery.txt -------------------------------------------------------------------------------- /Multimedia/Media/Audio/audio_rates.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Multimedia/Media/Audio/audio_rates.theory.txt -------------------------------------------------------------------------------- /Music/complex_tone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/complex_tone.txt -------------------------------------------------------------------------------- /Music/general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/general.txt -------------------------------------------------------------------------------- /Music/narrowing_widening.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/narrowing_widening.txt -------------------------------------------------------------------------------- /Music/piano.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/piano.txt -------------------------------------------------------------------------------- /Music/pitch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/pitch.txt -------------------------------------------------------------------------------- /Music/scale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/scale.txt -------------------------------------------------------------------------------- /Music/to_check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/to_check.txt -------------------------------------------------------------------------------- /Music/tuning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/tuning.txt -------------------------------------------------------------------------------- /Music/value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Music/value.txt -------------------------------------------------------------------------------- /Networking/Networking_protocols/DNS/DNS.protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Networking/Networking_protocols/DNS/DNS.protocol.txt -------------------------------------------------------------------------------- /Networking/Networking_protocols/IP/IP.protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Networking/Networking_protocols/IP/IP.protocol.txt -------------------------------------------------------------------------------- /Networking/Networking_protocols/QUIC/deno_quic.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Networking/Networking_protocols/QUIC/deno_quic.deno.txt -------------------------------------------------------------------------------- /Networking/Networking_protocols/TCP/TCP.protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Networking/Networking_protocols/TCP/TCP.protocol.txt -------------------------------------------------------------------------------- /Networking/Networking_protocols/TLS/SSL.protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Networking/Networking_protocols/TLS/SSL.protocol.txt -------------------------------------------------------------------------------- /Networking/Networking_protocols/UDP/UDP.protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Networking/Networking_protocols/UDP/UDP.protocol.txt -------------------------------------------------------------------------------- /Platforms/Browser/DOM/Abstraction/fetch-blob.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Browser/DOM/Abstraction/fetch-blob.javascript.txt -------------------------------------------------------------------------------- /Platforms/Browser/DOM/Abstraction/jsdom.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Browser/DOM/Abstraction/jsdom.node.txt -------------------------------------------------------------------------------- /Platforms/Browser/DOM/DOM.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Browser/DOM/DOM.javascript.txt -------------------------------------------------------------------------------- /Platforms/Browser/DOM/Virtual_DOM/react-templates.react.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Browser/DOM/Virtual_DOM/react-templates.react.txt -------------------------------------------------------------------------------- /Platforms/Browser/Headless_browser/casperjs.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Browser/Headless_browser/casperjs.node_cli.txt -------------------------------------------------------------------------------- /Platforms/Browser/Headless_browser/phantomjs.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Browser/Headless_browser/phantomjs.node_cli.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/Executable/elf.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/Executable/elf.format.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/Executable/object_formats.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/Executable/object_formats.format.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/OS_Kernel/OS_Boot_kernel.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/OS_Kernel/OS_Boot_kernel.theory.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/OS_Kernel/OS_filesystem.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/OS_Kernel/OS_filesystem.theory.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/OS_Kernel/Process/process.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/OS_Kernel/Process/process.theory.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/Partitions/CHS_LBA.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/Partitions/CHS_LBA.theory.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/Partitions/MBR.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/Partitions/MBR.format.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/Partitions/type_partitions.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/Partitions/type_partitions.format.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/System/CPU.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/System/CPU.theory.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/architectures.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/architectures.theory.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/calcul_binaire.algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/calcul_binaire.algorithm.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/little_big_endian.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/little_big_endian.format.txt -------------------------------------------------------------------------------- /Platforms/Desktop/OS/taille_octet_bits_bytes.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Desktop/OS/taille_octet_bits_bytes.theory.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/Node/node-latest.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/Node/node-latest.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/Node/node-releases.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/Node/node-releases.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Applications/open.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Applications/open.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Identification/getos.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Identification/getos.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Path/XDG/xdg-basedir.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Path/XDG/xdg-basedir.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Path/XDG/xdg.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Path/XDG/xdg.theory.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Path/env-paths.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Path/env-paths.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Path/node-cachedir.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Path/node-cachedir.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Path/unc-path-regex.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Path/unc-path-regex.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Permissions/is-admin.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Permissions/is-admin.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Permissions/is-root.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Permissions/is-root.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Permissions/isexe.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Permissions/isexe.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Spawn/deno_command.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Spawn/deno_command.deno.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Spawn/execa.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Spawn/execa.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Spawn/npm-path.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Spawn/npm-path.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Spawn/npm-run-path.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Spawn/npm-run-path.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Spawn/npm-run.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Spawn/npm-run.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/Spawn/path-key.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/Spawn/path-key.node.txt -------------------------------------------------------------------------------- /Platforms/Interoperability/OS/cross-os.summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Interoperability/OS/cross-os.summary.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Flags/caporal.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Flags/caporal.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Flags/commander.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Flags/commander.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Flags/deno_flags.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Flags/deno_flags.deno.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Flags/minimist.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Flags/minimist.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Flags/yargs.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Flags/yargs.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Prompt/deno_prompt.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Prompt/deno_prompt.deno.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Prompt/enquirer.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Prompt/enquirer.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Prompt/inquirer.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Prompt/inquirer.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Input/Prompt/prompts.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Input/Prompt/prompts.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Output/Progress_bars/gauge.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Output/Progress_bars/gauge.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Output/Spinners/ora.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Output/Spinners/ora.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Output/Symbols/figures.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Output/Symbols/figures.node.txt -------------------------------------------------------------------------------- /Platforms/Terminal/CLI/Output/Symbols/log-symbols.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Platforms/Terminal/CLI/Output/Symbols/log-symbols.node.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/README.md -------------------------------------------------------------------------------- /RPC/Client/Scraping_crawling/Broken_links/lychee.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Scraping_crawling/Broken_links/lychee.cli.txt -------------------------------------------------------------------------------- /RPC/Client/Scraping_crawling/Crawler/simplecrawler.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Scraping_crawling/Crawler/simplecrawler.node.txt -------------------------------------------------------------------------------- /RPC/Client/Scraping_crawling/Detection/isbot.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Scraping_crawling/Detection/isbot.node.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/axios.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/axios.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/bent.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/bent.node.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/cross-fetch.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/cross-fetch.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/fetch.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/fetch.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/got.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/got.node.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/http-console.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/http-console.cli.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/http-prompt.tui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/http-prompt.tui.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/http_client.summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/http_client.summary.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/httpie.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/httpie.cli.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/ky.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/ky.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/needle.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/needle.node.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/node-fetch.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/node-fetch.node.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/pgsql_http.postgres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/pgsql_http.postgres.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/phin.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/phin.node.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/postman.gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/postman.gui.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/qwest.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/qwest.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/r2.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/r2.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/request.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/request.node.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/reqwest.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/reqwest.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/superagent.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/superagent.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/trae.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/trae.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/unfetch.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/unfetch.javascript.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/HTTP/wuzz.tui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/HTTP/wuzz.tui.txt -------------------------------------------------------------------------------- /RPC/Client/Simple_client/Multi_protocols/curl.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Client/Simple_client/Multi_protocols/curl.cli.txt -------------------------------------------------------------------------------- /RPC/Inter_process/API_gateway/api_gateway.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/API_gateway/api_gateway.aws.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Body/Multipart/multer.express.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Body/Multipart/multer.express.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/HTTP.protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/HTTP.protocol.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Headers/content-disposition.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Headers/content-disposition.node.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Headers/deno_headers.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Headers/deno_headers.deno.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Headers/li.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Headers/li.node.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Methods/deno_methods.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Methods/deno_methods.deno.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Methods/method-override.express.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Methods/method-override.express.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Response/File/send.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Response/File/send.node.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Statuses/deno_http_status.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Statuses/deno_http_status.deno.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Statuses/statuses.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Statuses/statuses.node.txt -------------------------------------------------------------------------------- /RPC/Inter_process/HTTP/Streaming/range-parser.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Inter_process/HTTP/Streaming/range-parser.node.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Orchestration/step_functions.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Orchestration/step_functions.aws.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Orchestration/swf.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Orchestration/swf.aws.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/PubSub/eventbridge_pipes.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/PubSub/eventbridge_pipes.aws.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/PubSub/eventbridge_rules.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/PubSub/eventbridge_rules.aws.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/PubSub/sns.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/PubSub/sns.aws.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_coordination/orchestrator.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_coordination/orchestrator.node.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_coordination/undertaker.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_coordination/undertaker.node.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_queue/SQS/goaws.docker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_queue/SQS/goaws.docker.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_queue/SQS/sqs.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_queue/SQS/sqs.aws.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_queue/SQS/sqs_bulk_loader.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_queue/SQS/sqs_bulk_loader.node.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_queue/SQS/sqs_consumer.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_queue/SQS/sqs_consumer.node.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_queue/SQS/sqs_grep.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_queue/SQS/sqs_grep.node.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_queue/SQS/sqs_producer.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_queue/SQS/sqs_producer.node.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_scheduler/cron/cron.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_scheduler/cron/cron.format.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_scheduler/cron/deno_cron.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_scheduler/cron/deno_cron.deno.txt -------------------------------------------------------------------------------- /RPC/Messages_tasks/Task_scheduler/cron/pg_cron.postgres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Messages_tasks/Task_scheduler/cron/pg_cron.postgres.txt -------------------------------------------------------------------------------- /RPC/Realtime/Realtime_server/express.io.express.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/Realtime_server/express.io.express.txt -------------------------------------------------------------------------------- /RPC/Realtime/Syndication/Formats/rss_2.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/Syndication/Formats/rss_2.format.txt -------------------------------------------------------------------------------- /RPC/Realtime/Syndication/Formats/syndication.summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/Syndication/Formats/syndication.summary.txt -------------------------------------------------------------------------------- /RPC/Realtime/Syndication/Parser/node-feedparser.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/Syndication/Parser/node-feedparser.node.txt -------------------------------------------------------------------------------- /RPC/Realtime/WebSocket/Server/WebSocket.protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/WebSocket/Server/WebSocket.protocol.txt -------------------------------------------------------------------------------- /RPC/Realtime/WebSocket/Server/deno_websocket.deno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/WebSocket/Server/deno_websocket.deno.txt -------------------------------------------------------------------------------- /RPC/Realtime/WebSocket/Server/engine.io.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/WebSocket/Server/engine.io.node.txt -------------------------------------------------------------------------------- /RPC/Realtime/WebSocket/Server/socket.io.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/WebSocket/Server/socket.io.node.txt -------------------------------------------------------------------------------- /RPC/Realtime/WebSocket/Server/ws.node_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Realtime/WebSocket/Server/ws.node_cli.txt -------------------------------------------------------------------------------- /RPC/Server/API_generation/From_database/postgrest.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Server/API_generation/From_database/postgrest.cli.txt -------------------------------------------------------------------------------- /RPC/Server/BaaS/From_API_specification/prisma.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Server/BaaS/From_API_specification/prisma.saas.txt -------------------------------------------------------------------------------- /RPC/Server/BaaS/From_database/supabase.saas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Server/BaaS/From_database/supabase.saas.txt -------------------------------------------------------------------------------- /RPC/Server/Static_server/For_production/S3/s3.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Server/Static_server/For_production/S3/s3.aws.txt -------------------------------------------------------------------------------- /RPC/Server/Static_server/For_production/S3/scottyjs.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Server/Static_server/For_production/S3/scottyjs.cli.txt -------------------------------------------------------------------------------- /RPC/Server/Static_server/For_production/glacier.aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Server/Static_server/For_production/glacier.aws.txt -------------------------------------------------------------------------------- /RPC/Server/Static_server/For_production/st.express.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/RPC/Server/Static_server/For_production/st.express.txt -------------------------------------------------------------------------------- /Repository_helpers/Index/create_index.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Repository_helpers/Index/create_index.sed -------------------------------------------------------------------------------- /Repository_helpers/Index/create_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Repository_helpers/Index/create_index.sh -------------------------------------------------------------------------------- /Repository_helpers/Index/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Repository_helpers/Index/index.md -------------------------------------------------------------------------------- /Repository_helpers/Index/presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Repository_helpers/Index/presentation.md -------------------------------------------------------------------------------- /Repository_helpers/contribution_ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Repository_helpers/contribution_ideas.txt -------------------------------------------------------------------------------- /Repository_helpers/to_learn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Repository_helpers/to_learn.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-async-abstraction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-async-abstraction.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-autoformat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-autoformat.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-autoserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-autoserver.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-autotask-backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-autotask-backup.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-autotask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-autotask.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-babel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-babel.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-better-cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-better-cli.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-codecov-check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-codecov-check.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-cutting-edge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-cutting-edge.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-demoo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-demoo.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-dev-tasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-dev-tasks.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-difftest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-difftest.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-enhanced-stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-enhanced-stack.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-eslint-plugin-portable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-eslint-plugin-portable.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-fast-cartesian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-fast-cartesian.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-general.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-iterator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-iterator.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-json-schema.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-json-schema.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-log-process-errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-log-process-errors.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-merge-iterable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-merge-iterable.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-modern-errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-modern-errors.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-new-gulp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-new-gulp.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-nve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-nve.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-open-source-analytics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-open-source-analytics.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-portable-nodejs-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-portable-nodejs-guide.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-portable-path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-portable-path.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-publish-check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-publish-check.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-sourcemaps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-sourcemaps.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-spyd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-spyd.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-test-each.txt: -------------------------------------------------------------------------------- 1 | Package it for browsers too 2 | -------------------------------------------------------------------------------- /Roadmaps/roadmap-unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-unicode.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-unix-permissions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-unix-permissions.txt -------------------------------------------------------------------------------- /Roadmaps/roadmap-validate-path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/roadmap-validate-path.txt -------------------------------------------------------------------------------- /Roadmaps/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Roadmaps/todo.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/bash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/bash.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/bash_variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/bash_variables.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/batch_bash_equivalences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/batch_bash_equivalences.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/colorisation_shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/colorisation_shell.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/common_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/common_options.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/differences_bash_sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/differences_bash_sh.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/differences_versions_bash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/differences_versions_bash.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/expansion_susbitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/expansion_susbitution.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/fichiers_configuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/fichiers_configuration.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/history.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/hotkeys_console.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/hotkeys_console.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/prompt_bash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/prompt_bash.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Bash/shell_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Bash/shell_options.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/7z.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/7z.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/abs_makepkg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/abs_makepkg.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/agrep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/agrep.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/alias_unalias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/alias_unalias.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/anacron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/anacron.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/at_atq_atrm_batch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/at_atq_atrm_batch.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/awk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/awk.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/base64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/base64.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/basename_dirname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/basename_dirname.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/cal_ncal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/cal_ncal.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/cat_tac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/cat_tac.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/cd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/cd.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/chkdupexe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/chkdupexe.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/chmod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/chmod.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/clear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/clear.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/cloud-init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/cloud-init.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/command_builtin_enable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/command_builtin_enable.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/cp_mv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/cp_mv.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/cron_crontab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/cron_crontab.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/csplit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/csplit.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/cut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/cut.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/date.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/dd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/dd.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/df.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/df.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/dmesg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/dmesg.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/du.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/du.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/echo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/echo.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/env_printenv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/env_printenv.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/expand_unexpand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/expand_unexpand.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/factor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/factor.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/find.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/find.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/fold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/fold.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/getopts_getopt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/getopts_getopt.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/grep_egrep_fgrep_rgrep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/grep_egrep_fgrep_rgrep.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/hash.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/head_tail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/head_tail.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/help.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/history.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/iconv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/iconv.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/id.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/info.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/ipcalc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/ipcalc.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/kill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/kill.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/less.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/less.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/line.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/ln_link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/ln_link.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/locate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/locate.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/look.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/look.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/ls_dir_vdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/ls_dir_vdir.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/lsattr_chattr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/lsattr_chattr.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/man.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/man.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/mapfile_readarray.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/mapfile_readarray.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/mesg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/mesg.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/mkdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/mkdir.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/mkfifo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/mkfifo.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/mknod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/mknod.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/mktemp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/mktemp.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/more.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/more.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/mount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/mount.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/mtrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/mtrace.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/ncat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/ncat.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/nice_renice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/nice_renice.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/nohup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/nohup.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/od_hexdump_hd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/od_hexdump_hd.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/pacman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/pacman.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/passwd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/passwd.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/paste_join.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/paste_join.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/pathchk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/pathchk.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/popd_pushd_dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/popd_pushd_dirs.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/printf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/printf.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/pwd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/pwd.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/read.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/readlink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/readlink.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/rev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/rev.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/rm_unlink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/rm_unlink.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/rmdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/rmdir.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/sed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/sed.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/seq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/seq.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/shred.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/shred.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/shuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/shuf.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/sleep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/sleep.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/sort.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/split.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/stat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/stat.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/stdbuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/stdbuf.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/sum_cksum_md5sum_shasum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/sum_cksum_md5sum_shasum.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/sync.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/tee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/tee.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/time_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/time_times.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/top.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/top.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/touch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/touch.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/tr.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/trap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/trap.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/truncate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/truncate.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/tsort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/tsort.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/tty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/tty.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/type_which.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/type_which.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/ulimit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/ulimit.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/umask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/umask.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/uname_arch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/uname_arch.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/uniq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/uniq.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/updatedb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/updatedb.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/upstart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/upstart.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/uptime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/uptime.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/watch.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/wc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/wc.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/whatis_apropos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/whatis_apropos.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/whereis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/whereis.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/write_wall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/write_wall.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/xargs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/xargs.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/xdotool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/xdotool.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/yes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/yes.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Commandes/zdump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Commandes/zdump.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/Options_avec_ou_sans_whitespace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/Options_avec_ou_sans_whitespace.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/afaire_unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/afaire_unix.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/atime_ctime_mtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/atime_ctime_mtime.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/buffering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/buffering.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/character_block_special_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/character_block_special_files.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/droits_d_acces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/droits_d_acces.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/fifo_unamedpipe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/fifo_unamedpipe.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/human_readable_sizes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/human_readable_sizes.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/lock.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/newline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/newline.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/packets_essentiels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/packets_essentiels.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/regexps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/regexps.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/repertoire_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/repertoire_dev.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/sequence_echappement_backslash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/sequence_echappement_backslash.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/sequence_echappement_date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/sequence_echappement_date.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/specifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/specifications.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/taille_des_fichiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/taille_des_fichiers.txt -------------------------------------------------------------------------------- /To_sort/Bash_Unix/users_and_groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Bash_Unix/users_and_groups.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/Atkmm/atkmm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/Atkmm/atkmm.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/Cairomm/cairomm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/Cairomm/cairomm.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/GObject/GObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/GObject/GObject.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/Gdkmm/gdkmm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/Gdkmm/gdkmm.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/Giomm/giomm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/Giomm/giomm.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/Glibmm/Glibmm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/Glibmm/Glibmm.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/Gtkmm/gtkmm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/Gtkmm/gtkmm.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/Pangomm/pangomm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/Pangomm/pangomm.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/glade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/glade.txt -------------------------------------------------------------------------------- /To_sort/C++/Gnome/libsigc++/libsigc++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/Gnome/libsigc++/libsigc++.txt -------------------------------------------------------------------------------- /To_sort/C++/argument_dependent_lookup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/argument_dependent_lookup.txt -------------------------------------------------------------------------------- /To_sort/C++/exception_safety.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/exception_safety.txt -------------------------------------------------------------------------------- /To_sort/C++/generic_programming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/generic_programming.txt -------------------------------------------------------------------------------- /To_sort/C++/metaprogramming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/metaprogramming.txt -------------------------------------------------------------------------------- /To_sort/C++/naming_convention.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/naming_convention.txt -------------------------------------------------------------------------------- /To_sort/C++/optimization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/C++/optimization.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/Images/random.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/Images/random.jpg -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/any.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/any.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/array.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/boost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/boost.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/boost_uuid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/boost_uuid.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/call_traits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/call_traits.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/compressed_pair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/compressed_pair.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/crc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/crc.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/date_time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/date_time.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/dynamic_bitset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/dynamic_bitset.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/filesystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/filesystem.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/hash.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/iterator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/iterator.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/lexical_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/lexical_cast.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/random.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/range_algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/range_algorithm.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/ref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/ref.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/serialization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/serialization.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/smart_ptr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/smart_ptr.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/swap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/swap.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/thread.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/thread.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/timer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/timer.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/tribool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/tribool.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/tuple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/tuple.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/type_traits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/type_traits.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Boost/variant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Boost/variant.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/bitset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/bitset.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/iterator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/iterator.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/limits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/limits.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/locale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/locale.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/memory.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/new.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/streams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/streams.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/string.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/typeinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/typeinfo.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/utility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/utility.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C++/Standard_library/valarray.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C++/Standard_library/valarray.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/IO_filedescriptors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/IO_filedescriptors.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/IO_memoire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/IO_memoire.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/IO_normale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/IO_normale.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/attributs_fichiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/attributs_fichiers.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/caracteres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/caracteres.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/dynamic_allocation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/dynamic_allocation.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/encodage_crypto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/encodage_crypto.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/erreurs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/erreurs.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/extension_64_bits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/extension_64_bits.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/fichiers_temporaires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/fichiers_temporaires.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/goto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/goto.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/limites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/limites.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/options_programme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/options_programme.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/program_execution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/program_execution.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/repertoires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/repertoires.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/signaux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/signaux.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/strings.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/systeme_de_fichier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/systeme_de_fichier.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/time.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/unfinished.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/unfinished.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Glibc/wchar_wstr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Glibc/wchar_wstr.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Standard_library/C89/assert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Standard_library/C89/assert.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Standard_library/C89/ctype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Standard_library/C89/ctype.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Standard_library/C89/errno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Standard_library/C89/errno.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Standard_library/C89/math.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Standard_library/C89/math.txt -------------------------------------------------------------------------------- /To_sort/Utilities_to_sort/C/Standard_library/C89/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/To_sort/Utilities_to_sort/C/Standard_library/C89/time.txt -------------------------------------------------------------------------------- /Types/Strings/Strings_general/Diff/Patch/patch.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Types/Strings/Strings_general/Diff/Patch/patch.cli.txt -------------------------------------------------------------------------------- /Types/Strings/Strings_general/Diff/VCDiff/xdelta.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Types/Strings/Strings_general/Diff/VCDiff/xdelta.cli.txt -------------------------------------------------------------------------------- /Types/Strings/Strings_general/Diff/cmp.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Types/Strings/Strings_general/Diff/cmp.cli.txt -------------------------------------------------------------------------------- /Types/Strings/Strings_general/Diff/comm.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Types/Strings/Strings_general/Diff/comm.cli.txt -------------------------------------------------------------------------------- /Types/Strings/Strings_general/Diff/diff3.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Types/Strings/Strings_general/Diff/diff3.cli.txt -------------------------------------------------------------------------------- /Types/Strings/Strings_general/Diff/diff_sdiff.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/Types/Strings/Strings_general/Diff/diff_sdiff.cli.txt -------------------------------------------------------------------------------- /UX/Accessibility/accessibility.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Accessibility/accessibility.theory.txt -------------------------------------------------------------------------------- /UX/Behavior/Analytics/analytics.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Behavior/Analytics/analytics.theory.txt -------------------------------------------------------------------------------- /UX/Behavior/Analytics/angulartics.angular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Behavior/Analytics/angulartics.angular.txt -------------------------------------------------------------------------------- /UX/Behavior/Copy_paste/Server/clipboard-cli.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Behavior/Copy_paste/Server/clipboard-cli.node.txt -------------------------------------------------------------------------------- /UX/Behavior/Copy_paste/Server/clipboardy.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Behavior/Copy_paste/Server/clipboardy.node.txt -------------------------------------------------------------------------------- /UX/Behavior/Copy_paste/Server/node-copy-paste.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Behavior/Copy_paste/Server/node-copy-paste.node.txt -------------------------------------------------------------------------------- /UX/Boxes/Modals/avgrund.jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Boxes/Modals/avgrund.jquery.txt -------------------------------------------------------------------------------- /UX/Boxes/Toast_notification/angular_growl_2.angular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Boxes/Toast_notification/angular_growl_2.angular.txt -------------------------------------------------------------------------------- /UX/Components_framework/Full/Bootstrap/bootlint.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Components_framework/Full/Bootstrap/bootlint.cli.txt -------------------------------------------------------------------------------- /UX/Forms/Form_input/Autosize/autosize.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Form_input/Autosize/autosize.javascript.txt -------------------------------------------------------------------------------- /UX/Forms/Form_select/chosen.jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Form_select/chosen.jquery.txt -------------------------------------------------------------------------------- /UX/Forms/Form_select/select2.jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Form_select/select2.jquery.txt -------------------------------------------------------------------------------- /UX/Forms/Form_sliders/knob.jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Form_sliders/knob.jquery.txt -------------------------------------------------------------------------------- /UX/Forms/Progress_bars/nprogress.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Progress_bars/nprogress.javascript.txt -------------------------------------------------------------------------------- /UX/Forms/Rich_editor/RTF/ckeditor.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Rich_editor/RTF/ckeditor.javascript.txt -------------------------------------------------------------------------------- /UX/Forms/Rich_editor/RTF/redactor.jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Rich_editor/RTF/redactor.jquery.txt -------------------------------------------------------------------------------- /UX/Forms/Spinners/Buttons/ladda.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Spinners/Buttons/ladda.javascript.txt -------------------------------------------------------------------------------- /UX/Forms/Spinners/General/spinkit.css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Forms/Spinners/General/spinkit.css.txt -------------------------------------------------------------------------------- /UX/General/Theory/UX_animations.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/General/Theory/UX_animations.theory.txt -------------------------------------------------------------------------------- /UX/General/Theory/UX_consent.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/General/Theory/UX_consent.theory.txt -------------------------------------------------------------------------------- /UX/General/Theory/UX_forms.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/General/Theory/UX_forms.theory.txt -------------------------------------------------------------------------------- /UX/General/Theory/UX_general.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/General/Theory/UX_general.theory.txt -------------------------------------------------------------------------------- /UX/General/Theory/UX_interactions.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/General/Theory/UX_interactions.theory.txt -------------------------------------------------------------------------------- /UX/General/Theory/UX_mobile.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/General/Theory/UX_mobile.theory.txt -------------------------------------------------------------------------------- /UX/General/Theory/UX_performance.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/General/Theory/UX_performance.theory.txt -------------------------------------------------------------------------------- /UX/General/Theory/usability.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/General/Theory/usability.theory.txt -------------------------------------------------------------------------------- /UX/Information_structure/Tables/ng-grid.angular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Information_structure/Tables/ng-grid.angular.txt -------------------------------------------------------------------------------- /UX/Information_structure/Tables/ngtable.angular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Information_structure/Tables/ngtable.angular.txt -------------------------------------------------------------------------------- /UX/Interaction/Gestures/hammer.js.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Interaction/Gestures/hammer.js.javascript.txt -------------------------------------------------------------------------------- /UX/Interaction/Keyboard/mousetrap.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Interaction/Keyboard/mousetrap.javascript.txt -------------------------------------------------------------------------------- /UX/Interaction/Orientation/parallax.js.javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Interaction/Orientation/parallax.js.javascript.txt -------------------------------------------------------------------------------- /UX/Text/Content/content_strategy.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/Content/content_strategy.theory.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Encoding/All/Detection/jschardet.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Encoding/All/Detection/jschardet.node.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Encoding/All/Detection/node_chardet.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Encoding/All/Detection/node_chardet.node.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Encoding/All/comparatif_encodage.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Encoding/All/comparatif_encodage.theory.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Encoding/All/histoire_encodage.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Encoding/All/histoire_encodage.theory.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Encoding/Unicode/Data/unicode-data.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Encoding/Unicode/Data/unicode-data.node.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Encoding/Unicode/Formats/unicode.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Encoding/Unicode/Formats/unicode.format.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Encoding/Unicode/Formats/utf8.format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Encoding/Unicode/Formats/utf8.format.txt -------------------------------------------------------------------------------- /UX/Text/i18n/General/c++_internationalization.c++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/General/c++_internationalization.c++.txt -------------------------------------------------------------------------------- /UX/Text/i18n/General/gtk_internationalization.gtk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/General/gtk_internationalization.gtk.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Recognition/os-locale.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Recognition/os-locale.node.txt -------------------------------------------------------------------------------- /UX/Text/i18n/Translation/Library/Extraction/i18n.node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/Translation/Library/Extraction/i18n.node.txt -------------------------------------------------------------------------------- /UX/Text/i18n/internationalization.theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/Notes/HEAD/UX/Text/i18n/internationalization.theory.txt --------------------------------------------------------------------------------