├── .github ├── FUNDING.yml └── workflows │ ├── setup_aedifex │ └── action.yml │ └── test.yml ├── .gitignore ├── README.md ├── aedifex ├── commands.md ├── project.lux └── source │ ├── program │ ├── aedifex.lux │ └── aedifex │ │ ├── action.lux │ │ ├── android.lux │ │ ├── artifact.lux │ │ ├── artifact │ │ ├── extension.lux │ │ ├── snapshot.lux │ │ ├── snapshot │ │ │ ├── build.lux │ │ │ ├── stamp.lux │ │ │ ├── time.lux │ │ │ ├── version.lux │ │ │ └── version │ │ │ │ └── value.lux │ │ ├── time.lux │ │ ├── time │ │ │ ├── date.lux │ │ │ └── time.lux │ │ ├── type.lux │ │ └── versioning.lux │ │ ├── cli.lux │ │ ├── command.lux │ │ ├── command │ │ ├── apk.lux │ │ ├── auto.lux │ │ ├── build.lux │ │ ├── clean.lux │ │ ├── deploy.lux │ │ ├── deploy │ │ │ ├── release.lux │ │ │ └── snapshot.lux │ │ ├── deps.lux │ │ ├── install.lux │ │ ├── pom.lux │ │ ├── test.lux │ │ └── version.lux │ │ ├── dependency.lux │ │ ├── dependency │ │ ├── deployment.lux │ │ ├── resolution.lux │ │ └── status.lux │ │ ├── hash.lux │ │ ├── injection.lux │ │ ├── input.lux │ │ ├── local.lux │ │ ├── metadata.lux │ │ ├── metadata │ │ ├── artifact.lux │ │ └── snapshot.lux │ │ ├── package.lux │ │ ├── path.lux │ │ ├── pom.lux │ │ ├── profile.lux │ │ ├── project.lux │ │ ├── projection.lux │ │ ├── repository.lux │ │ ├── repository │ │ ├── identity.lux │ │ ├── local.lux │ │ ├── origin.lux │ │ └── remote.lux │ │ ├── runtime.lux │ │ └── zip.lux │ └── test │ ├── aedifex.lux │ └── aedifex │ ├── artifact.lux │ ├── artifact │ ├── extension.lux │ ├── snapshot.lux │ ├── snapshot │ │ ├── build.lux │ │ ├── stamp.lux │ │ ├── time.lux │ │ ├── version.lux │ │ └── version │ │ │ └── value.lux │ ├── time.lux │ ├── time │ │ ├── date.lux │ │ └── time.lux │ ├── type.lux │ └── versioning.lux │ ├── cli.lux │ ├── command.lux │ ├── command │ ├── auto.lux │ ├── build.lux │ ├── clean.lux │ ├── deploy.lux │ ├── deps.lux │ ├── install.lux │ ├── pom.lux │ ├── test.lux │ └── version.lux │ ├── dependency.lux │ ├── dependency │ ├── deployment.lux │ ├── resolution.lux │ └── status.lux │ ├── hash.lux │ ├── input.lux │ ├── local.lux │ ├── metadata.lux │ ├── metadata │ ├── artifact.lux │ └── snapshot.lux │ ├── package.lux │ ├── pom.lux │ ├── profile.lux │ ├── project.lux │ ├── projection.lux │ ├── repository.lux │ ├── repository │ ├── identity.lux │ ├── local.lux │ ├── origin.lux │ └── remote.lux │ └── runtime.lux ├── asset ├── logo.svg └── logo_negative.svg ├── changelog.md ├── code_of_conduct.md ├── commands.md ├── compilers.md ├── documentation ├── backlink.md ├── book │ └── the_lux_programming_language │ │ ├── appendix_a.md │ │ ├── appendix_b.md │ │ ├── appendix_c.md │ │ ├── appendix_d.md │ │ ├── appendix_e.md │ │ ├── appendix_f.md │ │ ├── appendix_g.md │ │ ├── appendix_h.md │ │ ├── chapter_1.md │ │ ├── chapter_10.md │ │ ├── chapter_11.md │ │ ├── chapter_12.md │ │ ├── chapter_13.md │ │ ├── chapter_14.md │ │ ├── chapter_15.md │ │ ├── chapter_16.md │ │ ├── chapter_17.md │ │ ├── chapter_18.md │ │ ├── chapter_2.md │ │ ├── chapter_3.md │ │ ├── chapter_4.md │ │ ├── chapter_5.md │ │ ├── chapter_6.md │ │ ├── chapter_7.md │ │ ├── chapter_8.md │ │ ├── chapter_9.md │ │ ├── conclusion.md │ │ ├── index.md │ │ └── introduction.md ├── bookmark.md ├── bookmark │ ├── 3d_reconstruction.md │ ├── abi__application_binary_interface.md │ ├── abstract_interpretation.md │ ├── abstraction.md │ ├── advice.md │ ├── agent.md │ ├── agriculture.md │ ├── ai__artificial_intelligence.md │ ├── ai__artificial_intelligence │ │ ├── application.md │ │ ├── differentiable_programming.md │ │ ├── llm__large_language_model.md │ │ ├── machine_learning.md │ │ ├── machine_learning │ │ │ ├── decision_tree.md │ │ │ ├── deep │ │ │ │ └── geometric.md │ │ │ ├── gradient.md │ │ │ ├── neural_network.md │ │ │ ├── neural_network │ │ │ │ └── graph.md │ │ │ └── probabilistic_soft_logic.md │ │ ├── machine_vision.md │ │ ├── model.md │ │ ├── ocr__optical_character_recognition.md │ │ └── robotics.md │ ├── algorithm.md │ ├── algorithm │ │ ├── graph.md │ │ ├── hashing.md │ │ ├── optics.md │ │ ├── parsing.md │ │ ├── propagator.md │ │ ├── recommendation.md │ │ ├── scheduling.md │ │ ├── sorting.md │ │ ├── state_machine.md │ │ ├── state_machine │ │ │ ├── behavior_tree.md │ │ │ ├── hierarchical.md │ │ │ └── state_chart.md │ │ └── transducer_stream_pipe.md │ ├── analysis │ │ ├── static.md │ │ └── static │ │ │ └── separation_logic.md │ ├── annotation.md │ ├── api__application_programming_interface.md │ ├── api__application_programming_interface │ │ └── rest.md │ ├── art │ │ ├── film.md │ │ ├── literature │ │ │ └── poetry.md │ │ ├── music.md │ │ └── music │ │ │ ├── acoustics.md │ │ │ ├── composition.md │ │ │ ├── language.md │ │ │ └── rhythm.md │ ├── assurance.md │ ├── attribution_or_credit.md │ ├── augmented_reality.md │ ├── automation.md │ ├── automation │ │ ├── desktop.md │ │ └── mobile.md │ ├── batch.md │ ├── bookmarklet.md │ ├── bpf__berkeley_packet_filter.md │ ├── business │ │ ├── administration.md │ │ ├── administration │ │ │ ├── communication │ │ │ │ ├── email.md │ │ │ │ ├── narrative.md │ │ │ │ └── one_on_one.md │ │ │ ├── compensation.md │ │ │ ├── executive │ │ │ │ └── cto__chief_technology_officer.md │ │ │ ├── hierarchy.md │ │ │ ├── hiring.md │ │ │ ├── hiring │ │ │ │ ├── interview.md │ │ │ │ ├── onboarding.md │ │ │ │ └── remote.md │ │ │ ├── incentive.md │ │ │ ├── leadership.md │ │ │ └── leadership │ │ │ │ └── values.md │ │ ├── advice.md │ │ ├── banking.md │ │ ├── brand.md │ │ ├── collaboration.md │ │ ├── competitiveness.md │ │ ├── culture.md │ │ ├── decision_making.md │ │ ├── document.md │ │ ├── entrepreneurship.md │ │ ├── estimation.md │ │ ├── failure.md │ │ ├── founding.md │ │ ├── founding │ │ │ └── solo.md │ │ ├── funding.md │ │ ├── funding │ │ │ ├── bootstrapping.md │ │ │ └── public.md │ │ ├── goal.md │ │ ├── growth.md │ │ ├── growth │ │ │ └── activation_rate.md │ │ ├── idea.md │ │ ├── innovation.md │ │ ├── logistics.md │ │ ├── luck.md │ │ ├── luck │ │ │ └── beating_the_odds.md │ │ ├── marketing.md │ │ ├── metric.md │ │ ├── model.md │ │ ├── negotiation.md │ │ ├── operations.md │ │ ├── organizational_design.md │ │ ├── permission.md │ │ ├── pitch.md │ │ ├── planning.md │ │ ├── process_management.md │ │ ├── product.md │ │ ├── product │ │ │ └── bundling.md │ │ ├── productivity.md │ │ ├── promotion.md │ │ ├── resume.md │ │ ├── risk.md │ │ ├── sabotage.md │ │ ├── sales.md │ │ ├── sales │ │ │ ├── monetization.md │ │ │ ├── payment.md │ │ │ ├── payment │ │ │ │ ├── billing.md │ │ │ │ ├── pricing.md │ │ │ │ └── subscription.md │ │ │ ├── referral.md │ │ │ └── store │ │ │ │ └── check_out.md │ │ ├── service.md │ │ ├── startup.md │ │ ├── success.md │ │ ├── sustainability.md │ │ ├── teamwork.md │ │ ├── tool.md │ │ ├── type.md │ │ ├── user_story.md │ │ ├── work │ │ │ └── tracking.md │ │ └── workplace │ │ │ └── bullying.md │ ├── cache.md │ ├── certification.md │ ├── changelog.md │ ├── communication.md │ ├── communication │ │ ├── censorship.md │ │ ├── documentation.md │ │ ├── documentation │ │ │ ├── comment.md │ │ │ ├── diagram.md │ │ │ └── runbook.md │ │ ├── emoji.md │ │ ├── linguistics.md │ │ ├── media │ │ │ ├── content.md │ │ │ └── podcast.md │ │ ├── medium │ │ │ ├── email.md │ │ │ ├── radio.md │ │ │ └── writing.md │ │ ├── natural_language.md │ │ ├── natural_language │ │ │ ├── constructed.md │ │ │ ├── japanese.md │ │ │ └── tone.md │ │ ├── news.md │ │ ├── telephony.md │ │ └── type │ │ │ └── persuasion.md │ ├── composition │ │ ├── inheritance │ │ │ └── mixin.md │ │ ├── mixin.md │ │ └── recursion_schemes.md │ ├── computation.md │ ├── computation │ │ ├── by │ │ │ ├── fluidics.md │ │ │ └── interaction_net.md │ │ ├── effect.md │ │ ├── effect │ │ │ └── higher_order.md │ │ ├── in │ │ │ ├── ambient.md │ │ │ ├── cloud.md │ │ │ ├── decentralization.md │ │ │ ├── heterogeneity.md │ │ │ ├── parallel.md │ │ │ ├── parallel │ │ │ │ └── automatic.md │ │ │ ├── quantum.md │ │ │ └── reverse.md │ │ ├── orthogonal_persistence.md │ │ └── special │ │ │ └── functional.md │ ├── computational_literature.md │ ├── concurrency.md │ ├── concurrency │ │ ├── actor.md │ │ ├── adapton.md │ │ ├── agent.md │ │ ├── asynchronous.md │ │ ├── behavioral_programming.md │ │ ├── capsule_oriented_programming.md │ │ ├── clock.md │ │ ├── coroutine.md │ │ ├── crdt__conflict_free_replicated_data_types.md │ │ ├── disruptor.md │ │ ├── engine.md │ │ ├── incremental.md │ │ ├── lock.md │ │ ├── lock_free_programming.md │ │ ├── ownership.md │ │ ├── reactive.md │ │ ├── revision.md │ │ ├── security.md │ │ ├── semaphore.md │ │ ├── session_types.md │ │ ├── structured.md │ │ ├── synchronization.md │ │ └── volatile.md │ ├── constraint │ │ └── memory.md │ ├── control_flow │ │ └── continuation.md │ ├── control_system.md │ ├── control_theory.md │ ├── correctness │ │ ├── mathematics.md │ │ ├── type_theory.md │ │ └── type_theory │ │ │ ├── blindness.md │ │ │ ├── cost_analysis.md │ │ │ ├── dependent.md │ │ │ ├── effect.md │ │ │ ├── gradual.md │ │ │ ├── homotopy.md │ │ │ ├── inference.md │ │ │ ├── liquid.md │ │ │ ├── qualified.md │ │ │ ├── quantitative.md │ │ │ ├── refinement.md │ │ │ ├── row_polymorphism.md │ │ │ ├── set.md │ │ │ ├── soundness.md │ │ │ ├── sub_structural.md │ │ │ ├── type_checking.md │ │ │ ├── uniqueness.md │ │ │ └── unit.md │ ├── creativity.md │ ├── crowd_sourcing.md │ ├── cryptography.md │ ├── cryptography │ │ └── homomorphic.md │ ├── css.md │ ├── css │ │ ├── functional.md │ │ └── technique │ │ │ └── hologram.md │ ├── cybernetics.md │ ├── data │ │ ├── base.md │ │ ├── base │ │ │ ├── amorphous.md │ │ │ ├── b_tree.md │ │ │ ├── consistency.md │ │ │ ├── distributed.md │ │ │ ├── finance.md │ │ │ ├── graph.md │ │ │ ├── index.md │ │ │ ├── key_value.md │ │ │ ├── local.md │ │ │ ├── lock.md │ │ │ ├── pagination.md │ │ │ ├── query.md │ │ │ ├── relational.md │ │ │ ├── serverless.md │ │ │ ├── storage.md │ │ │ ├── streaming.md │ │ │ ├── temporal.md │ │ │ ├── transaction.md │ │ │ ├── vector.md │ │ │ └── write_ahead_logging.md │ │ ├── big.md │ │ ├── conversion.md │ │ ├── format.md │ │ ├── format │ │ │ ├── base16.md │ │ │ ├── base32.md │ │ │ ├── base64.md │ │ │ ├── json.md │ │ │ └── zip.md │ │ ├── graphic.md │ │ ├── persistence.md │ │ ├── procedural_generation.md │ │ ├── procedural_generation │ │ │ ├── by │ │ │ │ ├── inductive_graph.md │ │ │ │ └── wave_function_collapse.md │ │ │ └── for │ │ │ │ ├── art.md │ │ │ │ └── music.md │ │ ├── random_generation.md │ │ ├── science.md │ │ ├── serialization.md │ │ ├── sorting.md │ │ ├── state │ │ │ ├── history.md │ │ │ └── world.md │ │ ├── structure.md │ │ ├── structure │ │ │ ├── array.md │ │ │ ├── bitmap.md │ │ │ ├── collection.md │ │ │ ├── persistent.md │ │ │ ├── probabilistic.md │ │ │ ├── probabilistic │ │ │ │ ├── bloom_filter.md │ │ │ │ └── cuckoo_filter.md │ │ │ └── succinct.md │ │ ├── tag.md │ │ ├── temporal.md │ │ └── text │ │ │ ├── encoding │ │ │ ├── ascii.md │ │ │ ├── unicode.md │ │ │ └── utf8.md │ │ │ ├── format.md │ │ │ └── regular_expression.md │ ├── datalog.md │ ├── dec64.md │ ├── deprecation.md │ ├── design.md │ ├── design │ │ ├── aesthetics.md │ │ ├── composition.md │ │ ├── extensibility.md │ │ ├── flexibility.md │ │ ├── input.md │ │ ├── interaction.md │ │ ├── language.md │ │ ├── measurement.md │ │ ├── onboarding.md │ │ ├── performance.md │ │ ├── programmability.md │ │ ├── research.md │ │ ├── spatial.md │ │ ├── system.md │ │ ├── type.md │ │ ├── ui__user_interface.md │ │ ├── ui__user_interface │ │ │ ├── a11y__accessibility.md │ │ │ ├── adaptability.md │ │ │ ├── animation.md │ │ │ ├── cli__command_line_interface.md │ │ │ ├── color.md │ │ │ ├── color │ │ │ │ ├── lch.md │ │ │ │ └── palette.md │ │ │ ├── component.md │ │ │ ├── container │ │ │ │ └── tree_view.md │ │ │ ├── dashboard.md │ │ │ ├── design.md │ │ │ ├── desktop.md │ │ │ ├── framework.md │ │ │ ├── generative.md │ │ │ ├── graphic.md │ │ │ ├── hci__human_computer_interaction.md │ │ │ ├── i18n__localization_and_internationalization.md │ │ │ ├── paradigm │ │ │ │ └── flow.md │ │ │ ├── reactive.md │ │ │ ├── responsiveness.md │ │ │ ├── server_driven.md │ │ │ ├── text │ │ │ │ └── typography.md │ │ │ └── widget.md │ │ ├── ux__user_experience.md │ │ ├── viewport.md │ │ └── web │ │ │ └── resilient.md │ ├── development_environment.md │ ├── drone.md │ ├── engagement.md │ ├── engineering.md │ ├── engineering │ │ ├── in │ │ │ └── reverse.md │ │ ├── of │ │ │ ├── biology.md │ │ │ └── geo.md │ │ └── software │ │ │ ├── alert.md │ │ │ ├── negative.md │ │ │ ├── philosophy.md │ │ │ ├── practice.md │ │ │ └── sre__software_reliability_engineering.md │ ├── entertainment │ │ └── video.md │ ├── environment_variables.md │ ├── epistemology │ │ ├── history.md │ │ ├── mathematics.md │ │ ├── mathematics │ │ │ ├── approximation.md │ │ │ ├── arithmetic.md │ │ │ ├── calculus.md │ │ │ ├── calculus │ │ │ │ ├── continuous.md │ │ │ │ ├── matrix.md │ │ │ │ └── tensor.md │ │ │ ├── category_theory.md │ │ │ ├── chaos_theory.md │ │ │ ├── combinatory_logic.md │ │ │ ├── computer_science.md │ │ │ ├── dimension.md │ │ │ ├── discrete.md │ │ │ ├── fourier_analysis.md │ │ │ ├── geometry.md │ │ │ ├── geometry │ │ │ │ ├── 3d.md │ │ │ │ ├── analytic.md │ │ │ │ ├── bezier_curves.md │ │ │ │ ├── computational.md │ │ │ │ ├── differential.md │ │ │ │ ├── dimension.md │ │ │ │ ├── geometric_algebra.md │ │ │ │ ├── quiver.md │ │ │ │ ├── symplectic.md │ │ │ │ └── trigonometry.md │ │ │ ├── lambda_calculus.md │ │ │ ├── linear_algebra.md │ │ │ ├── linear_programming.md │ │ │ ├── logic.md │ │ │ ├── number │ │ │ │ ├── big.md │ │ │ │ ├── dual.md │ │ │ │ ├── point │ │ │ │ │ ├── fixed.md │ │ │ │ │ └── floating.md │ │ │ │ ├── quaternion.md │ │ │ │ └── real.md │ │ │ ├── operation.md │ │ │ ├── philosophy.md │ │ │ ├── probability.md │ │ │ ├── probability │ │ │ │ ├── causal_inference.md │ │ │ │ └── information_geometry.md │ │ │ ├── proof.md │ │ │ ├── queueing_theory.md │ │ │ ├── recurrence_relation.md │ │ │ ├── statistics.md │ │ │ ├── statistics │ │ │ │ └── index.md │ │ │ ├── theorem_proving.md │ │ │ └── univalence.md │ │ ├── science.md │ │ ├── science │ │ │ ├── biology │ │ │ │ └── evolution.md │ │ │ ├── chemistry.md │ │ │ ├── ecology.md │ │ │ ├── physics.md │ │ │ ├── physics │ │ │ │ ├── anti_gravity.md │ │ │ │ ├── cooling.md │ │ │ │ ├── energy.md │ │ │ │ ├── geometry.md │ │ │ │ ├── theory.md │ │ │ │ ├── theory │ │ │ │ │ └── relativity.md │ │ │ │ ├── water.md │ │ │ │ └── weather.md │ │ │ ├── pseudo.md │ │ │ ├── psychology.md │ │ │ ├── psychology │ │ │ │ ├── evil.md │ │ │ │ ├── feeling.md │ │ │ │ ├── narcissism.md │ │ │ │ ├── relationship │ │ │ │ │ └── romantic.md │ │ │ │ ├── social.md │ │ │ │ └── social │ │ │ │ │ ├── influence.md │ │ │ │ │ ├── politeness.md │ │ │ │ │ └── respect.md │ │ │ ├── research.md │ │ │ └── research │ │ │ │ ├── data.md │ │ │ │ └── zettelkasten.md │ │ └── skepticism.md │ ├── falsehood.md │ ├── ffi__foreign_function_interface.md │ ├── food.md │ ├── food │ │ └── cooking.md │ ├── forecasting.md │ ├── free.md │ ├── function │ │ └── polymorphism │ │ │ ├── dispatch │ │ │ ├── multiple.md │ │ │ └── single.md │ │ │ └── rank.md │ ├── graphic.md │ ├── graphic │ │ ├── 2d.md │ │ ├── 3d.md │ │ ├── 3d │ │ │ ├── modeling.md │ │ │ ├── rendering.md │ │ │ ├── rendering │ │ │ │ ├── engine.md │ │ │ │ └── ray_tracing.md │ │ │ └── shading.md │ │ ├── 4d.md │ │ ├── interactive.md │ │ ├── pixel.md │ │ └── vector │ │ │ ├── gkurve.md │ │ │ └── svg.md │ ├── hardware │ │ ├── accelerator.md │ │ ├── design.md │ │ ├── display.md │ │ ├── failure.md │ │ ├── fpga__field_programmable_gate_array.md │ │ ├── keyboard.md │ │ ├── measurement.md │ │ └── ram__random_access_memory.md │ ├── health.md │ ├── health │ │ ├── additive.md │ │ ├── disease.md │ │ ├── exercise.md │ │ ├── fertility.md │ │ └── nutrition.md │ ├── infrastructure │ │ ├── container.md │ │ └── messaging.md │ ├── infrastructure_as_code.md │ ├── inspiration.md │ ├── integer.md │ ├── io.md │ ├── iot__internet_of_things.md │ ├── jewelry.md │ ├── learning.md │ ├── load_balancing.md │ ├── logging.md │ ├── map.md │ ├── material.md │ ├── material │ │ └── wood.md │ ├── medium │ │ ├── audio.md │ │ ├── audio │ │ │ ├── analysis.md │ │ │ ├── direction.md │ │ │ ├── dsp__digital_signal_processing.md │ │ │ ├── fingerprinting.md │ │ │ ├── plugin.md │ │ │ └── signal_processing │ │ │ │ └── wavelet.md │ │ ├── image.md │ │ ├── image │ │ │ └── jpeg.md │ │ └── video │ │ │ ├── codec.md │ │ │ └── visual_effects.md │ ├── memory │ │ ├── management.md │ │ ├── management │ │ │ ├── allocation.md │ │ │ ├── borrow.md │ │ │ ├── destination_passing_style.md │ │ │ ├── garbage_collection.md │ │ │ ├── generational_reference.md │ │ │ ├── immortality.md │ │ │ ├── move.md │ │ │ ├── reference_counting.md │ │ │ ├── region.md │ │ │ ├── security.md │ │ │ ├── smart_pointer.md │ │ │ ├── synthetic_pointer.md │ │ │ ├── tagging.md │ │ │ └── view_propagation.md │ │ └── pointer │ │ │ └── tagging.md │ ├── minification │ │ └── css.md │ ├── monad │ │ ├── co.md │ │ └── transformer.md │ ├── name.md │ ├── network.md │ ├── network │ │ ├── programmable.md │ │ └── proxy.md │ ├── no_code.md │ ├── notation.md │ ├── notification.md │ ├── observability.md │ ├── optimization │ │ ├── algorithm.md │ │ ├── branchless_programming.md │ │ ├── compiler │ │ │ ├── constant_propagation.md │ │ │ ├── dead_code_elimination.md │ │ │ ├── tail_call.md │ │ │ └── tail_recursion_modulo_cons.md │ │ ├── condensation.md │ │ ├── dispatch.md │ │ ├── inlining.md │ │ ├── lazy_evaluation.md │ │ ├── low_level │ │ │ └── x86.md │ │ ├── mathematics.md │ │ ├── memoization.md │ │ ├── memory.md │ │ ├── rewrite_rules.md │ │ ├── simd__single_instruction_multiple_data.md │ │ ├── string.md │ │ └── structure_packing.md │ ├── os__operating_system.md │ ├── os__operating_system │ │ ├── bios.md │ │ ├── ipc__inter_process_communication.md │ │ ├── kernel │ │ │ └── uni.md │ │ ├── shell.md │ │ ├── timer.md │ │ └── type │ │ │ ├── android.md │ │ │ └── linux.md │ ├── osint__open_source_intelligence.md │ ├── pattern.md │ ├── pattern_matching.md │ ├── personal_growth.md │ ├── play.md │ ├── play │ │ └── game │ │ │ ├── accessibility.md │ │ │ ├── algorithm │ │ │ └── collision_detection.md │ │ │ ├── asset.md │ │ │ ├── balance.md │ │ │ ├── business.md │ │ │ ├── business │ │ │ ├── marketing.md │ │ │ ├── negotiation.md │ │ │ └── survival.md │ │ │ ├── combat │ │ │ └── damage.md │ │ │ ├── community.md │ │ │ ├── data.md │ │ │ ├── design.md │ │ │ ├── development.md │ │ │ ├── device │ │ │ ├── gba__game_boy_advance.md │ │ │ └── ps2__playstation_2.md │ │ │ ├── dice_roll.md │ │ │ ├── economy.md │ │ │ ├── engine.md │ │ │ ├── exploration.md │ │ │ ├── failure.md │ │ │ ├── generation │ │ │ ├── map.md │ │ │ ├── move.md │ │ │ ├── name.md │ │ │ ├── plot.md │ │ │ └── quest.md │ │ │ ├── genre │ │ │ ├── interactive_fiction.md │ │ │ └── rpg.md │ │ │ ├── grid │ │ │ └── hexagonal.md │ │ │ ├── item.md │ │ │ ├── juice.md │ │ │ ├── mathematics.md │ │ │ ├── mechanic │ │ │ ├── boss.md │ │ │ ├── bug.md │ │ │ ├── class.md │ │ │ ├── crafting.md │ │ │ ├── deduction.md │ │ │ ├── enemy.md │ │ │ ├── jump.md │ │ │ ├── luck.md │ │ │ ├── magic.md │ │ │ ├── power.md │ │ │ ├── problem_solving.md │ │ │ ├── relationship.md │ │ │ ├── simplification.md │ │ │ ├── strategy.md │ │ │ ├── survival.md │ │ │ ├── synergy.md │ │ │ ├── travel.md │ │ │ └── unlockable.md │ │ │ ├── meta.md │ │ │ ├── move.md │ │ │ ├── networking.md │ │ │ ├── progression.md │ │ │ ├── ranking.md │ │ │ ├── replayability.md │ │ │ ├── reuse.md │ │ │ ├── sequel.md │ │ │ ├── skill.md │ │ │ ├── speedrun.md │ │ │ ├── storytelling.md │ │ │ ├── storytelling │ │ │ ├── archetype.md │ │ │ ├── combat.md │ │ │ ├── genre.md │ │ │ ├── intrigue.md │ │ │ ├── language.md │ │ │ ├── magic.md │ │ │ ├── setting.md │ │ │ └── villain.md │ │ │ ├── system.md │ │ │ ├── tool.md │ │ │ ├── tutorial.md │ │ │ ├── worldbuilding.md │ │ │ └── worldbuilding │ │ │ ├── realism.md │ │ │ └── town.md │ ├── process.md │ ├── public_resource.md │ ├── quality.md │ ├── recycling.md │ ├── reliability │ │ └── data.md │ ├── resource │ │ └── clean_up.md │ ├── resource_management.md │ ├── rival.md │ ├── runners or comodels.md │ ├── runtime_code_manipulation.md │ ├── society │ │ ├── community.md │ │ ├── community │ │ │ ├── contribution.md │ │ │ ├── onboarding.md │ │ │ └── trolling.md │ │ ├── crime.md │ │ ├── culture.md │ │ ├── dating.md │ │ ├── economics.md │ │ ├── economics │ │ │ ├── auction.md │ │ │ ├── capitalism.md │ │ │ ├── currency.md │ │ │ ├── finance.md │ │ │ ├── finance │ │ │ │ ├── analysis │ │ │ │ │ └── fundamental.md │ │ │ │ ├── defi__decentralized.md │ │ │ │ └── kyc__know_your_customer.md │ │ │ ├── inflation.md │ │ │ ├── investing.md │ │ │ ├── money.md │ │ │ ├── taxation.md │ │ │ └── wealth.md │ │ ├── justice.md │ │ ├── law.md │ │ ├── law │ │ │ ├── gdpr.md │ │ │ └── property │ │ │ │ ├── intellectual.md │ │ │ │ └── intellectual │ │ │ │ ├── authorship.md │ │ │ │ ├── commons.md │ │ │ │ ├── copyright.md │ │ │ │ └── patent.md │ │ ├── philanthropy.md │ │ ├── politics.md │ │ ├── sharing.md │ │ ├── status.md │ │ └── urban_planning.md │ ├── software │ │ ├── architecture.md │ │ ├── architecture │ │ │ ├── message_queue.md │ │ │ ├── messaging.md │ │ │ └── microservice.md │ │ ├── benchmark.md │ │ ├── bloat.md │ │ ├── code │ │ │ ├── format.md │ │ │ ├── library │ │ │ │ └── dynamic.md │ │ │ ├── organization.md │ │ │ ├── refactoring.md │ │ │ ├── semantics.md │ │ │ ├── smell.md │ │ │ └── style.md │ │ ├── configuration.md │ │ ├── debugging.md │ │ ├── dependency_management.md │ │ ├── design.md │ │ ├── embedded.md │ │ ├── engineering.md │ │ ├── feature_toggle.md │ │ ├── firmware.md │ │ ├── history.md │ │ ├── license.md │ │ ├── license │ │ │ ├── derivative_work.md │ │ │ ├── open_source.md │ │ │ ├── open_source │ │ │ │ ├── commercialization.md │ │ │ │ ├── commercialization │ │ │ │ │ ├── licensing.md │ │ │ │ │ ├── marketplace.md │ │ │ │ │ ├── open_core.md │ │ │ │ │ └── promotion.md │ │ │ │ ├── culture.md │ │ │ │ ├── funding.md │ │ │ │ └── maintenance.md │ │ │ └── post_open.md │ │ ├── local_first.md │ │ ├── methodology.md │ │ ├── modifiability.md │ │ ├── packaging.md │ │ ├── performance.md │ │ ├── platform.md │ │ ├── plugin.md │ │ ├── program │ │ │ ├── compilation.md │ │ │ ├── compilation │ │ │ │ ├── continuation_passing_style.md │ │ │ │ ├── invariant.md │ │ │ │ ├── jit__just_in_time.md │ │ │ │ ├── performance.md │ │ │ │ └── target │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── c++.md │ │ │ │ │ ├── c.md │ │ │ │ │ ├── clr.md │ │ │ │ │ ├── common_lisp.md │ │ │ │ │ ├── elisp__emacs_lisp.md │ │ │ │ │ ├── flash.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── godot.md │ │ │ │ │ ├── graal.md │ │ │ │ │ ├── haskell.md │ │ │ │ │ ├── haxe.md │ │ │ │ │ ├── js__javascript.md │ │ │ │ │ ├── jvm.md │ │ │ │ │ ├── llvm.md │ │ │ │ │ ├── lua.md │ │ │ │ │ ├── micro_controller.md │ │ │ │ │ ├── native.md │ │ │ │ │ ├── node_js.md │ │ │ │ │ ├── objective_c.md │ │ │ │ │ ├── php.md │ │ │ │ │ ├── python.md │ │ │ │ │ ├── ruby.md │ │ │ │ │ ├── rust.md │ │ │ │ │ ├── scopes.md │ │ │ │ │ ├── smalltalk.md │ │ │ │ │ ├── wasm__web_assembly.md │ │ │ │ │ └── wren.md │ │ │ ├── construction │ │ │ │ ├── competitive.md │ │ │ │ ├── distributed │ │ │ │ │ ├── choreographic.md │ │ │ │ │ ├── clock │ │ │ │ │ │ └── interval_tree.md │ │ │ │ │ ├── raft.md │ │ │ │ │ ├── saga_pattern.md │ │ │ │ │ └── workflow.md │ │ │ │ ├── end_user.md │ │ │ │ ├── extensibility.md │ │ │ │ ├── in │ │ │ │ │ ├── distributed.md │ │ │ │ │ ├── polyglot.md │ │ │ │ │ ├── real_time.md │ │ │ │ │ └── unsafe.md │ │ │ │ ├── invariance.md │ │ │ │ ├── language │ │ │ │ │ ├── design.md │ │ │ │ │ ├── design │ │ │ │ │ │ └── scope.md │ │ │ │ │ ├── dsl__domain_specific.md │ │ │ │ │ ├── evolution.md │ │ │ │ │ ├── implementation │ │ │ │ │ │ └── stack.md │ │ │ │ │ ├── statistical.md │ │ │ │ │ └── syntax.md │ │ │ │ ├── literate.md │ │ │ │ ├── meta │ │ │ │ │ ├── code │ │ │ │ │ │ ├── mod.md │ │ │ │ │ │ └── query.md │ │ │ │ │ ├── generative.md │ │ │ │ │ ├── macro.md │ │ │ │ │ ├── reflection.md │ │ │ │ │ ├── staging.md │ │ │ │ │ └── symbolic.md │ │ │ │ ├── micro.md │ │ │ │ ├── of │ │ │ │ │ ├── biology.md │ │ │ │ │ ├── chemistry.md │ │ │ │ │ ├── game.md │ │ │ │ │ ├── gpu.md │ │ │ │ │ ├── web.md │ │ │ │ │ └── web │ │ │ │ │ │ ├── api │ │ │ │ │ │ └── barcode.md │ │ │ │ │ │ ├── application │ │ │ │ │ │ └── progressive.md │ │ │ │ │ │ ├── browser.md │ │ │ │ │ │ ├── component.md │ │ │ │ │ │ ├── framework.md │ │ │ │ │ │ ├── html.md │ │ │ │ │ │ ├── http.md │ │ │ │ │ │ ├── http │ │ │ │ │ │ ├── har__archive_format.md │ │ │ │ │ │ └── websocket.md │ │ │ │ │ │ ├── polling.md │ │ │ │ │ │ └── url.md │ │ │ │ ├── paradigm │ │ │ │ │ ├── ambient_oriented.md │ │ │ │ │ ├── answer_set.md │ │ │ │ │ ├── array.md │ │ │ │ │ ├── concept.md │ │ │ │ │ ├── cop__context_oriented.md │ │ │ │ │ ├── flow_based.md │ │ │ │ │ ├── functional_logic.md │ │ │ │ │ ├── functional_reactive.md │ │ │ │ │ ├── logic.md │ │ │ │ │ ├── logic │ │ │ │ │ │ └── functional_relational.md │ │ │ │ │ ├── object_oriented.md │ │ │ │ │ ├── object_oriented │ │ │ │ │ │ └── meta.md │ │ │ │ │ ├── plugin_oriented.md │ │ │ │ │ ├── probabilistic.md │ │ │ │ │ ├── ranked.md │ │ │ │ │ └── subjective.md │ │ │ │ ├── system.md │ │ │ │ └── visual.md │ │ │ ├── error │ │ │ │ ├── exception.md │ │ │ │ ├── handling.md │ │ │ │ └── message.md │ │ │ ├── linking │ │ │ │ └── dynamic.md │ │ │ ├── optimization.md │ │ │ ├── synthesis.md │ │ │ ├── transformation.md │ │ │ └── verification.md │ │ ├── scaling.md │ │ ├── security.md │ │ ├── security │ │ │ ├── ai__artificial_intelligence.md │ │ │ ├── api__application_programming_interface.md │ │ │ ├── auditing │ │ │ │ └── bill_of_materials.md │ │ │ ├── authentication.md │ │ │ ├── authorization.md │ │ │ ├── authorization │ │ │ │ └── magic_link.md │ │ │ ├── breach.md │ │ │ ├── capability.md │ │ │ ├── captcha.md │ │ │ ├── compilation.md │ │ │ ├── compiler.md │ │ │ ├── data.md │ │ │ ├── environment.md │ │ │ ├── identity.md │ │ │ ├── ifc__information_flow_control.md │ │ │ ├── isolation.md │ │ │ ├── memory.md │ │ │ ├── networking.md │ │ │ ├── one_time_program.md │ │ │ ├── operating_system.md │ │ │ ├── password.md │ │ │ ├── permission │ │ │ │ └── context_aware.md │ │ │ ├── privacy.md │ │ │ ├── programming.md │ │ │ ├── sandboxing.md │ │ │ ├── scam.md │ │ │ ├── secret.md │ │ │ ├── squatting.md │ │ │ ├── supply_chain.md │ │ │ ├── surveillance.md │ │ │ ├── timing.md │ │ │ ├── verification.md │ │ │ ├── verification │ │ │ │ └── formal.md │ │ │ ├── vulnerability.md │ │ │ ├── vulnerability │ │ │ │ └── html.md │ │ │ ├── zero_knowledge.md │ │ │ └── zero_trust.md │ │ ├── system │ │ │ ├── blockchain.md │ │ │ ├── blockchain │ │ │ │ └── smart_contract.md │ │ │ ├── distributed │ │ │ │ ├── local_first.md │ │ │ │ └── p2p__peer_to_peer.md │ │ │ ├── rules_engine.md │ │ │ └── workflow.md │ │ ├── testing.md │ │ ├── testing │ │ │ ├── causal.md │ │ │ ├── change.md │ │ │ ├── contract.md │ │ │ ├── coverage.md │ │ │ ├── inline.md │ │ │ ├── metamorphic.md │ │ │ ├── model.md │ │ │ └── web.md │ │ ├── tool │ │ │ ├── auto_complete.md │ │ │ ├── build_server_protocol.md │ │ │ ├── build_system.md │ │ │ ├── compiler.md │ │ │ ├── compiler │ │ │ │ ├── optimization.md │ │ │ │ └── static_single_assignment.md │ │ │ ├── debugger.md │ │ │ ├── design.md │ │ │ ├── diff.md │ │ │ ├── ide__integrated_development_environment.md │ │ │ ├── ide__integrated_development_environment │ │ │ │ └── scientific.md │ │ │ ├── insight.md │ │ │ ├── instrumentation.md │ │ │ ├── interpreter.md │ │ │ ├── interpreter │ │ │ │ └── partial_evaluation.md │ │ │ ├── language_server_protocol.md │ │ │ ├── notebook.md │ │ │ ├── package_manager.md │ │ │ ├── read_eval_print_loop.md │ │ │ ├── search.md │ │ │ ├── terminal.md │ │ │ ├── text_editor.md │ │ │ ├── text_editor │ │ │ │ ├── code_folding.md │ │ │ │ ├── emacs.md │ │ │ │ ├── font.md │ │ │ │ ├── revision.md │ │ │ │ └── structural.md │ │ │ ├── version_control.md │ │ │ └── version_control │ │ │ │ ├── git.md │ │ │ │ └── monorepo.md │ │ └── versioning.md │ ├── specification.md │ ├── spreadsheet.md │ ├── state_action_model.md │ ├── storage │ │ └── zoned.md │ ├── system.md │ ├── systems_analysis.md │ ├── talent.md │ ├── time.md │ ├── transparency.md │ ├── travel.md │ ├── type_driven.md │ └── work │ │ ├── async.md │ │ ├── productivity.md │ │ └── to_do.md ├── library │ └── standard │ │ ├── js.md │ │ ├── jvm.md │ │ ├── lua.md │ │ ├── python.md │ │ └── ruby.md └── specification │ └── syntax.md ├── license.md ├── lux-c++ ├── commands.md ├── project.lux └── source │ └── program.lux ├── lux-cl ├── commands.md ├── project.clj └── source │ └── program.lux ├── lux-js ├── commands.md ├── project.lux └── source │ └── program.lux ├── lux-jvm-function ├── commands.md ├── dependency.jar └── dependency.pom ├── lux-jvm ├── commands.md ├── project.lux └── source │ └── program.lux ├── lux-lua ├── commands.md ├── project.lux └── source │ └── program.lux ├── lux-mode ├── README.md └── lux-mode.el ├── lux-php ├── commands.md ├── project.clj └── source │ └── program.lux ├── lux-python ├── commands.md ├── project.lux └── source │ └── program.lux ├── lux-r ├── commands.md ├── project.clj └── source │ ├── program.lux │ └── test │ └── program.lux ├── lux-ruby ├── commands.md ├── project.lux └── source │ └── program.lux ├── shell ├── lux.bat └── lux.sh ├── stdlib ├── README.md ├── commands.md ├── project.lux └── source │ ├── documentation │ ├── lux.lux │ └── lux │ │ ├── abstract.lux │ │ ├── abstract │ │ ├── comonad.lux │ │ ├── comonad │ │ │ └── free.lux │ │ ├── enum.lux │ │ ├── equality.lux │ │ ├── format.lux │ │ ├── functor.lux │ │ ├── functor │ │ │ └── contravariant.lux │ │ ├── hash.lux │ │ ├── interval.lux │ │ ├── mix.lux │ │ ├── monad.lux │ │ ├── monad │ │ │ └── free.lux │ │ ├── monoid.lux │ │ └── order.lux │ │ ├── control.lux │ │ ├── control │ │ ├── concatenative.lux │ │ ├── concurrency.lux │ │ ├── concurrency │ │ │ ├── actor.lux │ │ │ ├── atom.lux │ │ │ ├── frp.lux │ │ │ ├── future.lux │ │ │ ├── semaphore.lux │ │ │ ├── stm.lux │ │ │ └── thread.lux │ │ ├── continuation.lux │ │ ├── exception.lux │ │ ├── function.lux │ │ ├── function │ │ │ ├── contract.lux │ │ │ ├── memo.lux │ │ │ ├── mixin.lux │ │ │ ├── mutual.lux │ │ │ └── predicate.lux │ │ ├── io.lux │ │ ├── lazy.lux │ │ ├── maybe.lux │ │ ├── pipe.lux │ │ ├── projection.lux │ │ ├── region.lux │ │ ├── scope.lux │ │ ├── security.lux │ │ ├── security │ │ │ ├── capability.lux │ │ │ └── policy.lux │ │ ├── state.lux │ │ ├── thread.lux │ │ ├── try.lux │ │ └── writer.lux │ │ ├── data.lux │ │ ├── data │ │ ├── binary.lux │ │ ├── bit.lux │ │ ├── collection.lux │ │ ├── collection │ │ │ ├── array.lux │ │ │ ├── bits.lux │ │ │ ├── dictionary.lux │ │ │ ├── dictionary │ │ │ │ └── ordered.lux │ │ │ ├── queue.lux │ │ │ ├── queue │ │ │ │ └── priority.lux │ │ │ ├── sequence.lux │ │ │ ├── set.lux │ │ │ ├── set │ │ │ │ ├── multi.lux │ │ │ │ └── ordered.lux │ │ │ ├── stack.lux │ │ │ ├── stack │ │ │ │ └── property.lux │ │ │ ├── stream.lux │ │ │ ├── tree.lux │ │ │ └── tree │ │ │ │ ├── finger.lux │ │ │ │ └── zipper.lux │ │ ├── color │ │ │ └── named.lux │ │ ├── format.lux │ │ ├── format │ │ │ ├── json.lux │ │ │ ├── tar.lux │ │ │ └── xml.lux │ │ ├── identity.lux │ │ ├── product.lux │ │ ├── sum.lux │ │ ├── text.lux │ │ └── text │ │ │ ├── buffer.lux │ │ │ ├── encoding.lux │ │ │ ├── encoding │ │ │ └── utf8.lux │ │ │ ├── escape.lux │ │ │ ├── regex.lux │ │ │ ├── unicode.lux │ │ │ └── unicode │ │ │ ├── block.lux │ │ │ └── set.lux │ │ ├── debug.lux │ │ ├── documentation.lux │ │ ├── documentation │ │ └── remember.lux │ │ ├── ffi.js.lux │ │ ├── ffi.jvm.lux │ │ ├── ffi.lua.lux │ │ ├── ffi.py.lux │ │ ├── ffi.rb.lux │ │ ├── math.lux │ │ ├── math │ │ ├── arithmetic │ │ │ ├── infix.lux │ │ │ └── modular.lux │ │ ├── logic.lux │ │ ├── logic │ │ │ ├── continuous.lux │ │ │ └── fuzzy.lux │ │ ├── modulus.lux │ │ ├── number.lux │ │ ├── number │ │ │ ├── complex.lux │ │ │ ├── decimal.lux │ │ │ ├── fraction.lux │ │ │ ├── i08.lux │ │ │ ├── i16.lux │ │ │ ├── i32.lux │ │ │ ├── i64.lux │ │ │ ├── integer.lux │ │ │ ├── natural.lux │ │ │ └── revolution.lux │ │ └── random.lux │ │ ├── meta.lux │ │ ├── meta │ │ ├── code.lux │ │ ├── compiler │ │ │ ├── language │ │ │ │ └── lux │ │ │ │ │ ├── analysis.lux │ │ │ │ │ ├── declaration.lux │ │ │ │ │ ├── synthesis.lux │ │ │ │ │ └── translation.lux │ │ │ ├── phase.lux │ │ │ ├── target.lux │ │ │ └── target │ │ │ │ ├── js.lux │ │ │ │ ├── jvm │ │ │ │ ├── type.lux │ │ │ │ └── type │ │ │ │ │ ├── alias.lux │ │ │ │ │ ├── box.lux │ │ │ │ │ ├── category.lux │ │ │ │ │ ├── descriptor.lux │ │ │ │ │ ├── lux.lux │ │ │ │ │ ├── projection.lux │ │ │ │ │ ├── reflection.lux │ │ │ │ │ └── signature.lux │ │ │ │ ├── lua.lux │ │ │ │ ├── python.lux │ │ │ │ └── ruby.lux │ │ ├── extension.lux │ │ ├── macro.lux │ │ ├── macro │ │ │ ├── local.lux │ │ │ ├── syntax.lux │ │ │ ├── syntax │ │ │ │ ├── check.lux │ │ │ │ ├── declaration.lux │ │ │ │ ├── definition.lux │ │ │ │ ├── export.lux │ │ │ │ ├── input.lux │ │ │ │ └── type │ │ │ │ │ └── variable.lux │ │ │ └── template.lux │ │ ├── name.lux │ │ ├── provenance.lux │ │ ├── static.lux │ │ ├── type.lux │ │ └── type │ │ │ ├── check.lux │ │ │ ├── dynamic.lux │ │ │ ├── implicit.lux │ │ │ ├── linear.lux │ │ │ ├── nominal.lux │ │ │ ├── poly.lux │ │ │ ├── quotient.lux │ │ │ ├── refinement.lux │ │ │ ├── unit.lux │ │ │ └── variance.lux │ │ ├── program.lux │ │ ├── test.lux │ │ ├── test │ │ ├── coverage.lux │ │ ├── property.lux │ │ ├── tally.lux │ │ └── unit.lux │ │ ├── world.lux │ │ └── world │ │ ├── console.lux │ │ ├── environment.lux │ │ ├── file.lux │ │ ├── file │ │ └── watch.lux │ │ ├── input │ │ └── keyboard.lux │ │ ├── locale.lux │ │ ├── locale │ │ ├── language.lux │ │ └── territory.lux │ │ ├── net.lux │ │ ├── net │ │ ├── http │ │ │ ├── client.lux │ │ │ └── status.lux │ │ └── uri.lux │ │ ├── output │ │ └── video │ │ │ └── resolution.lux │ │ ├── shell.lux │ │ ├── time.lux │ │ └── time │ │ ├── date.lux │ │ ├── day.lux │ │ ├── duration.lux │ │ ├── instant.lux │ │ ├── month.lux │ │ └── year.lux │ ├── experiment │ └── compiler.lux │ ├── injection │ └── lux │ │ └── data │ │ ├── binary.lux │ │ └── text.lux │ ├── library │ ├── lux.lux │ └── lux │ │ ├── abstract │ │ ├── comonad.lux │ │ ├── comonad │ │ │ └── free.lux │ │ ├── enum.lux │ │ ├── equality.lux │ │ ├── format.lux │ │ ├── functor.lux │ │ ├── functor │ │ │ ├── contravariant.lux │ │ │ ├── effect.lux │ │ │ └── pro.lux │ │ ├── hash.lux │ │ ├── interval.lux │ │ ├── monad.lux │ │ ├── monad │ │ │ ├── free.lux │ │ │ └── indexed.lux │ │ ├── monoid.lux │ │ ├── order.lux │ │ ├── order │ │ │ └── total │ │ │ │ └── strong.lux │ │ └── projection.lux │ │ ├── aspect.lux │ │ ├── aspect │ │ ├── case.lux │ │ ├── member.lux │ │ ├── property.lux │ │ └── view.lux │ │ ├── color │ │ ├── cmyk.lux │ │ ├── hsb.lux │ │ ├── hsl.lux │ │ ├── named.lux │ │ ├── pigment.lux │ │ ├── rgb.lux │ │ ├── scheme.lux │ │ └── terminal.lux │ │ ├── compiler.lux │ │ ├── compiler │ │ ├── arity.lux │ │ ├── constant.lux │ │ ├── default │ │ │ ├── init.lux │ │ │ └── platform.lux │ │ ├── extension.lux │ │ ├── extension │ │ │ ├── jvm.lux │ │ │ └── lux.lux │ │ ├── language │ │ │ ├── lux.lux │ │ │ └── lux │ │ │ │ ├── analysis.lux │ │ │ │ ├── analysis │ │ │ │ ├── complex.lux │ │ │ │ ├── coverage.lux │ │ │ │ ├── evaluation.lux │ │ │ │ ├── inference.lux │ │ │ │ ├── macro.lux │ │ │ │ ├── module.lux │ │ │ │ ├── pattern.lux │ │ │ │ ├── scope.lux │ │ │ │ ├── simple.lux │ │ │ │ └── type.lux │ │ │ │ ├── declaration.lux │ │ │ │ ├── phase.lux │ │ │ │ ├── phase │ │ │ │ ├── analysis.lux │ │ │ │ ├── analysis │ │ │ │ │ ├── complex.lux │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── simple.lux │ │ │ │ │ └── when.lux │ │ │ │ ├── declaration.lux │ │ │ │ ├── extension.lux │ │ │ │ ├── extension │ │ │ │ │ ├── analysis.lux │ │ │ │ │ ├── analysis │ │ │ │ │ │ ├── common_lisp.lux │ │ │ │ │ │ ├── js.lux │ │ │ │ │ │ ├── jvm.lux │ │ │ │ │ │ ├── lua.lux │ │ │ │ │ │ ├── lux.lux │ │ │ │ │ │ ├── php.lux │ │ │ │ │ │ ├── python.lux │ │ │ │ │ │ ├── r.lux │ │ │ │ │ │ └── ruby.lux │ │ │ │ │ ├── declaration │ │ │ │ │ │ ├── jvm.lux │ │ │ │ │ │ └── lux.lux │ │ │ │ │ ├── synthesis.lux │ │ │ │ │ ├── synthesis │ │ │ │ │ │ └── lux.lux │ │ │ │ │ └── translation │ │ │ │ │ │ ├── c++.lux │ │ │ │ │ │ ├── c++ │ │ │ │ │ │ └── common.lux │ │ │ │ │ │ ├── common_lisp.lux │ │ │ │ │ │ ├── common_lisp │ │ │ │ │ │ ├── common.lux │ │ │ │ │ │ └── host.lux │ │ │ │ │ │ ├── js.lux │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── common.lux │ │ │ │ │ │ └── host.lux │ │ │ │ │ │ ├── jvm.lux │ │ │ │ │ │ ├── jvm │ │ │ │ │ │ ├── common.lux │ │ │ │ │ │ └── host.lux │ │ │ │ │ │ ├── lua.lux │ │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── common.lux │ │ │ │ │ │ └── host.lux │ │ │ │ │ │ ├── php.lux │ │ │ │ │ │ ├── php │ │ │ │ │ │ ├── common.lux │ │ │ │ │ │ └── host.lux │ │ │ │ │ │ ├── python.lux │ │ │ │ │ │ ├── python │ │ │ │ │ │ ├── common.lux │ │ │ │ │ │ └── host.lux │ │ │ │ │ │ ├── r.lux │ │ │ │ │ │ ├── r │ │ │ │ │ │ ├── common.lux │ │ │ │ │ │ └── host.lux │ │ │ │ │ │ ├── ruby.lux │ │ │ │ │ │ └── ruby │ │ │ │ │ │ ├── common.lux │ │ │ │ │ │ └── host.lux │ │ │ │ ├── synthesis.lux │ │ │ │ ├── synthesis │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── variable.lux │ │ │ │ │ └── when.lux │ │ │ │ └── translation │ │ │ │ │ ├── c++.lux │ │ │ │ │ ├── c++ │ │ │ │ │ ├── complex.lux │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── statement.lux │ │ │ │ │ ├── statement │ │ │ │ │ │ ├── loop.lux │ │ │ │ │ │ └── when.lux │ │ │ │ │ ├── type.lux │ │ │ │ │ └── when.lux │ │ │ │ │ ├── common_lisp.lux │ │ │ │ │ ├── common_lisp │ │ │ │ │ ├── extension.lux │ │ │ │ │ ├── extension │ │ │ │ │ │ └── common.lux │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── structure.lux │ │ │ │ │ └── when.lux │ │ │ │ │ ├── extension.lux │ │ │ │ │ ├── js.lux │ │ │ │ │ ├── js │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── structure.lux │ │ │ │ │ └── when.lux │ │ │ │ │ ├── jvm.lux │ │ │ │ │ ├── jvm │ │ │ │ │ ├── complex.lux │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── function │ │ │ │ │ │ ├── abstract.lux │ │ │ │ │ │ ├── field │ │ │ │ │ │ │ ├── constant │ │ │ │ │ │ │ │ └── arity.lux │ │ │ │ │ │ │ ├── variable.lux │ │ │ │ │ │ │ └── variable │ │ │ │ │ │ │ │ ├── count.lux │ │ │ │ │ │ │ │ ├── foreign.lux │ │ │ │ │ │ │ │ └── partial.lux │ │ │ │ │ │ ├── method.lux │ │ │ │ │ │ └── method │ │ │ │ │ │ │ ├── implementation.lux │ │ │ │ │ │ │ ├── init.lux │ │ │ │ │ │ │ ├── of.lux │ │ │ │ │ │ │ └── reset.lux │ │ │ │ │ ├── host.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── program.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── type.lux │ │ │ │ │ ├── value.lux │ │ │ │ │ └── when.lux │ │ │ │ │ ├── lua.lux │ │ │ │ │ ├── lua │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── structure.lux │ │ │ │ │ └── when.lux │ │ │ │ │ ├── php.lux │ │ │ │ │ ├── php │ │ │ │ │ ├── extension.lux │ │ │ │ │ ├── extension │ │ │ │ │ │ └── common.lux │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── structure.lux │ │ │ │ │ └── when.lux │ │ │ │ │ ├── python.lux │ │ │ │ │ ├── python │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── structure.lux │ │ │ │ │ └── when.lux │ │ │ │ │ ├── r.lux │ │ │ │ │ ├── r │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── structure.lux │ │ │ │ │ └── when.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── ruby.lux │ │ │ │ │ └── ruby │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── structure.lux │ │ │ │ │ └── when.lux │ │ │ │ ├── program.lux │ │ │ │ ├── syntax.lux │ │ │ │ ├── synthesis.lux │ │ │ │ ├── synthesis │ │ │ │ ├── access.lux │ │ │ │ ├── access │ │ │ │ │ ├── item.lux │ │ │ │ │ ├── member.lux │ │ │ │ │ └── side.lux │ │ │ │ ├── path.lux │ │ │ │ └── simple.lux │ │ │ │ ├── translation.lux │ │ │ │ └── translation │ │ │ │ └── script.lux │ │ ├── meta.lux │ │ ├── meta │ │ │ ├── archive.lux │ │ │ ├── archive │ │ │ │ ├── artifact.lux │ │ │ │ ├── artifact │ │ │ │ │ ├── category.lux │ │ │ │ │ └── definition.lux │ │ │ │ ├── key.lux │ │ │ │ ├── module.lux │ │ │ │ ├── module │ │ │ │ │ ├── descriptor.lux │ │ │ │ │ └── document.lux │ │ │ │ ├── registry.lux │ │ │ │ ├── signature.lux │ │ │ │ └── unit.lux │ │ │ ├── cache.lux │ │ │ ├── cache │ │ │ │ ├── archive.lux │ │ │ │ ├── artifact.lux │ │ │ │ ├── dependency │ │ │ │ │ ├── artifact.lux │ │ │ │ │ └── module.lux │ │ │ │ ├── module.lux │ │ │ │ └── purge.lux │ │ │ ├── cli.lux │ │ │ ├── cli │ │ │ │ └── compiler.lux │ │ │ ├── context.lux │ │ │ ├── export.lux │ │ │ ├── import.lux │ │ │ ├── io.lux │ │ │ ├── io │ │ │ │ ├── archive.lux │ │ │ │ └── context.lux │ │ │ ├── packager.lux │ │ │ └── packager │ │ │ │ ├── jvm.lux │ │ │ │ ├── ruby.lux │ │ │ │ └── script.lux │ │ ├── program.lux │ │ ├── reference.lux │ │ ├── reference │ │ │ ├── register.lux │ │ │ └── variable.lux │ │ ├── type.lux │ │ └── version.lux │ │ ├── concurrency │ │ ├── actor.lux │ │ ├── agent.lux │ │ ├── atom.lux │ │ ├── behavioral.lux │ │ ├── csp.lux │ │ ├── event.lux │ │ ├── frp.lux │ │ ├── future.lux │ │ ├── incremental.lux │ │ ├── semaphore.lux │ │ ├── stm.lux │ │ ├── structured.lux │ │ └── thread.lux │ │ ├── control │ │ ├── concatenative.lux │ │ ├── io.lux │ │ ├── lazy.lux │ │ ├── logic.lux │ │ ├── pattern.lux │ │ ├── pipe.lux │ │ ├── pure.lux │ │ ├── region.lux │ │ ├── scope.lux │ │ ├── scope │ │ │ └── dynamic.lux │ │ ├── state.lux │ │ ├── thread.lux │ │ └── writer.lux │ │ ├── data │ │ ├── any.lux │ │ ├── binary.lux │ │ ├── collection │ │ │ ├── array.lux │ │ │ ├── dictionary.lux │ │ │ ├── dictionary │ │ │ │ └── ordered.lux │ │ │ ├── list.lux │ │ │ ├── list │ │ │ │ ├── property.lux │ │ │ │ └── slice.lux │ │ │ ├── queue.lux │ │ │ ├── queue │ │ │ │ └── priority.lux │ │ │ ├── sequence.lux │ │ │ ├── set.lux │ │ │ ├── set │ │ │ │ ├── multi.lux │ │ │ │ └── ordered.lux │ │ │ ├── stack.lux │ │ │ ├── stream.lux │ │ │ ├── tree.lux │ │ │ └── tree │ │ │ │ ├── finger.lux │ │ │ │ └── zipper.lux │ │ ├── filter.lux │ │ ├── format │ │ │ ├── base64.lux │ │ │ ├── json.lux │ │ │ ├── markdown.lux │ │ │ ├── tar.lux │ │ │ └── xml.lux │ │ ├── maybe.lux │ │ ├── product.lux │ │ ├── stream.lux │ │ ├── sum.lux │ │ ├── text.lux │ │ └── text │ │ │ ├── buffer.lux │ │ │ ├── character.lux │ │ │ ├── encoding.lux │ │ │ ├── encoding │ │ │ └── utf8.lux │ │ │ ├── escape.lux │ │ │ ├── regex.lux │ │ │ ├── slice.lux │ │ │ └── unicode │ │ │ ├── block.lux │ │ │ └── set.lux │ │ ├── debug.lux │ │ ├── documentation.lux │ │ ├── documentation │ │ └── remember.lux │ │ ├── error.lux │ │ ├── error │ │ ├── condition.lux │ │ ├── exception.lux │ │ └── try.lux │ │ ├── ffi.jvm.lux │ │ ├── ffi.lux │ │ ├── ffi │ │ ├── export.js.lux │ │ ├── export.jvm.lux │ │ ├── export.lua.lux │ │ ├── export.py.lux │ │ ├── export.rb.lux │ │ └── node_js.js.lux │ │ ├── finance │ │ ├── interest │ │ │ └── rate.lux │ │ ├── market │ │ │ ├── price.lux │ │ │ ├── price │ │ │ │ └── action.lux │ │ │ └── ticker.lux │ │ ├── money.lux │ │ ├── money │ │ │ └── currency.lux │ │ └── trade │ │ │ ├── session.lux │ │ │ └── volume.lux │ │ ├── function.lux │ │ ├── function │ │ ├── continuation.lux │ │ ├── continuation │ │ │ └── delimited.lux │ │ ├── contract.lux │ │ ├── inline.lux │ │ ├── memo.lux │ │ ├── mixin.lux │ │ ├── mutual.lux │ │ ├── named.lux │ │ ├── poly │ │ │ ├── morph │ │ │ │ ├── aspect.lux │ │ │ │ ├── context.lux │ │ │ │ ├── implicit.lux │ │ │ │ ├── object.lux │ │ │ │ ├── predicate.lux │ │ │ │ ├── subject.lux │ │ │ │ └── type.lux │ │ │ ├── type.lux │ │ │ └── type │ │ │ │ ├── any.lux │ │ │ │ ├── any?.lux │ │ │ │ ├── empty?.lux │ │ │ │ ├── every?.lux │ │ │ │ ├── item.lux │ │ │ │ ├── mix.lux │ │ │ │ └── size.lux │ │ ├── predicate.lux │ │ ├── trampoline.lux │ │ └── variadic.lux │ │ ├── logic │ │ ├── bit.lux │ │ ├── byte.lux │ │ ├── continuous.lux │ │ ├── fuzzy.lux │ │ └── word.lux │ │ ├── macro.lux │ │ ├── macro │ │ ├── context.lux │ │ ├── expansion.lux │ │ ├── local.lux │ │ ├── pattern.lux │ │ ├── syntax.lux │ │ ├── template.lux │ │ └── vocabulary.lux │ │ ├── math.lux │ │ ├── math │ │ ├── algebra.lux │ │ ├── algebra │ │ │ ├── equation.lux │ │ │ ├── formula.lux │ │ │ ├── proof.lux │ │ │ └── variable.lux │ │ ├── arithmetic │ │ │ ├── fixed_point.lux │ │ │ ├── infix.lux │ │ │ └── modular.lux │ │ ├── geometry │ │ │ ├── circle.lux │ │ │ └── hyperbola.lux │ │ ├── modulus.lux │ │ ├── number.lux │ │ ├── number │ │ │ ├── 16 │ │ │ │ ├── integer.lux │ │ │ │ └── natural.lux │ │ │ ├── 32 │ │ │ │ ├── integer.lux │ │ │ │ └── natural.lux │ │ │ ├── 64 │ │ │ │ ├── complex.lux │ │ │ │ ├── decimal.lux │ │ │ │ ├── fraction.lux │ │ │ │ ├── integer.lux │ │ │ │ ├── natural.lux │ │ │ │ ├── rational.lux │ │ │ │ └── revolution.lux │ │ │ ├── 08 │ │ │ │ ├── integer.lux │ │ │ │ └── natural.lux │ │ │ ├── 128.lux │ │ │ ├── 64.lux │ │ │ ├── base.lux │ │ │ ├── big.lux │ │ │ ├── big │ │ │ │ ├── fraction.lux │ │ │ │ ├── integer.lux │ │ │ │ ├── natural.lux │ │ │ │ └── rational.lux │ │ │ ├── digit.lux │ │ │ └── signum.lux │ │ ├── random.lux │ │ └── unit.lux │ │ ├── meta.lux │ │ ├── meta │ │ ├── binding.lux │ │ ├── binding │ │ │ ├── global.lux │ │ │ └── local.lux │ │ ├── code.lux │ │ ├── code │ │ │ ├── declaration.lux │ │ │ └── export.lux │ │ ├── configuration.lux │ │ ├── extension.lux │ │ ├── label.lux │ │ ├── module.lux │ │ ├── module │ │ │ └── import.lux │ │ ├── name.lux │ │ ├── provenance.lux │ │ ├── static.lux │ │ └── version.lux │ │ ├── music │ │ ├── accidental.lux │ │ ├── balance.lux │ │ ├── channel.lux │ │ ├── chord.lux │ │ ├── instrument.lux │ │ ├── interval.lux │ │ ├── mode.lux │ │ ├── note.lux │ │ ├── panning.lux │ │ ├── percussion.lux │ │ ├── pitch.lux │ │ ├── scale.lux │ │ ├── tempo.lux │ │ └── velocity.lux │ │ ├── program.lux │ │ ├── security │ │ ├── capability.lux │ │ └── policy.lux │ │ ├── target.lux │ │ ├── target │ │ ├── c++.lux │ │ ├── c++ │ │ │ └── type.lux │ │ ├── common_lisp.lux │ │ ├── js.lux │ │ ├── jvm │ │ │ ├── attribute.lux │ │ │ ├── attribute │ │ │ │ ├── code.lux │ │ │ │ ├── code │ │ │ │ │ └── exception.lux │ │ │ │ ├── constant.lux │ │ │ │ └── line_number_table.lux │ │ │ ├── bytecode.lux │ │ │ ├── bytecode │ │ │ │ ├── address.lux │ │ │ │ ├── environment.lux │ │ │ │ ├── environment │ │ │ │ │ ├── limit.lux │ │ │ │ │ └── limit │ │ │ │ │ │ ├── datum.lux │ │ │ │ │ │ ├── registry.lux │ │ │ │ │ │ └── stack.lux │ │ │ │ ├── instruction.lux │ │ │ │ └── jump.lux │ │ │ ├── class.lux │ │ │ ├── constant.lux │ │ │ ├── constant │ │ │ │ ├── class.lux │ │ │ │ ├── double.lux │ │ │ │ ├── float.lux │ │ │ │ ├── integer.lux │ │ │ │ ├── long.lux │ │ │ │ ├── name_and_type.lux │ │ │ │ ├── pool.lux │ │ │ │ ├── reference.lux │ │ │ │ ├── string.lux │ │ │ │ ├── tag.lux │ │ │ │ └── utf8.lux │ │ │ ├── encoding │ │ │ │ ├── name │ │ │ │ │ ├── external.lux │ │ │ │ │ └── internal.lux │ │ │ │ └── signed.lux │ │ │ ├── field.lux │ │ │ ├── index.lux │ │ │ ├── loader.lux │ │ │ ├── magic.lux │ │ │ ├── method.lux │ │ │ ├── modifier.lux │ │ │ ├── modifier │ │ │ │ └── inner.lux │ │ │ ├── reflection.lux │ │ │ ├── type.lux │ │ │ ├── type │ │ │ │ ├── alias.lux │ │ │ │ ├── box.lux │ │ │ │ ├── category.lux │ │ │ │ ├── descriptor.lux │ │ │ │ ├── lux.lux │ │ │ │ ├── projection.lux │ │ │ │ ├── reflection.lux │ │ │ │ └── signature.lux │ │ │ └── version.lux │ │ ├── lua.lux │ │ ├── php.lux │ │ ├── python.lux │ │ ├── r.lux │ │ └── ruby.lux │ │ ├── test │ │ ├── benchmark.lux │ │ ├── coverage.lux │ │ ├── inline.lux │ │ ├── property.lux │ │ ├── tally.lux │ │ └── unit.lux │ │ ├── theorem.lux │ │ ├── theorem │ │ ├── proof.lux │ │ ├── proof │ │ │ ├── contradiction.lux │ │ │ ├── induction.lux │ │ │ └── inference.lux │ │ ├── proposition.lux │ │ ├── rule.lux │ │ └── substitution.lux │ │ ├── time.lux │ │ ├── time │ │ ├── date.lux │ │ ├── day.lux │ │ ├── duration.lux │ │ ├── instant.lux │ │ ├── month.lux │ │ ├── solar.lux │ │ └── year.lux │ │ ├── transduction.lux │ │ ├── transduction │ │ ├── pure.lux │ │ └── state.lux │ │ ├── type.lux │ │ ├── type │ │ ├── brand.lux │ │ ├── check.lux │ │ ├── dynamic.lux │ │ ├── environment.lux │ │ ├── function.lux │ │ ├── linear.lux │ │ ├── nominal.lux │ │ ├── poly.lux │ │ ├── quotient.lux │ │ ├── record.lux │ │ ├── refinement.lux │ │ ├── row.lux │ │ ├── unit.lux │ │ ├── unit │ │ │ └── scale.lux │ │ └── variance.lux │ │ ├── web │ │ ├── css.lux │ │ ├── css │ │ │ ├── class.lux │ │ │ ├── font.lux │ │ │ ├── id.lux │ │ │ ├── property.lux │ │ │ ├── query.lux │ │ │ ├── selector.lux │ │ │ ├── style.lux │ │ │ └── value.lux │ │ ├── dom │ │ │ └── event.lux │ │ ├── html.lux │ │ ├── html │ │ │ ├── attribute.lux │ │ │ ├── attribute │ │ │ │ ├── capitalization.lux │ │ │ │ ├── completion.lux │ │ │ │ ├── decoding.lux │ │ │ │ ├── drag.lux │ │ │ │ ├── enter.lux │ │ │ │ ├── input_mode.lux │ │ │ │ ├── pragma.lux │ │ │ │ ├── pre_load.lux │ │ │ │ ├── referrer_policy.lux │ │ │ │ ├── relationship.lux │ │ │ │ ├── role.lux │ │ │ │ ├── sandbox.lux │ │ │ │ ├── shape.lux │ │ │ │ ├── source.lux │ │ │ │ ├── target.lux │ │ │ │ ├── text_direction.lux │ │ │ │ └── type │ │ │ │ │ ├── button.lux │ │ │ │ │ ├── input.lux │ │ │ │ │ ├── numbering.lux │ │ │ │ │ └── script.lux │ │ │ └── tag.lux │ │ └── permission.lux │ │ └── world │ │ ├── console.lux │ │ ├── environment.lux │ │ ├── file.lux │ │ ├── file │ │ ├── extension.lux │ │ └── watch.lux │ │ ├── input │ │ └── keyboard.lux │ │ ├── locale.lux │ │ ├── locale │ │ ├── language.lux │ │ └── territory.lux │ │ ├── logging.lux │ │ ├── net.lux │ │ ├── net │ │ ├── http.lux │ │ ├── http │ │ │ ├── client.lux │ │ │ ├── cookie.lux │ │ │ ├── header.lux │ │ │ ├── request.lux │ │ │ ├── response.lux │ │ │ ├── server.lux │ │ │ ├── status.lux │ │ │ └── version.lux │ │ ├── mime.lux │ │ ├── uri.lux │ │ └── uri │ │ │ ├── encoding.lux │ │ │ ├── path.lux │ │ │ ├── port.lux │ │ │ ├── query.lux │ │ │ └── scheme.lux │ │ ├── output │ │ └── video │ │ │ └── resolution.lux │ │ └── shell.lux │ ├── polytypic │ └── lux │ │ ├── abstract │ │ ├── equality.lux │ │ └── functor.lux │ │ └── data │ │ └── format │ │ └── json.lux │ ├── projection │ └── lux │ │ ├── compiler │ │ └── language │ │ │ └── lux │ │ │ ├── analysis.lux │ │ │ └── synthesis.lux │ │ ├── data │ │ ├── binary.lux │ │ ├── collection │ │ │ ├── list.lux │ │ │ └── tree.lux │ │ ├── format │ │ │ ├── json.lux │ │ │ └── xml.lux │ │ ├── text.lux │ │ └── text │ │ │ └── slice.lux │ │ ├── function │ │ └── poly │ │ │ └── morph │ │ │ └── object.lux │ │ ├── meta │ │ └── code.lux │ │ ├── program.lux │ │ ├── type.lux │ │ └── world │ │ └── environment.lux │ ├── test │ ├── lux.lux │ └── lux │ │ ├── abstract.lux │ │ ├── abstract │ │ ├── comonad.lux │ │ ├── comonad │ │ │ └── free.lux │ │ ├── enum.lux │ │ ├── equality.lux │ │ ├── format.lux │ │ ├── functor.lux │ │ ├── functor │ │ │ ├── contravariant.lux │ │ │ ├── effect.lux │ │ │ └── pro.lux │ │ ├── hash.lux │ │ ├── interval.lux │ │ ├── monad.lux │ │ ├── monad │ │ │ ├── free.lux │ │ │ └── indexed.lux │ │ ├── monoid.lux │ │ ├── order.lux │ │ ├── order │ │ │ └── total │ │ │ │ └── strong.lux │ │ └── projection.lux │ │ ├── aspect.lux │ │ ├── aspect │ │ ├── case.lux │ │ ├── member.lux │ │ ├── property.lux │ │ └── view.lux │ │ ├── color │ │ ├── cmyk.lux │ │ ├── hsb.lux │ │ ├── hsl.lux │ │ ├── named.lux │ │ ├── pigment.lux │ │ ├── rgb.lux │ │ ├── scheme.lux │ │ └── terminal.lux │ │ ├── compiler.lux │ │ ├── compiler │ │ ├── arity.lux │ │ ├── constant.lux │ │ ├── extension.lux │ │ ├── extension │ │ │ ├── jvm.lux │ │ │ └── lux.lux │ │ ├── language │ │ │ ├── lux.lux │ │ │ └── lux │ │ │ │ ├── analysis.lux │ │ │ │ ├── analysis │ │ │ │ ├── complex.lux │ │ │ │ ├── coverage.lux │ │ │ │ ├── inference.lux │ │ │ │ ├── macro.lux │ │ │ │ ├── module.lux │ │ │ │ ├── pattern.lux │ │ │ │ ├── scope.lux │ │ │ │ ├── simple.lux │ │ │ │ └── type.lux │ │ │ │ ├── phase.lux │ │ │ │ ├── phase │ │ │ │ ├── analysis.lux │ │ │ │ ├── analysis │ │ │ │ │ ├── complex.lux │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── simple.lux │ │ │ │ │ └── when.lux │ │ │ │ ├── extension.lux │ │ │ │ ├── extension │ │ │ │ │ └── analysis │ │ │ │ │ │ └── lux.lux │ │ │ │ ├── synthesis.lux │ │ │ │ ├── synthesis │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── structure.lux │ │ │ │ │ ├── variable.lux │ │ │ │ │ └── when.lux │ │ │ │ └── translation │ │ │ │ │ └── jvm │ │ │ │ │ ├── complex.lux │ │ │ │ │ ├── function.lux │ │ │ │ │ ├── function │ │ │ │ │ ├── abstract.lux │ │ │ │ │ ├── field │ │ │ │ │ │ ├── constant │ │ │ │ │ │ │ └── arity.lux │ │ │ │ │ │ ├── variable.lux │ │ │ │ │ │ └── variable │ │ │ │ │ │ │ ├── count.lux │ │ │ │ │ │ │ ├── foreign.lux │ │ │ │ │ │ │ └── partial.lux │ │ │ │ │ ├── method.lux │ │ │ │ │ └── method │ │ │ │ │ │ ├── implementation.lux │ │ │ │ │ │ ├── init.lux │ │ │ │ │ │ ├── of.lux │ │ │ │ │ │ └── reset.lux │ │ │ │ │ ├── host.lux │ │ │ │ │ ├── loop.lux │ │ │ │ │ ├── primitive.lux │ │ │ │ │ ├── reference.lux │ │ │ │ │ ├── runtime.lux │ │ │ │ │ ├── type.lux │ │ │ │ │ ├── value.lux │ │ │ │ │ └── when.lux │ │ │ │ ├── syntax.lux │ │ │ │ ├── synthesis.lux │ │ │ │ ├── synthesis │ │ │ │ ├── access.lux │ │ │ │ ├── access │ │ │ │ │ ├── item.lux │ │ │ │ │ ├── member.lux │ │ │ │ │ └── side.lux │ │ │ │ ├── path.lux │ │ │ │ └── simple.lux │ │ │ │ ├── translation.lux │ │ │ │ └── translation │ │ │ │ └── script.lux │ │ ├── meta.lux │ │ ├── meta │ │ │ ├── archive.lux │ │ │ ├── archive │ │ │ │ ├── artifact.lux │ │ │ │ ├── artifact │ │ │ │ │ ├── category.lux │ │ │ │ │ └── definition.lux │ │ │ │ ├── key.lux │ │ │ │ ├── module.lux │ │ │ │ ├── module │ │ │ │ │ ├── descriptor.lux │ │ │ │ │ └── document.lux │ │ │ │ ├── registry.lux │ │ │ │ ├── signature.lux │ │ │ │ └── unit.lux │ │ │ ├── cache.lux │ │ │ ├── cache │ │ │ │ ├── archive.lux │ │ │ │ ├── artifact.lux │ │ │ │ ├── dependency │ │ │ │ │ └── module.lux │ │ │ │ ├── module.lux │ │ │ │ └── purge.lux │ │ │ ├── cli.lux │ │ │ ├── cli │ │ │ │ └── compiler.lux │ │ │ ├── context.lux │ │ │ ├── export.lux │ │ │ ├── import.lux │ │ │ └── io.lux │ │ ├── reference.lux │ │ ├── reference │ │ │ ├── register.lux │ │ │ └── variable.lux │ │ ├── type.lux │ │ └── version.lux │ │ ├── concurrency │ │ ├── actor.lux │ │ ├── agent.lux │ │ ├── atom.lux │ │ ├── behavioral.lux │ │ ├── csp.lux │ │ ├── event.lux │ │ ├── frp.lux │ │ ├── future.lux │ │ ├── incremental.lux │ │ ├── semaphore.lux │ │ ├── stm.lux │ │ ├── structured.lux │ │ └── thread.lux │ │ ├── control.lux │ │ ├── control │ │ ├── concatenative.lux │ │ ├── io.lux │ │ ├── lazy.lux │ │ ├── logic.lux │ │ ├── pattern.lux │ │ ├── pipe.lux │ │ ├── pure.lux │ │ ├── region.lux │ │ ├── scope.lux │ │ ├── scope │ │ │ └── dynamic.lux │ │ ├── state.lux │ │ ├── thread.lux │ │ └── writer.lux │ │ ├── data.lux │ │ ├── data │ │ ├── any.lux │ │ ├── binary.lux │ │ ├── collection.lux │ │ ├── collection │ │ │ ├── array.lux │ │ │ ├── dictionary.lux │ │ │ ├── dictionary │ │ │ │ └── ordered.lux │ │ │ ├── list.lux │ │ │ ├── list │ │ │ │ ├── property.lux │ │ │ │ └── slice.lux │ │ │ ├── queue.lux │ │ │ ├── queue │ │ │ │ └── priority.lux │ │ │ ├── sequence.lux │ │ │ ├── set.lux │ │ │ ├── set │ │ │ │ ├── multi.lux │ │ │ │ └── ordered.lux │ │ │ ├── stack.lux │ │ │ ├── stream.lux │ │ │ ├── tree.lux │ │ │ └── tree │ │ │ │ ├── finger.lux │ │ │ │ └── zipper.lux │ │ ├── filter.lux │ │ ├── format │ │ │ ├── base64.lux │ │ │ ├── json.lux │ │ │ ├── tar.lux │ │ │ └── xml.lux │ │ ├── maybe.lux │ │ ├── product.lux │ │ ├── stream.lux │ │ ├── sum.lux │ │ ├── text.lux │ │ └── text │ │ │ ├── buffer.lux │ │ │ ├── character.lux │ │ │ ├── encoding.lux │ │ │ ├── encoding │ │ │ └── utf8.lux │ │ │ ├── escape.lux │ │ │ ├── regex.lux │ │ │ ├── slice.lux │ │ │ └── unicode │ │ │ ├── block.lux │ │ │ └── set.lux │ │ ├── debug.lux │ │ ├── documentation.lux │ │ ├── documentation │ │ └── remember.lux │ │ ├── error.lux │ │ ├── error │ │ ├── condition.lux │ │ ├── exception.lux │ │ └── try.lux │ │ ├── ffi.js.lux │ │ ├── ffi.jvm.lux │ │ ├── ffi.lua.lux │ │ ├── ffi.py.lux │ │ ├── ffi.rb.lux │ │ ├── ffi │ │ ├── export.js.lux │ │ ├── export.jvm.lux │ │ ├── export.lua.lux │ │ ├── export.py.lux │ │ ├── export.rb.lux │ │ └── node_js.js.lux │ │ ├── finance │ │ ├── interest │ │ │ └── rate.lux │ │ ├── market │ │ │ ├── price.lux │ │ │ ├── price │ │ │ │ └── action.lux │ │ │ └── ticker.lux │ │ ├── money.lux │ │ ├── money │ │ │ └── currency.lux │ │ └── trade │ │ │ ├── session.lux │ │ │ └── volume.lux │ │ ├── function.lux │ │ ├── function │ │ ├── continuation.lux │ │ ├── continuation │ │ │ └── delimited.lux │ │ ├── contract.lux │ │ ├── inline.lux │ │ ├── memo.lux │ │ ├── mixin.lux │ │ ├── mutual.lux │ │ ├── named.lux │ │ ├── poly │ │ │ ├── morph │ │ │ │ ├── aspect.lux │ │ │ │ ├── context.lux │ │ │ │ ├── implicit.lux │ │ │ │ ├── object.lux │ │ │ │ ├── predicate.lux │ │ │ │ ├── subject.lux │ │ │ │ └── type.lux │ │ │ ├── type.lux │ │ │ └── type │ │ │ │ ├── any.lux │ │ │ │ ├── any?.lux │ │ │ │ ├── empty?.lux │ │ │ │ ├── every?.lux │ │ │ │ ├── item.lux │ │ │ │ ├── mix.lux │ │ │ │ └── size.lux │ │ ├── predicate.lux │ │ ├── trampoline.lux │ │ └── variadic.lux │ │ ├── logic │ │ ├── bit.lux │ │ ├── byte.lux │ │ ├── continuous.lux │ │ ├── fuzzy.lux │ │ └── word.lux │ │ ├── macro.lux │ │ ├── macro │ │ ├── context.lux │ │ ├── expansion.lux │ │ ├── local.lux │ │ ├── pattern.lux │ │ ├── syntax.lux │ │ ├── template.lux │ │ └── vocabulary.lux │ │ ├── math.lux │ │ ├── math │ │ ├── algebra.lux │ │ ├── algebra │ │ │ ├── equation.lux │ │ │ ├── formula.lux │ │ │ ├── proof.lux │ │ │ └── variable.lux │ │ ├── arithmetic │ │ │ ├── fixed_point.lux │ │ │ ├── infix.lux │ │ │ └── modular.lux │ │ ├── geometry │ │ │ ├── circle.lux │ │ │ └── hyperbola.lux │ │ ├── modulus.lux │ │ ├── number.lux │ │ ├── number │ │ │ ├── 16 │ │ │ │ ├── integer.lux │ │ │ │ └── natural.lux │ │ │ ├── 32 │ │ │ │ ├── integer.lux │ │ │ │ └── natural.lux │ │ │ ├── 64 │ │ │ │ ├── complex.lux │ │ │ │ ├── decimal.lux │ │ │ │ ├── fraction.lux │ │ │ │ ├── integer.lux │ │ │ │ ├── natural.lux │ │ │ │ ├── rational.lux │ │ │ │ └── revolution.lux │ │ │ ├── 08 │ │ │ │ ├── integer.lux │ │ │ │ └── natural.lux │ │ │ ├── 128.lux │ │ │ ├── 64.lux │ │ │ ├── base.lux │ │ │ ├── big.lux │ │ │ ├── big │ │ │ │ ├── fraction.lux │ │ │ │ ├── integer.lux │ │ │ │ ├── natural.lux │ │ │ │ └── rational.lux │ │ │ ├── digit.lux │ │ │ └── signum.lux │ │ ├── random.lux │ │ └── unit.lux │ │ ├── meta.lux │ │ ├── meta │ │ ├── binding.lux │ │ ├── binding │ │ │ ├── global.lux │ │ │ └── local.lux │ │ ├── code.lux │ │ ├── code │ │ │ ├── declaration.lux │ │ │ └── export.lux │ │ ├── configuration.lux │ │ ├── extension.lux │ │ ├── label.lux │ │ ├── module.lux │ │ ├── module │ │ │ └── import.lux │ │ ├── name.lux │ │ ├── provenance.lux │ │ ├── static.lux │ │ └── version.lux │ │ ├── music │ │ ├── accidental.lux │ │ ├── balance.lux │ │ ├── channel.lux │ │ ├── chord.lux │ │ ├── instrument.lux │ │ ├── interval.lux │ │ ├── mode.lux │ │ ├── note.lux │ │ ├── panning.lux │ │ ├── percussion.lux │ │ ├── pitch.lux │ │ ├── scale.lux │ │ ├── tempo.lux │ │ └── velocity.lux │ │ ├── program.lux │ │ ├── security │ │ ├── capability.lux │ │ └── policy.lux │ │ ├── target.lux │ │ ├── target │ │ ├── js.lux │ │ ├── jvm.lux │ │ ├── jvm │ │ │ ├── bytecode │ │ │ │ ├── environment │ │ │ │ │ ├── limit.lux │ │ │ │ │ └── limit │ │ │ │ │ │ ├── datum.lux │ │ │ │ │ │ ├── registry.lux │ │ │ │ │ │ └── stack.lux │ │ │ │ └── jump.lux │ │ │ ├── constant.lux │ │ │ ├── constant │ │ │ │ ├── class.lux │ │ │ │ ├── double.lux │ │ │ │ ├── float.lux │ │ │ │ ├── integer.lux │ │ │ │ ├── long.lux │ │ │ │ ├── name_and_type.lux │ │ │ │ ├── pool.lux │ │ │ │ ├── reference.lux │ │ │ │ ├── string.lux │ │ │ │ ├── tag.lux │ │ │ │ └── utf8.lux │ │ │ ├── encoding │ │ │ │ ├── name │ │ │ │ │ ├── external.lux │ │ │ │ │ └── internal.lux │ │ │ │ └── signed.lux │ │ │ ├── index.lux │ │ │ ├── magic.lux │ │ │ ├── type.lux │ │ │ ├── type │ │ │ │ ├── box.lux │ │ │ │ ├── category.lux │ │ │ │ ├── descriptor.lux │ │ │ │ ├── projection.lux │ │ │ │ ├── reflection.lux │ │ │ │ └── signature.lux │ │ │ └── version.lux │ │ ├── lua.lux │ │ ├── python.lux │ │ └── ruby.lux │ │ ├── test.lux │ │ ├── test │ │ ├── benchmark.lux │ │ ├── coverage.lux │ │ ├── inline.lux │ │ ├── property.lux │ │ ├── tally.lux │ │ └── unit.lux │ │ ├── theorem.lux │ │ ├── theorem │ │ ├── proof.lux │ │ ├── proof │ │ │ ├── contradiction.lux │ │ │ ├── induction.lux │ │ │ └── inference.lux │ │ ├── proposition.lux │ │ ├── rule.lux │ │ └── substitution.lux │ │ ├── time.lux │ │ ├── time │ │ ├── date.lux │ │ ├── day.lux │ │ ├── duration.lux │ │ ├── instant.lux │ │ ├── month.lux │ │ ├── solar.lux │ │ └── year.lux │ │ ├── transduction.lux │ │ ├── transduction │ │ ├── pure.lux │ │ └── state.lux │ │ ├── type.lux │ │ ├── type │ │ ├── brand.lux │ │ ├── check.lux │ │ ├── dynamic.lux │ │ ├── environment.lux │ │ ├── function.lux │ │ ├── linear.lux │ │ ├── nominal.lux │ │ ├── poly.lux │ │ ├── quotient.lux │ │ ├── record.lux │ │ ├── refinement.lux │ │ ├── row.lux │ │ ├── unit.lux │ │ ├── unit │ │ │ └── scale.lux │ │ └── variance.lux │ │ ├── web │ │ ├── dom │ │ │ └── event.lux │ │ ├── html │ │ │ ├── attribute.lux │ │ │ ├── attribute │ │ │ │ ├── capitalization.lux │ │ │ │ ├── completion.lux │ │ │ │ ├── decoding.lux │ │ │ │ ├── drag.lux │ │ │ │ ├── enter.lux │ │ │ │ ├── input_mode.lux │ │ │ │ ├── pragma.lux │ │ │ │ ├── pre_load.lux │ │ │ │ ├── referrer_policy.lux │ │ │ │ ├── relationship.lux │ │ │ │ ├── role.lux │ │ │ │ ├── sandbox.lux │ │ │ │ ├── shape.lux │ │ │ │ ├── source.lux │ │ │ │ ├── target.lux │ │ │ │ ├── text_direction.lux │ │ │ │ └── type │ │ │ │ │ ├── button.lux │ │ │ │ │ ├── input.lux │ │ │ │ │ ├── numbering.lux │ │ │ │ │ └── script.lux │ │ │ └── tag.lux │ │ └── permission.lux │ │ ├── world.lux │ │ └── world │ │ ├── console.lux │ │ ├── environment.lux │ │ ├── file.lux │ │ ├── file │ │ ├── extension.lux │ │ └── watch.lux │ │ ├── input │ │ └── keyboard.lux │ │ ├── locale.lux │ │ ├── locale │ │ ├── language.lux │ │ └── territory.lux │ │ ├── logging.lux │ │ ├── net.lux │ │ ├── net │ │ ├── http.lux │ │ ├── http │ │ │ ├── client.lux │ │ │ ├── cookie.lux │ │ │ ├── header.lux │ │ │ ├── request.lux │ │ │ ├── response.lux │ │ │ ├── server.lux │ │ │ ├── status.lux │ │ │ └── version.lux │ │ ├── mime.lux │ │ ├── uri.lux │ │ └── uri │ │ │ ├── encoding.lux │ │ │ ├── path.lux │ │ │ ├── port.lux │ │ │ ├── query.lux │ │ │ └── scheme.lux │ │ ├── output │ │ └── video │ │ │ └── resolution.lux │ │ └── shell.lux │ ├── theorem │ └── lux │ │ ├── abstract │ │ ├── equality.lux │ │ ├── functor.lux │ │ ├── monoid.lux │ │ └── order │ │ │ └── total │ │ │ └── strong.lux │ │ ├── control │ │ ├── pure.lux │ │ ├── scope.lux │ │ ├── state.lux │ │ └── writer.lux │ │ ├── data │ │ ├── maybe.lux │ │ ├── product.lux │ │ └── sum.lux │ │ ├── function.lux │ │ ├── function │ │ └── predicate.lux │ │ ├── logic │ │ ├── bit.lux │ │ ├── byte.lux │ │ └── word.lux │ │ └── math │ │ └── number │ │ ├── 64 │ │ └── integer.lux │ │ └── 64.lux │ └── unsafe │ └── lux │ └── data │ ├── binary.lux │ └── collection │ └── array.lux └── to_do.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # github: [eduardoejp] 2 | # patreon: lux_programming_language 3 | -------------------------------------------------------------------------------- /compilers.md: -------------------------------------------------------------------------------- 1 | # Compiler trial 2 | 3 | ## Build 4 | 5 | ``` 6 | cd ~/lux/lux-trial/ && lein clean && lein lux build 7 | cd ~/lux/lux-trial/target/ && java -jar program.jar 8 | ``` 9 | 10 | -------------------------------------------------------------------------------- /documentation/bookmark/3d_reconstruction.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Direct Voxel Grid Optimization: Super-fast Convergence for Radiance Fields Reconstruction](https://sunset1995.github.io/dvgo/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/abstraction.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [YOW! Lambda Jam 2017 Conal Elliott - Teaching New Tricks to Old Programs #YOWLambdaJam](https://www.youtube.com/watch?v=vzLK_xE9Zy8) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/agriculture.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Top Farm Robots](https://www.topfarmrobots.com/) 4 | 0. [Soil.Spectroscopy](https://soilspectroscopy.org/) 5 | 0. [Agrivoltaics: Opportunities for Agriculture and Energy Transition](https://agri-pv.org/en/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/ai__artificial_intelligence/machine_learning/decision_tree.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Bonsai](https://phonepe.github.io/bonsai/index.html) 4 | 0. [Neural Networks are Decision Trees](https://arxiv.org/abs/2210.05189) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/ai__artificial_intelligence/machine_learning/deep/geometric.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Geometric Deep Learning](https://a-j.gitbook.io/geometric-deep-learning/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/ai__artificial_intelligence/machine_learning/gradient.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Gradients without Backpropagation](https://arxiv.org/abs/2202.08587) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/ai__artificial_intelligence/machine_learning/neural_network/graph.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [How I Learned to Stop Worrying and Love Graphs: Why Machine Learning on Graphs could be the future of AI](https://www.appliedexploration.com/p/graph-neural-networks-future-of-ai) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/ai__artificial_intelligence/machine_learning/probabilistic_soft_logic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Probabilistic soft logic (PSL)](https://psl.linqs.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/ai__artificial_intelligence/machine_vision.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [VisionScript: A high-level programming language for using computer vision](https://github.com/capjamesg/visionscript) 4 | 0. [OpenHands](https://openhands.ai4bharat.org/en/latest/index.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/ai__artificial_intelligence/ocr__optical_character_recognition.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [OCR4all: Optical Character Recognition (and more) for everyone](https://www.ocr4all.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/ai__artificial_intelligence/robotics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [They Built This Robot For Your Home | 1X Technologies](https://www.youtube.com/watch?v=2ccPTpDq05A) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/algorithm.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [There and Back Again](https://www.brics.dk/RS/01/39/BRICS-RS-01-39.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/algorithm/graph.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [GraphBLAS: Building a C++ Matrix API for Graph Algorithms - Benjamin Brock & Scott McMillan](https://www.youtube.com/watch?v=xMBNCtFV8sI) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/algorithm/hashing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Rolling hash](https://en.wikipedia.org/wiki/Rolling_hash) 4 | 0. [The many flavors of hashing](https://notes.volution.ro/v1/2022/07/notes/1290a79c/) 5 | 0. [The construct of a bit mixer](http://jonkagstrom.com/bit-mixer-construction/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/algorithm/propagator.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Propagators, Brainy, and Spritely - MetaFox Talks](https://www.youtube.com/watch?v=jI8gA68OXLM) 5 | 0. [Revised Report on the Propagator Model](https://groups.csail.mit.edu/mac/users/gjs/propagators/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/algorithm/recommendation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [RecBole: A unified, comprehensive and efficient recommendation library](https://recbole.io/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/algorithm/scheduling.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [The Many Uses of Schedulers](https://eruhinim.com/post/many-uses-of-schedulers/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/algorithm/state_machine/hierarchical.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Roost HSM](https://github.com/akiscode/roost_hsm) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/analysis/static/separation_logic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Primer on Separation Logic (and Automatic Program Verification and Analysis)](http://www0.cs.ucl.ac.uk/staff/p.ohearn/papers/Marktoberdorf11LectureNotes.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/annotation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Web Highlights](https://web-highlights.com/) 4 | 0. [How to annotate literally everything](https://beepb00p.xyz/annotating.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/api__application_programming_interface/rest.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How to design better APIs: 15 language-agnostic, actionable tips on REST API design.](https://r.bluethl.net/how-to-design-better-apis) 4 | 0. [Standards.REST](https://standards.rest/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/art/film.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What Does CINEMATIC Really Mean?](https://www.youtube.com/watch?v=ZbByKUDJlbI) 4 | 0. [How To Analyze Movies – Film Studies 101](https://www.youtube.com/watch?v=ahHIifcFyqk) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/art/literature/poetry.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Rhyme Theory](https://blog.chaselambda.com/2022/05/07/rhyme-theory.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/art/music/acoustics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Why You Hear What You Hear](https://www.whyyouhearwhatyouhear.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/art/music/composition.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Jazz Comping - A Complete Beginners Guide](https://jazz-library.com/articles/comping/) 4 | 0. [Composing for Chinese Instruments](https://www.youtube.com/watch?v=2xPQNF5NMH4) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/art/music/language.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [glicol](https://glicol.org/) 5 | 0. [alda: Alda is a text-based programming language for music composition. It allows you to write and play back music using only a text editor and the command line.](https://alda.io/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/assurance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [High Assurance Rust: Developing Secure and Robust Software](https://highassurance.rs/landing.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/attribution_or_credit.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Contributor Role Taxonomy (CRediT)](https://credit.niso.org/) 4 | 0. [tenzing](https://marton-balazs-kovacs.github.io/tenzing/index.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/augmented_reality.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Join innovative technologist Iddris Sandu as he shares his vision for building commerce solutions in augmented reality with Shannon Skipper, Head of Developer Relations at Square.](https://www.youtube.com/watch?v=LvJes9shwJk) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/automation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ironies of Automation](https://ckrybus.com/static/papers/Bainbridge_1983_Automatica.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/automation/desktop.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [RobotJS: The only Node.js first Desktop Automation Library](https://robotjs.io/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/automation/mobile.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Scriptable: Automate iOS using JavaScript](https://scriptable.app/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/batch.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Automatically Process Your Operations in Bulk With Coroutines - Francesco Zoffoli - CppCon 2021](https://www.youtube.com/watch?v=XVZpTaYahdE) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/bookmarklet.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Bookmarkleter](https://chriszarate.github.io/bookmarkleter/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/bpf__berkeley_packet_filter.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Extended BPF: A new software type](https://www.youtube.com/watch?v=7pmXdG8-7WU) 4 | 1. [Berkeley Packet Filter](https://en.wikipedia.org/wiki/Berkeley_Packet_Filter) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/communication/email.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Don't Design Your Emails](https://www.gkogan.co/blog/dont-design-emails/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/communication/narrative.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Narrative driven development](https://jacobtomlinson.dev/posts/2022/narrative-driven-development/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/communication/one_on_one.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [One-on-ones with executives.](https://lethain.com/one-on-ones-with-executives/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/compensation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Rewriting the story of compensation](https://news.shopify.com/rewriting-the-story-of-compensation#) 4 | 0. [Compensation as a Reflection of Values](https://oxide.computer/blog/compensation-as-a-reflection-of-values) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/executive/cto__chief_technology_officer.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why CTOs should be writing requirements... not code!: A CTO should be more involved in the strategy than the engineering itself](https://blog.visionarycto.com/p/why-ctos-should-be-writing-requirements) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/hiring/interview.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [InterviewThis](https://github.com/Twipped/InterviewThis) 5 | 0. [How to Freaking Find Great Developers By Having Them Read Code](https://freakingrectangle.com/2022/04/15/how-to-freaking-hire-great-developers/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/hiring/onboarding.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Effective onboarding at a new job](https://sherlock.codes/blog/effective-onboarding-at-a-new-job/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/hiring/remote.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [travy: Business trips for globally dispersed teams](https://travy.io/) 4 | 0. [11 Reasons Remote Workers Are Choosing To Relocate](https://medium.com/@dantin1/11-reasons-remote-workers-are-choosing-to-relocate-2df44f956b6a) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/incentive.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Be critical or be corrupted](https://www.cenizal.com/be-critical-or-be-corrupted/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/administration/leadership/values.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [We don't A/B test core values](https://world.hey.com/dhh/we-don-t-a-b-test-core-values-91b5f562) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/banking.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Clojure in Banking: Griffin: A fully-regulated, API-driven bank, with Clojure](https://www.juxt.pro/blog/clojure-in-griffin/) 4 | 0. [Column: The developer infrastructure bank](https://column.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/brand.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Building personal and organizational prestige](https://lethain.com/building-prestige/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/collaboration.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ask for Advice, Not Permission](https://boz.com/articles/advice-not-permission) 4 | 0. [Supercollaboration](https://supercollaboration.org/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/culture.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Anatomy of a Non-Apology](https://newsletter.canopy.is/p/the-anatomy-of-a-non-apology) 4 | 0. [Doing Business In Japan](https://www.kalzumeus.com/2014/11/07/doing-business-in-japan/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/document.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Documenso: Document Signing as it should be - open and shaped by its community.](https://github.com/documenso/documenso) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/entrepreneurship.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Excuse me, is there a problem?](https://longform.asmartbear.com/problem/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/estimation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [11 Laws of Software Estimation for Complex Work](https://mdalmijn.com/11-laws-of-software-estimation-for-complex-work/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/failure.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Failure museum of companies, products, sports & toys](https://failure.museum/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/founding.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Y Combinator Co‑Founder Matching: Where savvy founders go to meet potential co‑founders](https://www.ycombinator.com/cofounder-matching) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/founding/solo.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Rise of the One-Person Startup](https://www.ryancarson.com/blog/rise-of-the-one-person-startup) 4 | 0. [MicroFounder: We're building startups as solo developers](https://microfounder.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/funding.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A different way to fund freedom-respecting software](https://contrapunctus.codeberg.page/blog/a-different-way-to-fund-freedom-respecting-software.html) 4 | 0. [More money if you do, more money if you don’t](https://longform.asmartbear.com/more-money/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/funding/bootstrapping.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [The Bootstrap Movement](https://www.bootstrap.company/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/funding/public.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Flexible Design for Funding Public Goods](https://arxiv.org/abs/1809.06421) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/goal.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Grow or Die: A Framework for Turning Your Company Around Fast](https://future.com/grow-or-die-supergoals/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/growth.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [My 9 Favorite Growth Frameworks](https://www.elenaverna.com/p/my-9-favorite-growth-frameworks) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/growth/activation_rate.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What is a good activation rate](https://www.lennysnewsletter.com/p/what-is-a-good-activation-rate) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/idea.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Imagination is Overrated](https://newsletter.smallbets.co/p/imagination-is-overrated) 4 | 0. [The Boneyard Principle: Why the Next Big Thing will Emerge from a Failed Idea](https://every.to/p/the-boneyard-principle) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/innovation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Four layers](https://glazkov.com/2023/05/29/four-layers/) 4 | 0. [When First Movers Are Rewarded, and When They’re Not](https://hbr.org/2015/08/when-first-movers-are-rewarded-and-when-theyre-not) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/logistics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [DeftShip: Progressive Shipping Solutions Your Business Needs to Succeed!](https://deftship.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/luck.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [How to Increase Your Luck Surface Area](https://www.codusoperandi.com/posts/increasing-your-luck-surface-area) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/luck/beating_the_odds.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [No Time, No Budget, No Problem: Finishing The First Tree](https://www.youtube.com/watch?v=g5f7yixtQPc) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/marketing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [openfortune: Your brand is in their ~fortune~ future.](https://openfortune.com/) 4 | 0. [All Ears: Track your brand across the new media landscape](https://en.allears.ai/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/metric.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [16 Startup Metrics](https://a16z.com/16-startup-metrics/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/negotiation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Better Way to Divide the Pie](https://insights.som.yale.edu/insights/better-way-to-divide-the-pie) 4 | 0. [Rethinking Negotiation: A smarter way to split the pie](https://hbr.org/2021/11/rethinking-negotiation) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/operations.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Keith Rabois on the Role of a COO, How to Hire and Why Transparency Matters](https://review.firstround.com/Keith-Rabois-on-the-role-of-a-COO-how-to-hire-and-why-transparency-matters) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/organizational_design.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [One Project](https://oneproject.org/) 4 | 0. [metalabel](https://www.metalabel.xyz/) 5 | 0. [Work Is Work: In which returns diminish.](https://codahale.com/work-is-work/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/business/permission.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Ask for no, don’t ask for yes](https://www.mooreds.com/wordpress/archives/3518) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/pitch.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Pip Decks](https://pipdecks.com/pages/storyteller-tactics-card-deck) 4 | 0. [Procosoco: A Simple Way to Pitch Almost Any Idea](http://dunkels.com/adam/procosoco-pitch-ideas/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/planning.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why backlogs are harmful, why they never shrink, and what to do instead](https://lucasfcosta.com/2023/02/07/backlogs-are-useless.html) 4 | 0. [User Story Mapping: Developing a Shared Understanding](https://www.youtube.com/watch?v=UDHW525sCOo) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/process_management.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Process mining](https://en.wikipedia.org/wiki/Process_mining) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/product.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [An ode to software products over software services](https://world.hey.com/dhh/an-ode-to-software-products-over-software-services-c2705aff) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/promotion.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Promotion and its consequences](https://underlap.org/promotion-and-its-consequences) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/resume.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Truth about Lying to Get a Job [2023 Data]](https://resumelab.com/career-advice/lying-to-get-a-job) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/sabotage.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Illegal Life Pro Tip: Want to ruin your competitors business?](https://oppositeinvictus.com/illegal-life-pro-tip-want-to-ruin-your-competitors-business) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/sales.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Hacking sales as an introvert](https://shwin.co/blog/hacking-sales-as-an-introvert) 4 | 0. [Objection Handling: 18 Templates You Can Use Today!](https://www.slintel.com/blog/objection-handling-sales/) 5 | 0. [SellX](https://www.sellx.com/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/business/sales/monetization.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Awesome OSS Monetization](https://paydevs.github.io/awesome-oss-monetization/) 4 | 0. [Grant for the Web](https://www.grantfortheweb.org/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/sales/payment.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [HyperSwitch: An Open Source Financial Switch to make Payments fast, reliable and affordable](https://github.com/juspay/hyperswitch) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/sales/payment/subscription.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Lies, Damned Lies, and Subscriptions](https://blog.giovanh.com/blog/2023/02/27/lies-damned-lies-and-subscriptions/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/sales/referral.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How to design your referral program so you don't accidentally lose millions](https://upollo.ai/blog/referral-programs) 4 | 0. [How to design a referral program](https://andrewchen.com/how-to-design-a-referral-program/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/sales/store/check_out.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Self-Checkout Even the Haters Will Love](https://www.wsj.com/business/retail/uniqlo-self-checkout-rfid-holiday-shopping-fast-retailing-c4287e2f) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/service.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [White glove service](https://seths.blog/2022/09/white-glove-service/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/startup.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Avoid These Tempting Startup Ideas](https://www.youtube.com/watch?v=GMIawSAygO4) 4 | 0. [Startup School](https://www.startupschool.org/) 5 | 0. [Startup Library](https://www.ycombinator.com/library) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/business/success.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Infinite Games: There's more to the game than winning it, you know.](https://www.youngmoney.co/p/infinite-games) 4 | 0. [Why Success Doesn’t Lead to Satisfaction](https://hbr.org/2023/01/why-success-doesnt-lead-to-satisfaction) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/tool.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Open Source Alternative to...](https://www.opensourcealternative.to/) 4 | 0. [Akaunting: Free Accounting Software](https://akaunting.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/type.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Platform cooperative](https://en.wikipedia.org/wiki/Platform_cooperative) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/business/user_story.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Why user stories belong in the garbage](https://www.browserlondon.com/blog/2022/08/30/why-user-stories-belong-in-the-garbage/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/business/work/tracking.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Don't Do Invisible Work - Chris Albon](https://www.youtube.com/watch?v=HiF83i1OLOM) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/certification.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Open Badges](https://openbadges.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/changelog.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Effective Changelogs](https://xavd.id/blog/post/effective-changelogs/) 4 | 0. [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/censorship.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Avoid Nightmares — NSFW JS: Client-side indecent content checking for the soul](https://shift.infinite.red/avoid-nightmares-nsfw-js-ab7b176978b1) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/documentation/diagram.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Bluefish: The missing diagramming framework](https://bluefishjs.org/) 4 | 0. [Codemap: The code visualization you wished for](https://codemap.app/) 5 | 0. [Awesome Diagramming](https://github.com/shubhamgrg04/awesome-diagramming) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/documentation/runbook.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Awesome Runbook](https://github.com/runbear-io/awesome-runbook) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/emoji.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [OpenMoji: Open source emojis for designers, developers and everyone else!](https://openmoji.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/linguistics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Garden-path sentence](https://en.wikipedia.org/wiki/Garden-path_sentence) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/media/content.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Content](https://mitpress.mit.edu/books/content) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/media/podcast.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Podcast Index](https://podcastindex.org/) 4 | 0. [Erik Torenberg on the Evolution of Media](https://www.youtube.com/watch?v=beR7vqtW_X4) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/medium/radio.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [PySDR: A Guide to SDR and DSP using Python](https://pysdr.org/) 4 | 0. [Software Defined Radio with Zynq UltraScale+ RFSoC](https://www.rfsocbook.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/medium/writing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Chiastic structure](https://en.wikipedia.org/wiki/Chiastic_structure) 4 | 0. [The Punctuation Guide](https://www.thepunctuationguide.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/natural_language.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Where does punctuation come from?!](https://youtu.be/k9Re5otW-v0) 4 | 0. [Why we should go back to writing in runes](https://youtu.be/4npuVmGxXuk) 5 | 0. [Ancient Echoes](https://www.etymonline.com/columns/post/ancient-echoes) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/natural_language/constructed.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Toaq](https://toaq.net/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/natural_language/japanese.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The mystery of は](https://briefjapanese.fun/why-ha-is-pronounced-wa/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/natural_language/tone.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [tone indicators: what they are, why you should use them, and how to use them](https://toneindicators.carrd.co/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/news.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [EMM News Explorer: News analysis, across languages and over time](http://emm.newsexplorer.eu/) 4 | 0. [GDELT Project](https://www.gdeltproject.org/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/telephony.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Falsehoods Programmers Believe About Phone Numbers](https://github.com/google/libphonenumber/blob/master/FALSEHOODS.md) 4 | 0. [Fonoster: The open-source alternative to Twilio](https://github.com/fonoster/fonoster) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/communication/type/persuasion.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Resisting persuasion](https://changingminds.org/techniques/resisting/resisting.htm) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/composition/inheritance/mixin.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [DynaMix](https://ibob.bg/dynamix/index.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/by/fluidics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Water integrator](https://en.wikipedia.org/wiki/Water_integrator) 5 | 0. [Fluidics](https://en.wikipedia.org/wiki/Fluidics) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/by/interaction_net.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [HVM: Higher-order Virtual Machine](https://github.com/HigherOrderCO/HVM) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/effect.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [A Categorical View of Computational Effects](https://www.youtube.com/watch?v=6t6bsWVOIzs) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/effect/higher_order.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Framework for Higher-Order Effects & Handlers](https://arxiv.org/abs/2302.01415) 4 | 0. [[Haskell'23] The Evolution of Effects](https://www.youtube.com/watch?v=m821Vz8N_bo) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/in/ambient.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Hidden Interfaces for Ambient Computing](https://ai.googleblog.com/2022/04/hidden-interfaces-for-ambient-computing.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/in/decentralization.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. ["Beyond Blockchain: Convergent Consensus" by Mike Anderson (Strange Loop 2022)](https://www.youtube.com/watch?v=XmDUkrOAhsY) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/in/parallel/automatic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Automatic Parallelism Management](https://www.cs.cmu.edu/~swestric/24/popl24-par-manage.pdf) 4 | 0. ["Haxl: A Big Hammer for Concurrency" by Simon Marlow](https://www.youtube.com/watch?v=sT6VJkkhy0o) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/in/quantum.md: -------------------------------------------------------------------------------- 1 | # Programming Language 2 | 3 | 1. [Silq](https://silq.ethz.ch/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/orthogonal_persistence.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [IC Internals: Orthogonal Persistence](https://medium.com/dfinity/ic-internals-orthogonal-persistence-9e0c094aac1a) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/computation/special/functional.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Hardware Acceleration of Functional Languages](https://haflang.github.io/index.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/computational_literature.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [RiTa](https://rednoise.org/rita/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/adapton.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Adapton: Programming Language Abstractions for Incremental Computation](http://adapton.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/agent.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [SARL: General-purpose Agent-Oriented Programming Language.](http://www.sarl.io/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/asynchronous.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [The Internals of Asynchronous Programming](https://betterprogramming.pub/asynchronous-programming-8aaae83cd9f3) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/capsule_oriented_programming.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Capsule-oriented Programming](http://design.cs.iastate.edu/papers/TR-13-01/capsule-oriented.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/clock.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [A Tree Clock Data Structure for Causal Orderings in Concurrent Executions](https://dl.acm.org/doi/pdf/10.1145/3503222.3507734) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/coroutine.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Philosophy of coroutines](https://www.chiark.greenend.org.uk/~sgtatham/quasiblog/coroutines-philosophy/#use-cases) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/disruptor.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [LMAX Disruptor: High performance alternative to bounded queues for exchanging data between concurrent threads](https://lmax-exchange.github.io/disruptor/disruptor.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/engine.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Literate Engines in Lisp](http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.45.6198) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/ownership.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. []() 4 | 5 | # Language 6 | 7 | 1. [Project Verona: Research programming language for concurrent ownership](https://microsoft.github.io/verona/) 8 | 9 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/reactive.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Survey of Built-in Concurrency in Programming Languages](https://codemachete.com/2022/06/23/survey-of-built-in-concurrency-in-programming-languages/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/revision.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Concurrent Revisions](https://www.microsoft.com/en-us/research/project/concurrent-revisions/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/security.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Robust Composition: Towards a Unified Approach to Access Control and Concurrency Control](http://erights.org/talks/thesis/markm-thesis.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/semaphore.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Little Book of Semaphores](https://greenteapress.com/wp/semaphores/) 4 | 0. [The Little Book of Semaphores](https://greenteapress.com/semaphores/LittleBookOfSemaphores.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/session_types.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [An Introduction to Session Types](https://wen.works/2020/12/17/an-introduction-to-session-types/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/synchronization.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [17. Synchronization Without Locks](https://www.youtube.com/watch?v=5sZo3SrLrGA) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/concurrency/volatile.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why the “volatile” type class should not be used](https://www.kernel.org/doc/html/v4.10/process/volatile-considered-harmful.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/constraint/memory.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Small Memory Software: Patterns for systems with limited memory](http://smallmemory.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/control_flow/continuation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [The Discoveries of Continuations](https://homepages.inf.ed.ac.uk/wadler/papers/papers-we-love/reynolds-discoveries.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/control_system.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Cascading failure](https://en.wikipedia.org/wiki/Cascading_failure) 4 | 0. [Intro to Incremental Non-Linear Dynamic Inversion (INDI)](https://fusion.engineering/intro-to-incremental-non-linear-dynamic-inversion-indi/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/control_theory.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Fundamentals of Control Theory](https://engineeringmedia.com/books) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/mathematics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Symmetric division considered harmful](https://www.nimblemachines.com/symmetric-division-considered-harmful/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/blindness.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Algebraic blindness](https://github.com/quchen/articles/blob/master/algebraic-blindness.md) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/effect.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Capabilities for Resources and Effects](https://www.slideshare.net/Odersky/capabilities-for-resources-and-effects-252161040) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/gradual.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Putting gradual types to work](https://arxiv.org/abs/2101.12299) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/homotopy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Robert Harper - Homotopy Type Theory](https://www.youtube.com/playlist?list=PL1-2D_rCQBarjdqnM21sOsx09CtFSVO6Z) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/inference.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Functors of the World, Unite!](https://www.youtube.com/watch?v=8k7YH9st_8U) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/liquid.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Gentle Introduction to Liquid Types](https://goto.ucsd.edu/~ucsdpl-blog/liquidtypes/2015/09/19/liquid-types/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/qualified.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Qualifying System F-sub](https://arxiv.org/abs/2311.07480) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/quantitative.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [The Syntax and Semantics of Quantitative Type Theory](https://bentnib.org/quantitative-type-theory.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/refinement.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ante: A low-level functional language](https://antelang.org/) 4 | 0. [Refinement Kinds: Type-safe Programming with Practical Type-level Computation (Extended Version)](https://arxiv.org/abs/1908.00441) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/row_polymorphism.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Part 6a: Lowering Row Types, Evidently](https://thunderseethe.dev/posts/lowering-rows-intro/) 4 | 1. [Row Polymorphism without the Jargon](https://jadon.io/blog/row-polymorphism) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/soundness.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Logical Approach to Type Soundness](https://iris-project.org/pdfs/2022-submitted-logical-type-soundness.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/type_checking.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A systematic approach to deriving incremental type checkers](https://dl.acm.org/doi/10.1145/3428195) 4 | 0. [Let Should Not Be Generalised](https://www.microsoft.com/en-us/research/publication/let-should-not-be-generalised/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/correctness/type_theory/uniqueness.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Uniqueness Typing Simplified](https://www.researchgate.net/publication/221600600_Uniqueness_Typing_Simplified) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/creativity.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Creativity Hack No One Told You About: Read the Obits](https://thereader.mitpress.mit.edu/the-creativity-hack-no-one-told-you-about-read-the-obits/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/crowd_sourcing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Bike Index: Bike registration that works](https://bikeindex.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/cryptography/homomorphic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A curated list by the team at Zama of blog posts, libraries, research papers, and tutorials on Fully Homomorphic Encryption (FHE).](https://github.com/zama-ai/awesome-zama) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/css/functional.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Functional CSS Framework](https://www.fcss.club/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/css/technique/hologram.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Holographic Masks](https://codepen.io/HejChristian/full/YPzLbYX) 4 | 0. [Holograms, light-leaks and how to build CSS-only shaders](https://robbowen.digital/wrote-about/css-blend-mode-shaders/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/cybernetics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The cybernetics of design: A brief introduction to Applied Cybernetics in UX](https://uxdesign.cc/the-cybernetics-of-design-d9e967c7f256) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/amorphous.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [AmorphousDB: Rethinking the Relational Database](https://www.linkedin.com/pulse/amorphousdb-rethinking-relational-database-jim-starkey) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/b_tree.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. ["Modern B-Tree techniques" by Dmitrii Dolgov (Strange Loop 2022)](https://www.youtube.com/watch?v=4ELJDEjDpqk) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/consistency.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Operating without foreign key constraints](https://docs.planetscale.com/learn/operating-without-foreign-key-constraints) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/distributed.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Let's Remix Distributed Database Design!](https://www.youtube.com/watch?v=rNmZZLant9o) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/finance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [TigerBeetle: The world’s fastest financial accounting database](https://tigerbeetle.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/graph.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Demystifying Graph Databases: Analysis and Taxonomy of Data Organization, System Designs, and Graph Queries](https://arxiv.org/abs/1910.09017) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/index.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Implementing Fractional Indexing](https://observablehq.com/@dgreensp/implementing-fractional-indexing) 4 | 0. [Realtime Editing of Ordered Sequences](https://www.figma.com/blog/realtime-editing-of-ordered-sequences/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/key_value.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Fast key-value stores: An idea whose time has come and gone](https://storage.googleapis.com/pub-tools-public-publication-data/pdf/03de87e2856b06a94ffae7dca218db2d4b9afd39.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/local.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [In Search of a Local-First Database](https://jaredforsyth.com/posts/in-search-of-a-local-first-database/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/lock.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Progressive Locks : fast, upgradable read/write locks](http://wtarreau.blogspot.com/2018/02/progressive-locks-fast-upgradable.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/pagination.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Pagination with Relative Cursors](https://shopify.engineering/pagination-relative-cursors) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/relational.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Implicit ordering in relational languages](https://scattered-thoughts.net/writing/implicit-ordering-in-relational-languages) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/serverless.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [SpacetimeDB](https://spacetimedb.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/storage.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [TreeLine: An Update-In-Place Key-Value Store for Modern Storage](https://www.vldb.org/pvldb/vol16/p99-yu.pdf) 4 | 0. [Damn Cool Algorithms: Log structured storage](http://blog.notdot.net/2009/12/Damn-Cool-Algorithms-Log-structured-storage) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/streaming.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How we built a Streaming SQL Engine](https://www.epsio.io/blog/how-to-create-a-streaming-sql-engine) 4 | 0. [Debezium: Stream changes from your database](https://debezium.io/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/temporal.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Sign of the Times - Managing inhomogeneously bitemporal data with Datomic and Clojure](https://blog.podsnap.com/bitemp.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/transaction.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Demystifying Database Transactions](https://dineshgowda.com/posts/demystifying-database-transcations/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/vector.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Navigating the Vector Database Landscape](https://hackernoon.com/navigating-the-vector-database-landscape) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/base/write_ahead_logging.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Write-Ahead Logging](https://sqlite.org/wal.html) 4 | 0. [Write-ahead logging](https://en.wikipedia.org/wiki/Write-ahead_logging) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/big.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Algorithms and Data Structures for Massive Datasets](https://www.manning.com/books/algorithms-and-data-structures-for-massive-datasets) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/conversion.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Converting Integers to Floats Using Hyperfocus](https://blog.m-ou.se/floats/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/format.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. https://internetobject.org/ 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/format/base16.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Decoding base16 sequences quickly](https://lemire.me/blog/2023/07/27/decoding-base16-sequences-quickly/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/format/base32.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Fast decoding of base32 strings](https://lemire.me/blog/2023/07/20/fast-decoding-of-base32-strings/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/format/json.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [simdjson: Parsing gigabytes of JSON per second](https://github.com/simdjson/simdjson) 4 | 0. [Zero Allocation JSON Logger](https://github.com/rs/zerolog) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/format/zip.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Zip - How not to design a file format.](https://games.greggman.com/game/zip-rant/) 4 | 1. [ZIP File Format Specification](https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/graphic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Very, Very Tiny Grammar of Graphics](https://observablehq.com/@joshpoll/vvt-gog) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/persistence.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Persistence Programming: Are we doing this right?](https://queue.acm.org/detail.cfm?id=3526210&doi=10.1145/3526210) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/procedural_generation.md: -------------------------------------------------------------------------------- 1 | # Fractional Brownian Motion 2 | 3 | 1. http://iquilezles.org/www/articles/fbm/fbm.htm 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/procedural_generation/by/inductive_graph.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Generating Mazes with Inductive Graphs](https://jelv.is/blog/Generating-Mazes-with-Inductive-Graphs/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/procedural_generation/by/wave_function_collapse.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Brian Bucklew - Dungeon Generation via Wave Function Collapse](https://www.youtube.com/watch?v=fnFj3dOKcIQ) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/random_generation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Fast random integers](https://www.erlang.org/blog/faster-rand/) 5 | 0. [Efficiently Generating a Number in a Range](https://www.pcg-random.org/posts/bounded-rands.html) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/data/science.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [OpenRefine](https://openrefine.org/) 4 | 0. [Exponential smoothing](https://en.wikipedia.org/wiki/Exponential_smoothing) 5 | 0. [High Performance Data With Clojure Chris Nuernberger](https://www.youtube.com/watch?v=5mUGu4RlwKE) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/data/serialization.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Pointer swizzling](https://en.wikipedia.org/wiki/Pointer_swizzling) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/sorting.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Clojure: sort by multiple keys with different orderings](https://www.youtube.com/watch?v=bihh8nPGixo) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/state/history.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [History Data Structures](https://gist.github.com/CMCDragonkai/d266a3055735545447439f0fa662a0e1) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/state/world.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Worlds: Controlling the Scope of Side Effects](http://www.vpri.org/pdf/tr2010001_worlds.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/structure/array.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Efficient jagged arrays](https://zeux.io/2023/06/30/efficient-jagged-arrays/) 4 | 0. [Dex: array programming with typed indices](https://openreview.net/pdf?id=rJxd7vsWPS) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/structure/bitmap.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [A primer on Roaring bitmaps: what they are and how they work](https://vikramoberoi.com/a-primer-on-roaring-bitmaps-what-they-are-and-how-they-work/) 5 | 0. [Roaring Bitmaps](https://roaringbitmap.org/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/data/structure/collection.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. ["Introducing the HandAxe Collections Pattern Language" by Maurice Rabb (Strange Loop 2022)](https://www.youtube.com/watch?v=YDq251FbmK4) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/structure/persistent.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Hash Map for Graph Processing Workloads & a Methodology for Transactional Data Structures - CppCon](https://www.youtube.com/watch?v=aeC8yCwQJ-E) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/structure/probabilistic/bloom_filter.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [ON THE FALSE-POSITIVE RATE OF BLOOM FILTERS](https://cglab.ca/~morin/publications/ds/bloom-submitted.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/structure/probabilistic/cuckoo_filter.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Cuckoo Filter: Practically Better Than Bloom](https://www.eecs.harvard.edu/~michaelm/postscripts/cuckoo-conext2014.pdf) 4 | 0. [Cuckoo Hashing and Cuckoo Filters](https://www.cs.toronto.edu/~noahfleming/CuckooHashing.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/structure/succinct.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [SDSL - Succinct Data Structure Library](https://github.com/simongog/sdsl-lite) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/tag.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Tag Systems](https://buttondown.email/hillelwayne/archive/tag-systems/) 4 | 0. [Good category, bad category (or: tag, don’t bucket)](https://surfingcomplexity.blog/2023/02/19/good-category-bad-category-or-tag-dont-bucket/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/data/temporal.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Awesome Data Temporality](https://github.com/daefresh/awesome-data-temporality) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/text/encoding/ascii.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Writing semantic ASCII](https://smitop.com/post/ascii/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/data/text/format.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [{fmt} Formatting & Printing Library](https://hackingcpp.com/cpp/libs/fmt.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/datalog.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Control flow for Datalog](https://www.mbid.me/posts/control-flow-for-datalog/) 4 | 0. [A Differential Datalog Interpreter](https://arxiv.org/abs/2308.04214) 5 | 0. [DECONSTRUCTING DATALOG](http://www.rntz.net/files/thesis.pdf) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/dec64.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [DEC64: Decimal Floating Point](https://www.crockford.com/dec64.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/deprecation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Deprecating in Julia](https://invenia.github.io/blog/2022/06/17/deprecating-in-julia/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/aesthetics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Index of Aesthetics](https://cari.institute/aesthetics) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/composition.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Open, extensible composition models](http://www.vpri.org/pdf/tr2011002_oecm.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/flexibility.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Pass-Through Lists](https://jonathanwarden.com/2014/06/19/pass-through-lists/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/interaction.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Invisible Details of Interaction Design](https://rauno.me/craft/interaction-design) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/language.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Design Languages](https://design-languages.com/index.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/measurement.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [PHYSICALLYBASED: A database of physically based values for CG artists](https://physicallybased.info/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/onboarding.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Feature onboarding](https://primer.style/design/ui-patterns/feature-onboarding) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/performance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [InstantClick](http://instantclick.io/) 4 | 0. [Psychology of Speed: A Guide to Perceived Performance](https://calibreapp.com/blog/perceived-performance) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/programmability.md: -------------------------------------------------------------------------------- 1 | # Exemplar 2 | 3 | 0. [offerzen: Developer-driven banking, for a developer-driven world.](https://www.offerzen.com/community/investec/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/research.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Design Research Framework](https://www.muledesign.com/blog/design-research-framework) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/spatial.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Principles of spatial design](https://developer.apple.com/videos/play/wwdc2023/10072/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/system.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [PatternFly: Build scalable experiences in the open](https://www.patternfly.org/v4/) 4 | 0. [Naming conventions for design systems](https://backlight.dev/blog/naming-conventions-for-design-systems) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/type.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Type Design Resources](https://typedesignresources.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [augmented-ui](http://augmented-ui.com/) 4 | 0. [eight golden rules of user interface design](https://mail.gnome.org/archives/gnome-gui-list/1998-November/msg00074.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/adaptability.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Adaptive Cards: A whole new way to deliver UI](https://adaptivecards.io/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/color/lch.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [OKLCH in CSS: why we moved from RGB and HSL](https://evilmartians.com/chronicles/oklch-in-css-why-quit-rgb-hsl) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/color/palette.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [I want visually distinct colors!: Generate palettes of optimally distinct colors.](https://mokole.com/palette.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/component.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [The Component Gallery](https://component.gallery/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/container/tree_view.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Tree views in CSS](https://iamkate.com/code/tree-views/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/dashboard.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Tabler: A premium and open source dashboard template with a responsive and high-quality UI.](https://github.com/tabler/tabler) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/design.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Laws of UX](https://lawsofux.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/desktop.md: -------------------------------------------------------------------------------- 1 | # Qt 2 | 3 | 0. [NodeGui](https://docs.nodegui.org/) 4 | 5 | # Browser-based 6 | 7 | 0. [muon](https://github.com/ImVexed/muon) 8 | 9 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/framework.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [WebFX]()https://webfx.dev/ 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/generative.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Generative UI and Outcome-Oriented Design](https://www.nngroup.com/articles/generative-ui/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/paradigm/flow.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Flows: A New Approach to UI Development](http://jasonhpriestley.com/flows) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/responsiveness.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Improving responsiveness in text inputs](https://nolanlawson.com/2021/08/08/improving-responsiveness-in-text-inputs/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/server_driven.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Sending UI over APIs](https://www.builder.io/blog/ui-over-apis) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/text/typography.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Typography for Lawyers](https://typographyforlawyers.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ui__user_interface/widget.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Textbox Behaviour](https://rxi.github.io/textbox_behaviour.html) 4 | 0. [100 Modern CSS Buttons. Every Style That You Can Imagine.](https://github.com/uihaven/ui-buttons) 5 | 0. [Floating UI](https://www.floating-ui.com/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/design/ux__user_experience.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Laws of UX: a collection of best practices that designers can consider when building user interfaces](https://lawsofux.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/viewport.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The ideal viewport doesn’t exist](https://viewports.fyi/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/design/web/resilient.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Resilient Web Design](https://resilientwebdesign.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/development_environment.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Devbox: Portable, Isolated Dev Environments on any Machine](https://www.jetpack.io/devbox/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/drone.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [ArduPilot](https://ardupilot.org/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/engagement.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ranking by Engagement](http://tecunningham.github.io/2023-04-28-ranking-by-engagement.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/engineering.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Well There's Your Problem](https://www.youtube.com/playlist?list=PLnmst0j-3FuZ5Mx5GU45uPBvA_WNTBLWm) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/engineering/in/reverse.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ghidra Software Reverse Engineering Framework](https://github.com/NationalSecurityAgency/ghidra) 4 | 0. [Ghidra JavaScript Integration](https://github.com/vaguue/Ghidra.js) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/engineering/of/biology.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Metabolic engineering](https://en.wikipedia.org/wiki/Metabolic_engineering) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/engineering/of/geo.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Seaflooding: The Surprising Solution to Mitigate Climate Change, Create More Life, and Grow the Economy](https://unchartedterritories.tomaspueyo.com/p/seaflooding) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/engineering/software/alert.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Alerts, what are they good for?](https://medium.com/@tophatengblog/alerts-what-are-they-good-for-fe085e9ab4db) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/engineering/software/negative.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What Is Negative Engineering?](https://future.com/negative-engineering-and-the-art-of-failing-successfully/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/engineering/software/philosophy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Against generality](https://novalis.org/blog/2016-09-27-against-generality.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/engineering/software/sre__software_reliability_engineering.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [A Case Study in Community-Driven Software Adoption](http://landing.google.com/sre/resources/practicesandprocesses/case-study-community-driven-software-adoption/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/entertainment/video.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Video Essay Explained/Why Click Bait Works](https://www.youtube.com/watch?v=sEEBKbCvDJE) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/environment_variables.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [9 Things I Hate About Environment Variables](https://prefab.cloud/blog/9-problems-with-env-vars/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/approximation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Approximation theory](https://2π.com/22/approximation/index.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/calculus/continuous.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Continuous Calculus](http://www-users.math.umn.edu/~olver/ln_/cc.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/calculus/matrix.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Matrix Calculus You Need For Deep Learning](https://explained.ai/matrix-calculus/) 4 | 0. [Matrix Calculus (for Machine Learning and Beyond)](https://arxiv.org/abs/2501.14787) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/calculus/tensor.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Introduction to Tensor Analysis and the Calculus of Moving Surfaces](https://www.amazon.com/gp/product/1461478669) 4 | 0. [Introduction to Tensor Calculus](http://www.ita.uni-heidelberg.de/~dullemond/lectures/tensor/tensor.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/chaos_theory.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Symmetry in Chaos](http://paulbourke.net/fractals/symmetryinchaos/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/dimension.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The first negative dimension: A tribute to alumni Roly Drower by Hugh Duncan](https://chalkdustmagazine.com/blog/the-first-negative-dimension/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/fourier_analysis.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Moiré no more](https://newsletter.shifthappens.site/archive/moire-no-more/) 4 | 0. [THE FOURIER UNCERTAINTY PRINCIPLES](https://math.uchicago.edu/~may/REU2021/REUPapers/Dubey.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/geometry.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [TG: Geometry library for C - Fast point-in-polygon](https://github.com/tidwall/tg) 4 | 0. [Geometry](https://mathpages.com/home/igeometr.htm) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/geometry/analytic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Carlyle circle](https://en.wikipedia.org/wiki/Carlyle_circle) 4 | 0. [Lill's method](https://en.wikipedia.org/wiki/Lill%27s_method) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/geometry/computational.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Computational Geometry Algorithms Library](https://www.cgal.org/) 4 | 0. [Primitives for Computational Geometry](https://graphics.stanford.edu/courses/cs348a-17-winter/Papers/Stolfi_Primitives_DECSRC_Report.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/geometry/dimension.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Beyond the Third Dimension](https://www.math.brown.edu/tbanchof/Beyond3d/index.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/geometry/quiver.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Quiver geometry](https://quivergeometry.net/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/geometry/trigonometry.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Implementing cosine in C from scratch](https://austinhenley.com/blog/cosine.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/logic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [forall x: Calgary](https://forallx.openlogicproject.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/number/big.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Hidden memory effects of BigDecimal](https://github.com/gdela/java-sandbox/blob/master/articles/bigdecimal-performance.md) 4 | 0. [Big Integer Design](https://www.bearssl.org/bigint.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/number/quaternion.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Quaternions to Homogeneous Points, Lines, and Planes](https://youtu.be/dSe7eg8Dj98) 4 | 0. [Math in Game Development Summit: A Visual Guide to Quaternions and Dual Quaternions](https://youtu.be/en2QcehKJd8) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/operation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Earliest Uses of Symbols of Operation](https://mathshistory.st-andrews.ac.uk/Miller/mathsym/operation/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/philosophy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [What is the point of formalising mathematics?](https://lawrencecpaulson.github.io/2022/06/22/Why-formalise.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/probability.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How to Learn Probability Distributions](https://www.youtube.com/watch?v=mBCiKUzwdMs) 4 | 0. [Probability theory does not extend logic](https://metarationality.com/probability-and-logic) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/probability/causal_inference.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [CausalPy - causal inference for quasi-experiments](https://causalpy.readthedocs.io/en/latest/) 4 | 0. [A First Course in Causal Inference](https://arxiv.org/abs/2305.18793) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/probability/information_geometry.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [The Many Faces of Information Geometry](https://www.ams.org//journals/notices/202201/rnoti-p36.pdf) 5 | 0. [Information geometry](https://en.wikipedia.org/wiki/Information_geometry) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/queueing_theory.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Queueing theory: an introduction for software development](https://github.com/joelparkerhenderson/queueing-theory) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/recurrence_relation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Recurrence relations and linear algebra](https://krinkinmu.github.io/2020/10/23/recurrence-relations-and-linear-algebra.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/statistics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [On the Algebraic Properties of Flame Graphs](https://arxiv.org/abs/2301.08941) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/theorem_proving.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Logic and Mechanized Reasoning](https://avigad.github.io/lamr/index.html) 4 | 0. [The Natural Number Game](https://www.ma.imperial.ac.uk/~buzzard/xena/natural_number_game/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/mathematics/univalence.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [SymmetryBook](https://github.com/UniMath/SymmetryBook) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/biology/evolution.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Vavilovian mimicry](https://en.wikipedia.org/wiki/Vavilovian_mimicry) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/chemistry.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Periodex](https://periodex.co/) 4 | 0. [Cando chemistry language](https://github.com/cando-developers/cando) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Assumptions of Physics](https://assumptionsofphysics.org/) 4 | 0. [Physics heresy: Projectiles don’t actually make parabolas](https://bigthink.com/starts-with-a-bang/projectiles-dont-make-parabolas/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics/anti_gravity.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Man Who Built UFOs For The CIA (Not Bob Lazar!)](https://www.youtube.com/watch?v=RTEWLSTyUic) 4 | 0. [The Dark History of Anti-Gravity (Quantum Gravity Exposed)](https://www.youtube.com/watch?v=eBA3RUxkZdc) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics/cooling.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Forget Heat Pumps - This House Cools Itself With NO Electricity!](https://www.youtube.com/watch?v=UB_ima2t_xU) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics/energy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Cogeneration](https://en.wikipedia.org/wiki/Cogeneration) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics/geometry.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Lectures on Geometrical Anatomy of Theoretical Physics](https://www.youtube.com/playlist?list=PLPH7f_7ZlzxTi6kS4vCmv4ZKm9u8g5yic) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics/theory.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Brans–Dicke theory](https://en.wikipedia.org/wiki/Brans%E2%80%93Dicke_theory) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics/theory/relativity.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Visual relativistic mechanics](https://arxiv.org/abs/2408.07036) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics/water.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Air well (condenser)](https://en.wikipedia.org/wiki/Air_well_(condenser)) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/physics/weather.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Open-Meteo: Free Weather API](https://open-meteo.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/pseudo.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What I learned as a hired consultant to autodidact physicists](https://aeon.co/ideas/what-i-learned-as-a-hired-consultant-for-autodidact-physicists) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Zeigarnik effect](https://en.wikipedia.org/wiki/Zeigarnik_effect) 4 | 0. [Parataxic distortion](https://en.wikipedia.org/wiki/Parataxic_distortion) 5 | 0. [Repetition compulsion](https://en.wikipedia.org/wiki/Repetition_compulsion) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology/evil.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Dark Factor of Personality: A Theory of the Common Core of Socially and Ethically Aversive Personality Traits](https://darkfactor.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology/feeling.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Feelings Wheel: How to use a feelings wheel to understand your emotions](https://hshidara.com/article/feelingswheel/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology/narcissism.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Last Psychiatrist on narcissism](https://blog.artyom.me/all/the-last-psychiatrist-on-narcissism/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology/relationship/romantic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [‘The female Andrew Tate’: the new influencer dating doctrine is extreme – but I can see why it’s popular](https://www.theguardian.com/commentisfree/2023/aug/09/female-andrew-tate-influencer-dating-debt-man-bills) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology/social.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why “anomie” is eroding the soul of our society](https://bigthink.com/thinking/anomie-erodes-soul-society-loneliness/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology/social/influence.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Art of Subtle Influence: How to lead when you don’t have control](https://every.to/no-small-plans/the-art-of-subtle-influence) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology/social/politeness.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Politeness theory](https://en.wikipedia.org/wiki/Politeness_theory) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/psychology/social/respect.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [On Disrespect](https://gwern.net/on-disrespect) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/research.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [openRxiv](https://openrxiv.org/) 4 | 0. [Software Papers as Software Modules: Towards a Culture of Reusable Results](https://github.com/andreas-zeller/papers-as-modules) 5 | 0. [ResearchRabbit](https://researchrabbitapp.com/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/research/data.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Civic APIs](https://apisyouwonthate.com/newsletter/civic-apis/) 4 | 0. [USAFacts](https://usafacts.org/) 5 | 0. [Source Cooperative](https://beta.source.coop/) 6 | 0. [Academic Torrents](https://academictorrents.com/) 7 | 8 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/science/research/zettelkasten.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Stop Taking Regular Notes; Use a Zettelkasten Instead](https://eugeneyan.com/writing/note-taking-zettelkasten/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/epistemology/skepticism.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Metabunk](https://www.metabunk.org/home/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/food/cooking.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Cooklang – Recipe Markup Language](https://cooklang.org/) 4 | 0. [Why Recipe Standard is Important](https://cooklang.org/blog/04-why-recipe-standard/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/forecasting.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Metaculus: Forecasting for a complex world](https://www.metaculus.com/home/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/function/polymorphism/dispatch/multiple.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [JuliaCon 2019 | The Unreasonable Effectiveness of Multiple Dispatch | Stefan Karpinski](https://www.youtube.com/watch?v=kc9HwsxE1OY) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/function/polymorphism/dispatch/single.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [John Bandela “Polymorphism != Virtual: Easy, Flexible Runtime Polymorphism Without Inheritance”](https://www.youtube.com/watch?v=PSxo85L2lC0) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/function/polymorphism/rank.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Semantics of Rank Polymorphism](https://arxiv.org/abs/1907.00509) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/2d.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [An Algorithm for Polygon Intersections](https://gorillasun.de/blog/an-algorithm-for-polygon-intersections) 4 | 0. [2D graphics primitives](http://www.mare.ee/indrek/misc/2d.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/3d/modeling.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Blockbench: A low-poly 3D model editor](https://www.blockbench.net/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/3d/rendering/engine.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [babylon.js](https://www.babylonjs.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/3d/rendering/ray_tracing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ray-aligned Occupancy Map Array for Fast Approximate Ray Tracing](https://zheng95z.github.io/publications/roma23) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/3d/shading.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [LYGIA Shader Library](https://github.com/patriciogonzalezvivo/lygia) 4 | 0. [Slang](https://github.com/shader-slang/slang) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/4d.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Unity 4D #3: Rendering 4D Objects](https://www.alanzucconi.com/2023/07/06/rendering-4d-objects/) 4 | 0. [The Secrets of the Fourth Dimension](https://www.youtube.com/watch?v=5eSZZnOS2h8) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/interactive.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [g9](http://omrelli.ug/g9/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/pixel.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Subpixel Zoo: A Catalog of Subpixel Geometry](https://geometrian.com/programming/reference/subpixelzoo/index.php) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/vector/gkurve.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [gkurve: simpler vector graphics - Stephen Gutekanst - Software You Can Love 2022](https://www.youtube.com/watch?v=QTybQ-5MlrE) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/graphic/vector/svg.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Optimizing SVG Patterns to Their Smallest Size](https://css-tricks.com/optimizing-svg-patterns/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/hardware/accelerator.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Calyx: A Compiler Infrastructure for Accelerator Generators](https://calyxir.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/hardware/design.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Semiconductors - The Final Frontier Of Open Source](https://www.youtube.com/watch?v=aJeGs3MQFQA) 4 | 0. [Modular Hardware Design with Timeline Types](https://rachitnigam.com/files/pubs/filament.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/hardware/display.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Flicker - a spherical display](https://www.youtube.com/watch?v=DpEewUsl8mg) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/hardware/failure.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What Causes Bit Flips In Computer Memory?](https://blog.robertelder.org/causes-of-bit-flips-in-computer-memory/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/hardware/keyboard.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Typing in 3D! (1st Master Forge Demonstration)](https://www.youtube.com/watch?v=PRsWVO8NkAM) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/hardware/measurement.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [PyVISA: Control your instruments with Python](https://pyvisa.readthedocs.io/en/latest/index.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/hardware/ram__random_access_memory.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [ULTRARAM: A non-volatile computer memory with unparalleled energy efficiency](https://ultraram.tech/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/health/additive.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Olestra](https://en.wikipedia.org/wiki/Olestra) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/health/disease.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Global Outbreaks](https://preventepidemics.org/map/?=undefined) 4 | 0. [Search for a rare disease]https://www.orpha.net/consor/cgi-bin/Disease.php?lng=EN() 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/health/exercise.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Muscle Supplement worthy of Consideration... (that isn’t creatine)](https://youtu.be/Z-x076J2tfE) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/health/fertility.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What If Men Could Make Their Own Egg Cells?](https://www.wsj.com/health/what-if-anyone-could-make-a-human-egg-22002407) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/health/nutrition.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Antinutrient](https://en.wikipedia.org/wiki/Antinutrient) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/infrastructure/container.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [The Ideal Versus the Real: Revisiting the History of Virtual Machines and Containers](https://arxiv.org/abs/1904.12226) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/infrastructure/messaging.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [NSQ: A realtime distributed messaging platform](https://github.com/nsqio/nsq) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/infrastructure_as_code.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What if Infrastructure as Code never existed - Adam Jacob](https://www.youtube.com/watch?v=5lPa2U239C4) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/io.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Blocking I/O, Nonblocking I/O, And Epoll](https://eklitzke.org/blocking-io-nonblocking-io-and-epoll) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/jewelry.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Diamonds Suck!](https://diamondssuck.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/learning.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Variability, Not Repetition, is the Key to Mastery](https://www.scotthyoung.com/blog/2022/10/26/variable-mastery/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/load_balancing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Load is not what you should balance: Introducing Prequal](https://arxiv.org/abs/2312.10172) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/map.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Overture](https://overturemaps.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/material.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [New programmable materials can sense their own movements](https://news.mit.edu/2022/materials-sense-movements-0810) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/material/wood.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [woodoo](https://woodoo.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/audio.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Ambisonics](https://en.wikipedia.org/wiki/Ambisonics) 5 | 0. [JUCE: The leading framework for multi-platform audio applications](https://juce.com/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/audio/analysis.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [librosa: A python package for music and audio analysis](https://github.com/librosa/librosa) 4 | 0. [audioFlux: A library for audio and music analysis, feature extraction](https://github.com/libAudioFlux/audioFlux) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/audio/direction.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A First Look At Raytraced Audio](https://www.youtube.com/watch?v=u6EuAUjq92k) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/audio/dsp__digital_signal_processing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Chata](https://github.com/Slackadays/Chata) 4 | 0. [meyda: Audio feature extraction for JavaScript.](https://meyda.js.org/) 5 | 0. [meyda: Audio feature extraction for JavaScript.](https://github.com/meyda/meyda) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/audio/fingerprinting.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [dejavu: Audio fingerprinting and recognition in Python](https://github.com/worldveil/dejavu) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/audio/plugin.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [CLAP: The New Audio Plug-in Standard](https://u-he.com/community/clap/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/audio/signal_processing/wavelet.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Wavelets: a mathematical microscope](https://www.youtube.com/watch?v=jnxqHcObNK4) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/image.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [PhyloPic: Free silhouette images of animals, plants, and other life forms, available for reuse under Creative Commons licenses.](https://www.phylopic.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/image/jpeg.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Introducing Jpegli: A New JPEG Coding Library](https://opensource.googleblog.com/2024/04/introducing-jpegli-new-jpeg-coding-library.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/video/codec.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [NotchLC](https://notchlc.notch.one/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/medium/video/visual_effects.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Notch](https://www.notch.one/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/allocation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [CppCon 2018: Arthur O'Dwyer “An Allocator is a Handle to a Heap”](https://www.youtube.com/watch?v=IejdKidUwIg) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/borrow.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Type Systems for Memory Safety](https://borretti.me/article/type-systems-memory-safety) 4 | 0. [Aeneas: Rust Verification by Functional Translation](https://arxiv.org/abs/2206.07185) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/destination_passing_style.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Destination-passing Style](http://www.fitzgibbon.ie/destination_passing_style) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/generational_reference.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Generational References: 2.3x faster than reference counting, unoptimized!](https://verdagon.dev/blog/generational-references) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/immortality.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Introducing Immortal Objects for Python](https://engineering.fb.com/2023/08/15/developer-tools/immortal-objects-for-python-instagram-meta/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/region.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Reference Capabilities for Flexible Memory Management: Extended Version](https://arxiv.org/abs/2309.02983) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/security.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Hardened malloc](https://github.com/GrapheneOS/hardened_malloc) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/smart_pointer.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Implementing smart pointers for the C programming language](https://snai.pe/posts/c-smart-pointers) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/synthetic_pointer.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [CppCon 2018: Bob Steagall “Fancy Pointers for Fun and Profit”](https://www.youtube.com/watch?v=_nIET46ul6E) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/tagging.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [CppCon 2018: Kostya Serebryany “Memory Tagging and how it improves C/C++ memory safety”](https://www.youtube.com/watch?v=lLEcbXidK2o) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/management/view_propagation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Scopes: a retargetable programming language & infrastructure](https://sr.ht/~duangle/scopes/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/memory/pointer/tagging.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What is the best pointer tagging method?](https://coredumped.dev/2024/09/09/what-is-the-best-pointer-tagging-method/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/minification/css.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Lightning CSS: An extremely fast CSS parser, transformer, bundler, and minifier](https://lightningcss.dev/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/monad/transformer.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why Monad Transformers Matter](https://www.williamyaoh.com/posts/2023-07-01-why-monad-transformers-matter.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/name.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Naming Conventions That Need to Die](https://willcrichton.net/notes/naming-conventions-that-need-to-die/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/network.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Sniffnet: Comfortably monitor your Internet traffic](https://github.com/GyulyVGC/sniffnet) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/network/programmable.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Secure Programmable Router](https://github.com/spr-networks/super) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/network/proxy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [The What and Why of Programmable Proxies](https://www.infoq.com/articles/what-why-programmable-proxies/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/no_code.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Blocktool: Turn your web app into a no-code framework](https://www.blocktool.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/notation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Notation and thought](https://github.com/kai-qu/notation) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/notification.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Novu: The open-source notification infrastructure for developers](https://github.com/novuhq/novu) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/observability.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [jHiccup: a non-intrusive instrumentation tool that logs and records platform "hiccups"](https://github.com/giltene/jHiccup) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/algorithm.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Efficient Algorithms](https://www.ifi.uzh.ch/en/dast/teaching/EA.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/branchless_programming.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Branchless Programming in C++ - Fedor Pikus - CppCon 2021](https://www.youtube.com/watch?v=g-WPhYREFjk) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/compiler/tail_call.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Parsing Protobuf at 2+GB/s: How I Learned To Love Tail Calls in C](https://blog.reverberate.org/2021/04/21/musttail-efficient-interpreters.html) 4 | 0. [musttail](https://clang.llvm.org/docs/AttributeReference.html#musttail) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/condensation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Selectively Shifting and Constraining Computation](https://openjdk.org/projects/leyden/notes/02-shift-and-constrain) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/dispatch.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Using Modern C++ to Eliminate Virtual Functions - Jonathan Gopel - CppCon 2022](https://www.youtube.com/watch?v=gTNJXVmuRRA) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/inlining.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Understanding and Exploiting Optimal Function Inlining](https://ethz.ch/content/dam/ethz/special-interest/infk/ast-dam/documents/Theodoridis-ASPLOS22-Inlining-Paper.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/low_level/x86.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Optimizing subroutines in assembly language: An optimization guide for x86 platforms](https://www.agner.org/optimize/optimizing_assembly.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/memoization.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Skip: A programming language to skip the things you have already computed](http://skiplang.com/) 4 | 0. https://github.com/skiplang/skip 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/memory.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [An XML DOM with just 8 bytes per node](https://blog.grijjy.com/2020/10/07/an-xml-dom-with-just-8-bytes-per-node/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/string.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Optimizing A String Class for Computer Graphics in Cpp - Zander Majercik, Morgan McGuire CppCon 22](https://www.youtube.com/watch?v=fglXeSWGVDc) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/optimization/structure_packing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Lost Art of Structure Packing](http://www.catb.org/esr/structure-packing/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/os__operating_system/bios.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [I have come to bury the BIOS, not to open it: The need for holistic systems](https://www.osfc.io/2022/talks/i-have-come-to-bury-the-bios-not-to-open-it-the-need-for-holistic-systems/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/os__operating_system/kernel/uni.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [MirageOS: A programming framework for building type-safe, modular systems](https://mirageos.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/os__operating_system/timer.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Hashed and Hierarchical Timing Wheels: Data Structures for the Efficient Implementation of a Timer Facility](http://www.cs.columbia.edu/~nahum/w6998/papers/sosp87-timing-wheels.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/os__operating_system/type/android.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Android Debug Bridge (ADB) Commands: A comprehensive guide to ADB commands for Android development, debugging, and device management](https://www.adb-command.top/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/os__operating_system/type/linux.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Portable binaries for Linux](http://s.minos.io/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/osint__open_source_intelligence.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Dark Web Reports](https://www.dailydarkweb.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/pattern.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Patterns of Software: Tales from the Software Community](https://dreamsongs.com/Files/PatternsOfSoftware.pdf) 4 | 1. [Gerald Jay Sussman on Flexible Systems, The Power of Generic Operations](https://vimeo.com/151465912) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/pattern_matching.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Compiling Pattern Matching](https://compiler.club/compiling-pattern-matching/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/personal_growth.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [You Actually Want to Suffer](https://everythingisbullshit.substack.com/p/you-want-to-suffer) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Magic Sand: Magic-Sand is a software for operating an augmented reality sandbox](https://github.com/thomwolf/Magic-Sand) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/algorithm/collision_detection.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [GJK: Collision detection algorithm in 2D/3D](https://blog.winter.dev/2020/gjk-algorithm/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/asset.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ditherdragon](https://winterveil.itch.io/ditherdragon) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/balance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [PAX South 2018 -- Balance in Game Design](https://www.youtube.com/watch?v=NXD8YQ7j_Qk) 5 | 0. [How "Bad" Balance Can Be A Good Thing](https://www.youtube.com/watch?v=l1WYmHz3hog) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/business/marketing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Don't Be a Copycat: Personalized Marketing for Your Game](https://www.youtube.com/watch?v=wVkOIissc0k) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/business/negotiation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Contract Killers: What Developers Should Eliminate From Their Publishing Agreement](https://www.youtube.com/watch?v=yfrwQnqwPps) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/business/survival.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Failing to Fail: The Spiderweb Software Way](https://www.youtube.com/watch?v=stxVBJem3Rs) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/community.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Charm Your Communities](https://www.youtube.com/watch?v=o93BMHdde6Y) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/data.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Allie Signet & Joe Maliksi - SIBR - Sports, Splorts, and Statistics: Why Data Accessibility Matters](https://www.youtube.com/watch?v=WeRCGy3-uPY) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/development.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Evan Debenham- Community-Driven Roguelike Development](https://www.youtube.com/watch?v=NMWQIdfCgQg) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/device/gba__game_boy_advance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Awesome Game Boy Advance development](https://github.com/gbadev-org/awesome-gbadev) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/device/ps2__playstation_2.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Tyra: Open source game engine for PlayStation 2™](https://github.com/h4570/tyra) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/dice_roll.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Ability Scores As Dice: An Alternate RPG System - Does This Reduced the Influence of Random Chance?](https://www.youtube.com/watch?v=lJUealdZXAs) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/economy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why Is It So Easy To Break Videogame Economies?](https://www.youtube.com/watch?v=GMtIAXtAGxw) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/exploration.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Exploration in 'Ghost of Tsushima': Letting the Island Guide You](https://www.youtube.com/watch?v=b5rUPBWgwuw) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/failure.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why Videogames Want You To Fail](https://www.youtube.com/watch?v=K4ch3IRJpKY) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/generation/map.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Generating Worlds With Wave Function Collapse](https://www.procjam.com/tutorials/wfc/) 4 | 0. [Procedural Worlds from Simple Tiles](https://ijdykeman.github.io/ml/2017/10/12/wang-tile-procedural-generation.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/generation/move.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Thomas Robertson - Towards a New Understanding of Procedural Super Attacks](https://www.youtube.com/watch?v=f1t4yPjfZyM) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/generation/name.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Sraëka-Lillian - Procedural Phonology: Generating Name Generators](https://www.youtube.com/watch?v=XQKNwaCwD-I) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/generation/plot.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Best Practices for Procedural Narrative Generation](https://www.youtube.com/watch?v=k2rgzZ2WXKo) 4 | 0. [Jasmine Otto - Cyclic Plot Generation in a Narrative Instrument](https://www.youtube.com/watch?v=NjIDVIIg1lY) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/genre/interactive_fiction.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [](http://www.inform-fiction.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/genre/rpg.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Real Reasons Why We Play DnD & other RPGs](https://www.youtube.com/watch?v=UrIIeC-ahf8) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/grid/hexagonal.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Hexagonal Grids](https://www.redblobgames.com/grids/hexagons/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/juice.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Jeremiah Reid - Juice your Turns](https://www.youtube.com/watch?v=xSYVQc7cH-4) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mathematics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [A Bestiary of Functions for Systems Designers](https://brunodias.dev/2021/03/19/functions-for-system-designers.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/bug.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Jason Grinblat- Before you Fix a Leak, Ask if it's a Fountain](https://www.youtube.com/watch?v=kvCky6BbTuE) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/class.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Why Classes Are D&D's Best Idea](https://www.youtube.com/watch?v=vT0SQ0S_BLY) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/crafting.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Real-World Herbalism for DnD Campaigns](https://www.youtube.com/watch?v=g2KZlOwDFmE) 4 | 0. [Building Better Crafting Systems](https://www.youtube.com/watch?v=Nj7EaryBgak) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/deduction.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Burden of Proof: Narrative Deduction Mechanics for Detective Games](https://www.youtube.com/watch?v=--3meejDM-U) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/jump.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Math for Game Programmers: Building a Better Jump](https://www.youtube.com/watch?v=hG9SzQxaCm8) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/luck.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What Makes A Good Luck Mechanic?](https://youtu.be/4cmGSMDOrfc) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/magic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [DungeonCraft #37: How to Handle Magic in D&D & Pathfinder](https://www.youtube.com/watch?v=RV_RwUFETdI) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/power.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Is It Possible To Make Feeling Weak Fun?](https://www.youtube.com/watch?v=SZR5N8aTbug) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/problem_solving.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [How To Design An Unsolvable Problem](https://www.youtube.com/watch?v=toD5D6PDofU) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/simplification.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Replace Hit Points! (Ep. 253)](https://www.youtube.com/watch?v=MABlOHYommI) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/strategy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What Can Game Designers Learn from Competitive Reality Shows](https://www.youtube.com/watch?v=UkR4cxz7_t8) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/survival.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Long Term Survival Challenges || D&D & Dael Kingsmill](https://www.youtube.com/watch?v=lygaQIenfd0) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/synergy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Alice Lai - All Together Now: Creating Multiplicative Power in Hades](https://www.youtube.com/watch?v=pXib0WTfLbI) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/travel.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Travel VS Exploration || D&D with Dael Kingsmill](https://www.youtube.com/watch?v=DiMiug0T93s) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/mechanic/unlockable.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How Do You Make Fun Unlockables? ~ Design Doc](https://www.youtube.com/watch?v=R8EyVhHRjqc) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/meta.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [IRDC 2017 - Darren Grey, Designing for the metagame](https://www.youtube.com/watch?v=Fce0nuhhGoI) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/move.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Dylan White - The Cost of Magic](https://www.youtube.com/watch?v=kvgKKRLil_8) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/networking.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Networking of a turn-based game](https://longwelwind.net/blog/networking-turn-based-game/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/ranking.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [On the Limitations of Elo: Real-World Games, are Transitive, not Additive](https://arxiv.org/abs/2206.12301) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/replayability.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Replayability in Game Design](https://medium.com/super-jump/replayability-in-game-design-798fbb91a726) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/reuse.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Growing Your Code Library with Each New Project](https://www.youtube.com/watch?v=o3X8IvJksGA) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/sequel.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How Do You Make a Great Sequel? ~ Design Doc](https://www.youtube.com/watch?v=tj5P5DdgkE4) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/skill.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How Dark Souls (accidentally) Taught You Cowardice](https://www.youtube.com/watch?v=9Gy3p1SzgLM) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/speedrun.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [What Makes A Game Speedrun Friendly?](https://www.youtube.com/watch?v=ixmOKhM_AlI) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/storytelling/archetype.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Trope Talk: Doomed Heroes](https://www.youtube.com/watch?v=f3ZC7wSIwGU) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/storytelling/combat.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Combat that Serves the Story || D&D with Dael Kingsmill](https://www.youtube.com/watch?v=dHPvBrA_j2Q) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/storytelling/genre.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How to take Advantage of Genre || D&D with Dael Kingsmill](https://www.youtube.com/watch?v=US2UCiMsP-w) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/storytelling/intrigue.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 5 | # Exemplar 6 | 7 | 0. [Review: Warhammer--Power Behind the Throne (Ep #223)](https://www.youtube.com/watch?v=K7IuyXt2wKg) 8 | 9 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/storytelling/language.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Thieves' Cant || D&D with Dael Kingsmill](https://www.youtube.com/watch?v=7kkG3oEZqF8) 4 | 0. [How I'd Run the Druidic Language || D&D with Dael Kingsmill](https://www.youtube.com/watch?v=DWw6nGFI57A) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/storytelling/magic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Wizards Good, Warlocks Bad || D&D w/ Dael Kingsmill](https://www.youtube.com/watch?v=sCXpucf16-k) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/storytelling/setting.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Realistic Fictional Holidays || D&D Worldbuilding](https://www.youtube.com/watch?v=LHC8FiKn6HQ) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/storytelling/villain.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [What Makes a Good Cast of Game Villains?](https://www.youtube.com/watch?v=me_tT6SKyjo) 5 | 0. [Running Villains || D&D Baddies with Dael Kingsmill](https://www.youtube.com/watch?v=dRkbqK9SqJ0) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/system.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Mike Cook- Generating Procedures:Rule & System Generation for Roguelikes](https://www.youtube.com/watch?v=3daNITP9vBc) 4 | 0. [Errant RPG: Rules Light, Procedure Heavy](https://www.youtube.com/watch?v=uhewFV1LOHI) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/tool.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Spencer Egart- Tooling for Roguelikes and Procgen](https://www.youtube.com/watch?v=YfLYPIXGF7E) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/tutorial.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What's The Point of a First Level?](https://www.youtube.com/watch?v=vt-xkWZH1aw) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/worldbuilding/realism.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ways Medieval Armor Was More Dangerous Than Wearing Nothing](https://www.youtube.com/watch?v=M6gria4X76k) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/play/game/worldbuilding/town.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What Makes a Good RPG Town? ~ Design Doc](https://www.youtube.com/watch?v=uXleufh2mY0) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/public_resource.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Public API Lists](https://github.com/public-api-lists/public-api-lists) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/quality.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Most people don't care about quality](https://shkspr.mobi/blog/2024/12/most-people-dont-care-about-quality/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/reliability/data.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Soda OSS: Data Reliability Engineering as Code](https://www.soda.io/oss) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/resource/clean_up.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Replacing Finalizers with Cleaners](https://inside.java/2022/05/25/clean-cleaner/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/rival.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Alusus Programming Language](https://alusus.org/en/) 4 | 0. [ALUSUS PROGRAMMING LANGUAGE](https://github.com/Alusus/Alusus) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/runners or comodels.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. https://github.com/andrejbauer/coop 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/runtime_code_manipulation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [DynamoRIO](https://dynamorio.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/community/onboarding.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Ultimate Guide to Onboarding Software Engineers](https://leadership.garden/onboarding-engineers/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/community/trolling.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Trolls Aren’t Like the Rest of Us](https://www.theatlantic.com/family/archive/2022/03/how-to-manage-cyberbullying-internet-trolls/627084/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/crime.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Is This A Golden Age of Fraud?](https://www.youtube.com/watch?v=_V4-n5aTtq8) 4 | 0. [How Counterfeit Money Actually Works | How Crime Works | Insider](https://www.youtube.com/watch?v=FGAVpJfG1yQ) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/society/dating.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Lean Dating Manifesto](https://pixelmetry.com/2019/11/29/lean-dating-manifesto/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Economic surveillance of EU economies](https://economy-finance.ec.europa.eu/economic-surveillance-eu-economies_en) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/auction.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Vickrey auction](https://en.wikipedia.org/wiki/Vickrey_auction) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/capitalism.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The biggest problem with capitalism? Not enough capitalists](https://fortune.com/2020/11/21/capitalism-entrepreneurship-economic-inequality-us-bureaucracy/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/currency.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Predecimal Currency: The Nightmare in Your Pocket](https://www.youtube.com/watch?v=dip8eHw3guo) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/finance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [In Defense of Finance (Yaron Brook)](https://www.youtube.com/watch?v=VNZcCPM9Lpg) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/finance/defi__decentralized.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A catalogue of DeFi platforms for permissionless trading](https://sec.cyou/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/finance/kyc__know_your_customer.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [](https://kycnot.me/) 4 | 0. [KYC? No, thanks](https://blog.kycnot.me/p/kyc-no-thanks) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/inflation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Inflation Is Your Fault](https://www.theatlantic.com/ideas/archive/2023/12/inflation-prices-buying-habits/676191/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/money.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Dinero.js: Dinero.js is a library for working with monetary values in JavaScript.](https://dinerojs.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/taxation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Correcting the Top 10 Tax Myths](https://manhattan.institute/article/correcting-the-top-10-tax-myths) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/economics/wealth.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Rich and Anonymous](https://collabfund.com/blog/rich-and-anonymous/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/justice.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Distributive justice](https://en.wikipedia.org/wiki/Distributive_justice) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/law/gdpr.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Is my cookie illegal?: Twelve questions from developers to privacy experts.](https://volument.com/blog/is-my-cookie-illegal) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/society/law/property/intellectual.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why Should Business Leaders Care about Intellectual Property?](https://www.youtube.com/watch?v=jQuiOAvZdDY) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/law/property/intellectual/authorship.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Markdown Annotations](https://github.com/iainc/Markdown-Annotations) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/law/property/intellectual/patent.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Patent Potato](https://patentpotato.com/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/philanthropy.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Catalytic Philanthropy](https://ssir.org/articles/entry/catalytic_philanthropy) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/society/politics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Collective action problem](https://en.wikipedia.org/wiki/Collective_action_problem) 4 | 0. [LobbyView: Advancing data science research in interest group politics](https://www.lobbyview.org/) 5 | 0. [Propaganda Critic](https://propagandacritic.com/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/society/sharing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Open Library](https://openlibrary.org/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/society/status.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Banking on Status: How Neobanks Should Monetize Status Signaling](https://julian.digital/2020/12/03/banking-on-status/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/society/urban_planning.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A/B Street: Transportation planning and traffic simulation software for creating cities friendlier to walking, biking, and public transit](https://github.com/a-b-street/abstreet) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/architecture/message_queue.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Delivering billions of messages exactly once](https://segment.com/blog/exactly-once-delivery/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/architecture/messaging.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [NSQ: A realtime distributed messaging platform](https://nsq.io/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/architecture/microservice.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Convey - a simple recipe for .NET Core microservices.](https://www.youtube.com/watch?v=cxEXx4UT1FI) 4 | -------------------------------------------------------------------------------- /documentation/bookmark/software/benchmark.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The mean misleads: why the minimum is the true measure of a function’s run time](https://betterprogramming.pub/the-mean-misleads-why-the-minimum-is-the-true-measure-of-a-functions-run-time-47fa079075b0) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/bloat.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Nibbler: Debloating Binary Shared Libraries](https://cs.brown.edu/~vpk/papers/nibbler.acsac19.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/code/format.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Delimiter-first code](https://arogozhnikov.github.io/2022/11/29/delimiter-comes-first.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/code/library/dynamic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Shared Libraries: Understanding Dynamic Loading](https://amir.rachum.com/blog/2016/09/17/shared-libraries/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/code/organization.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Package by Layer vs Package by Feature](https://medium.com/sahibinden-technology/package-by-layer-vs-package-by-feature-7e89cde2ae3a) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/code/refactoring.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [OpenRewrite: Automated mass refactoring of source code](https://github.com/openrewrite/rewrite) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/code/semantics.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Changing the rules of Rust](https://without.boats/blog/changing-the-rules-of-rust/) 4 | 0. [Awesome Macros That Do Nothing - Louis Thomas - CppCon 2019](https://www.youtube.com/watch?v=8Aq10NCdj44) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/code/smell.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Code Smells Catalog](https://luzkan.github.io/smells/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/configuration.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Open-Source Config Tips: An open-source collection of useful snippets and tips for your favorite developer configs.](https://config.tips/) 4 | 0. [Node.js's Config Hell Problem](https://deno.com/blog/node-config-hell) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/dependency_management.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Fundamental Law Of Software Dependencies](https://matklad.github.io/2024/09/03/the-fundamental-law-of-dependencies.html) 4 | 0. [Optional dependencies don’t work](https://michael.stapelberg.ch/posts/2019-05-23-optional-dependencies/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/design.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [A Compendium of Software Design](https://software-design.matteoditucci.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/embedded.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Are embedded systems overengineered?](https://www.embedded.com/are-embedded-systems-overengineered/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/firmware.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Open-Source Firmware Foundation (OSFF)](https://opensourcefirmware.foundation/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/history.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Why do arrays start at 0?](https://buttondown.email/hillelwayne/archive/why-do-arrays-start-at-0/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/license/derivative_work.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Derivative Works](https://www.rosenlaw.com/lj19.htm) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/license/open_source/commercialization/marketplace.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Medusa](https://medusajs.com/) 4 | 0. [sdkbin: The marketplace for software developers.](https://sdkbin.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/license/open_source/commercialization/promotion.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [How to promote your Github project](https://hackernoon.com/how-to-promote-your-github-project-1b39a7eee841) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/license/open_source/maintenance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Do Not Fix Bugs Reported in Your Open Source Projects](https://code.dblock.org/2024/12/19/do-not-fix-bugs-reported-in-your-open-source-projects.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/local_first.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Local-First Web Development](https://localfirstweb.dev/) 4 | 0. [Local-first software: You own your data, in spite of the cloud](https://www.inkandswitch.com/local-first/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/modifiability.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [An argument for self-modifying applications](https://macoy.me/blog/programming/SelfModifyingApplications) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/packaging.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [The Many Layers of Packaging](https://sedimental.org/the_packaging_gradient.html) 5 | 0. [Open Sourcing Metapod, Personalized Executable for All.](https://rainway.com/blog/2019/05/14/open-source-metapod/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/software/plugin.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [How to build a plugin system on the web and also sleep well at night](https://www.figma.com/blog/how-we-built-the-figma-plugin-system/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/invariant.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [William J Bowman: Compilation as Multi Language Semantics](https://www.youtube.com/watch?v=RfVhUPkAEKo) 4 | 1. [Do compilers respect programmers?](https://www.williamjbowman.com/resources/wjb-talk-respinv.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/performance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How To Profile Compilation Duration? - Thomas Lourseyre - CppCon 2020](https://www.youtube.com/watch?v=msSECd8vbPo) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/bash.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Use Bash Strict Mode (Unless You Love Debugging)](http://redsymbol.net/articles/unofficial-bash-strict-mode/) 4 | 0. [Bash: Error handling](https://fvue.nl/wiki/Bash:_Error_handling) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/clr.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [JavaScript Engine for .NET Standard](https://github.com/yantrajs/yantra) 4 | 0. [Turbocharged: Writing High-Performance C# and .NET Code](https://www.youtube.com/watch?v=bhq1dzQzJ0E) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/common_lisp.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [](https://portability.cl/) 4 | 0. [Google Common Lisp Style Guide](https://google.github.io/styleguide/lispguide.xml) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/elisp__emacs_lisp.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [GNU Emacs Lisp Bytecode Reference Manual](https://rocky.github.io/elisp-bytecode.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/flash.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [OpenFL](https://www.openfl.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/go.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Interface method calls with the Go register ABI](https://eli.thegreenplace.net/2022/interface-method-calls-with-the-go-register-abi/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/godot.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [GDLisp](https://github.com/Mercerenies/gdlisp) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/graal.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Anybody know how the graal project ties in with all of this? Is oracle effective... | Hacker News](https://news.ycombinator.com/item?id=19435964) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/haxe.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [How to use the interpreter mode?](https://community.haxe.org/t/how-to-use-the-interpreter-mode/2642) 4 | 0. [Eval - The new Haxe macro interpreter](https://haxe.org/blog/eval/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/llvm.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Taming Undefined Behavior in LLVM](https://www.cs.utah.edu/~regehr/papers/undef-pldi17.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/lua.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Luerl: Lua in Erlang](https://luerl.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/objective_c.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Objective-C Internals](https://alwaysprocessing.blog/series/objc-internals) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/php.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [NativePHP](https://nativephp.com/) 4 | 0. [Portable UTF-8 – A Lightweight Library for Unicode Handling in PHP](https://pageconfig.com/post/portable-utf8) 5 | 0. [PHP Internals Book](https://www.phpinternalsbook.com/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/python.md: -------------------------------------------------------------------------------- 1 | # Platform 2 | 3 | 0. [nanobind — Seamless operability between C++17 and Python](https://github.com/wjakob/nanobind) 4 | 0. [BeeWare: Write once. Deploy everywhere.](https://beeware.org/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/ruby.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Weird Ruby: Positive and Negative Strings](https://metaredux.com/posts/2019/05/10/weird-ruby-positive-and-negative-strings.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/scopes.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The Scopes Programming Language & Compiler Infrastructure](https://hg.sr.ht/~duangle/scopes) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/smalltalk.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [SmallJS](https://small-js.org/Home/Home.html) 4 | 0. [24-Martin McClure-Objects In The Mist: The Design Of A Non Traditional Smalltalk](https://www.youtube.com/watch?v=iw4FPqe8KdY) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/compilation/target/wren.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Meta Class](https://wren.io/modules/meta/meta.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/competitive.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Competitive Programmer’s Handbook](https://cses.fi/book/book.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/distributed/choreographic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Choral: Object-Oriented Choreographic Programming](https://dl.acm.org/doi/pdf/10.1145/3632398) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/distributed/clock/interval_tree.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Interval Tree Clocks](https://ferd.ca/interval-tree-clocks.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/distributed/raft.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Dimensional Shifting](https://www.youtube.com/watch?v=IkBpVSPXuqI) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/distributed/saga_pattern.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Saga Pattern Made Easy](https://temporal.io/blog/saga-pattern-made-easy) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/distributed/workflow.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. ["Workflows, a new abstraction for distributed systems" by Dominik Tornow (Strange Loop 2022)](https://www.youtube.com/watch?v=V_5WeVmyhzg) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/end_user.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [End-user Programming](https://www.inkandswitch.com/end-user-programming/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/extensibility.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Monoids, scope, and extensibility](http://www.rntz.net/post/2014-06-27-monoids-scope-extensibility.html) 4 | 0. [moxy: Language with monoidally extensible syntax](https://github.com/rntz/moxy) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/in/polyglot.md: -------------------------------------------------------------------------------- 1 | # Language 2 | 3 | 1. [morloc](https://github.com/morloc-project/morloc) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/in/unsafe.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Pure destination-passing style in Linear Haskell](https://www.tweag.io/blog/2020-11-11-linear-dps/) 4 | 1. [Episode 27: I Promise; Trust Me](https://newrustacean.com/show_notes/e027/struct.script) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/invariance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [You Need More Constraints](https://borretti.me/article/you-need-more-constraints) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/language/design/scope.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Beyond Static and Dynamic Scope](https://pleiad.cl/papers/2009/tanter-dls2009.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/language/dsl__domain_specific.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Designing good DSL](https://tonsky.me/blog/dsl/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/language/evolution.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Circle Evolves C++: One simple trick to unshackle creativity in C++ language evolution](https://www.youtube.com/watch?v=P1ZDOGDMNLM) 4 | 0. [Babel](https://babeljs.io/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/language/implementation/stack.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [From folklore to fact: comparing implementations of stacks and continuations](https://par.nsf.gov/servlets/purl/10201136) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/language/statistical.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Statistical programming languages](https://www.refsmmat.com/notebooks/stats-langs.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/literate.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Literate: A Flexible Literate Programming System](https://zyedidia.github.io/literate/index.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/meta/code/query.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Find bugs in your code with CodeQL](https://www.youtube.com/watch?v=y_-pIbsr7jc) 4 | 0. [CodeQL](https://codeql.github.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/meta/reflection.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Mirrors: Design Principles for Meta-level Facilities of Object-Oriented Programming Languages](http://bracha.org/mirrors.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/meta/symbolic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. ["Symbolic Numeric Programming in Julia" by Shashi Gowda (Strange Loop 2022)](https://www.youtube.com/watch?v=xQRuywWqc4s) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/micro.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [A Brief History of Microprogramming](https://people.cs.clemson.edu/~mark/uprog.html) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/chemistry.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [[DeclMed'23] Towards Higher-level Abstractions for Molecular Programming](https://www.youtube.com/watch?v=rp2RqVE08Zo) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Polypane: A desktop browser with all the tools you need to build responsive, accessible and performant sites](https://polypane.app/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/api/barcode.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Barcode Detection API](https://developer.mozilla.org/en-US/docs/Web/API/Barcode_Detection_API) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/application/progressive.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What PWA Can Do Today](https://whatpwacando.today/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/component.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Web Components: The native way to build powerful user interfaces](https://webcomponents.guide/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/html.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A simple guide to HTML elements](https://htmlhead.dev/) 4 | 0. [Idiosyncrasies of the HTML parser](https://htmlparser.info/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/http.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Common HTTP Implementation Quirks](https://www.svix.com/blog/http-oddities/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/http/har__archive_format.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Haralyzer](https://haralyzer.readthedocs.io/en/latest/) 4 | 0. [HAR](https://en.wikipedia.org/wiki/HAR_(file_format)) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/http/websocket.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [You might not need Websockets](https://hntrl.io/posts/you-dont-need-websockets/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/polling.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [HTTP Feeds](https://www.http-feeds.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/of/web/url.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [linknames: A linkname is a name that’s also a valid website.](https://linknam.es/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/paradigm/flow_based.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Towards Separation of Concerns in Flow-Based Programming](http://orbit.dtu.dk/files/128046887/FBDSL_final.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/paradigm/functional_reactive.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Explicitly Comprehensible Functional Reactive Programming](https://futureofcoding.org/papers/comprehensible-frp/comprehensible-frp.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/paradigm/logic/functional_relational.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Relational Floating-Point Arithmetic](https://www.cs.toronto.edu/~lczhang/sandre_float2021.pdf) 4 | 0. [The Cell Programming Language](https://www.cell-lang.net/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/paradigm/object_oriented/meta.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [A Metaobject Protocol for C++](https://dl.acm.org/doi/pdf/10.1145/217838.217868) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/paradigm/plugin_oriented.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [pop](https://gitlab.com/saltstack/pop/pop) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/paradigm/ranked.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Ranked Programming](https://github.com/tjitze/ranked-programming/blob/master/README.md) 4 | 1. [Ranked Programming](https://github.com/tjitze/ranked-programming/blob/master/documentation/ranked_programming.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/paradigm/subjective.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Dancing with Symmetry to Harness the Power of Complexity: Subjective Programming in Context](https://www.infoq.com/presentations/oop-language-context/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/system.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Technical Dimensions of Programming Systems](https://raw.githubusercontent.com/jdjakub/papers/master/prog-2022/prog22-master.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/construction/visual.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [PraxisLIVE](https://www.praxislive.org/) 4 | 0. [The JavaScript framework for visual programming](https://rete.js.org/#/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/error/handling.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Failing Successfully: Reporting and Handling Errors - Robert Leahy - CppCon 2021](https://www.youtube.com/watch?v=dQaRLmM7KKk) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/linking/dynamic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [CppCon 2017: James McNellis “Everything You Ever Wanted to Know about DLLs”](https://www.youtube.com/watch?v=JPQWQfDhICA) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/synthesis.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Type-Directed Program Synthesis for RESTful APIs](https://arxiv.org/abs/2203.16697) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/transformation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [The Program Transformation Wiki](http://program-transformation.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/program/verification.md: -------------------------------------------------------------------------------- 1 | # Domain Theory 2 | 3 | 1. [Domain Theory: the forgotten step in program verification](https://bertrandmeyer.com/2012/04/11/domain-theory-the-forgotten-step-in-program-verification/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/scaling.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. ["Avoiding the Pitfalls of Autoscaling with Constant Work" by David Grizzanti (Strange Loop 2022)](https://www.youtube.com/watch?v=tR0zpjbTKoI) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/ai__artificial_intelligence.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [The poisoning of ChatGPT](https://softwarecrisis.dev/letters/the-poisoning-of-chatgpt/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/api__application_programming_interface.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Metlo: an open-source API security platform](https://github.com/metlo-labs/metlo) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/auditing/bill_of_materials.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Not All SBOMs Are Created Equal](https://blog.chainguard.dev/not-all-sboms-are-created-equal/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/authorization/magic_link.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Complexities of Magic Links](https://ciamweekly.substack.com/p/complexities-of-magic-links) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/breach.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Canary Tokens](https://canarytokens.org/generate) 5 | 0. [Canarytokens.org - Quick, Free, Detection for the Masses](https://blog.thinkst.com/p/canarytokensorg-quick-free-detection.html) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/captcha.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [ALTCHA: Next-Gen Captcha and Spam Protection](https://altcha.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/compilation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Secure Compilation](https://drops.dagstuhl.de/opus/volltexte/2022/15933/pdf/dagrep_v011_i010_p173_21481.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/compiler.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Compilers: The Old New Security Frontier](https://grsecurity.net/Compilers_The_Old_New_Security_Frontier_BlueHat_IL_2022.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/data.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Enarx: WebAssembly + Confidential Computing](https://enarx.dev/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/environment.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Open Enclave SDK](https://openenclave.io/sdk/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/identity.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [What Is Reusable Identity?](https://identitymanagementinstitute.org/what-is-reusable-identity/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/ifc__information_flow_control.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Language-Based Information-Flow Security](https://ifc-challenge.appspot.com/static/pdfs/jsac.pdf) 4 | 0. [Information Flow Control Challenge](https://ifc-challenge.appspot.com/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/isolation.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Isolating Functions at the Hardware Limit with Virtines](https://arxiv.org/pdf/2104.11324.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/memory.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [TAG: Tagged Architecture Guide](https://dl.acm.org/doi/pdf/10.1145/3533704) 5 | 0. [Why is memory safety still a concern?](https://docs.google.com/presentation/d/1EscMOcMNOwi-bCgOthjiwIXE30w_SeHk3ahjyY0pX10/edit#slide=id.p) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/networking.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Ziti](https://github.com/openziti/ziti) 4 | 0. [OpenZiti](https://docs.openziti.io/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/one_time_program.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [One-Time Programs](https://blog.cryptographyengineering.com/2022/10/27/one-time-programs/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/operating_system.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Setuid Demystified](https://people.eecs.berkeley.edu/~daw/papers/setuid-usenix02.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/password.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [I still don’t really get “hash shucking”](https://neilmadden.blog/2023/04/27/i-still-dont-really-get-hash-shucking/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/permission/context_aware.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Understanding Context-Aware Permissions](https://cerbos.dev/blog/understanding-context-aware-permissions) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/programming.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Secure Programming in C](https://web.mit.edu/6.s096/www/lecture/lecture03/secure-C.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/scam.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Exit scam](https://en.wikipedia.org/wiki/Exit_scam) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/secret.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Don't use Math.random()](https://deepsource.io/blog/dont-use-math-random/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/squatting.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [openSquat: an open-source solution for detecting phishing domains and domain squatting. It searches for newly registered domains that impersonate legitimate domains on a daily basis.](https://github.com/atenreiro/opensquat) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/supply_chain.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. ["The Secure Software Supply Chain" by Kelsey Hightower (Strange Loop 2022)](https://www.youtube.com/watch?v=JC-xCXcyNXI) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/surveillance.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [SmartVision Software: Video Surveillance Software](https://smartvision.dev/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/timing.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Time protection: the missing OS abstraction](https://blog.acolyer.org/2019/04/15/time-protection-the-missing-os-abstraction/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/verification/formal.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Certifying Interpreters in Racket](https://kmicinski.com/certifying-interpreters) 5 | 0. [Verifying Dynamic Trait Objects in Rust](https://www.cs.cornell.edu/~avh/dyn-trait-icse-seip-2022-preprint.pdf) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/vulnerability/html.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [HTML Injection Quick Reference](https://deadliestwebattacks.com/html-injection-quick-reference/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/zero_knowledge.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Zero-knowledge proof composition and recursion](https://www.youtube.com/playlist?list=PLBJMt6zV1c7GeKkR2SUhzx9KSJ9TsEx6n) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/security/zero_trust.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Is zero trust living up to expectations?](https://blog.apnic.net/2022/06/27/is-zero-trust-living-up-to-expectations/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/system/blockchain/smart_contract.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Fe: The next generation smart contract language for Ethereum](https://fe-lang.org/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/system/distributed/local_first.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Local-First Landscape](https://www.localfirst.fm/landscape) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/system/distributed/p2p__peer_to_peer.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Veilid: an open-source, peer-to-peer, mobile-first, networked application framework](https://veilid.com/) 4 | 0. [Pest: Pest is a peer-to-peer network protocol intended for IRC-style chat](http://pestnet.io/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/system/rules_engine.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [OptaPlanner continues as Timefold](https://timefold.ai/blog/2023/optaplanner-fork/) 4 | 0. [Evrete](https://www.evrete.org/) 5 | 0. [OptaPlanner: Solve planning and scheduling problems with OptaPlanner](https://www.optaplanner.org/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/software/system/workflow.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Windmill](https://docs.windmill.dev/) 4 | 0. [Common Workflow Language](https://www.commonwl.org/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/testing/causal.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Brittany Johnson-Matthews: Causal testing: understanding the root causes of defects](https://www.youtube.com/watch?v=SrDqrwyV4I4) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/testing/change.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Lightning Talk: Cpp Change Detector Tests - Guy Bensky - CppCon 2022](https://www.youtube.com/watch?v=rv-zHn_Afko) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/testing/contract.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [test.contract](https://github.com/griffinbank/test.contract) 4 | 0. ["Breaking the bank with test contract" by Allen Rohner](https://youtu.be/dvHASrrQSzg) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/testing/inline.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Inline Tests](https://arxiv.org/abs/2209.06315) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/testing/metamorphic.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Metamorphic Testing of Version Control Systems](https://elib.uni-stuttgart.de/bitstream/11682/12221/1/MA_MetaVECTT_Reichel.pdf) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/testing/model.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [So what is Model Based Testing anyway?](https://blog.applied-algorithms.tech/so-what-is-model-based-testing-anyway) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/testing/web.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Web Automation: Don't Use Selenium, Use Playwright](https://new.pythonforengineers.com/blog/web-automation-dont-use-selenium-use-playwright/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/auto_complete.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Wingman for Haskell](https://haskellwingman.dev/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/build_server_protocol.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Build Server Protocol](https://build-server-protocol.github.io/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/compiler/static_single_assignment.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Static Single Assignment Book](https://pfalcon.github.io/ssabook/latest/book-v1.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/design.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Mechanic](https://mechanic.design/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/diff.md: -------------------------------------------------------------------------------- 1 | # Structural diffing 2 | 3 | 1. [Autochrome - Structural diffs for Clojure source code](https://fazzone.github.io/autochrome.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/ide__integrated_development_environment/scientific.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Spyder](https://www.spyder-ide.org/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/insight.md: -------------------------------------------------------------------------------- 1 | # Exemplar 2 | 3 | 0. [C++ Insights - See your source code with the eyes of a compiler.](https://github.com/andreasfertig/cppinsights) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/interpreter.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [AST vs. Bytecode: Interpreters in the Age of Meta-Compilation](https://stefan-marr.de/downloads/oopsla23-larose-et-al-ast-vs-bytecode-interpreters-in-the-age-of-meta-compilation.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/language_server_protocol.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Why LSP?](https://matklad.github.io//2022/04/25/why-lsp.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/notebook.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. https://jupyter.org/ 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/read_eval_print_loop.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [Ideas for Clojure Network Eval API](https://tonsky.me/blog/network-eval/) 5 | 0. [reple: "Replay-based" REPLs for compiled languages.](https://github.com/BenBrock/reple) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/terminal.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Warp: The terminal for the 21st century](https://www.warp.dev/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/text_editor/code_folding.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [ts-fold: Code-folding using tree-sitter](https://github.com/emacs-tree-sitter/ts-fold) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/text_editor/emacs.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [straight.el: next-generation, purely functional package manager for the Emacs hacker.](https://github.com/radian-software/straight.el) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/version_control.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Darcs](http://darcs.net/) 4 | 0. [Version Control Without Git](https://itoshkov.github.io/git-tutorial) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/version_control/git.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Retcon: Read-write history](https://retcon.app/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/software/tool/version_control/monorepo.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Monorepos done right](https://felixmulder.com/writing/2022/03/12/Monorepos-done-right.html) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/specification.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Announcing Spectacle – A language for Writing and Checking Formal Specifications in Haskell](https://awakesecurity.com/blog/spectacle-a-language-for-writing-and-checking-formal-specifications-in-haskell/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/spreadsheet.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [HyperFormula](https://handsontable.github.io/hyperformula/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/state_action_model.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [The SAM Pattern](http://sam.js.org/) 4 | 5 | # Language 6 | 7 | 1. [Beads](https://beadslang.org/the-beads-project) 8 | 9 | -------------------------------------------------------------------------------- /documentation/bookmark/storage/zoned.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Zoned Storage](https://zonedstorage.io/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/system.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [On system rollback and totalised fields: An algebraic approach to system change](http://markburgess.org/papers/totalfield.pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/systems_analysis.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Leverage Points: Places to Intervene in a System](https://donellameadows.org/archives/leverage-points-places-to-intervene-in-a-system/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/talent.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Omens of exceptional talent](https://guzey.com/talent/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/transparency.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Atlas of Surveillance: Documenting Police Tech in Our Communities with Open Source Research](https://atlasofsurveillance.org/) 4 | 0. [USAFacts](https://usafacts.org/) 5 | 0. [Supreme Connections](https://projects.propublica.org/supreme-connections/) 6 | 7 | -------------------------------------------------------------------------------- /documentation/bookmark/travel.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Wandrr: Discover the world through personalized itineraries.](https://www.wandrr.co/) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/type_driven.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 1. [Deltoid](https://github.com/jjpe/deltoid) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/work/async.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. []() 4 | 0. [The next frontier after remote work is async](https://levels.io/async/) 5 | 6 | -------------------------------------------------------------------------------- /documentation/bookmark/work/productivity.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [Resumption Strategies for Interrupted Programming Tasks](https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.188.54&rep=rep1&type=pdf) 4 | 5 | -------------------------------------------------------------------------------- /documentation/bookmark/work/to_do.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | 0. [todo.txt format](https://github.com/todotxt/todo.txt) 4 | 0. [The Code Is the To-Do List](https://www.executeprogram.com/blog/the-code-is-the-to-do-list) 5 | 6 | -------------------------------------------------------------------------------- /lux-jvm-function/dependency.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuxLang/lux/d5a91e24bf71d8a9fd2678e12081fc7e6917bb20/lux-jvm-function/dependency.jar -------------------------------------------------------------------------------- /shell/lux.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | SETLOCAL 3 | cmd /k "java -jar %~dp0aedifex.jar %*" 4 | EXIT /B 0 5 | 6 | --------------------------------------------------------------------------------