Changes to pldb.io

Breck Yunits
Breck Yunits
3 days ago
created concepts/zon.scroll
concepts/zon.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id zon
+ name Zon
+ appeared 2023
+ creators Andrew Kelley
+ fileExtensions zon
+ standsFor Zig Object Notation
+ related json
+ tags dataNotation
+ website https://zon.dev
+ description ZON (Zig Object Notation) is a simple data format, which uses Zig's anonymous struct and array initialization syntax to declare objects.
+ reference https://github.com/ziglang/zig/pull/14523
+
+ example
+ .{
+ .name = "zig-test-setup",
+ .dependencies = .{},
+ },
Breck Yunits
Breck Yunits
4 days ago
created concepts/aluasm.scroll
concepts/aluasm.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id aluasm
+ name AluAsm
+ appeared 2021
+ creators Maxim Orlovsky
+ tags pl
+ description AluVM assembly toolchain includes AluAsm – assembler – and ALink – linker, which may be used for producing AluVM and AluRE libraries and executable files.
+
+ githubRepo https://github.com/AluVM/aluasm
+
+ example
+ .ISAE
+ ALU
+ BPDIGEST
+
+ ;; Proof-of-work mining
+ ;;
+ ;; # Arguments
+ ;; - s16[1]: input
+ ;; - a256[1]: difficulty target
+ ;; - a16[2]: limit to the number of mining cycles
+ ;;
+ ;; # Returns
+ ;; - st0: success code (0 for success, 1 for a failure)
+ ;; - r256[2]: resulting hash value
+ ;; - a16[1]: actual number of cycles used
+ ;;
+ ;; # Uses
+ ;; - a8[1]: temporary result code
+ ;; - a16[3]: zero
+ .ROUTINE mine
+ put 0, a16[1] ; putting a value into register
+ put 0, a16[3] ; we will use this later
+ loop: ; label for cycle
+ sha2 s16[1], r256[2] ; taking hash of the data
+ inj s16[1], r256[2], a16[3] ; changing the string with the hash itself
+ inc a16[1] ; counting steps
+ gt.u a16[1], a16[2] ; making sure we do not exceed $cycle_limit
+ jif exceeded
+ lt.u r256[2], r256[1] ; checking against difficulty
+ jif done ; target difficulty reached!
+ jmp loop
+ done: put 1, a8[1] ; failing since we exceeded $cycle_limit
+ ifz a8[1]
+ ret
+ exceeded: put 0, a8[1]
+ st.s a8[1]
+ ret
Breck Yunits
Breck Yunits
4 days ago
created concepts/pest.scroll
concepts/pest.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id pest
+ name pest
+ appeared 2018
+ docs https://docs.rs/pest/latest/pest/
+ fileExtensions pest
+ ebook https://pest.rs/book/
+ creators Dragoș Tiselice
+ tags grammarLanguage
+ website https://pest.rs/
+ description pest is a general purpose parser written in Rust with a focus on accessibility, correctness, and performance.
+ webRepl https://pest.rs/#editor
+
+ githubRepo https://github.com/pest-parser/pest
+
+ hasComments true
+ // A comment
+
+ lineCommentToken //
+
+ example
+ alpha = { 'a'..'z' | 'A'..'Z' }
+ digit = { '0'..'9' }
+
+ ident = { (alpha | digit)+ }
+
+ ident_list = _{ !digit ~ ident ~ (" " ~ ident)+ }
+ // ^
+ // ident_list rule is silent (produces no tokens or error reports)
Breck Yunits
Breck Yunits
4 days ago
concepts/dexvis.scroll
Changed around line 16: repoStats
- mb 177
+ mb 172
concepts/mcp.scroll
Changed around line 7: tags protocol
- reference https://www.anthropic.com/news/model-context-protocol
- specRepo https://github.com/modelcontextprotocol/specification
+ repoStats
+ firstCommit 2024
+ newestCommit 2025
+ commits 284
+ mb 1
+ committers 24
+ files 92
+ reference https://www.anthropic.com/news/model-context-protocol
+
+ specRepo https://github.com/modelcontextprotocol/specification
concepts/mugo.scroll
Changed around line 4: id mugo
- subsetOf go
+ subsetOf go
+ repoStats
+ firstCommit 2021
+ newestCommit 2021
+ commits 34
+ mb 1
+ committers 1
+ files 12
+
-
concepts/strictyaml.scroll
Changed around line 2
- appeared 2023
+ appeared 2016
+
+ repoStats
+ firstCommit 2016
+ newestCommit 2023
+ commits 802
+ mb 2
+ committers 21
+ files 226
Breck Yunits
Breck Yunits
6 days ago
Add info on single pass parsing
code/measures.parsers
Changed around line 674: hackerNewsDiscussionsParser
+ hasSinglePassParserParser
+ extends abstractFeatureParser
+ description Is the language designed for a single pass parser requiring define before use (topological sorting)?
+ string title Single Pass Compiler
+ string pseudoExample x = 2; print x
+ string reference https://en.wikipedia.org/wiki/One-pass_compiler
+
concepts/ada.scroll
Changed around line 140: hasLineComments true
- - A comment
+ hasSinglePassParser true
concepts/c.scroll
Changed around line 88: hasEnums true
+ hasSinglePassParser true
concepts/clojure.scroll
Changed around line 142: hasMultiLineComments true
+ hasSinglePassParser false
+ ; FWIW, Clojure's compiler is two-pass, but the units are tiny (top-level forms).
+ https://news.ycombinator.com/item?id=2467359
concepts/cobol.scroll
Changed around line 81: booleanTokens TRUE FALSE
+ hasSinglePassParser true
concepts/fortran.scroll
Changed around line 94: hasPrintDebugging true
+ hasSinglePassParser true
concepts/haskell.scroll
Changed around line 138: hasPrintDebugging true
+ hasSinglePassParser false
- - 0[oO]_*[0-7](_*[0-7])*
concepts/java.scroll
Changed around line 116: booleanTokens true false
+ hasSinglePassParser false
concepts/javascript.scroll
Changed around line 110: supportsBreakpoints true
+ hasSinglePassParser false
+ hasTopologicalSorting false
+ console.log(message())
+ function message() {
+ return "The function Has been hoisted"
+ }
concepts/modula-2.scroll
Changed around line 51: booleanTokens TRUE FALSE
+ hasSinglePassParser true
concepts/pascal.scroll
Changed around line 122: isCaseSensitive false
-
+ hasSinglePassParser true
+ hasTopologicalSorting true
+ (* Via "forward" keyword)
+ Program testforward;
+ Procedure First (n : longint); forward;
+ Procedure Second;
+ begin
+ WriteLn ('In second. Calling first...');
+ First (1);
+ end;
+ Procedure First (n : longint);
+ begin
+ WriteLn ('First received : ',n);
+ end;
+ begin
+ Second;
+ end.
concepts/pl-i.scroll
Changed around line 19: assignmentToken =
+ hasSinglePassParser true
concepts/python.scroll
Changed around line 143: hasGenerators true
+ hasSinglePassParser false
concepts/rust.scroll
Changed around line 177: hasLineComments true
+ hasSinglePassParser false
Breck Yunits
Breck Yunits
4 days ago
created concepts/strictyaml.scroll
concepts/strictyaml.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id strictyaml
+ name StrictYAML
+ appeared 2023
+ creators Colm O'Connor
+ tags dataNotation
+ website https://hitchdev.com/strictyaml/
+ description StrictYAML is a type-safe YAML parser that parses and validates a restricted subset of the YAML specification.
+ subsetOf yaml
+
+ githubRepo https://github.com/crdoconnor/strictyaml
Breck Yunits
Breck Yunits
5 days ago
updated concepts/homa.scroll
concepts/homa.scroll
Changed around line 5: name Homa
- website https://web.stanford.edu/~ouster/cgi-bin/home.php
+ website https://homa-transport.atlassian.net/wiki/spaces/HOMA/overview
Breck Yunits
Breck Yunits
6 days ago
created concepts/mugo.scroll
concepts/mugo.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id mugo
+ name Mugo
+ appeared 2021
+ creators Ben Hoyt
+ subsetOf go
+ tags pl
+ website https://benhoyt.com/writings/mugo/
+ description Mugo, a toy compiler for a subset of Go that can compile itself.
+
+ githubRepo https://github.com/benhoyt/mugo
+
Breck Yunits
Breck Yunits
6 days ago
updated concepts/sixten.scroll
concepts/sixten.scroll
Changed around line 1
- name sixten
+ name Sixten
+ description Sixten is an experimental functional programming language where all data is unboxed by default. Functional programming with fewer indirections!
+
+ example
+ type Equals a b where
+ Refl : Equals a a
Breck Yunits
Breck Yunits
6 days ago
created concepts/mcp.scroll
concepts/mcp.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id mcp
+ name Model Context Protocol
+ appeared 2024
+ tags protocol
+ website https://modelcontextprotocol.io
+ description The Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. Whether you're building an AI-powered IDE, enhancing a chat interface, or creating custom AI workflows, MCP provides a standardized way to connect LLMs with the context they need.
+ lab Anthropic
+ reference https://www.anthropic.com/news/model-context-protocol
+ specRepo https://github.com/modelcontextprotocol/specification
+ writtenIn typescript
+
+ githubRepo https://github.com/modelcontextprotocol/specification
Breck Yunits
Breck Yunits
6 days ago
updated concepts/coq.scroll
concepts/coq.scroll
Changed around line 13: lab Inria
+ related lean metamath
Breck Yunits
Breck Yunits
6 days ago
updated concepts/metamath.scroll
concepts/metamath.scroll
Changed around line 5: name Metamath
- related lean coq
+ related lean coq
Breck Yunits
Breck Yunits
6 days ago
updated concepts/metamath.scroll
concepts/metamath.scroll
Changed around line 5: name Metamath
+ related lean coq
+
Changed around line 16: ebook https://us.metamath.org/downloads/metamath.pdf
- wikipedia https://en.wikipedia.org/wiki/Metamath
+ wikipedia https://en.wikipedia.org/wiki/Metamath
Breck Yunits
Breck Yunits
6 days ago
updated concepts/lean.scroll
concepts/lean.scroll
Changed around line 11: lab Microsoft
+ related coq metamath
Breck Yunits
Breck Yunits
6 days ago
created concepts/metamath.scroll
concepts/metamath.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id metamath
+ name Metamath
+ appeared 2005
+ creators Norman Megill
+ tags pl
+ website https://us.metamath.org
+ description Metamath is a simple and flexible computer-processable language that supports rigorously verifying, archiving, and presenting mathematical proofs.
+ faq https://us.metamath.org/#faq
+ emailList http://groups.google.com/group/metamath
+ ebook https://us.metamath.org/downloads/metamath.pdf
+
+ example
+ |- ph & |- ( ph -> ps ) => |- ps
+
+ wikipedia https://en.wikipedia.org/wiki/Metamath
Breck Yunits
Breck Yunits
7 days ago
updated concepts/gold-linker.scroll
concepts/gold-linker.scroll
Changed around line 2
- appeared 2997
+ appeared 1997
Breck Yunits
Breck Yunits
7 days ago
code/measures.parsers
Changed around line 2291: twitterParser
- enum assembly pl barCodeFormat video audio hardwareDescriptionLanguage knowledgeBase binaryDataFormat contractLanguage timeFormat computingMachine xmlFormat yamlFormat jsonFormat compiler grammarLanguage dataValidationLanguage application ir isa queryLanguage protocol os esolang template textMarkup characterEncoding arrayLang geoCode idl library editor cloud textDataFormat visual plzoo interpreter notation binaryExecutable dataNotation stylesheetLanguage schema bytecode vm filesystem standard linter packageManager framework webApi feature optimizingCompiler numeralSystem hashFunction database font distribution headerLang dataStructure musicalNotation textEncodingFormat equation wikiMarkup decompiler configFormat diffFormat unixApplication webBrowser browserEngine constructedLanguage dataVis dataFlow commandLineApp versionControlApplication staticSiteGenerator network microblogging lisp diagramLang chemistry physics biology mathematics weather simulation messagingProtocol shadingLanguage searchEngine cryptoProtocol cad spreadsheet functional
+ enum assembly pl barCodeFormat video audio hardwareDescriptionLanguage knowledgeBase binaryDataFormat contractLanguage timeFormat computingMachine xmlFormat yamlFormat jsonFormat compiler grammarLanguage dataValidationLanguage application ir isa queryLanguage protocol os esolang template textMarkup characterEncoding arrayLang geoCode idl library editor cloud textDataFormat visual plzoo interpreter notation binaryExecutable dataNotation stylesheetLanguage schema bytecode vm filesystem standard linter packageManager framework webApi feature optimizingCompiler numeralSystem hashFunction database font distribution headerLang dataStructure musicalNotation textEncodingFormat equation wikiMarkup decompiler configFormat diffFormat unixApplication webBrowser browserEngine constructedLanguage dataVis dataFlow commandLineApp versionControlApplication staticSiteGenerator network microblogging lisp diagramLang chemistry physics biology mathematics weather simulation messagingProtocol shadingLanguage searchEngine cryptoProtocol cad spreadsheet functional linker
concepts/gold-linker.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id gold-linker
+ name gold
+ appeared 2997
+ creators Ian Lance Taylor
+ tags linker
+ website https://sourceware.org/binutils/
+ description gold is a linker for ELF files.
+ related elf
+ writtenIn cpp
+
+ reference https://www.airs.com/blog/archives/38#google_vignette
+ reference https://www.airs.com/blog/archives/57
+
+ isFinished true
+ https://lwn.net/Articles/1007541/
concepts/turbo-assembler.scroll
Changed around line 3
- tags pl
+ tags pl linker
Breck Yunits
Breck Yunits
8 days ago
updated concepts/penrose.scroll
concepts/penrose.scroll
Changed around line 1
- name penrose
+ name Penrose
- tags pl
+ tags diagramLang
+ creators Katherine Ye and Wode Ni and Max Krieger and Dor Ma’Ayan and Jenna Wise and Jonathan Aldrich and Joshua Sunshine and Keenan Crane
+ blog https://penrose.cs.cmu.edu/blog
+ webRepl https://penrose.cs.cmu.edu/try/
+ paper https://penrose.cs.cmu.edu/media/Penrose_SIGGRAPH2020a.pdf
+ description Create beautiful diagrams just by typing notation in plain text.
+ docs https://penrose.cs.cmu.edu/docs/ref
Changed around line 24: repoStats
+ discord https://discord.com/invite/a7VXJU4dfR
+ example
+ Set A, B, C, D, E, F, G
+
+ Subset(B, A)
+ Subset(C, A)
+ Subset(D, B)
+ Subset(E, B)
+ Subset(F, C)
+ Subset(G, C)
+
+ Disjoint(E, D)
+ Disjoint(F, G)
+ Disjoint(B, C)
+
+ AutoLabel All
+
Breck Yunits
Breck Yunits
8 days ago
more git info
cli.js
Changed around line 65: class PLDBCli extends ScrollSetCLI {
+ async crawlWikipediaCommand() {
+ // Todo: figuring out best repo orgnization for crawlers.
+ // Note: this currently assumes you have crawlers project installed separateely.
+ const { WikipediaImporter } = require("../crawlers/wikipedia.org/Wikipedia.js")
+ const importer = new WikipediaImporter(this)
+ // await importer.fetchAllCommand()
+ await importer.writeToDatabaseCommand()
+ }
+
concepts/05ab1e.scroll
Changed around line 8: writtenIn elixir markdown yaml
- commits 871
+ commits 872
- newestCommit 2022
+ newestCommit 2024
+ mb 4
concepts/aardvark.scroll
Changed around line 15: isOpenSource true
- commits 309
+ commits 337
- files 112
- newestCommit 2024
+ files 125
+ newestCommit 2025
+ mb 37
concepts/abcl-lang.scroll
Changed around line 12: writtenIn lisp java markdown bash tex xml diff html yaml bourne-shell restructur
- commits 3495
+ commits 3499
+ mb 69
concepts/abs.scroll
Changed around line 12: writtenIn javascript markdown html go bourne-shell json yaml stylus make dockerf
- commits 849
+ commits 851
+ mb 34
concepts/ace.scroll
Changed around line 15: writtenIn javascript json xml html yaml markdown typescript css svg pug assembly
- newestCommit 2024
- commits 8989
- committers 633
- files 1489
+ newestCommit 2025
+ commits 9117
+ committers 652
+ files 1523
+ mb 46
concepts/acorn-lang.scroll
Changed around line 15: repoStats
+ mb 1
concepts/activity-pub.scroll
Changed around line 15: isOpenSource true
- commits 642
- committers 28
- files 25
+ commits 650
+ committers 29
+ files 26
+ mb 2
concepts/ad-hoc.scroll
Changed around line 16: repoStats
+ mb 1
concepts/adamant.scroll
Changed around line 14: repoStats
+ mb 5
concepts/aheui.scroll
Changed around line 20: repoStats
+ mb 1
concepts/ail.scroll
Changed around line 11: writtenIn python yaml restructuredtext toml make markdown
- commits 661
- committers 30
- files 34
- newestCommit 2024
+ commits 819
+ committers 31
+ files 36
+ newestCommit 2025
+ mb 1
concepts/aiml.scroll
Changed around line 16: repoStats
+ mb 1
concepts/ait.scroll
Changed around line 15: repoStats
+ mb 1
concepts/aith.scroll
Changed around line 16: repoStats
+ mb 2
concepts/ale.scroll
Changed around line 12: writtenIn go markdown yaml make
- commits 782
+ commits 918
- files 410
- newestCommit 2024
+ files 425
+ newestCommit 2025
+ mb 6
concepts/alma-007.scroll
Changed around line 13: writtenIn raku markdown bourne-shell json html d yaml
- commits 1739
+ commits 1820
- files 141
- newestCommit 2024
+ files 155
+ newestCommit 2025
+ mb 3
concepts/alpaca.scroll
Changed around line 18: repoStats
+ mb 2
concepts/alumina.scroll
Changed around line 13: influencedBy rust
- commits 271
+ commits 318
- files 313
- newestCommit 2024
+ files 323
+ newestCommit 2025
+ mb 11
concepts/amber.scroll
Changed around line 16: docs https://docs.amber-lang.com/
- commits 224
- committers 6
- files 109
+ commits 521
+ committers 42
+ files 424
+ mb 2
concepts/ana.scroll
Changed around line 13: repoStats
+ mb 7
concepts/ante-esolang.scroll
Changed around line 17: repoStats
+ mb 1
concepts/ante.scroll
Changed around line 15: tryItOnline https://tio.run/#ante
- commits 1444
- committers 19
+ commits 1469
+ committers 21
- newestCommit 2024
+ newestCommit 2025
+ mb 40
concepts/apache-hbase.scroll
Changed around line 11: writtenIn java ruby protobuf asciidoc bourne-shell xml java-server-pages python
- newestCommit 2024
- commits 57754
- committers 830
- files 5837
+ newestCommit 2025
+ commits 59095
+ committers 861
+ files 5937
+ mb 511
concepts/api-blueprint.scroll
Changed around line 17: repoStats
+ mb 2
concepts/aplette.scroll
Changed around line 12: repoStats
+ mb 4
concepts/april.scroll
Changed around line 9: writtenIn lisp markdown apl
- commits 1864
- committers 12
+ commits 1871
+ committers 13
+ mb 5
concepts/aretext.scroll
Changed around line 18: demoVideo https://raw.githubusercontent.com/aretext/aretext/main/screencast.gif
- commits 1398
+ commits 1577
- newestCommit 2024
+ newestCommit 2025
+ mb 5
concepts/argdown.scroll
Changed around line 12: writtenIn typescript markdown json javascript svg css html xml bourne-shell styl
- commits 987
- committers 6
+ commits 997
+ committers 8
- newestCommit 2022
+ newestCommit 2025
+ mb 101
concepts/ark-lang.scroll
Changed around line 13: repoStats
+ mb 16
concepts/arkscript.scroll
Changed around line 15: isOpenSource true
- commits 2412
- committers 24
- files 405
- newestCommit 2024
+ commits 2681
+ committers 43
+ files 1226
+ newestCommit 2025
+ mb 7
concepts/arquero.scroll
Changed around line 12: writtenIn javascript markdown json svg csv yaml
- newestCommit 2023
- commits 455
- committers 21
- files 301
+ newestCommit 2025
+ commits 481
+ committers 23
+ files 266
+ mb 2
concepts/arret.scroll
Changed around line 13: repoStats
+ mb 6
concepts/arrow-format.scroll
Changed around line 14: writtenIn java cpp go ruby csharp matlab python typescript restructuredtext r bo
- newestCommit 2024
- commits 17325
- committers 1401
- files 7777
+ newestCommit 2025
+ commits 18278
+ committers 1473
+ files 5689
+ mb 209
concepts/asciidots.scroll
Changed around line 18: esolang https://esolangs.org/wiki/AsciiDots
- commits 455
+ commits 459
- files 124
- newestCommit 2022
+ files 128
+ newestCommit 2024
+ mb 5
concepts/asciimath.scroll
Changed around line 16: repoStats
+ mb 1
concepts/asdf.scroll
Changed around line 12: writtenIn json python restructuredtext yaml diff markdown ini toml make
- commits 4797
- committers 64
- files 886
- newestCommit 2024
+ commits 4988
+ committers 68
+ files 889
+ newestCommit 2025
+ mb 8
concepts/assemblyscript.scroll
Changed around line 12: writtenIn typescript wasm json javascript markdown yaml html svg xml
- commits 1794
- committers 80
- files 1239
- newestCommit 2024
+ commits 1816
+ committers 86
+ files 1259
+ newestCommit 2025
+ mb 162
concepts/astatine.scroll
Changed around line 15: repoStats
+ mb 1
concepts/asterius-compiler.scroll
Changed around line 14: repoStats
+ mb 92
concepts/astro.scroll
Changed around line 17: repoStats
+ mb 4
concepts/astroml.scroll
Changed around line 18: repoStats
+ mb 10
concepts/atomspace.scroll
Changed around line 11: writtenIn scheme cpp cmake markdown xml python haskell cython bourne-shell yaml
- commits 33539
+ commits 34110
- files 1441
- newestCommit 2024
+ files 1266
+ newestCommit 2025
+ mb 174
concepts/atprotocol.scroll
Changed around line 13: writtenIn typescript json markdown javascript yaml handlebars dockerfile protobu
- newestCommit 2024
- commits 4419
- committers 78
- files 2562
+ newestCommit 2025
+ commits 4889
+ committers 95
+ files 2906
+ mb 43
concepts/attoparsec.scroll
Changed around line 13: writtenIn haskell json markdown make yaml c
- commits 896
- committers 55
+ commits 901
+ committers 57
+ mb 2
concepts/austral.scroll
Changed around line 13: writtenIn markdown ocaml make json typescript python vim-script nix yaml bourne-
- commits 8947
- committers 27
+ commits 8948
+ committers 28
+ mb 6
concepts/avail.scroll
Changed around line 12: writtenIn kotlin svg xml json css gradle javascript markdown html bash bourne-sh
- commits 3892
+ commits 3904
+ mb 265
concepts/avi-synth.scroll
Changed around line 18: docs http://avisynth.nl/index.php/Main_Page
- commits 4096
- committers 52
- files 843
- newestCommit 2024
+ commits 4230
+ committers 56
+ files 763
+ newestCommit 2025
+ mb 40
concepts/awl.scroll
Changed around line 15: repoStats
+ mb 2
concepts/badlanguage.scroll
Changed around line 14: repoStats
+ mb 1
concepts/ballerina.scroll
Changed around line 18: docs https://ballerina.io/learn/
- commits 131829
- committers 732
- files 22718
- newestCommit 2024
+ commits 134978
+ committers 746
+ files 23598
+ newestCommit 2025
+ mb 916
concepts/bamboo.scroll
Changed around line 15: repoStats
+ mb 2
concepts/bash.scroll
Changed around line 26: ubuntuPackage bash
- commits 1509
+ commits 1571
- files 1459
+ files 1454
+ mb 279
concepts/basis-universal-format.scroll
Changed around line 12: writtenIn cpp javascript markdown html bourne-shell xml cmake c json opencl pyth
- commits 729
- committers 46
- files 229
- newestCommit 2023
+ commits 850
+ committers 48
+ files 290
+ newestCommit 2025
+ mb 251
concepts/bato.scroll
Changed around line 11: writtenIn ruby
- commits 54
- committers 8
- files 48
+ commits 55
+ committers 9
+ files 53
+ mb 1
concepts/battlestar.scroll
Changed around line 15: repoStats
+ mb 1
concepts/baysick.scroll
Changed around line 15: repoStats
+ mb 1
concepts/bazel.scroll
Changed around line 14: writtenIn java bazel bourne-shell markdown starlark cpp protobuf python yaml htm
- newestCommit 2024
- commits 42387
- committers 1401
- files 9200
+ newestCommit 2025
+ commits 45517
+ committers 1466
+ files 8316
+ mb 963
concepts/bebasic.scroll
Changed around line 16: repoStats
+ mb 2
concepts/bee.scroll
Changed around line 11: writtenIn svg html xml javascript markdown yaml
- commits 675
+ commits 676
- newestCommit 2023
+ newestCommit 2024
+ mb 3
concepts/bend.scroll
Changed around line 12: writtenIn rust markdown toml yaml json
- commits 1612
- committers 27
- files 833
- newestCommit 2024
+ commits 2176
+ committers 58
+ files 1099
+ newestCommit 2025
+ mb 74
concepts/berkeleydb.scroll
Changed around line 15: repoStats
+ mb 84
concepts/berry.scroll
Changed around line 13: writtenIn c restructuredtext python json markdown make yaml cmake xml bourne-she
- commits 1012
- committers 36
- files 207
- newestCommit 2024
+ commits 1054
+ committers 39
+ files 209
+ newestCommit 2025
+ mb 3
concepts/bicep.scroll
Changed around line 14: compilesTo arm-templates
- commits 8407
- committers 171
- files 4156
- newestCommit 2024
+ commits 10260
+ committers 187
+ files 4452
+ newestCommit 2025
+ mb 175
concepts/bio.scroll
Changed around line 12: influencedBy scheme
- commits 88
+ commits 96
+ mb 2
concepts/bitsy.scroll
Changed around line 17: repoStats
- mb 178
+ mb 174
concepts/blacklight.scroll
Changed around line 17: repoStats
+ mb 1
concepts/blech.scroll
Changed around line 18: repoStats
+ mb 4
concepts/blitzmax.scroll
Changed around line 16: repoStats
+ mb 42
concepts/blockml.scroll
Changed around line 14: repoStats
+ mb 16
concepts/bloom.scroll
Changed around line 15: repoStats
+ mb 8
concepts/blossom.scroll
Changed around line 10: writtenIn markdown
- newestCommit 2024
- commits 88
- committers 10
- files 8
+ newestCommit 2025
+ commits 136
+ committers 15
+ files 10
+ mb 1
concepts/blox.scroll
Changed around line 12: repoStats
+ mb 1
concepts/blur-markup-language.scroll
Changed around line 16: repoStats
+ mb 2
concepts/blz.scroll
Changed around line 13: repoStats
+ mb 26
concepts/bog.scroll
Changed around line 10: writtenIn zig markdown c yaml
- commits 442
+ commits 444
- files 52
- newestCommit 2023
+ files 40
+ newestCommit 2024
+ mb 2
concepts/boomerang-decompiler.scroll
Changed around line 14: repoStats
+ mb 42
concepts/borgo.scroll
Changed around line 17: repoStats
+ mb 2
concepts/bosque.scroll
Changed around line 13: repoStats
+ mb 50
concepts/bounce-lang.scroll
Changed around line 14: repoStats
+ mb 39
concepts/bqn.scroll
Changed around line 17: docs https://mlochbaum.github.io/BQN/doc/index.html
- commits 2840
- committers 38
- files 539
- newestCommit 2024
+ commits 2930
+ committers 41
+ files 549
+ newestCommit 2025
+ mb 12
concepts/brain-flak.scroll
Changed around line 16: repoStats
+ mb 1
concepts/breccia.scroll
Changed around line 12: writtenIn markdown
- commits 356
+ commits 358
- newestCommit 2024
+ newestCommit 2025
+ mb 1
concepts/broccoli-1.scroll
Changed around line 15: repoStats
+ mb 7
concepts/broccoli-2.scroll
Changed around line 16: repoStats
+ mb 1
concepts/broccoli.scroll
Changed around line 14: repoStats
+ mb 1
concepts/bucardo.scroll
Changed around line 16: related postgresql sql plpgsql perl
- commits 2584
+ commits 2585
- newestCommit 2023
+ newestCommit 2025
+ mb 10
concepts/bun.scroll
Changed around line 15: related deno v8
- firstCommit 2022
- newestCommit 2022
- commits 3
- committers 1
- files 4
+ firstCommit 2021
+ newestCommit 2025
+ commits 16780
+ committers 801
+ files 37783
+ mb 244
concepts/buzz.scroll
Changed around line 19: influencedBy lua
- commits 1035
+ commits 1133
- files 219
- newestCommit 2024
+ files 229
+ newestCommit 2025
+ mb 8
concepts/bython.scroll
Changed around line 13: repoStats
+ mb 1
concepts/c2.scroll
Changed around line 11: writtenIn cpp pascal cmake yaml bourne-shell markdown c vim-script
- commits 1352
- committers 18
- files 1291
- newestCommit 2023
+ commits 2784
+ committers 22
+ files 1380
+ newestCommit 2025
+ mb 12
concepts/c3.scroll
Changed around line 17: influencedBy c2 c
- commits 1788
- committers 57
- files 1215
- newestCommit 2024
+ commits 2896
+ committers 161
+ files 1598
+ newestCommit 2025
+ mb 17
concepts/caffeine.scroll
Changed around line 14: repoStats
+ newestCommit 2013
+ mb 13
concepts/cairo.scroll
Changed around line 16: repoStats
+ mb 117
concepts/calc4.scroll
Changed around line 12: writtenIn cpp cmake markdown yaml bourne-shell
- commits 180
+ commits 186
- files 37
- newestCommit 2022
+ files 38
+ newestCommit 2025
+ mb 6
concepts/calcit.scroll
Changed around line 11: compilesTo javascript
- newestCommit 2024
- commits 989
+ newestCommit 2025
+ commits 1022
- files 104
+ files 105
+ mb 3
concepts/calypso.scroll
Changed around line 15: repoStats
+ mb 2
concepts/candor.scroll
Changed around line 15: repoStats
+ mb 3
concepts/candy.scroll
Changed around line 13: writtenIn rust markdown yaml toml json typescript c python dart nix make
- commits 5739
+ commits 6063
- files 443
- newestCommit 2024
+ files 484
+ newestCommit 2025
+ mb 22
concepts/cane.scroll
Changed around line 11: writtenIn markdown cpp make yaml
- commits 250
+ commits 253
+ mb 3
concepts/capn-proto.scroll
Changed around line 15: related protobuf
- commits 5405
- committers 243
- files 487
- newestCommit 2024
+ commits 5699
+ committers 262
+ files 490
+ newestCommit 2025
+ mb 25
concepts/capybara.scroll
Changed around line 18: repoStats
+ mb 14
concepts/caramel.scroll
Changed around line 16: repoStats
+ mb 16
concepts/carbon.scroll
Changed around line 13: writtenIn markdown cpp bazel python yaml starlark bourne-shell json svg diff jav
- commits 2610
- committers 156
- files 5507
- newestCommit 2024
+ commits 3573
+ committers 175
+ files 5415
+ newestCommit 2025
+ mb 50
concepts/carth.scroll
Changed around line 16: repoStats
+ mb 2
concepts/cat.scroll
Changed around line 15: repoStats
+ mb 2
concepts/catala.scroll
Changed around line 12: writtenIn ocaml markdown nix json bourne-shell svg tex python toml xml cson c ma
- commits 4153
- committers 64
- files 559
- newestCommit 2024
+ commits 4658
+ committers 71
+ files 546
+ newestCommit 2025
+ mb 63
concepts/categorical-query-language.scroll
Changed around line 10: writtenIn java markdown sql xml css html yaml
- commits 118
+ commits 138
- files 1045
- newestCommit 2024
+ files 1053
+ newestCommit 2025
+ mb 150
concepts/ccl.scroll
Changed around line 15: repoStats
+ mb 1
concepts/cell.scroll
Changed around line 18: repoStats
+ mb 2
concepts/ceu.scroll
Changed around line 15: repoStats
+ mb 1
concepts/ceylon.scroll
Changed around line 22: repoStats
+ mb 189
concepts/chaiscript.scroll
Changed around line 11: writtenIn cpp markdown yaml cmake bourne-shell ruby svg php pascal json
- commits 2388
- committers 81
+ commits 2392
+ committers 83
- newestCommit 2024
+ newestCommit 2025
+ mb 7
concepts/charcoal.scroll
Changed around line 11: writtenIn python opencl yaml markdown ini
- commits 267
+ commits 269
+ mb 1
concepts/chatterbot.scroll
Changed around line 14: isOpenSource true
- commits 1870
- committers 110
- files 210
- newestCommit 2021
+ commits 1947
+ committers 114
+ files 222
+ newestCommit 2025
+ mb 9
concepts/checked-c.scroll
Changed around line 12: writtenIn c tex markdown make r cmake csv
- commits 486
- committers 36
- files 223
- newestCommit 2022
+ commits 591
+ committers 45
+ files 256
+ newestCommit 2024
+ mb 5
concepts/chevrotain.scroll
Changed around line 13: isOpenSource true
- commits 3095
+ commits 3122
- newestCommit 2023
+ newestCommit 2024
+ mb 39
concepts/chibicc.scroll
Changed around line 16: repoStats
+ mb 1
concepts/chicken.scroll
Changed around line 17: docs https://wiki.call-cc.org/man/5/The%20User%27s%20Manual
- newestCommit 2024
- commits 6584
- committers 79
- files 353
+ newestCommit 2025
+ commits 6765
+ committers 80
+ files 371
+ mb 34
concepts/chika.scroll
Changed around line 15: repoStats
+ mb 1
concepts/chisel.scroll
Changed around line 11: writtenIn scala markdown yaml scheme svg javascript json python make css cpp nix
- commits 9242
- committers 220
- files 701
- newestCommit 2024
+ commits 10399
+ committers 231
+ files 826
+ newestCommit 2025
+ mb 134
concepts/chrysalisp.scroll
Changed around line 11: writtenIn markdown lisp pascal svg powershell bourne-shell cpp c php make
- commits 8955
+ commits 9025
- files 771
- newestCommit 2024
+ files 781
+ newestCommit 2025
+ mb 180
concepts/cir.scroll
Changed around line 17: repoStats
+ mb 1029
concepts/circle-lang.scroll
Changed around line 16: repoStats
+ mb 4
concepts/cityhash-hash-function.scroll
Changed around line 13: repoStats
+ mb 1
concepts/clarity.scroll
Changed around line 14: repoStats
+ mb 1
concepts/claro.scroll
Changed around line 16: repoStats
+ mb 9
concepts/clash.scroll
Changed around line 11: writtenIn haskell yaml xml svg markdown restructuredtext bourne-shell c nix pyth
- commits 7234
- committers 83
- files 1367
- newestCommit 2024
+ commits 7453
+ committers 89
+ files 1372
+ newestCommit 2025
+ mb 23
concepts/clay.scroll
Changed around line 16: repoStats
+ mb 31
concepts/click.scroll
Changed around line 19: repoStats
+ mb 26
concepts/clike.scroll
Changed around line 16: repoStats
+ mb 1
concepts/clojure.scroll
Changed around line 34: packageRepository https://clojars.org/
- commits 4370
- committers 218
- files 346
+ commits 4459
+ committers 219
+ files 347
+ mb 20
concepts/clojurescript.scroll
Changed around line 19: clocExtensions cljs
- commits 6216
+ commits 6274
- files 391
- newestCommit 2024
+ files 394
+ newestCommit 2025
+ mb 20
concepts/closure-templates.scroll
Changed around line 11: isOpenSource true
- commits 5978
- committers 90
- files 1544
- newestCommit 2024
+ commits 6277
+ committers 92
+ files 1573
+ newestCommit 2025
+ mb 79
concepts/cmake.scroll
Changed around line 14: codeMirror cmake
- commits 66353
- committers 1877
- files 25565
+ commits 69706
+ committers 1984
+ files 26913
+ newestCommit 2025
+ mb 142
concepts/co-dfns.scroll
Changed around line 12: writtenIn apl c markdown yaml
- commits 5302
- committers 23
- files 322
- newestCommit 2024
+ commits 5505
+ committers 24
+ files 321
+ newestCommit 2025
+ mb 410
concepts/co2.scroll
Changed around line 14: repoStats
+ mb 1
concepts/coco.scroll
Changed around line 18: repoStats
+ mb 13
concepts/coconut.scroll
Changed around line 16: tryItOnline https://tio.run/#coconut
- commits 5238
- committers 37
+ commits 5311
+ committers 38
+ mb 8
concepts/codemirror.scroll
Changed around line 16: related monaco
- commits 1933
+ commits 1937
+ mb 5
concepts/codeql.scroll
Changed around line 12: fileExtensions ql
- commits 57878
- committers 480
- files 42417
+ commits 81423
+ committers 565
+ files 55176
+ newestCommit 2025
+ mb 429
concepts/coffeescript.scroll
Changed around line 32: repoStats
+ mb 32
concepts/cognate.scroll
Changed around line 13: compilesTo c
- newestCommit 2024
- commits 1223
- committers 15
- files 43
+ newestCommit 2025
+ commits 1427
+ committers 17
+ files 56
+ mb 5
concepts/cokescript.scroll
Changed around line 16: repoStats
+ mb 2
concepts/colascript.scroll
Changed around line 17: repoStats
+ mb 2
concepts/common-workflow-language.scroll
Changed around line 16: isOpenSource true
- commits 5059
- committers 161
- files 968
- newestCommit 2024
+ commits 5156
+ committers 171
+ files 1061
+ newestCommit 2025
+ mb 13
concepts/commonmark.scroll
Changed around line 13: writtenIn python markdown javascript lua html dtd make json yaml
- commits 1867
- committers 111
+ commits 1872
+ committers 112
- newestCommit 2024
+ newestCommit 2025
+ mb 4
concepts/conceptual.scroll
Changed around line 16: repoStats
+ mb 32
concepts/concise-encoding.scroll
Changed around line 16: repoStats
+ mb 4
concepts/concurr.scroll
Changed around line 13: repoStats
+ mb 1
concepts/coq.scroll
Changed around line 20: devDocs https://github.com/coq/coq/blob/master/CONTRIBUTING.md
- commits 52117
- committers 304
- files 5835
- newestCommit 2024
+ commits 54632
+ committers 328
+ files 5150
+ newestCommit 2025
+ mb 209
concepts/cor.scroll
Changed around line 19: repoStats
+ mb 1
concepts/corescript.scroll
Changed around line 14: repoStats
+ mb 1
concepts/cortex.scroll
Changed around line 11: writtenIn typescript markdown json javascript bourne-shell html css bash yaml
- newestCommit 2024
- commits 899
- committers 11
- files 248
+ newestCommit 2025
+ commits 1153
+ committers 17
+ files 296
+ mb 16
concepts/cotton.scroll
Changed around line 14: repoStats
+ mb 2
concepts/cperl.scroll
Changed around line 14: repoStats
+ newestCommit 2022
+ mb 341
concepts/cranelift-ir.scroll
Changed around line 16: repoStats
+ mb 11
concepts/crap.scroll
Changed around line 14: writtenIn c
- commits 92
+ commits 101
- files 46
+ files 39
+ mb 1
concepts/crema.scroll
Changed around line 16: repoStats
+ mb 3
concepts/crmsh.scroll
Changed around line 13: writtenIn python yaml asciidoc gherkin xml expect bourne-shell markdown css bash
- commits 6561
- committers 89
- files 462
- newestCommit 2024
+ commits 7390
+ committers 90
+ files 468
+ newestCommit 2025
+ mb 30
concepts/croc.scroll
Changed around line 18: repoStats
+ mb 33
concepts/crush.scroll
Changed around line 12: writtenIn rust markdown toml json csv protobuf
- commits 708
+ commits 733
- files 225
- newestCommit 2023
+ files 228
+ newestCommit 2024
+ mb 3
concepts/crystal.scroll
Changed around line 25: faq https://forum.crystal-lang.org/
- commits 16193
- committers 638
- files 2304
- newestCommit 2024
+ commits 16074
+ committers 637
+ files 2467
+ newestCommit 2025
+ mb 60
concepts/cson.scroll
Changed around line 19: repoStats
+ mb 1
concepts/cspydr.scroll
Changed around line 12: writtenIn c markdown bourne-shell make json svg lua bash vim-script cpp assembly
- commits 923
- committers 9
- files 362
- newestCommit 2024
+ commits 949
+ committers 10
+ files 365
+ newestCommit 2025
+ mb 6
concepts/css-doodle.scroll
Changed around line 12: writtenIn javascript markdown yaml json make
- commits 1100
+ commits 1159
- files 76
- newestCommit 2024
+ files 75
+ newestCommit 2025
+ mb 4
concepts/csvw.scroll
Changed around line 16: repoStats
+ mb 57
concepts/cuelang.scroll
Changed around line 17: repoStats
+ mb 10
concepts/cuneiform.scroll
Changed around line 11: writtenIn erlang yaml markdown dockerfile bash
- commits 554
+ commits 562
- newestCommit 2023
+ newestCommit 2025
+ mb 3
concepts/curly.scroll
Changed around line 15: repoStats
+ mb 1
concepts/curv.scroll
Changed around line 16: repoStats
+ mb 21
concepts/cyber.scroll
Changed around line 10: writtenIn zig c markdown javascript lua yaml python css java json php ruby vim-s
- commits 1308
- committers 10
- files 500
+ commits 1520
+ committers 11
+ files 547
+ mb 11
concepts/cytosol.scroll
Changed around line 13: repoStats
+ mb 1
concepts/d3.scroll
Changed around line 15: related observable-lang
- newestCommit 2024
- commits 4814
- committers 148
- files 173
+ newestCommit 2025
+ commits 4841
+ committers 153
+ files 175
+ mb 59
concepts/dafny.scroll
Changed around line 18: quineRelay Dafny
- commits 8344
- committers 144
- files 5636
- newestCommit 2024
+ commits 9096
+ committers 154
+ files 6062
+ newestCommit 2025
+ mb 247
concepts/dak.scroll
Changed around line 14: compilesTo javascript
- commits 657
+ commits 660
+ mb 1
concepts/dale.scroll
Changed around line 11: writtenIn diet perl cpp markdown yaml bourne-shell cmake vim-script dockerfile
- commits 1357
+ commits 1364
- files 1402
+ files 1404
+ mb 5
concepts/daonode.scroll
Changed around line 16: repoStats
+ mb 2
concepts/dasel.scroll
Changed around line 14: related jq
- commits 730
- committers 28
+ commits 801
+ committers 29
+ mb 9
concepts/dashrep.scroll
Changed around line 12: writtenIn perl html cpp yaml xml
- commits 2765
- committers 1
+ commits 2791
+ committers 2
- newestCommit 2023
+ newestCommit 2024
+ mb 13
concepts/dasm.scroll
Changed around line 11: writtenIn assembly-language c tex make bourne-shell python yaml dockerfile
- commits 338
+ commits 339
- newestCommit 2023
+ newestCommit 2024
+ mb 17
concepts/dat-protocol.scroll
Changed around line 16: repoStats
+ mb 5
concepts/datafun.scroll
Changed around line 17: repoStats
+ mb 3
concepts/datascript.scroll
Changed around line 10: writtenIn bourne-shell clojure javascript markdown clojurescript html yaml svg j
- commits 757
- committers 74
- files 108
- newestCommit 2024
+ commits 788
+ committers 78
+ files 107
+ newestCommit 2025
+ mb 3
concepts/ddp.scroll
Changed around line 11: writtenIn go c markdown make yaml json bourne-shell brainfuck
- newestCommit 2024
- commits 944
- committers 7
- files 295
+ newestCommit 2025
+ commits 1304
+ committers 8
+ files 453
+ mb 6
concepts/dedukti.scroll
Changed around line 11: writtenIn ocaml bourne-shell markdown make lisp xml yaml vim-script python
- commits 2777
- committers 62
- files 576
+ commits 2783
+ committers 63
+ files 577
+ mb 11
concepts/dern.scroll
Changed around line 18: repoStats
+ mb 11
concepts/dex.scroll
Changed around line 9: writtenIn haskell python julia yaml markdown bash cpp nix c lisp typescript make
- commits 4185
+ commits 4200
+ mb 38
concepts/dgraph.scroll
Changed around line 12: writtenIn go yaml graphql hcl markdown bourne-shell json make xml dockerfile jav
- commits 11063
- committers 264
- files 1723
- newestCommit 2024
+ commits 11408
+ committers 274
+ files 1378
+ newestCommit 2025
+ mb 467
concepts/dhall.scroll
Changed around line 13: writtenIn dhall markdown nix haskell svg bourne-shell html diff json css python
- commits 1077
- committers 97
- files 3701
- newestCommit 2024
+ commits 1086
+ committers 100
+ files 3704
+ newestCommit 2025
+ mb 4
concepts/differential-datalog.scroll
Changed around line 19: repoStats
+ mb 303
concepts/dixy.scroll
Changed around line 13: repoStats
+ mb 1
concepts/djangoql.scroll
Changed around line 10: writtenIn python javascript svg html css restructuredtext yaml json
- commits 340
+ commits 352
- newestCommit 2024
+ newestCommit 2025
+ mb 1
concepts/djot.scroll
Changed around line 20: usesSemanticVersioning true
- commits 483
- committers 25
- files 16
- newestCommit 2024
+ commits 491
+ committers 29
+ files 17
+ newestCommit 2025
+ mb 1
concepts/dllup.scroll
Changed around line 11: writtenIn python scss html vim-script tex bash bourne-shell markdown
- commits 20
+ commits 21
+ mb 1
concepts/dlvm.scroll
Changed around line 15: repoStats
+ newestCommit 2017
+ mb 259
concepts/docopt.scroll
Changed around line 13: writtenIn python restructuredtext ini yaml
- commits 463
+ commits 462
- newestCommit 2024
+ newestCommit 2018
+ mb 1
concepts/dogescript.scroll
Changed around line 18: repoStats
+ mb 3
concepts/dojo.scroll
Changed around line 14: isOpenSource true
- commits 5364
- committers 156
+ commits 5365
+ committers 157
+ newestCommit 2023
+ mb 13
concepts/doml.scroll
Changed around line 14: repoStats
+ mb 1
concepts/dragonbasic.scroll
Changed around line 14: repoStats
+ mb 3
concepts/drakon.scroll
Changed around line 17: repoStats
+ mb 8
concepts/dreamlisp.scroll
Changed around line 9: writtenIn objective-c xml markdown bash yaml
- commits 396
+ commits 457
- files 150
+ files 143
+ mb 3
concepts/drupal.scroll
Changed around line 13: isOpenSource true
- newestCommit 2024
- commits 64007
- committers 176
- files 18498
+ newestCommit 2025
+ commits 65194
+ committers 178
+ files 19477
+ mb 285
concepts/duro.scroll
Changed around line 14: repoStats
+ mb 29
concepts/dynamo-visual-language.scroll
Changed around line 13: isOpenSource true
- commits 34493
- committers 239
- files 9618
+ commits 35856
+ committers 254
+ files 23178
+ newestCommit 2025
+ mb 2096
concepts/dyvil.scroll
Changed around line 19: repoStats
+ mb 48
concepts/earl-grey.scroll
Changed around line 17: repoStats
+ mb 9
concepts/easybuild.scroll
Changed around line 19: repoStats
- mb 609
+ mb 599
concepts/ec.scroll
Changed around line 18: wordRank 4684
- commits 9407
+ commits 8939
- files 3463
- newestCommit 2024
+ files 3469
+ newestCommit 2025
+ mb 124
concepts/ecl.scroll
Changed around line 12: codeMirror ecl
- commits 35093
- committers 172
- files 13257
+ commits 41299
+ committers 193
+ files 13641
+ newestCommit 2025
+ mb 307
concepts/ecr.scroll
Changed around line 14: clocExtensions ecr
- commits 16193
- committers 638
- files 2304
- newestCommit 2024
+ commits 16074
+ committers 637
+ files 2467
+ newestCommit 2025
+ mb 61
concepts/ecsharp.scroll
Changed around line 11: writtenIn csharp xml html markdown yaml csv xsd
- commits 1670
+ commits 1678
+ mb 88
concepts/edgedb.scroll
Changed around line 10: writtenIn python restructuredtext rust cython yaml hcl markdown svg toml javascr
- commits 10890
- committers 144
- files 1279
- newestCommit 2024
+ commits 12045
+ committers 154
+ files 1526
+ newestCommit 2025
+ mb 73
concepts/edgelisp.scroll
Changed around line 15: repoStats
+ mb 1
concepts/edh.scroll
Changed around line 14: writtenIn haskell markdown python json javascript yaml
- committers 2
+ committers 3
- newestCommit 2022
+ newestCommit 2024
+ mb 4
concepts/edina.scroll
Changed around line 15: repoStats
+ mb 1
concepts/edn.scroll
Changed around line 18: repoStats
+ mb 1
concepts/effekt.scroll
Changed around line 14: writtenIn scala
- newestCommit 2024
- commits 3869
- committers 27
- files 974
+ newestCommit 2025
+ commits 4426
+ committers 39
+ files 1057
+ mb 22
concepts/ejs.scroll
Changed around line 19: repoStats
+ mb 1
concepts/elegance.scroll
Changed around line 17: repoStats
+ mb 1
concepts/elena.scroll
Changed around line 12: writtenIn lex cpp html xml assembly-language markdown bash yaml css make cmake h
- commits 5562
- committers 11
- files 859
- newestCommit 2024
+ commits 5675
+ committers 13
+ files 956
+ newestCommit 2025
+ mb 51
concepts/elixir.scroll
Changed around line 27: packageRepository https://hex.pm/
- commits 33749
- committers 1567
- files 735
- newestCommit 2024
+ commits 34714
+ committers 1659
+ files 757
+ newestCommit 2025
+ mb 70
concepts/elm.scroll
Changed around line 31: repoStats
+ mb 11
concepts/elvish.scroll
Changed around line 14: writtenIn go markdown html json yaml bourne-shell css toml javascript python mak
- commits 6660
- committers 103
- files 991
- newestCommit 2024
+ commits 6817
+ committers 112
+ files 1057
+ newestCommit 2025
+ mb 18
concepts/elymas.scroll
Changed around line 9: writtenIn markdown perl make xml vim-script yaml bourne-shell svg
- commits 589
+ commits 590
- newestCommit 2019
+ newestCommit 2025
+ mb 1
concepts/em.scroll
Changed around line 14: repoStats
+ mb 1
concepts/emberjs-framework.scroll
Changed around line 12: writtenIn typescript javascript json markdown yaml html handlebars
- newestCommit 2024
- commits 28561
- committers 1224
- files 1250
+ newestCommit 2025
+ commits 28940
+ committers 1231
+ files 1263
+ mb 89
concepts/emberscript.scroll
Changed around line 18: repoStats
+ mb 4
concepts/emesh.scroll
Changed around line 14: repoStats
+ mb 1
concepts/emojicode.scroll
Changed around line 20: repoStats
+ mb 28
concepts/emscripten.scroll
Changed around line 13: compilesTo wasm
- newestCommit 2024
- commits 27555
- committers 960
- files 9369
+ newestCommit 2025
+ commits 28565
+ committers 1018
+ files 9515
+ mb 262
concepts/encore.scroll
Changed around line 15: repoStats
+ mb 22
concepts/enso.scroll
Changed around line 16: related luna
- commits 6229
- committers 64
- files 6765
- newestCommit 2024
+ commits 8401
+ committers 67
+ files 8316
+ newestCommit 2025
+ mb 112
concepts/erg.scroll
Changed around line 13: writtenIn markdown rust python toml yaml nix svg bourne-shell typescript bash
- commits 3894
- committers 29
- files 1425
- newestCommit 2024
+ commits 4345
+ committers 32
+ files 1549
+ newestCommit 2025
+ mb 21
concepts/erlang.scroll
Changed around line 29: packageRepository https://hex.pm/
- newestCommit 2024
- commits 56140
- committers 1082
- files 11513
+ newestCommit 2025
+ commits 59200
+ committers 1138
+ files 11699
+ mb 566
concepts/eskew.scroll
Changed around line 13: repoStats
+ mb 1
concepts/euphoria.scroll
Changed around line 18: fileType text
- commits 6605
- committers 34
- files 861
- newestCommit 2024
+ commits 6646
+ committers 36
+ files 871
+ newestCommit 2025
+ mb 122
concepts/eve.scroll
Changed around line 19: repoStats
+ mb 10
concepts/eyg.scroll
Changed around line 14: writtenIn gleam go markdown javascript json html elixir toml yaml dockerfile css
- newestCommit 2024
- commits 2093
+ newestCommit 2025
+ commits 2291
- files 421
+ files 481
+ mb 14
concepts/f-prime.scroll
Changed around line 14: writtenIn cpp cmake markdown xml python yaml json bash ini bourne-shell restruct
- commits 5452
- committers 213
- files 2718
- newestCommit 2024
+ commits 5858
+ committers 235
+ files 3117
+ newestCommit 2025
+ mb 433
concepts/f-script.scroll
Changed around line 17: repoStats
+ mb 2
concepts/fact-lang.scroll
Changed around line 19: repoStats
+ mb 32
concepts/factor.scroll
Changed around line 17: codeMirror factor
- commits 51236
- committers 329
- files 11585
- newestCommit 2024
+ commits 52195
+ committers 177
+ files 11695
+ newestCommit 2025
+ mb 325
concepts/fancy.scroll
Changed around line 19: repoStats
+ mb 9
concepts/farcaster.scroll
Changed around line 14: writtenIn markdown yaml json
- commits 159
- committers 25
+ commits 170
+ committers 36
+ mb 1
concepts/fardlang.scroll
Changed around line 16: repoStats
+ mb 143
concepts/fay.scroll
Changed around line 19: repoStats
+ mb 3
concepts/fe.scroll
Changed around line 13: repoStats
+ mb 1
concepts/felix.scroll
Changed around line 12: writtenIn ocaml restructuredtext python c cpp make html tex bourne-shell elixir
- commits 8527
- committers 60
+ commits 8529
+ committers 61
+ mb 91
concepts/femtolisp.scroll
Changed around line 14: repoStats
+ mb 2
concepts/fennel.scroll
Changed around line 13: writtenIn fennel markdown lua yaml make diff bourne-shell
- commits 2125
- committers 84
- files 167
- newestCommit 2024
+ commits 2266
+ committers 87
+ files 130
+ newestCommit 2025
+ mb 4
concepts/fern.scroll
Changed around line 14: repoStats
+ mb 1
concepts/ferret.scroll
Changed around line 16: repoStats
+ mb 3
concepts/fetlang.scroll
Changed around line 16: repoStats
+ mb 3
concepts/ffmpeg.scroll
Changed around line 11: writtenIn c assembly-language make bourne-shell opencl xml cuda perl objective-c
- newestCommit 2024
- commits 140766
- committers 2486
- files 8473
+ newestCommit 2025
+ commits 145942
+ committers 2549
+ files 9456
+ mb 442
concepts/filebench-wml.scroll
Changed around line 19: repoStats
+ mb 2
concepts/firrtl.scroll
Changed around line 11: writtenIn scala yaml bourne-shell python markdown bash protobuf scheme svg cpp j
- commits 4196
+ commits 4197
- newestCommit 2023
+ newestCommit 2024
+ mb 59
concepts/fish.scroll
Changed around line 23: faq https://fishshell.com/docs/current/faq.html
- commits 18955
- committers 1072
- files 1895
- newestCommit 2024
+ commits 20231
+ committers 1144
+ files 1978
+ newestCommit 2025
+ mb 81
concepts/fjs.scroll
Changed around line 14: repoStats
+ mb 1
concepts/fleck.scroll
Changed around line 15: repoStats
+ mb 1
concepts/flex.scroll
Changed around line 16: wordRank 9114
- commits 2670
- committers 82
- files 296
- newestCommit 2024
+ commits 2693
+ committers 83
+ files 297
+ newestCommit 2025
+ mb 6
concepts/flow.scroll
Changed around line 15: writtenIn javascript json ocaml expect bourne-shell diff markdown c css make cpp
- commits 20344
- committers 1026
- files 14755
- newestCommit 2024
+ commits 21849
+ committers 1043
+ files 15276
+ newestCommit 2025
+ mb 149
concepts/flow9.scroll
Changed around line 13: writtenIn c cpp haxe nim javascript bourne-shell xml java markdown objective-c h
- commits 12441
- committers 210
- files 7078
- newestCommit 2024
+ commits 13258
+ committers 229
+ files 7523
+ newestCommit 2025
+ mb 1827
concepts/flowchart-fun.scroll
Changed around line 15: writtenIn typescript css svg json javascript yaml markdown html xml csv bourne-s
- commits 1437
+ commits 1626
- files 428
- newestCommit 2024
+ files 471
+ newestCommit 2025
+ mb 29
concepts/flownote.scroll
Changed around line 15: repoStats
+ mb 2
concepts/flua.scroll
Changed around line 15: repoStats
+ mb 24
concepts/flutter.scroll
Changed around line 12: writtenIn dart markdown xml yaml json gradle objective-c java cpp cmake swift ht
- firstCommit 2014
- newestCommit 2024
- commits 43769
- committers 1715
- files 8808
+ firstCommit 2013
+ newestCommit 2025
+ commits 83943
+ committers 2174
+ files 14544
+ mb 316
concepts/flux.scroll
Changed around line 21: repoStats
+ mb 6
concepts/fo.scroll
Changed around line 14: repoStats
+ mb 2
concepts/forest-lang.scroll
Changed around line 13: repoStats
+ mb 1
concepts/formality.scroll
Changed around line 15: repoStats
+ mb 2
concepts/forml.scroll
Changed around line 14: repoStats
+ newestCommit 2013
+ mb 3
concepts/forsp.scroll
Changed around line 12: writtenIn glsl bourne-shell c markdown
- commits 50
- committers 3
- files 15
+ commits 56
+ committers 6
+ files 16
+ mb 1
concepts/forthscript.scroll
Changed around line 14: repoStats
+ mb 1
concepts/fp3.scroll
Changed around line 16: repoStats
+ mb 1
concepts/fql.scroll
Changed around line 14: repoStats
+ mb 3
concepts/frank-lang.scroll
Changed around line 16: repoStats
+ mb 1
concepts/frege.scroll
Changed around line 15: docs http://www.frege-lang.org/doc/fregedoc.html
- commits 3352
+ commits 3353
- newestCommit 2022
+ newestCommit 2025
+ mb 103
concepts/frost.scroll
Changed around line 15: repoStats
+ mb 199
concepts/fructure-editor.scroll
Changed around line 14: repoStats
+ mb 10
concepts/frundis.scroll
Changed around line 13: compilesTo latex xhtml epub markdown groff
- newestCommit 2024
- commits 191
+ newestCommit 2025
+ commits 204
- files 262
+ files 267
+ mb 1
concepts/fstar.scroll
Changed around line 15: fileType text
- commits 41577
- committers 218
- files 5754
- newestCommit 2024
+ commits 43633
+ committers 225
+ files 4694
+ newestCommit 2025
+ mb 781
concepts/fun.scroll
Changed around line 14: repoStats
+ newestCommit 2023
+ mb 5
concepts/funl.scroll
Changed around line 11: writtenIn fennel go markdown make
- commits 127
+ commits 131
+ mb 1
concepts/futhark.scroll
Changed around line 19: fileType text
- commits 16744
- committers 90
- files 3023
- newestCommit 2024
+ commits 17789
+ committers 94
+ files 3106
+ newestCommit 2025
+ mb 55
concepts/fuzuli.scroll
Changed around line 16: repoStats
+ mb 3
concepts/g-fu.scroll
Changed around line 14: repoStats
+ mb 2
concepts/gamerlanguage.scroll
Changed around line 15: repoStats
+ mb 1
concepts/gap.scroll
Changed around line 18: wordRank 4114
- commits 10670
- committers 72
- files 5007
- newestCommit 2024
+ commits 10871
+ committers 76
+ files 5016
+ newestCommit 2025
+ mb 431
concepts/generate-ninja.scroll
Changed around line 16: repoStats
+ mb 71
concepts/gentee.scroll
Changed around line 13: writtenIn go vim-script markdown make yaml
- commits 277
+ commits 278
- newestCommit 2023
+ newestCommit 2025
+ mb 1
concepts/gerbil.scroll
Changed around line 9: lab https://github.com/vyzo/gerbil/issues
- commits 4395
- committers 71
- files 880
+ commits 5070
+ committers 96
+ files 1420
+ newestCommit 2025
+ mb 75
concepts/getlang.scroll
Changed around line 11: writtenIn typescript json yaml markdown
- newestCommit 2024
- commits 15
- committers 1
- files 48
+ newestCommit 2025
+ commits 128
+ committers 3
+ files 83
+ mb 1
concepts/gforth.scroll
Changed around line 12: implementationOf forth
- newestCommit 2024
- commits 9540
+ newestCommit 2025
+ commits 10062
- files 1411
+ files 1424
+ mb 121
concepts/ggplot2.scroll
Changed around line 12: leetSheets https://github.com/rstudio/cheatsheets/blob/main/data-visualization.p
- newestCommit 2024
- commits 6600
- committers 375
- files 1055
+ newestCommit 2025
+ commits 6757
+ committers 386
+ files 1098
+ mb 1198
concepts/ghc.scroll
Changed around line 17: implementationOf haskell
- newestCommit 2024
- commits 89364
- committers 1053
- files 23973
+ newestCommit 2025
+ commits 92583
+ committers 1091
+ files 24648
+ mb 280
concepts/gintonic.scroll
Changed around line 15: repoStats
+ mb 1
concepts/git.scroll
Changed around line 22: docs https://git-scm.com/doc
- commits 76023
- committers 2227
- files 4475
- newestCommit 2024
+ commits 79358
+ committers 2293
+ files 4621
+ newestCommit 2025
+ mb 270
concepts/gleam.scroll
Changed around line 20: clocExtensions gleam
- commits 6890
- committers 244
- files 1743
- newestCommit 2024
+ commits 8418
+ committers 310
+ files 2845
+ newestCommit 2025
+ mb 21
concepts/glicol.scroll
Changed around line 13: writtenIn rust javascript json markdown toml yaml css html bourne-shell
- commits 635
- committers 9
- files 202
- newestCommit 2024
+ commits 673
+ committers 14
+ files 207
+ newestCommit 2025
+ mb 113
concepts/glisp.scroll
Changed around line 16: repoStats
+ mb 31
concepts/glms.scroll
Changed around line 16: repoStats
+ mb 1
concepts/gluon.scroll
Changed around line 11: writtenIn rust markdown toml bourne-shell yaml html css
- commits 3970
- committers 64
+ commits 3973
+ committers 65
- newestCommit 2023
+ newestCommit 2024
+ mb 14
concepts/go.scroll
Changed around line 38: replit https://repl.it/languages/go
- commits 63823
- committers 2696
- files 13255
- newestCommit 2024
+ commits 66393
+ committers 2830
+ files 14189
+ newestCommit 2025
+ mb 395
concepts/goal.scroll
Changed around line 16: faq https://anaseto.codeberg.page/goal-docs/chap-FAQ.html
- commits 1998
- committers 1
- files 159
- newestCommit 2024
+ commits 3088
+ committers 3
+ files 241
+ newestCommit 2025
+ mb 5
concepts/gogs-editor.scroll
Changed around line 15: writtenIn go javascript html ini bourne-shell markdown yaml less svg css json do
- newestCommit 2024
- commits 6109
- committers 589
- files 2100
+ newestCommit 2025
+ commits 6195
+ committers 599
+ files 2098
+ mb 200
concepts/golo.scroll
Changed around line 19: repoStats
+ mb 8
concepts/gorillascript.scroll
Changed around line 16: repoStats
+ newestCommit 2013
+ mb 17
concepts/gradle.scroll
Changed around line 15: clocExtensions gradle gradle.kts
- newestCommit 2024
- commits 120154
- committers 1010
- files 24233
+ newestCommit 2025
+ commits 129709
+ committers 1057
+ files 25229
+ mb 656
concepts/graph-it.scroll
Changed around line 19: repoStats
+ mb 10
concepts/gravity.scroll
Changed around line 14: fileType text
- commits 774
+ commits 776
- newestCommit 2023
+ newestCommit 2024
+ mb 3
concepts/gren.scroll
Changed around line 14: writtenIn haskell markdown yaml
- commits 6509
- committers 135
- files 174
- newestCommit 2024
+ commits 6733
+ committers 138
+ files 173
+ newestCommit 2025
+ mb 13
concepts/groff.scroll
Changed around line 13: related troff
- newestCommit 2024
- commits 9804
- committers 69
- files 1364
+ newestCommit 2025
+ commits 11315
+ committers 78
+ files 1404
+ mb 34
concepts/gun.scroll
Changed around line 13: docs https://gun.eco/docs
- commits 2799
+ commits 2808
- files 568
+ files 571
+ mb 34
concepts/gura.scroll
Changed around line 17: repoStats
+ mb 240
concepts/gwion.scroll
Changed around line 14: tryItOnline https://tio.run/#gwion
- commits 8501
+ commits 8517
- files 1038
- newestCommit 2024
+ files 1042
+ newestCommit 2025
+ mb 30
concepts/h-lang.scroll
Changed around line 15: repoStats
+ mb 1
concepts/hackett.scroll
Changed around line 18: repoStats
+ mb 2
concepts/hacspec.scroll
Changed around line 18: repoStats
+ mb 143
concepts/hakaru.scroll
Changed around line 15: repoStats
+ mb 15
concepts/hal-format.scroll
Changed around line 12: isOpenSource true
- commits 1976
+ commits 1988
+ mb 10
concepts/halide.scroll
Changed around line 13: writtenIn cpp cmake python make bourne-shell markdown java llvmir xml yaml c jso
- commits 31807
- committers 336
- files 2198
- newestCommit 2024
+ commits 32101
+ committers 342
+ files 2267
+ newestCommit 2025
+ mb 180
concepts/ham.scroll
Changed around line 16: repoStats
+ newestCommit 2013
+ mb 1
concepts/hamdown.scroll
Changed around line 13: repoStats
+ mb 1
concepts/haml.scroll
Changed around line 20: docs https://haml.info/docs.html
- commits 6795
- committers 223
+ commits 6804
+ committers 225
+ mb 12
concepts/hamler.scroll
Changed around line 17: repoStats
+ mb 2
concepts/hare.scroll
Changed around line 13: writtenIn assembly-language make bourne-shell scheme markdown yaml
- commits 3930
- committers 113
- files 872
- newestCommit 2024
+ commits 4311
+ committers 119
+ files 963
+ newestCommit 2025
+ mb 7
concepts/harlan.scroll
Changed around line 13: repoStats
+ mb 6
concepts/hasklig.scroll
Changed around line 15: repoStats
+ mb 144
concepts/haste.scroll
Changed around line 16: repoStats
+ mb 5
concepts/haxe.scroll
Changed around line 24: packageRepository https://lib.haxe.org/
- commits 23584
- committers 274
- files 7129
- newestCommit 2024
+ commits 23771
+ committers 282
+ files 7364
+ newestCommit 2025
+ mb 89
concepts/haxelibs-pm.scroll
Changed around line 13: writtenIn haxe json hcl html markdown sql bourne-shell yaml css svg xml cmake to
- commits 1558
- committers 65
- files 314
- newestCommit 2024
+ commits 1565
+ committers 68
+ files 316
+ newestCommit 2025
+ mb 5
concepts/hazel.scroll
Changed around line 17: isOpenSource true
- commits 13251
- committers 105
- files 357
- newestCommit 2024
+ commits 15558
+ committers 115
+ files 378
+ newestCommit 2025
+ mb 176
concepts/hcl.scroll
Changed around line 17: docs https://developer.hashicorp.com/terraform/language/syntax/configuration
- commits 1574
- committers 105
- files 366
- newestCommit 2024
+ commits 1635
+ committers 111
+ files 367
+ newestCommit 2025
+ mb 4
concepts/heap.coffee.scroll
Changed around line 14: repoStats
+ newestCommit 2012
+ mb 12
concepts/hedy.scroll
Changed around line 10: lab https://github.com/hedyorg
- commits 11961
- committers 455
- files 1277
+ commits 16379
+ committers 637
+ files 1560
+ newestCommit 2025
+ mb 988
concepts/hera.scroll
Changed around line 11: writtenIn json typescript javascript go coffeescript markdown yaml bash bourne-s
- commits 212
+ commits 232
- files 90
+ files 85
+ mb 1
concepts/heron-lang.scroll
Changed around line 16: repoStats
+ mb 19
concepts/highlightjs.scroll
Changed around line 14: writtenIn javascript css markdown restructuredtext yaml json html typescript r m
- newestCommit 2024
- commits 6853
- committers 813
- files 1848
+ newestCommit 2025
+ commits 7094
+ committers 842
+ files 1881
+ mb 17
concepts/hilvl.scroll
Changed around line 15: repoStats
+ mb 1
concepts/hina.scroll
Changed around line 14: repoStats
+ mb 1
concepts/hivemind.scroll
Changed around line 14: repoStats
+ mb 1
concepts/hjson.scroll
Changed around line 14: isOpenSource true
- commits 256
+ commits 257
- newestCommit 2024
+ newestCommit 2025
+ mb 5
concepts/hobbes.scroll
Changed around line 11: writtenIn cpp restructuredtext markdown nix bourne-shell python yaml cmake yacc
- commits 520
- committers 28
- files 307
+ commits 540
+ committers 31
+ files 308
+ mb 5
concepts/homa.scroll
Changed around line 18: usesSemanticVersioning false
- commits 1091
- committers 15
- files 140
- newestCommit 2024
+ commits 1296
+ committers 16
+ files 150
+ newestCommit 2025
+ mb 4
concepts/homebrew-pm.scroll
Changed around line 13: writtenIn ruby markdown yaml bourne-shell bash json erb swift diff xml dockerfil
- newestCommit 2024
- commits 40021
- committers 1281
- files 2312
+ newestCommit 2025
+ commits 43970
+ committers 1337
+ files 2556
+ mb 101
concepts/hook.scroll
Changed around line 12: leetSheets https://cheatsheets.zip/hook
- commits 476
+ commits 471
- files 403
- newestCommit 2024
+ files 413
+ newestCommit 2025
+ mb 4
concepts/hoot-smalltalk.scroll
Changed around line 15: repoStats
+ mb 3
concepts/horse64.scroll
Changed around line 15: isOpenSource true
- newestCommit 2024
- commits 1121
+ newestCommit 2025
+ commits 1617
- files 208
+ files 231
+ mb 5
concepts/hotcocoalisp.scroll
Changed around line 17: repoStats
+ mb 1
concepts/hpp.scroll
Changed around line 14: repoStats
+ mb 10
concepts/hr-code.scroll
Changed around line 14: repoStats
+ mb 1
concepts/hrqr.scroll
Changed around line 11: writtenIn svg javascript html css xml json markdown
- commits 89
+ commits 92
- newestCommit 2021
+ newestCommit 2024
+ mb 6
concepts/htl.scroll
Changed around line 16: repoStats
+ mb 1
concepts/htsql.scroll
Changed around line 18: repoStats
+ mb 98
concepts/hugo.scroll
Changed around line 17: repoStats
+ mb 1
concepts/hujson.scroll
Changed around line 10: writtenIn go yaml markdown
- commits 40
- committers 10
- files 21
- newestCommit 2022
+ commits 43
+ committers 11
+ files 22
+ newestCommit 2025
+ mb 1
concepts/humanhash-hash-function.scroll
Changed around line 15: repoStats
+ mb 1
concepts/hurl.scroll
Changed around line 22: demoVideo https://hurl.dev/#also-an-http-test-tool
- commits 3100
- committers 67
- files 1984
- newestCommit 2024
+ commits 4259
+ committers 87
+ files 2249
+ newestCommit 2025
+ mb 312
concepts/hvm2.scroll
Changed around line 13: related hvm
- commits 1307
+ commits 1357
- files 71
+ files 87
+ mb 9
concepts/hyperscript-lang.scroll
Changed around line 14: writtenIn javascript markdown html typescript json css python svg
- commits 1725
- committers 72
- files 3257
- newestCommit 2024
+ commits 1794
+ committers 90
+ files 403
+ newestCommit 2025
+ mb 10
concepts/hyperscript.scroll
Changed around line 15: repoStats
+ mb 1
concepts/hyphy.scroll
Changed around line 13: isOpenSource true
- commits 3987
- committers 54
- files 913
- newestCommit 2024
+ commits 4033
+ committers 56
+ files 916
+ newestCommit 2025
+ mb 60
concepts/i.scroll
Changed around line 14: repoStats
+ mb 1
concepts/ibis.scroll
Changed around line 12: writtenIn sql python json yaml javascript markdown bourne-shell toml svg nix vis
- newestCommit 2024
- commits 8382
- committers 207
- files 2228
+ newestCommit 2025
+ commits 9495
+ committers 246
+ files 2375
+ mb 146
concepts/icarus.scroll
Changed around line 16: repoStats
+ mb 3
concepts/icedcoffeescript.scroll
Changed around line 18: repoStats
+ mb 28
concepts/idio.scroll
Changed around line 16: repoStats
+ mb 17
concepts/idris.scroll
Changed around line 21: faq https://docs.idris-lang.org/en/latest/faq/faq.html]
- commits 10144
- committers 444
+ commits 10146
+ committers 445
- newestCommit 2024
+ newestCommit 2025
+ mb 40
concepts/idyll.scroll
Changed around line 17: repoStats
+ mb 61
concepts/imba.scroll
Changed around line 14: compilesTo javascript
- commits 3962
+ commits 4031
- files 1113
- newestCommit 2024
+ files 1115
+ newestCommit 2025
+ mb 28
concepts/imhex.scroll
Changed around line 11: writtenIn cpp json cmake markdown yaml svg csharp xml glsl dockerfile bourne-she
- newestCommit 2024
- commits 4500
- committers 154
- files 916
+ newestCommit 2025
+ commits 5410
+ committers 176
+ files 981
+ mb 42
concepts/impala.scroll
Changed around line 13: isOpenSource true
- commits 12622
- committers 319
- files 6746
- newestCommit 2024
+ commits 13151
+ committers 328
+ files 6877
+ newestCommit 2025
+ mb 233
concepts/incipit.scroll
Changed around line 15: repoStats
+ mb 3
concepts/ink-lang.scroll
Changed around line 16: repoStats
+ mb 1
concepts/ink.scroll
Changed around line 16: fileType text
- commits 1518
- committers 74
+ commits 1553
+ committers 84
- newestCommit 2023
+ newestCommit 2025
+ mb 10
concepts/inko.scroll
Changed around line 15: isOpenSource true
- commits 2414
- committers 17
- files 415
- newestCommit 2024
+ commits 2787
+ committers 21
+ files 573
+ newestCommit 2025
+ mb 14
concepts/insitux.scroll
Changed around line 12: writtenIn typescript markdown svg json javascript python yaml html clojure
- commits 427
- committers 6
- files 71
- newestCommit 2023
+ commits 437
+ committers 7
+ files 72
+ newestCommit 2024
+ mb 5
concepts/intuitionistic.scroll
Changed around line 17: repoStats
+ mb 1
concepts/invokator.scroll
Changed around line 13: writtenIn cpp bash standard-ml xml markdown make java cmake javascript c bourne-
- commits 15545
- committers 200
- files 3515
- newestCommit 2024
+ commits 15241
+ committers 209
+ files 3739
+ newestCommit 2025
+ mb 373
concepts/iode.scroll
Changed around line 15: repoStats
+ mb 11
concepts/ioke.scroll
Changed around line 21: repoStats
+ mb 101
concepts/ipfs.scroll
Changed around line 20: repoStats
+ mb 3
concepts/ircis.scroll
Changed around line 14: repoStats
+ mb 9
concepts/iterm2.scroll
Changed around line 13: writtenIn objective-c swift python xml restructuredtext css bourne-shell metal c
- commits 17590
- committers 242
- files 4760
- newestCommit 2024
+ commits 18487
+ committers 251
+ files 4886
+ newestCommit 2025
+ mb 282
concepts/ivy.scroll
Changed around line 11: writtenIn go xml markdown
- commits 548
- committers 17
- files 106
- newestCommit 2024
+ commits 618
+ committers 22
+ files 114
+ newestCommit 2025
+ mb 2
concepts/ixml.scroll
Changed around line 14: writtenIn xml markdown xslt xquery html css javascript yaml bourne-shell gradle
- commits 691
- committers 6
- files 3989
- newestCommit 2024
+ commits 829
+ committers 8
+ files 3993
+ newestCommit 2025
+ mb 33
concepts/j.scroll
Changed around line 19: docs https://www.jsoftware.com/help/learning/contents.htm
- commits 5106
- committers 11
- files 1215
- newestCommit 2024
+ commits 5704
+ committers 12
+ files 1232
+ newestCommit 2025
+ mb 110
concepts/jakt.scroll
Changed around line 12: compilesTo cpp
- commits 2652
- committers 131
- files 1327
- newestCommit 2024
+ commits 2776
+ committers 132
+ files 1389
+ newestCommit 2025
+ mb 14
concepts/jal-compiler.scroll
Changed around line 10: writtenIn html xml python c bourne-shell json perl xslt make tex assembly-langua
- commits 3953
- committers 36
- newestCommit 2024
- files 5218
+ commits 3993
+ committers 38
+ newestCommit 2025
+ files 5238
+ mb 276
concepts/jammy.scroll
Changed around line 16: repoStats
+ mb 1
concepts/janet.scroll
Changed around line 15: clocExtensions janet
- commits 4325
- committers 119
- files 180
- newestCommit 2024
+ commits 4645
+ committers 125
+ files 199
+ newestCommit 2025
+ mb 16
concepts/jank.scroll
Changed around line 10: writtenIn cpp bash yaml cmake markdown clojure nix json bourne-shell vim-script
- commits 3329
- committers 9
- files 390
- newestCommit 2024
+ commits 4036
+ committers 21
+ files 637
+ newestCommit 2025
+ mb 8
concepts/jaqt.scroll
Changed around line 13: repoStats
+ mb 1
concepts/jasper.scroll
Changed around line 15: repoStats
+ mb 1
concepts/java.scroll
Changed around line 37: packageRepository https://mvnrepository.com/popular
- commits 81875
- committers 1918
- files 68263
- newestCommit 2024
+ commits 85056
+ committers 2003
+ files 68966
+ newestCommit 2025
+ mb 1317
concepts/jayfor.scroll
Changed around line 15: repoStats
+ mb 16
concepts/jazz.scroll
Changed around line 15: repoStats
+ mb 1
concepts/jcof.scroll
Changed around line 15: repoStats
+ mb 1
concepts/jedi.scroll
Changed around line 15: repoStats
+ mb 1
concepts/jedlang.scroll
Changed around line 15: repoStats
+ mb 1
concepts/jeebox.scroll
Changed around line 18: repoStats
+ mb 1
concepts/jeeves.scroll
Changed around line 15: repoStats
+ mb 7
concepts/jekyll.scroll
Changed around line 14: writtenIn markdown ruby html yaml gherkin scss bash erb javascript json svg coff
- newestCommit 2024
- commits 12621
- committers 1265
- files 809
+ newestCommit 2025
+ commits 12771
+ committers 1282
+ files 812
+ mb 71
concepts/jelly.scroll
Changed around line 15: repoStats
+ mb 2
concepts/jemplate.scroll
Changed around line 15: repoStats
+ mb 3
concepts/jesth.scroll
Changed around line 12: writtenIn markdown python toml json
- commits 39
- committers 1
+ commits 40
+ committers 2
+ mb 1
concepts/jet.scroll
Changed around line 12: repoStats
+ mb 27
concepts/jflex.scroll
Changed around line 14: isOpenSource true
- commits 2497
- committers 27
+ commits 2499
+ committers 28
- newestCommit 2023
+ newestCommit 2025
+ mb 24
concepts/jill.scroll
Changed around line 12: repoStats
+ mb 1
concepts/jingo.scroll
Changed around line 14: repoStats
+ mb 1
concepts/jinja.scroll
Changed around line 16: fileType text
- commits 2973
- committers 320
- files 120
+ commits 3097
+ committers 347
+ files 118
+ mb 8
concepts/jinx.scroll
Changed around line 16: repoStats
+ mb 56
concepts/jison.scroll
Changed around line 19: repoStats
+ mb 3
concepts/jisp.scroll
Changed around line 13: writtenIn javascript json markdown
- commits 337
+ commits 338
+ mb 3
concepts/jlang.scroll
Changed around line 16: repoStats
+ mb 1
concepts/jonprl.scroll
Changed around line 16: repoStats
+ mb 3
concepts/jq.scroll
Changed around line 15: tryItOnline https://tio.run/#jq
- commits 1957
- committers 212
- files 335
- newestCommit 2024
+ commits 1821
+ committers 228
+ files 338
+ newestCommit 2025
+ mb 8
concepts/jql.scroll
Changed around line 16: repoStats
+ mb 1
concepts/jquery.scroll
Changed around line 15: isOpenSource true
- commits 8222
- committers 345
- files 358
- newestCommit 2024
+ commits 8317
+ committers 347
+ files 346
+ newestCommit 2025
+ mb 36
concepts/jsf.scroll
Changed around line 13: writtenIn javascript json markdown html
- commits 239
- committers 25
+ commits 243
+ committers 27
+ mb 1
concepts/jsil-compiler.scroll
Changed around line 19: repoStats
+ mb 117
concepts/jslt.scroll
Changed around line 11: writtenIn java markdown json html yaml gradle bourne-shell lisp
- commits 515
- committers 16
- files 178
+ commits 519
+ committers 17
+ files 179
+ mb 2
concepts/json-graph-spec.scroll
Changed around line 14: repoStats
+ mb 1
concepts/json-lambda.scroll
Changed around line 17: repoStats
+ mb 1
concepts/json-script.scroll
Changed around line 16: repoStats
+ mb 1
concepts/json-stat.scroll
Changed around line 16: repoStats
+ mb 1
concepts/json-url.scroll
Changed around line 17: tryItOnline https://tio.run/#https://jsonurl.org/#sandbox
- commits 556
+ commits 591
- files 73
- newestCommit 2023
+ files 67
+ newestCommit 2024
+ mb 3
concepts/json-with-comments.scroll
Changed around line 18: repoStats
+ mb 2
concepts/json5.scroll
Changed around line 18: fileType text
- commits 649
- committers 28
+ commits 650
+ committers 29
- newestCommit 2023
+ newestCommit 2024
+ mb 2
concepts/jsoncanvas.scroll
Changed around line 12: writtenIn html markdown javascript svg css yaml
- commits 78
- committers 18
+ commits 80
+ committers 19
+ mb 1
concepts/jsonnet.scroll
Changed around line 14: writtenIn javascript html cpp svg bourne-shell python markdown bazel yaml cmake
- commits 1296
- committers 162
- files 4056
- newestCommit 2024
+ commits 1349
+ committers 169
+ files 4062
+ newestCommit 2025
+ mb 54
concepts/jsparagus.scroll
Changed around line 10: writtenIn rust python toml markdown yaml bourne-shell javascript json make bash
- commits 8635
+ commits 8871
- files 176
- newestCommit 2024
+ files 175
+ newestCommit 2025
+ mb 13
concepts/juicy.scroll
Changed around line 17: repoStats
+ mb 1
concepts/jule.scroll
Changed around line 18: fileType text
- commits 3944
- committers 13
- files 362
- newestCommit 2024
+ commits 5722
+ committers 16
+ files 547
+ newestCommit 2025
+ mb 17
concepts/julia.scroll
Changed around line 32: packageRepository https://pkg.julialang.org/
- commits 66736
- committers 1858
- files 1623
- newestCommit 2024
+ commits 69052
+ committers 1912
+ files 1661
+ newestCommit 2025
+ mb 330
concepts/juniper.scroll
Changed around line 16: clocExtensions junos
- commits 262
- committers 8
+ commits 273
+ committers 9
- newestCommit 2023
+ newestCommit 2024
+ mb 1
concepts/k-framework.scroll
Changed around line 11: writtenIn make java python markdown json standard-ml scala bash bourne-shell yam
- commits 22592
- committers 181
- files 6905
- newestCommit 2024
+ commits 23450
+ committers 189
+ files 7042
+ newestCommit 2025
+ mb 164
concepts/kaffeine.scroll
Changed around line 14: repoStats
+ newestCommit 2012
+ mb 2
concepts/kaitai.scroll
Changed around line 15: writtenIn markdown bourne-shell yaml
- commits 979
- committers 16
- files 23
+ commits 997
+ committers 17
+ files 24
+ mb 1
concepts/kakoune-editor.scroll
Changed around line 11: writtenIn cpp asciidoc yaml bourne-shell perl make python svg ruby markdown
- commits 10600
- committers 424
- files 2332
- newestCommit 2024
+ commits 10851
+ committers 451
+ files 2405
+ newestCommit 2025
+ mb 45
concepts/kal.scroll
Changed around line 17: repoStats
+ mb 2
concepts/kamby.scroll
Changed around line 14: writtenIn c javascript html make markdown
- commits 115
+ commits 199
- files 14
- newestCommit 2023
+ files 11
+ newestCommit 2025
+ mb 1
concepts/kami.scroll
Changed around line 16: repoStats
+ mb 1
concepts/kamilalisp.scroll
Changed around line 15: repoStats
+ mb 31
concepts/katex.scroll
Changed around line 15: isOpenSource true
- commits 2342
- committers 181
- files 696
- newestCommit 2024
+ commits 2383
+ committers 190
+ files 702
+ newestCommit 2025
+ mb 86
concepts/kavascript.scroll
Changed around line 15: repoStats
+ mb 1
concepts/kdl.scroll
Changed around line 17: repoStats
+ mb 2
concepts/kefir.scroll
Changed around line 13: writtenIn c make bourne-shell yaml bash sql diff assembly-language markdown html
- commits 1783
- committers 4
- files 2469
- newestCommit 2024
+ commits 2238
+ committers 5
+ files 3058
+ newestCommit 2025
+ mb 16
concepts/kei.scroll
Changed around line 14: repoStats
+ mb 4
concepts/keli.scroll
Changed around line 16: repoStats
+ mb 1
concepts/keras.scroll
Changed around line 13: writtenIn python yaml markdown bourne-shell json javascript toml
- newestCommit 2024
- commits 10887
- committers 1377
- files 820
+ newestCommit 2025
+ commits 11606
+ committers 1455
+ files 939
+ mb 47
concepts/kerf.scroll
Changed around line 15: repoStats
+ mb 1
concepts/kgl.scroll
Changed around line 11: writtenIn python html markdown toml json csv
- commits 35
- committers 2
- files 14
+ commits 63
+ committers 4
+ files 22
+ mb 1
concepts/khepri.scroll
Changed around line 16: repoStats
+ mb 3
concepts/khi.scroll
Changed around line 9: writtenIn markdown
- commits 25
+ commits 30
- files 19
+ files 21
+ mb 1
concepts/kima.scroll
Changed around line 15: repoStats
+ mb 1
concepts/kitlang.scroll
Changed around line 17: repoStats
+ mb 2
concepts/kitten.scroll
Changed around line 19: repoStats
+ mb 4
concepts/knight.scroll
Changed around line 10: writtenIn ruby markdown html bourne-shell
- commits 149
+ commits 233
- files 78
- newestCommit 2023
+ files 82
+ newestCommit 2024
+ mb 1
concepts/ko.scroll
Changed around line 16: repoStats
+ mb 10
concepts/koara.scroll
Changed around line 17: repoStats
+ mb 2
concepts/kode.scroll
Changed around line 12: writtenIn javascript markdown svg json
- commits 431
+ commits 432
- files 65
- newestCommit 2024
+ files 66
+ newestCommit 2025
+ mb 7
concepts/koka.scroll
Changed around line 18: tryItOnline https://tio.run/#koka
- commits 5450
- committers 54
- files 1856
- newestCommit 2024
+ commits 5733
+ committers 60
+ files 1957
+ newestCommit 2025
+ mb 49
concepts/kona.scroll
Changed around line 14: repoStats
+ mb 3
concepts/kotlin.scroll
Changed around line 30: rosettaCode http://www.rosettacode.org/wiki/Category:Kotlin
- commits 185118
- committers 1193
- files 92427
- newestCommit 2024
+ commits 198818
+ committers 1264
+ files 103945
+ newestCommit 2025
+ mb 3763
concepts/ktexteditor-editor.scroll
Changed around line 12: writtenIn javascript cpp qt cmake xml markdown yaml bourne-shell svg json c
- newestCommit 2024
- commits 4932
- committers 220
- files 2704
+ newestCommit 2025
+ commits 5344
+ committers 237
+ files 2613
+ mb 514
concepts/ktyek.scroll
Changed around line 11: writtenIn go c javascript markdown html bourne-shell awk yaml wasm css make xml
- newestCommit 2024
- commits 2500
+ newestCommit 2025
+ commits 2563
- files 495
+ files 480
+ mb 5
concepts/kuin.scroll
Changed around line 13: repoStats
+ mb 27
concepts/kumir.scroll
Changed around line 16: repoStats
+ mb 178
concepts/kuroko.scroll
Changed around line 12: writtenIn c markdown python yaml css json make html xml bourne-shell
- commits 1421
+ commits 1431
- newestCommit 2024
+ newestCommit 2025
+ mb 5
concepts/l2.scroll
Changed around line 13: repoStats
+ mb 3
concepts/ladybird.scroll
Changed around line 10: writtenIn cpp html javascript idl cmake markdown bourne-shell css yaml json obje
- newestCommit 2024
- commits 62290
- committers 1329
- files 10293
+ newestCommit 2025
+ commits 67543
+ committers 1480
+ files 13744
+ mb 275
concepts/lambcalc.scroll
Changed around line 14: repoStats
+ mb 1
concepts/lambda-zero.scroll
Changed around line 10: writtenIn c bourne-shell vim-script assembly-language markdown yaml bash
- commits 1166
+ commits 1171
- files 148
- newestCommit 2024
+ files 149
+ newestCommit 2025
+ mb 3
concepts/lamderp.scroll
Changed around line 14: repoStats
+ newestCommit 2013
+ mb 1
concepts/lamdu-editor.scroll
Changed around line 13: writtenIn haskell json markdown nix bourne-shell yaml javascript bash xml docker
- commits 11223
- committers 28
- files 458
- newestCommit 2023
+ commits 11233
+ committers 30
+ files 459
+ newestCommit 2025
+ mb 35
concepts/lamdu.scroll
Changed around line 12: writtenIn haskell json markdown nix bourne-shell yaml javascript bash xml docker
- commits 11223
- committers 28
- files 458
- newestCommit 2023
+ commits 11233
+ committers 30
+ files 459
+ newestCommit 2025
+ mb 35
concepts/latino.scroll
Changed around line 16: fileType text
- commits 1161
+ commits 1162
+ mb 258
concepts/latte-js.scroll
Changed around line 16: repoStats
+ mb 1
concepts/latte.scroll
Changed around line 14: isOpenSource true
- commits 2324
- committers 61
- files 660
- newestCommit 2024
+ commits 2352
+ committers 62
+ files 668
+ newestCommit 2025
+ mb 6
concepts/lax.scroll
Changed around line 13: repoStats
+ mb 1
concepts/ld-json.scroll
Changed around line 15: writtenIn css html javascript markdown json
- commits 115
- committers 31
+ commits 124
+ committers 34
+ mb 1
concepts/ldpl.scroll
Changed around line 12: writtenIn markdown cpp yaml bourne-shell php make cmake dockerfile
- commits 946
+ commits 993
- files 78
+ files 76
+ mb 14
concepts/lean.scroll
Changed around line 22: repoStats
+ mb 56
concepts/leazy.scroll
Changed around line 14: repoStats
+ mb 5
concepts/lem-editor.scroll
Changed around line 11: writtenIn lisp markdown bourne-shell json yaml make dockerfile
- commits 10547
- committers 95
- files 567
- newestCommit 2024
+ commits 11438
+ committers 135
+ files 670
+ newestCommit 2025
+ mb 98
concepts/lesma.scroll
Changed around line 16: repoStats
+ mb 7
concepts/leveldb.scroll
Changed around line 11: writtenIn cpp markdown cmake yaml html c
- newestCommit 2024
- commits 444
- committers 80
+ newestCommit 2025
+ commits 449
+ committers 82
+ mb 2
concepts/lever.scroll
Changed around line 18: repoStats
+ mb 15
concepts/lezer.scroll
Changed around line 15: repoStats
+ mb 1
concepts/lift.scroll
Changed around line 14: repoStats
+ mb 37
concepts/lil.scroll
Changed around line 18: influencedBy k q sql lua hypercard
- commits 581
- committers 17
- files 191
- newestCommit 2024
+ commits 788
+ committers 22
+ files 219
+ newestCommit 2025
+ mb 5
concepts/lila-lang.scroll
Changed around line 13: repoStats
+ mb 1
concepts/linearml.scroll
Changed around line 16: repoStats
+ mb 1
concepts/link.scroll
Changed around line 12: writtenIn markdown json svg yaml typescript
- commits 349
+ commits 383
- files 128
+ files 208
+ mb 175
concepts/links-programming-language.scroll
Changed around line 12: writtenIn ocaml sql restructuredtext javascript css bash json bourne-shell markd
- commits 4639
+ commits 4644
- files 994
+ files 995
+ mb 29
concepts/linotte.scroll
Changed around line 19: repoStats
+ mb 6
concepts/linux.scroll
Changed around line 18: faq https://www.kernel.org/category/faq.html
- newestCommit 2024
- commits 1279243
- committers 36909
- files 84952
+ newestCommit 2025
+ commits 1336722
+ committers 38415
+ files 87910
+ mb 3271
concepts/liquid.scroll
Changed around line 18: docs https://shopify.dev/api/liquid
- commits 2443
- committers 232
- files 187
- newestCommit 2024
+ commits 2704
+ committers 240
+ files 195
+ newestCommit 2025
+ mb 7
concepts/lispyscript.scroll
Changed around line 17: repoStats
+ mb 2
concepts/literate-coffeescript.scroll
Changed around line 18: repoStats
+ mb 32
concepts/litescript.scroll
Changed around line 17: repoStats
+ mb 8
concepts/lmdb.scroll
Changed around line 13: writtenIn c make
- commits 1779
- committers 34
+ commits 1817
+ committers 38
- newestCommit 2024
+ newestCommit 2025
+ mb 3
concepts/loci.scroll
Changed around line 15: repoStats
+ mb 15
concepts/lodash.scroll
Changed around line 12: writtenIn typescript javascript markdown json yaml bourne-shell toml
- commits 8430
- committers 343
- files 709
+ commits 8432
+ committers 273
+ files 149
+ mb 50
concepts/logica.scroll
Changed around line 13: compilesTo sql
- commits 873
- committers 27
- files 384
- newestCommit 2024
+ commits 1075
+ committers 30
+ files 433
+ newestCommit 2025
+ mb 7
concepts/lsd.scroll
Changed around line 14: repoStats
+ mb 1
concepts/luajit.scroll
Changed around line 12: writtenIn c lua html make css
- commits 2840
+ commits 2905
- newestCommit 2024
+ newestCommit 2025
+ mb 11
concepts/lucid-lang.scroll
Changed around line 11: writtenIn haskell markdown yaml css javascript dockerfile
- commits 258
- committers 30
+ commits 263
+ committers 32
- newestCommit 2024
+ newestCommit 2025
+ mb 1
concepts/luna-1.scroll
Changed around line 16: repoStats
+ mb 2
concepts/luna.scroll
Changed around line 15: renamedTo enso
- firstCommit 2023
- commits 3
- committers 2
- files 1
+ firstCommit 2019
+ commits 8401
+ committers 67
+ files 8316
+ newestCommit 2025
+ mb 112
concepts/lux.scroll
Changed around line 14: compilesTo javascript java php python r ruby scheme
- commits 2672
+ commits 2769
- files 2259
- newestCommit 2024
+ files 2359
+ newestCommit 2025
+ mb 50
concepts/lwjgl.scroll
Changed around line 13: writtenIn java kotlin c xml cpp markdown yaml glsl json gradle bourne-shell asse
- newestCommit 2024
- commits 4042
- committers 53
- files 8411
+ newestCommit 2025
+ commits 4241
+ committers 57
+ files 8667
+ mb 133
concepts/m3db.scroll
Changed around line 13: writtenIn go markdown yaml bourne-shell svg protobuf json javascript dockerfile
- commits 8623
- committers 154
- files 3560
- newestCommit 2023
+ commits 8808
+ committers 160
+ files 3603
+ newestCommit 2025
+ mb 108
concepts/macchiato.scroll
Changed around line 17: repoStats
+ mb 1
concepts/mages.scroll
Changed around line 11: writtenIn csharp markdown xml yaml powershell bourne-shell
- commits 641
- committers 6
- files 373
+ commits 674
+ committers 8
+ files 379
+ mb 2
concepts/magit.scroll
Changed around line 14: writtenIn lisp yaml markdown make
- newestCommit 2024
- commits 12365
- committers 389
- files 127
+ newestCommit 2025
+ commits 12733
+ committers 398
+ files 122
+ mb 33
concepts/mai.scroll
Changed around line 14: repoStats
+ mb 1
concepts/mal.scroll
Changed around line 10: writtenIn make dockerfile swift ada python bash javascript lisp java c visual-ba
- commits 3624
- committers 129
- files 2455
- newestCommit 2022
+ commits 4047
+ committers 141
+ files 2465
+ newestCommit 2024
+ mb 14
concepts/mangle.scroll
Changed around line 11: writtenIn go markdown svg bourne-shell
- commits 139
- committers 9
- files 105
- newestCommit 2024
+ commits 171
+ committers 10
+ files 161
+ newestCommit 2025
+ mb 1
concepts/manhood.scroll
Changed around line 15: repoStats
+ mb 5
concepts/manim.scroll
Changed around line 20: docs https://docs.manim.community/en/stable
- commits 5984
- committers 468
- files 1334
- newestCommit 2024
+ commits 6234
+ committers 499
+ files 1350
+ newestCommit 2025
+ mb 45
concepts/manool.scroll
Changed around line 12: writtenIn cpp c yaml markdown bourne-shell make bash
- commits 596
+ commits 612
+ mb 2
concepts/mapgen.scroll
Changed around line 13: writtenIn typescript javascript json html bourne-shell
- newestCommit 2023
- commits 149
+ newestCommit 2024
+ commits 162
+ mb 1
concepts/maraca-lang.scroll
Changed around line 17: repoStats
+ mb 1
concepts/margin.scroll
Changed around line 16: repoStats
+ mb 1
concepts/markaby.scroll
Changed around line 10: writtenIn ruby yaml
- commits 469
+ commits 470
+ mb 1
concepts/marko.scroll
Changed around line 13: isOpenSource true
- commits 6029
- committers 171
- files 6769
- newestCommit 2024
+ commits 6397
+ committers 173
+ files 8146
+ newestCommit 2025
+ mb 40
concepts/markus.scroll
Changed around line 13: repoStats
+ mb 1
concepts/markwhen.scroll
Changed around line 18: repoStats
+ mb 3
concepts/marp.scroll
Changed around line 13: writtenIn typescript javascript markdown scss yaml json svg
- commits 1219
+ commits 1298
- files 69
- newestCommit 2023
+ files 66
+ newestCommit 2024
+ mb 5
concepts/maskjs.scroll
Changed around line 17: repoStats
+ mb 24
concepts/masm.scroll
Changed around line 13: repoStats
+ newestCommit 2018
+ mb 1776
concepts/mastodon.scroll
Changed around line 10: writtenIn svg ruby yaml haml jsx javascript typescript json erb scss markdown sq
- newestCommit 2024
- commits 17709
- committers 1069
- files 8371
+ newestCommit 2025
+ commits 19910
+ committers 1111
+ files 8829
+ mb 285
concepts/mathpix-markdown.scroll
Changed around line 13: supersetOf markdown
- commits 999
- committers 9
- files 874
- newestCommit 2024
+ commits 1133
+ committers 10
+ files 1009
+ newestCommit 2025
+ mb 230
concepts/matplotlib.scroll
Changed around line 14: isOpenSource true
- newestCommit 2024
- commits 50679
- committers 1717
- files 4548
+ newestCommit 2025
+ commits 52465
+ committers 1824
+ files 4609
+ mb 459
concepts/mavo.scroll
Changed around line 12: writtenIn javascript css json scss markdown html toml
- commits 1551
+ commits 1566
- files 105
+ files 117
+ mb 13
concepts/mdq.scroll
Changed around line 4: id mdq
- standsFor Markdown Query
+ standsFor Markdown Query
+
-
- githubRepo https://github.com/yshavit/mdq
+ repoStats
+ firstCommit 2024
+ newestCommit 2025
+ commits 156
+ mb 1
+ committers 5
+ files 71
- cat example.md | mdq '# usage | -'
+ cat example.md | mdq '# usage | -'
+
+ githubRepo https://github.com/yshavit/mdq
concepts/mdx.scroll
Changed around line 14: writtenIn javascript markdown jsx json yaml typescript css svg json5
- commits 1960
- committers 192
- files 183
- newestCommit 2024
+ commits 2025
+ committers 196
+ files 182
+ newestCommit 2025
+ mb 44
concepts/meanscriptcli.scroll
Changed around line 14: repoStats
+ mb 1
concepts/mech-lang.scroll
Changed around line 14: writtenIn rust markdown toml json yaml html typescript dockerfile
- commits 984
- committers 6
- files 143
- newestCommit 2023
+ commits 6727
+ committers 16
+ files 166
+ newestCommit 2025
+ mb 12
concepts/megaparsec.scroll
Changed around line 12: writtenIn haskell markdown json csv nix yaml xml
- commits 1039
- committers 77
- files 71
- newestCommit 2024
+ commits 1053
+ committers 81
+ files 73
+ newestCommit 2025
+ mb 3
concepts/melody.scroll
Changed around line 13: writtenIn rust java markdown json typescript toml javascript yaml kotlin svg gra
- commits 768
+ commits 776
- files 169
- newestCommit 2023
+ files 172
+ newestCommit 2024
+ mb 5
concepts/mermaid.scroll
Changed around line 12: writtenIn typescript javascript markdown html yaml json svg bash css toml bourne
- commits 10731
- committers 728
- files 805
- newestCommit 2024
+ commits 13179
+ committers 782
+ files 999
+ newestCommit 2025
+ mb 241
concepts/mesh.scroll
Changed around line 16: repoStats
+ mb 1
concepts/metalang99.scroll
Changed around line 13: writtenIn c restructuredtext bourne-shell markdown cmake tex yaml python make
- commits 1682
- committers 6
- files 117
+ commits 1693
+ committers 4
+ files 119
+ mb 14
concepts/mewl.scroll
Changed around line 15: repoStats
+ mb 1
concepts/mewmew.scroll
Changed around line 15: repoStats
+ mb 1
concepts/mgmt.scroll
Changed around line 12: writtenIn go yaml bourne-shell markdown svg make python bash dockerfile yacc lis
- commits 1951
- committers 97
- files 1156
- newestCommit 2024
+ commits 2174
+ committers 105
+ files 1322
+ newestCommit 2025
+ mb 10
concepts/michelson.scroll
Changed around line 11: lab Dynamic Ledger Solutions Inc
- commits 35912
- committers 361
- files 15909
+ commits 76581
+ committers 289
+ files 27179
+ newestCommit 2025
+ mb 762
concepts/micro-cpp.scroll
Changed around line 11: writtenIn cpp tex make assembly-language bourne-shell python
- commits 49
+ commits 52
- files 382
- newestCommit 2023
+ files 384
+ newestCommit 2025
+ mb 33
concepts/micro-editor.scroll
Changed around line 11: writtenIn yaml go markdown bourne-shell lua svg json make xml
- commits 3089
- committers 346
- files 323
- newestCommit 2024
+ commits 3334
+ committers 377
+ files 327
+ newestCommit 2025
+ mb 14
concepts/micro-mitten.scroll
Changed around line 14: repoStats
+ mb 1
concepts/microl.scroll
Changed around line 14: repoStats
+ mb 1
concepts/micropython.scroll
Changed around line 14: isOpenSource true
- commits 15942
- committers 682
- files 5477
- newestCommit 2024
+ commits 16814
+ committers 739
+ files 5831
+ newestCommit 2025
+ mb 68
concepts/mimium.scroll
Changed around line 13: writtenIn cpp cmake markdown yaml lex python dockerfile make restructuredtext sv
- commits 1167
- committers 9
+ commits 1168
+ committers 10
- newestCommit 2023
+ newestCommit 2024
+ mb 2
concepts/mimix-stream-language.scroll
Changed around line 18: repoStats
+ mb 1
concepts/minikanren.scroll
Changed around line 15: repoStats
+ mb 1
concepts/minilang.scroll
Changed around line 12: writtenIn xml restructuredtext c lua xsd python make yaml bourne-shell puppet ma
- commits 2002
+ commits 2349
- files 971
- newestCommit 2024
+ files 570
+ newestCommit 2025
+ mb 51
concepts/minizinc.scroll
Changed around line 20: repoStats
- mb 32
+ mb 31
concepts/mirah.scroll
Changed around line 19: repoStats
+ mb 56
concepts/mirth.scroll
Changed around line 9: writtenIn bourne-shell markdown json vim-script c svg make yaml cson
- commits 585
- committers 15
- files 161
- newestCommit 2024
+ commits 663
+ committers 20
+ files 206
+ newestCommit 2025
+ mb 17
concepts/mlir.scroll
Changed around line 18: repoStats
+ mb 20
concepts/mlpolyr.scroll
Changed around line 14: repoStats
+ mb 1
concepts/mlscript.scroll
Changed around line 16: influencedBy ml ocaml haskell standard-ml scala rust
- commits 2130
+ commits 2314
+ mb 18
concepts/mobl-lang.scroll
Changed around line 13: repoStats
+ newestCommit 2013
+ mb 67
concepts/mochajs.scroll
Changed around line 14: isOpenSource true
- newestCommit 2024
- commits 4070
- committers 569
- files 529
+ newestCommit 2025
+ commits 4170
+ committers 590
+ files 542
+ mb 27
concepts/mochi.scroll
Changed around line 17: repoStats
+ mb 1
concepts/moescript.scroll
Changed around line 13: repoStats
+ newestCommit 2012
+ mb 1
concepts/moirai.scroll
Changed around line 9: writtenIn kotlin gradle bourne-shell markdown
- commits 103
+ commits 107
- files 126
+ files 125
+ mb 1
concepts/mojo.scroll
Changed around line 20: clocExtensions mojom
- commits 2192
- committers 104
- files 304
- newestCommit 2024
+ commits 6160
+ committers 229
+ files 870
+ newestCommit 2025
+ mb 30
concepts/mond.scroll
Changed around line 13: writtenIn csharp json typescript javascript css yaml razor markdown html xml
- commits 608
+ commits 642
- files 289
- newestCommit 2024
+ files 300
+ newestCommit 2025
+ mb 3
concepts/mongodb.scroll
Changed around line 16: fileType text
- commits 126261
- committers 1366
- files 40166
- newestCommit 2024
+ commits 133662
+ committers 1463
+ files 46426
+ newestCommit 2025
+ mb 1132
concepts/monkey.scroll
Changed around line 19: repoStats
+ mb 1
concepts/monkeyx.scroll
Changed around line 15: repoStats
+ mb 25
concepts/moonbit.scroll
Changed around line 16: influencedBy rust go
- newestCommit 2024
- commits 1764
- committers 68
- files 378
+ newestCommit 2025
+ commits 2395
+ committers 90
+ files 500
+ mb 6
concepts/moonscript.scroll
Changed around line 18: docs https://moonscript.org/reference/
- commits 851
+ commits 855
- newestCommit 2023
+ newestCommit 2025
+ mb 4
concepts/moose64.scroll
Changed around line 14: writtenIn horse64 moose64
- newestCommit 2024
- commits 52
+ newestCommit 2025
+ commits 101
- files 19
+ files 24
+ mb 1
concepts/mountain.scroll
Changed around line 14: repoStats
+ mb 1
concepts/moya.scroll
Changed around line 16: repoStats
+ mb 7
concepts/mu.scroll
Changed around line 16: fileType text
- commits 9007
+ commits 9010
- newestCommit 2023
+ newestCommit 2024
+ mb 92
concepts/muddl.scroll
Changed around line 10: writtenIn markdown
- commits 31
+ commits 32
- newestCommit 2020
+ newestCommit 2024
+ mb 4
concepts/mudlle.scroll
Changed around line 15: repoStats
+ mb 2
concepts/muldis.scroll
Changed around line 15: repoStats
+ mb 23
concepts/multiaddr.scroll
Changed around line 12: writtenIn markdown go yaml clojure csv gherkin make
- commits 161
+ commits 168
- files 15
+ files 16
+ mb 1
concepts/multibase.scroll
Changed around line 11: writtenIn markdown csv yaml
- commits 102
- committers 41
+ commits 110
+ committers 45
- newestCommit 2023
+ newestCommit 2025
+ mb 1
concepts/multicodec.scroll
Changed around line 10: writtenIn csv markdown python yaml
- commits 347
- committers 112
+ commits 360
+ committers 119
- newestCommit 2024
+ newestCommit 2025
+ mb 1
concepts/mun-lang.scroll
Changed around line 11: writtenIn rust toml markdown yaml svg cpp javascript cmake bourne-shell json bas
- commits 917
- committers 31
- files 784
- newestCommit 2024
+ commits 943
+ committers 32
+ files 795
+ newestCommit 2025
+ mb 6
concepts/muon.scroll
Changed around line 14: repoStats
+ mb 1
concepts/mushroom.scroll
Changed around line 13: repoStats
+ mb 1
concepts/mustache.scroll
Changed around line 19: repoStats
+ mb 2
concepts/mycroft.scroll
Changed around line 15: repoStats
+ mb 1
concepts/myia.scroll
Changed around line 14: repoStats
+ mb 5
concepts/mys.scroll
Changed around line 15: repoStats
+ mb 9
concepts/mythryl.scroll
Changed around line 14: repoStats
+ mb 129
concepts/nadesiko.scroll
Changed around line 14: compilesTo javascript
- commits 2899
- committers 24
- files 278
- newestCommit 2024
+ commits 3282
+ committers 27
+ files 364
+ newestCommit 2025
+ mb 10
concepts/ncl.scroll
Changed around line 17: isOpenSource true
- commits 14347
+ commits 14348
- newestCommit 2024
+ newestCommit 2025
+ mb 86
concepts/nearley.scroll
Changed around line 15: fileType text
- commits 1092
- committers 65
+ commits 1094
+ committers 66
- newestCommit 2022
+ newestCommit 2024
+ mb 3
concepts/neeilang.scroll
Changed around line 14: repoStats
+ mb 1
concepts/neko.scroll
Changed around line 14: fileType text
- commits 2531
- committers 43
- files 204
- newestCommit 2024
+ commits 2568
+ committers 48
+ files 197
+ newestCommit 2025
+ mb 20
concepts/nesc.scroll
Changed around line 17: repoStats
+ mb 28
concepts/netbeans-editor.scroll
Changed around line 16: repoStats
+ mb 416
concepts/neut.scroll
Changed around line 11: writtenIn haskell markdown json yaml bourne-shell javascript css typescript hand
- commits 6158
- committers 5
- files 552
- newestCommit 2024
+ commits 6667
+ committers 6
+ files 579
+ newestCommit 2025
+ mb 35
concepts/neutron.scroll
Changed around line 15: repoStats
+ mb 1
concepts/never.scroll
Changed around line 15: repoStats
+ mb 4
concepts/newclay.scroll
Changed around line 15: repoStats
+ mb 1
concepts/newlisp.scroll
Changed around line 21: repoStats
+ mb 5
concepts/nexml.scroll
Changed around line 16: repoStats
+ mb 21
concepts/nextflow.scroll
Changed around line 14: fileType text
- commits 7837
- committers 197
- files 2018
- newestCommit 2024
+ commits 8663
+ committers 226
+ files 2038
+ newestCommit 2025
+ mb 63
concepts/ngnk.scroll
Changed around line 12: isOpenSource true
- newestCommit 2024
- commits 4245
+ newestCommit 2025
+ commits 4254
- files 1140
+ files 1141
+ mb 6
concepts/nianiolang.scroll
Changed around line 16: repoStats
+ mb 3
concepts/nimskull.scroll
Changed around line 11: lab https://github.com/nim-works
- commits 21400
- committers 884
- files 2964
+ commits 21664
+ committers 892
+ files 3297
+ newestCommit 2025
+ mb 112
concepts/ninja.scroll
Changed around line 14: isOpenSource true
- commits 3150
- committers 325
- files 164
- newestCommit 2024
+ commits 3276
+ committers 343
+ files 176
+ newestCommit 2025
+ mb 6
concepts/nit.scroll
Changed around line 15: fileType text
- commits 13837
- committers 48
- files 6372
- newestCommit 2022
+ commits 13983
+ committers 49
+ files 6572
+ newestCommit 2024
+ mb 125
concepts/nlpl.scroll
Changed around line 15: repoStats
+ mb 1
concepts/nltk.scroll
Changed around line 13: isOpenSource true
- commits 14600
- committers 494
- files 496
- newestCommit 2024
+ commits 14805
+ committers 510
+ files 498
+ newestCommit 2025
+ mb 114
concepts/noisecraft.scroll
Changed around line 17: repoStats
+ mb 1
concepts/noms-db.scroll
Changed around line 16: repoStats
+ mb 82
concepts/noon.scroll
Changed around line 11: writtenIn javascript json markdown
- commits 292
+ commits 296
- newestCommit 2024
+ newestCommit 2025
+ mb 2
concepts/nostr.scroll
Changed around line 12: writtenIn markdown
- newestCommit 2024
- commits 136
- committers 23
- files 12
+ newestCommit 2025
+ commits 141
+ committers 24
+ files 2
+ mb 1
concepts/note.scroll
Changed around line 20: repoStats
+ mb 1
concepts/noulith.scroll
Changed around line 14: isOpenSource true
- commits 259
+ commits 269
+ mb 6
concepts/noweb.scroll
Changed around line 12: writtenIn bourne-shell make tex c perl awk korn-shell c-shell lisp html
- commits 351
+ commits 353
- files 385
- newestCommit 2024
+ files 384
+ newestCommit 2023
+ mb 2
concepts/npm-pm.scroll
Changed around line 21: repoStats
+ mb 49
concepts/nqc.scroll
Changed around line 17: repoStats
+ mb 1
concepts/nulan.scroll
Changed around line 15: repoStats
+ mb 2
concepts/numba.scroll
Changed around line 13: writtenIn python restructuredtext c yaml cpp bourne-shell markdown cuda svg java
- commits 28125
- committers 447
- files 983
- newestCommit 2024
+ commits 28706
+ committers 465
+ files 1019
+ newestCommit 2025
+ mb 83
concepts/nushell.scroll
Changed around line 12: writtenIn rust json toml markdown yaml bourne-shell csv python powershell docker
- commits 8923
- committers 707
- files 1858
- newestCommit 2024
+ commits 10026
+ committers 787
+ files 1972
+ newestCommit 2025
+ mb 56
concepts/nuua.scroll
Changed around line 14: repoStats
+ mb 6
concepts/nydp.scroll
Changed around line 9: writtenIn ruby markdown yaml
- commits 984
+ commits 1002
- files 215
- newestCommit 2024
+ files 219
+ newestCommit 2025
+ mb 2
concepts/nymph.scroll
Changed around line 15: repoStats
+ mb 3
concepts/objectscript.scroll
Changed around line 15: repoStats
+ mb 48
concepts/observable-framework.scroll
Changed around line 11: writtenIn javascript markdown json typescript html css csv bourne-shell python y
- newestCommit 2024
- commits 1614
- committers 28
- files 1152
+ newestCommit 2025
+ commits 1799
+ committers 41
+ files 1556
+ mb 44
concepts/observable-lang.scroll
Changed around line 15: writtenIn javascript html json markdown yaml
- commits 927
+ commits 930
- files 37
+ files 32
+ mb 2
concepts/observable-plot.scroll
Changed around line 15: repoStats
- mb 97
+ mb 88
concepts/obsidian-lang.scroll
Changed around line 17: repoStats
+ mb 128
concepts/obsidian.scroll
Changed around line 12: writtenIn json markdown yaml
- newestCommit 2024
- commits 4486
- committers 1734
+ newestCommit 2025
+ commits 5695
+ committers 2121
+ mb 37
concepts/octune.scroll
Changed around line 15: repoStats
+ mb 2
concepts/oden.scroll
Changed around line 16: repoStats
+ mb 33
concepts/odin.scroll
Changed around line 14: clocExtensions odin
- commits 11111
- committers 369
- files 1383
- newestCommit 2024
+ commits 14403
+ committers 518
+ files 1926
+ newestCommit 2025
+ mb 461
concepts/ohayo.scroll
Changed around line 17: isOpenSource true
- commits 199
+ commits 202
- files 383
- newestCommit 2023
+ files 384
+ newestCommit 2024
+ mb 14
concepts/ohm.scroll
Changed around line 13: tryItOnline https://tio.run/#ohm
- commits 1887
- committers 44
+ commits 1889
+ committers 46
- newestCommit 2024
+ newestCommit 2025
+ mb 26
concepts/oil.scroll
Changed around line 14: isOpenSource true
- commits 10453
- committers 86
- files 4987
- newestCommit 2024
+ commits 11988
+ committers 101
+ files 5187
+ newestCommit 2025
+ mb 52
concepts/ok.scroll
Changed around line 15: repoStats
+ mb 1
concepts/olc.scroll
Changed around line 13: writtenIn java markdown xml go javascript dart bazel json rust cpp ruby bourne-s
- newestCommit 2024
- commits 755
- committers 80
- files 323
+ newestCommit 2025
+ commits 791
+ committers 84
+ files 329
+ mb 5
concepts/om.scroll
Changed around line 13: writtenIn cpp cmake markdown html css bourne-shell
- commits 678
+ commits 682
- newestCommit 2021
+ newestCommit 2024
+ mb 87
concepts/omgrofl.scroll
Changed around line 15: repoStats
+ mb 1
concepts/onnx.scroll
Changed around line 18: repoStats
- mb 39
+ mb 38
concepts/ooc.scroll
Changed around line 19: repoStats
+ mb 18
concepts/oopsilon.scroll
Changed around line 16: repoStats
+ mb 1
concepts/opal.scroll
Changed around line 15: repoStats
+ mb 9
concepts/opam-pm.scroll
Changed around line 15: writtenIn ocaml bourne-shell markdown make c m4 yaml bash z-shell xml html docke
- commits 11657
- committers 208
- files 473
- newestCommit 2024
+ commits 12425
+ committers 228
+ files 484
+ newestCommit 2025
+ mb 43
concepts/open-nn.scroll
Changed around line 12: writtenIn cpp cmake fortran-77 csv xml c cuda bourne-shell python markdown yaml
- commits 7228
+ commits 8163
+ mb 502
concepts/opencv.scroll
Changed around line 10: writtenIn cpp c python markdown cmake java xml opencl html assembly-language obj
- newestCommit 2024
- commits 35177
- committers 2337
- files 7511
+ newestCommit 2025
+ commits 35968
+ committers 2408
+ files 7602
+ mb 554
concepts/openverse.scroll
Changed around line 10: writtenIn python markdown json5 typescript json javascript svg yaml sql bourne-s
- newestCommit 2024
- commits 11689
- committers 367
- files 3154
+ newestCommit 2025
+ commits 12009
+ committers 380
+ files 3882
+ mb 1493
concepts/orca-pl.scroll
Changed around line 15: repoStats
+ mb 2
concepts/orca.scroll
Changed around line 16: repoStats
+ mb 6
concepts/org.scroll
Changed around line 27: repoStats
+ mb 108
concepts/oxyl.scroll
Changed around line 18: repoStats
+ mb 99
concepts/p-star.scroll
Changed around line 17: repoStats
+ mb 9
concepts/p.scroll
Changed around line 16: repoStats
- mb 164
+ mb 149
concepts/p4p.scroll
Changed around line 15: repoStats
+ mb 1
concepts/packagist-pm.scroll
Changed around line 14: writtenIn php twig yaml json javascript svg html css xml scss markdown jsx
- commits 2628
- committers 171
- files 385
- newestCommit 2024
+ commits 2720
+ committers 173
+ files 390
+ newestCommit 2025
+ mb 13
concepts/pact.scroll
Changed around line 15: isOpenSource true
- commits 4789
- committers 62
- files 448
- newestCommit 2024
+ commits 4821
+ committers 65
+ files 453
+ newestCommit 2025
+ mb 17
concepts/pandas.scroll
Changed around line 15: isOpenSource true
- newestCommit 2024
- commits 37649
- committers 3746
- files 2561
+ newestCommit 2025
+ commits 38829
+ committers 3955
+ files 2622
+ mb 370
concepts/parboiled.scroll
Changed around line 11: writtenIn java scala yaml markdown
- newestCommit 2024
- commits 948
+ newestCommit 2025
+ commits 964
+ mb 64
concepts/parboiled2.scroll
Changed around line 11: writtenIn scala markdown yaml json restructuredtext
- newestCommit 2024
- commits 1002
+ newestCommit 2025
+ commits 1034
+ mb 3
concepts/parenscript.scroll
Changed around line 18: repoStats
+ mb 5
concepts/parsers.scroll
Changed around line 23: related particles antlr
- commits 1473
+ commits 1597
- files 226
- newestCommit 2024
+ files 230
+ newestCommit 2025
+ mb 34
concepts/particles.scroll
Changed around line 24: related i-expressions json yaml toml xml haml ini parsers
- commits 1473
+ commits 1597
- files 226
- newestCommit 2024
+ files 230
+ newestCommit 2025
+ mb 34
concepts/partiql.scroll
Changed around line 12: writtenIn kotlin sql markdown gradle csv yaml java asciidoc bourne-shell xml htm
- commits 2365
- committers 39
- files 1356
- newestCommit 2024
+ commits 2861
+ committers 42
+ files 1310
+ newestCommit 2025
+ mb 20
concepts/passambler.scroll
Changed around line 13: repoStats
+ mb 2
concepts/passerine.scroll
Changed around line 12: writtenIn rust toml markdown svg
- commits 535
- committers 16
+ commits 536
+ committers 17
- newestCommit 2022
+ newestCommit 2024
+ mb 2
concepts/pasukon.scroll
Changed around line 17: repoStats
+ mb 1
concepts/pawn.scroll
Changed around line 13: isOpenSource true
- commits 116
- committers 15
+ commits 119
+ committers 17
+ mb 25
concepts/pcrap.scroll
Changed around line 15: repoStats
+ mb 16
concepts/pcre.scroll
Changed around line 13: writtenIn html c cmake bourne-shell python yaml perl m4 starlark make zig markdo
- commits 1767
- committers 50
- files 472
- newestCommit 2024
+ commits 2090
+ committers 62
+ files 485
+ newestCommit 2025
+ mb 18
concepts/pearscript.scroll
Changed around line 17: repoStats
+ mb 1
concepts/pegasus.scroll
Changed around line 11: compilesTo c crystal
- newestCommit 2023
- commits 185
- committers 1
+ newestCommit 2024
+ commits 188
+ committers 3
+ mb 1
concepts/pegdown.scroll
Changed around line 16: repoStats
+ mb 12
concepts/penrose.scroll
Changed around line 11: writtenIn json typescript markdown svg css html javascript yaml vim-script pytho
- commits 5069
- committers 57
- files 1370
- newestCommit 2024
+ commits 5539
+ committers 60
+ files 1516
+ newestCommit 2025
+ mb 1100
concepts/perl.scroll
Changed around line 44: rosettaCode http://www.rosettacode.org/wiki/Category:Perl
- newestCommit 2024
- commits 94475
- committers 1254
- files 6852
+ newestCommit 2025
+ commits 96320
+ committers 1262
+ files 6895
+ mb 355
concepts/pgbouncer.scroll
Changed around line 15: related c postgresql sql plpgsql
- commits 1628
- committers 93
- files 145
- newestCommit 2024
+ commits 1712
+ committers 108
+ files 147
+ newestCommit 2025
+ mb 4
concepts/pharen.scroll
Changed around line 17: repoStats
+ mb 2
concepts/phel.scroll
Changed around line 13: compilesTo php
- commits 2140
- committers 22
+ commits 2358
+ committers 29
- newestCommit 2024
+ newestCommit 2025
+ mb 6
concepts/phorth.scroll
Changed around line 14: repoStats
+ mb 1
concepts/php.scroll
Changed around line 36: packageRepository https://packagist.org/
- commits 147515
- committers 1581
- files 23287
- newestCommit 2024
+ commits 152264
+ committers 1617
+ files 24867
+ newestCommit 2025
+ mb 600
concepts/pikelet.scroll
Changed around line 16: repoStats
+ mb 6
concepts/pinto.scroll
Changed around line 16: repoStats
+ mb 2
concepts/pipefish.scroll
Changed around line 8: writtenIn go markdown json
- newestCommit 2024
- commits 792
- committers 5
- files 159
+ newestCommit 2025
+ commits 1738
+ committers 6
+ files 218
+ mb 51
concepts/pipelines.scroll
Changed around line 14: repoStats
+ mb 2
concepts/plaid-programming-language.scroll
Changed around line 16: repoStats
+ mb 21
concepts/plam.scroll
Changed around line 16: repoStats
+ mb 2
concepts/plang.scroll
Changed around line 11: writtenIn csharp markdown json xml python csv javascript css
- newestCommit 2024
- commits 110
- committers 2
- files 1670
+ newestCommit 2025
+ commits 235
+ committers 3
+ files 2564
+ mb 30
concepts/please-build.scroll
Changed around line 14: related make
- commits 4323
- committers 147
- files 1060
- newestCommit 2024
+ commits 4451
+ committers 150
+ files 1079
+ newestCommit 2025
+ mb 29
concepts/plot.scroll
Changed around line 15: repoStats
+ mb 1
concepts/pod6.scroll
Changed around line 16: repoStats
+ mb 2
concepts/podlite.scroll
Changed around line 16: isOpenSource true
- commits 818
- committers 3
- files 354
- newestCommit 2024
+ commits 931
+ committers 4
+ files 418
+ newestCommit 2025
+ mb 3
concepts/pogoscript.scroll
Changed around line 17: repoStats
+ mb 6
concepts/poke.scroll
Changed around line 17: demoVideo https://www.youtube.com/watch?v=KZ8meNZ_IhY&themeRefresh=1
- newestCommit 2024
- commits 7860
- committers 54
- files 3103
+ newestCommit 2025
+ commits 8059
+ committers 55
+ files 3129
+ mb 16
concepts/polyglot-compiler.scroll
Changed around line 15: repoStats
+ mb 26
concepts/polymath.scroll
Changed around line 16: repoStats
+ mb 1
concepts/pony.scroll
Changed around line 17: fileType text
- commits 7370
- committers 267
- files 1065
- newestCommit 2024
+ commits 7569
+ committers 272
+ files 1100
+ newestCommit 2025
+ mb 22
concepts/popr.scroll
Changed around line 20: repoStats
+ mb 4
concepts/postcss.scroll
Changed around line 15: fileType text
- commits 4065
- committers 443
+ commits 4161
+ committers 451
- newestCommit 2024
+ newestCommit 2025
+ mb 12
concepts/postgresql.scroll
Changed around line 25: annualReportsUrl https://www.postgresql.org/about/policies/coc/
- commits 91141
- committers 57
- files 6942
- newestCommit 2024
+ commits 95236
+ committers 58
+ files 7090
+ newestCommit 2025
+ mb 640
concepts/potion.scroll
Changed around line 12: writtenIn c bourne-shell markdown make yaml yacc perl css lisp ruby
- commits 2283
- committers 29
+ commits 2421
+ committers 30
- newestCommit 2023
+ newestCommit 2024
+ mb 5
concepts/pov-ray-sdl.scroll
Changed around line 17: repoStats
- mb 195
+ mb 190
concepts/powershell.scroll
Changed around line 22: rosettaCode http://www.rosettacode.org/wiki/Category:PowerShell
- newestCommit 2024
- commits 11960
- committers 589
- files 2647
+ newestCommit 2025
+ commits 12748
+ committers 609
+ files 2649
+ mb 100
concepts/pragtical.scroll
Changed around line 10: writtenIn lua c
- newestCommit 2024
- commits 2594
- committers 112
- files 223
+ newestCommit 2025
+ commits 2685
+ committers 114
+ files 226
+ mb 15
concepts/preforth.scroll
Changed around line 14: repoStats
+ mb 1
concepts/prismjs.scroll
Changed around line 18: repoStats
+ mb 15
concepts/project-mentat.scroll
Changed around line 18: repoStats
+ mb 43
concepts/prql.scroll
Changed around line 21: faq https://prql-lang.org/faq/
- commits 3263
- committers 78
- files 816
- newestCommit 2024
+ commits 3692
+ committers 88
+ files 829
+ newestCommit 2025
+ mb 24
concepts/psvg.scroll
Changed around line 18: repoStats
+ mb 1
concepts/psyche-c.scroll
Changed around line 13: isOpenSource true
- commits 609
+ commits 640
- files 413
- newestCommit 2024
+ files 446
+ newestCommit 2025
+ mb 13
concepts/psyche.scroll
Changed around line 13: repoStats
+ mb 1
concepts/purescript.scroll
Changed around line 20: docs https://github.com/purescript/documentation
- commits 4539
- committers 238
- files 1882
+ commits 4550
+ committers 240
+ files 1883
+ mb 15
concepts/pycket.scroll
Changed around line 11: writtenIn python racket scheme bourne-shell markdown make ini json yaml c
- commits 4986
- committers 21
- files 248
- newestCommit 2021
+ commits 5094
+ committers 24
+ files 252
+ newestCommit 2024
+ mb 58
concepts/pygments.scroll
Changed around line 15: writtenIn python html restructuredtext scala graphql prolog ruby javascript lisp
- commits 6811
- committers 883
- files 2592
- newestCommit 2024
+ commits 7047
+ committers 926
+ files 2681
+ newestCommit 2025
+ mb 29
concepts/pyret-lang.scroll
Changed around line 10: lab Brown University
- commits 10731
- committers 85
- files 631
+ commits 11152
+ committers 92
+ files 654
+ newestCommit 2025
+ mb 481
concepts/pyret.scroll
Changed around line 12: lab Brown University
- commits 10731
- committers 85
- files 631
+ commits 11152
+ committers 92
+ files 654
+ newestCommit 2025
+ mb 481
concepts/python.scroll
Changed around line 36: packageRepository https://pypi.python.org/pypi
- commits 149709
- committers 3046
- files 4866
- newestCommit 2024
+ commits 156324
+ committers 3360
+ files 5121
+ newestCommit 2025
+ mb 681
concepts/pytorch.scroll
Changed around line 13: leetSheets https://cheatsheets.zip/pytorch
- newestCommit 2024
- commits 137190
- committers 5074
- files 16227
+ newestCommit 2025
+ commits 112330
+ committers 5657
+ files 16537
+ mb 1058
concepts/qalb.scroll
Changed around line 18: repoStats
+ mb 1
concepts/qoir.scroll
Changed around line 19: repoStats
+ mb 9
concepts/qore.scroll
Changed around line 16: repoStats
- mb 63
+ mb 62
concepts/quaint-lang.scroll
Changed around line 13: repoStats
+ mb 1
concepts/quaint.scroll
Changed around line 19: repoStats
+ mb 4
concepts/quicklisp-pm.scroll
Changed around line 13: writtenIn lisp make
- commits 339
- committers 24
+ commits 341
+ committers 25
- newestCommit 2023
+ newestCommit 2024
+ mb 2
concepts/quint.scroll
Changed around line 13: influencedBy tla
- newestCommit 2024
- commits 3390
- committers 29
- files 549
+ newestCommit 2025
+ commits 3786
+ committers 40
+ files 564
+ mb 66
concepts/r3.scroll
Changed around line 12: writtenIn f-sharp glsl xml assembly-language csv markdown
- commits 695
+ commits 1001
- files 619
- newestCommit 2024
+ files 667
+ newestCommit 2025
+ mb 138
concepts/racket.scroll
Changed around line 27: rosettaCode http://www.rosettacode.org/wiki/Category:Racket
- newestCommit 2024
- commits 47707
- committers 489
- files 5657
+ newestCommit 2025
+ commits 48071
+ committers 513
+ files 5747
+ mb 365
concepts/ragel.scroll
Changed around line 16: repoStats
+ mb 3
concepts/rakudo.scroll
Changed around line 14: implementationOf raku
- newestCommit 2024
- commits 42374
- committers 442
- files 991
+ newestCommit 2025
+ commits 43497
+ committers 446
+ files 1013
+ mb 82
concepts/ralph.scroll
Changed around line 15: repoStats
+ mb 3
concepts/ramdascript.scroll
Changed around line 16: repoStats
+ mb 1
concepts/ramen.scroll
Changed around line 11: writtenIn ocaml php gherkin bourne-shell csv c m4 svg ruby asciidoc make css bas
- commits 6239
+ commits 6253
- files 613
- newestCommit 2023
+ files 617
+ newestCommit 2025
+ mb 24
concepts/raml.scroll
Changed around line 20: repoStats
+ mb 2
concepts/rant.scroll
Changed around line 15: repoStats
+ mb 5
concepts/rapidbatch.scroll
Changed around line 15: repoStats
+ mb 8
concepts/raptorjit.scroll
Changed around line 11: writtenIn lua c html nix markdown css make r assembly-language cpp pascal yaml
- commits 3192
- committers 20
- files 443
- newestCommit 2023
+ commits 3304
+ committers 21
+ files 444
+ newestCommit 2024
+ mb 9
concepts/rascal.scroll
Changed around line 13: fileType text
- commits 20580
- committers 98
- files 1336
+ commits 24686
+ committers 109
+ files 1638
+ newestCommit 2025
+ mb 1081
concepts/react-native.scroll
Changed around line 14: isOpenSource true
- newestCommit 2024
- commits 39426
- committers 3873
- files 6147
+ newestCommit 2025
+ commits 43710
+ committers 4064
+ files 6563
+ mb 928
concepts/readable.scroll
Changed around line 16: repoStats
+ mb 1
concepts/reason.scroll
Changed around line 23: docs https://reasonml.github.io/docs/en/what-and-why
- commits 2238
- committers 160
- files 661
- newestCommit 2024
+ commits 2353
+ committers 162
+ files 596
+ newestCommit 2025
+ mb 26
concepts/rebeca-modeling-language.scroll
Changed around line 12: writtenIn java xsd xml yaml markdown
- commits 147
- committers 7
- files 308
- newestCommit 2024
+ commits 178
+ committers 10
+ files 322
+ newestCommit 2025
+ mb 19
concepts/recfiles.scroll
Changed around line 19: repoStats
+ mb 5
concepts/recursivetext.scroll
Changed around line 12: writtenIn json typescript markdown
- commits 24
+ commits 30
+ mb 1
concepts/red.scroll
Changed around line 22: faq https://www.red-lang.org/2015/12/answers-to-community-questions.html
- commits 15634
- committers 114
- files 639
- newestCommit 2024
+ commits 16017
+ committers 116
+ files 672
+ newestCommit 2025
+ mb 43
concepts/redis.scroll
Changed around line 16: fileType text
- newestCommit 2024
- commits 19070
- committers 869
- files 1596
+ newestCommit 2025
+ commits 19416
+ committers 913
+ files 1638
+ mb 143
concepts/reflex-framework.scroll
Changed around line 11: writtenIn haskell nix markdown yaml json c bash xml
- commits 1549
- committers 92
- files 91
- newestCommit 2024
+ commits 1595
+ committers 97
+ files 90
+ newestCommit 2025
+ mb 3
concepts/reforth.scroll
Changed around line 14: repoStats
+ mb 1
concepts/reia.scroll
Changed around line 14: repoStats
+ mb 8
concepts/rel-lang.scroll
Changed around line 14: repoStats
+ mb 2
concepts/remix.scroll
Changed around line 15: repoStats
+ mb 1
concepts/ren-c.scroll
Changed around line 11: writtenIn c r markdown yaml bourne-shell javascript html json
- commits 9881
- committers 56
+ commits 9789
+ committers 57
+ mb 106
concepts/retdec.scroll
Changed around line 10: writtenIn cpp cmake python bourne-shell markdown json c yaml dockerfile make
- commits 2208
+ commits 2209
+ mb 33
concepts/revolution-programming-language.scroll
Changed around line 17: repoStats
+ mb 150
concepts/rholang.scroll
Changed around line 18: repoStats
+ mb 47
concepts/ricscript.scroll
Changed around line 10: writtenIn c html python bourne-shell markdown meson cpp cmake javascript make ya
- commits 1025
+ commits 1031
+ mb 14
concepts/riff.scroll
Changed around line 17: repoStats
+ mb 2
concepts/rigc.scroll
Changed around line 17: repoStats
+ mb 3
concepts/rio.scroll
Changed around line 9: writtenIn rust wasm svg toml markdown
- commits 991
+ commits 1014
+ mb 3
concepts/ripple.scroll
Changed around line 16: repoStats
+ mb 2
concepts/rmarkdown.scroll
Changed around line 16: isOpenSource true
- commits 3977
- committers 143
- files 499
+ commits 3996
+ committers 144
+ files 502
+ mb 124
concepts/robotframework.scroll
Changed around line 15: fileType text
- commits 14707
- committers 222
- files 2413
- newestCommit 2024
+ commits 15032
+ committers 237
+ files 2494
+ newestCommit 2025
+ mb 162
concepts/roc.scroll
Changed around line 12: writtenIn rust toml markdown yaml zig typescript bourne-shell c nix json javascr
- commits 30312
- committers 289
- files 2314
- newestCommit 2024
+ commits 33140
+ committers 341
+ files 3796
+ newestCommit 2025
+ mb 135
concepts/rocket.scroll
Changed around line 13: repoStats
+ mb 2
concepts/rocksdb.scroll
Changed around line 11: writtenIn cpp java markdown html bourne-shell python yaml cmake scss ini make sv
- newestCommit 2024
- commits 15462
- committers 1171
- files 2072
+ newestCommit 2025
+ commits 15612
+ committers 1180
+ files 2084
+ mb 225
concepts/rockstar-rkt.scroll
Changed around line 15: repoStats
+ mb 1
concepts/rockstar.scroll
Changed around line 21: repoStats
+ mb 2
concepts/ron.scroll
Changed around line 14: writtenIn rust markdown yaml toml
- commits 668
- committers 72
- files 116
- newestCommit 2024
+ commits 711
+ committers 75
+ files 118
+ newestCommit 2025
+ mb 6
concepts/rosie.scroll
Changed around line 14: isOpenSource true
- commits 3888
+ commits 3916
- files 401
- newestCommit 2023
+ files 483
+ newestCommit 2024
+ mb 26
concepts/roslyn-compiler.scroll
Changed around line 11: writtenIn csharp visual-basic.net xml markdown yaml powershell xaml cadence-skil
- newestCommit 2024
- commits 111782
- committers 989
- files 18852
+ newestCommit 2025
+ commits 119552
+ committers 1043
+ files 19272
+ mb 2229
concepts/rouge.scroll
Changed around line 17: repoStats
+ mb 1
concepts/roy.scroll
Changed around line 20: repoStats
+ mb 1
concepts/royalscript.scroll
Changed around line 15: repoStats
+ mb 1
concepts/rpscript.scroll
Changed around line 14: repoStats
+ mb 1
concepts/ru.scroll
Changed around line 15: repoStats
+ mb 1
concepts/runiq.scroll
Changed around line 15: repoStats
+ mb 1
concepts/rye.scroll
Changed around line 12: writtenIn go markdown html javascript yaml json bash svg css xml r csv java pyth
- commits 1065
- committers 18
- files 448
- newestCommit 2024
+ commits 1658
+ committers 22
+ files 540
+ newestCommit 2025
+ mb 115
concepts/sage.scroll
Changed around line 17: repoStats
+ mb 87
concepts/saltstack.scroll
Changed around line 13: clocExtensions sls
- commits 128810
- committers 4025
- files 6539
+ commits 174123
+ committers 4107
+ files 4818
+ newestCommit 2025
+ mb 562
concepts/sanddance.scroll
Changed around line 15: demoVideo https://www.youtube.com/watch?v=sj2tzW2uhZo
- newestCommit 2024
- commits 651
+ newestCommit 2025
+ commits 724
- files 1653
+ files 799
+ mb 65
concepts/satysfi.scroll
Changed around line 11: writtenIn ocaml make markdown css bourne-shell svg yaml
- commits 3813
- committers 56
- files 329
- newestCommit 2024
+ commits 4053
+ committers 59
+ files 325
+ newestCommit 2025
+ mb 9
concepts/savi.scroll
Changed around line 11: writtenIn crystal markdown yaml json cpp bourne-shell make typescript ruby pytho
- commits 2349
+ commits 2418
- files 747
+ files 762
+ mb 8
concepts/scala-js.scroll
Changed around line 15: isOpenSource true
- commits 7286
- committers 111
- files 2073
- newestCommit 2024
+ commits 7532
+ committers 114
+ files 2113
+ newestCommit 2025
+ mb 33
concepts/scheme-2-d.scroll
Changed around line 15: repoStats
+ mb 1
concepts/scikit-learn.scroll
Changed around line 14: isOpenSource true
- newestCommit 2024
- commits 35132
- committers 3192
- files 1618
+ newestCommit 2025
+ commits 36454
+ committers 3340
+ files 1675
+ mb 169
concepts/scipy.scroll
Changed around line 14: isOpenSource true
- commits 34714
- committers 1658
- files 3206
- newestCommit 2024
+ commits 37218
+ committers 1785
+ files 3186
+ newestCommit 2025
+ mb 178
concepts/scoop-pm.scroll
Changed around line 13: writtenIn powershell json markdown yaml csharp xml
- commits 10342
- committers 508
- files 139
+ commits 10379
+ committers 513
+ files 140
+ mb 15
concepts/score.scroll
Changed around line 13: writtenIn cpp svg cmake bourne-shell c yaml xml objective-cpp markdown qml bash
- commits 11058
- committers 64
- files 4224
- newestCommit 2024
+ commits 11945
+ committers 73
+ files 4403
+ newestCommit 2025
+ mb 66
concepts/scribble.scroll
Changed around line 11: writtenIn racket tex css yaml javascript markdown html
- commits 2229
- committers 97
- files 396
- newestCommit 2024
+ commits 2423
+ committers 103
+ files 398
+ newestCommit 2025
+ mb 12
concepts/scroll.scroll
Changed around line 26: related markdown particles parsers
- commits 1230
- committers 6
- files 141
- newestCommit 2024
+ commits 1956
+ committers 9
+ files 331
+ newestCommit 2025
+ mb 43
concepts/sdms.scroll
Changed around line 14: repoStats
+ mb 1
concepts/seif.scroll
Changed around line 17: repoStats
+ mb 3
concepts/semicolon.scroll
Changed around line 21: repoStats
+ mb 1
concepts/semver.scroll
Changed around line 20: repoStats
+ mb 1
concepts/sentient.scroll
Changed around line 15: repoStats
+ mb 4
concepts/seq.scroll
Changed around line 17: repoStats
+ mb 12
concepts/serious.scroll
Changed around line 16: repoStats
+ mb 5
concepts/setlx.scroll
Changed around line 16: repoStats
+ mb 27
concepts/sham.scroll
Changed around line 13: repoStats
+ mb 2
concepts/shen.scroll
Changed around line 14: emailList https://groups.google.com/g/qilang
- commits 474
+ commits 483
- files 107
+ files 157
+ mb 2
concepts/shill.scroll
Changed around line 14: repoStats
+ mb 1
concepts/shml.scroll
Changed around line 15: repoStats
+ mb 1
concepts/sibilant.scroll
Changed around line 17: repoStats
+ mb 6
concepts/sile.scroll
Changed around line 17: repoStats
- mb 58
+ mb 57
concepts/silk.scroll
Changed around line 14: repoStats
+ mb 1
concepts/simit.scroll
Changed around line 18: repoStats
+ mb 9
concepts/simple-binary-encoding.scroll
Changed around line 17: related python java rust
- commits 3645
- committers 124
- files 381
- newestCommit 2024
+ commits 3828
+ committers 132
+ files 480
+ newestCommit 2025
+ mb 29
concepts/simplictiy.scroll
Changed around line 11: writtenIn haskell c coq nix markdown diff tex make html
- commits 972
+ commits 1058
- files 244
- newestCommit 2024
+ files 275
+ newestCommit 2025
+ mb 12
concepts/sixten.scroll
Changed around line 14: repoStats
+ mb 3
concepts/sizzle.scroll
Changed around line 17: repoStats
+ mb 5
concepts/skip.scroll
Changed around line 17: repoStats
+ mb 85
concepts/slash.scroll
Changed around line 13: fileType text
- committers 8
+ committers 7
+ mb 3
concepts/slashdown.scroll
Changed around line 16: repoStats
+ mb 1
concepts/slick.scroll
Changed around line 15: repoStats
+ mb 1
concepts/slideshow.scroll
Changed around line 16: docs https://docs.racket-lang.org/slideshow
- commits 568
+ commits 570
- newestCommit 2023
+ newestCommit 2025
+ mb 2
concepts/slim-framework.scroll
Changed around line 12: writtenIn php markdown yaml xml json
- commits 5015
- committers 311
- files 144
+ commits 5048
+ committers 315
+ files 145
+ mb 8
concepts/slim.scroll
Changed around line 16: clocExtensions slim
- commits 2021
- committers 127
+ commits 2022
+ committers 128
- newestCommit 2024
+ newestCommit 2025
+ mb 3
concepts/slony.scroll
Changed around line 18: repoStats
+ mb 14
concepts/smali.scroll
Changed around line 17: repoStats
+ mb 11
concepts/smc.scroll
Changed around line 16: repoStats
+ mb 1
concepts/smile.scroll
Changed around line 10: writtenIn markdown
- commits 46
- committers 8
+ commits 50
+ committers 9
- newestCommit 2022
+ newestCommit 2024
+ mb 1
concepts/smpl.scroll
Changed around line 12: writtenIn ocaml c rescript cpp make tex bourne-shell markdown python perl m4 doc
- commits 7648
- committers 84
- files 5308
- newestCommit 2024
+ commits 7804
+ committers 87
+ files 5417
+ newestCommit 2025
+ mb 50
concepts/snowball-programming-language.scroll
Changed around line 12: writtenIn c python rust go ada csharp java perl pascal javascript restructuredte
- commits 1096
- committers 39
+ commits 1152
+ committers 40
- newestCommit 2024
+ newestCommit 2025
+ mb 2
concepts/snowman-decompiler.scroll
Changed around line 12: repoStats
+ mb 1
concepts/solid-network.scroll
Changed around line 11: writtenIn markdown html svg css
- newestCommit 2024
- commits 1311
- committers 28
- files 200
+ newestCommit 2025
+ commits 1368
+ committers 33
+ files 232
+ mb 4
concepts/solid.scroll
Changed around line 13: repoStats
+ mb 1
concepts/solidity.scroll
Changed around line 19: fileType text
- commits 26771
- committers 793
- files 10534
- newestCommit 2024
+ commits 27911
+ committers 851
+ files 11203
+ newestCommit 2025
+ mb 84
concepts/son.scroll
Changed around line 18: repoStats
+ mb 1
concepts/sophia.scroll
Changed around line 14: related solidity
- commits 1104
+ commits 1123
- files 286
+ files 287
+ mb 9
concepts/sophie.scroll
Changed around line 10: writtenIn restructuredtext python c markdown json yaml cmake make
- newestCommit 2024
- commits 422
+ newestCommit 2025
+ commits 862
- files 250
+ files 269
+ mb 2
concepts/souper.scroll
Changed around line 10: writtenIn llvmir cpp c markdown bourne-shell cmake dockerfile yaml python perl
- commits 864
+ commits 868
- newestCommit 2023
+ newestCommit 2024
+ mb 3
concepts/sourcepawn.scroll
Changed around line 11: isOpenSource true
- commits 1535
+ commits 1568
- files 1289
+ files 1327
+ mb 8
concepts/space.scroll
Changed around line 21: repoStats
+ mb 1
concepts/spatial.scroll
Changed around line 16: fileType text
- commits 4611
+ commits 4612
+ mb 103
concepts/spider.scroll
Changed around line 18: repoStats
+ mb 2
concepts/spiderbasic.scroll
Changed around line 11: writtenIn html xml make glsl markdown hlsl asciidoc bourne-shell ini css yaml
- commits 425
- committers 38
- files 3532
- newestCommit 2024
+ commits 526
+ committers 42
+ files 3722
+ newestCommit 2025
+ mb 42
concepts/spiral.scroll
Changed around line 10: writtenIn python c f-sharp json cpp typescript html cuda markdown xml powershell
- commits 7873
- committers 10
- files 2976
+ commits 8072
+ committers 11
+ files 3038
+ mb 56
concepts/sporth.scroll
Changed around line 17: repoStats
+ mb 5
concepts/spry.scroll
Changed around line 17: repoStats
+ mb 2
concepts/sqhtml.scroll
Changed around line 15: repoStats
+ mb 1
concepts/sqlalchemy.scroll
Changed around line 13: docs https://docs.sqlalchemy.org/en/14/
- commits 21941
- committers 753
- files 955
- newestCommit 2024
+ commits 22676
+ committers 804
+ files 904
+ newestCommit 2025
+ mb 96
concepts/sqlite.scroll
Changed around line 25: faq https://www.sqlite.org/faq.html
- newestCommit 2024
- commits 32684
+ newestCommit 2025
+ commits 33352
- files 2201
+ files 2215
+ mb 446
concepts/sqrl.scroll
Changed around line 18: repoStats
+ mb 9
concepts/squiggle.scroll
Changed around line 15: repoStats
+ mb 1
concepts/squire.scroll
Changed around line 10: writtenIn c markdown make bourne-shell
- commits 324
+ commits 341
- files 111
+ files 115
+ mb 2
concepts/squirrel.scroll
Changed around line 20: quineRelay Squirrel
- commits 294
- committers 50
+ commits 304
+ committers 53
+ mb 2
concepts/srl.scroll
Changed around line 18: repoStats
+ mb 1
concepts/srt.scroll
Changed around line 9: website https://www.srtalliance.org/
+ repoStats
+ firstCommit 2017
+ newestCommit 2025
+ commits 2353
+ mb 16
+ committers 158
+ files 316
+
concepts/ssb.scroll
Changed around line 16: repoStats
+ mb 4
concepts/ssharp.scroll
Changed around line 18: repoStats
+ mb 2
concepts/stacklang.scroll
Changed around line 15: repoStats
+ mb 5
concepts/star.scroll
Changed around line 10: writtenIn haxe nim json markdown vim-script raku powershell
- commits 239
+ commits 240
- newestCommit 2023
+ newestCommit 2024
+ mb 2
concepts/starlark.scroll
Changed around line 12: writtenIn markdown python bazel yaml bourne-shell
- commits 116
+ commits 121
- newestCommit 2024
+ newestCommit 2025
+ mb 1
concepts/starpial.scroll
Changed around line 16: repoStats
+ mb 1
concepts/stencil.scroll
Changed around line 16: tryItOnline https://tio.run/#stencil
- commits 558
- committers 55
+ commits 559
+ committers 56
- newestCommit 2023
+ newestCommit 2024
+ mb 1
concepts/ston.scroll
Changed around line 16: repoStats
+ mb 1
concepts/stoneknifeforth.scroll
Changed around line 14: repoStats
+ mb 1
concepts/strat.scroll
Changed around line 15: repoStats
+ mb 1
concepts/streem.scroll
Changed around line 16: repoStats
+ mb 1
concepts/stringbean.scroll
Changed around line 15: repoStats
+ mb 1
concepts/subleq.scroll
Changed around line 14: repoStats
+ mb 1
concepts/sugar.scroll
Changed around line 16: repoStats
+ mb 3
concepts/sugarss.scroll
Changed around line 13: clocExtensions sss
- commits 212
- committers 19
- files 51
- newestCommit 2023
+ commits 225
+ committers 20
+ files 53
+ newestCommit 2024
+ mb 1
concepts/sugartex.scroll
Changed around line 13: repoStats
+ mb 3
concepts/superjson.scroll
Changed around line 12: writtenIn typescript json markdown javascript yaml bourne-shell
- commits 390
- committers 35
- files 34
- newestCommit 2023
+ commits 395
+ committers 36
+ files 35
+ newestCommit 2024
+ mb 3
concepts/surrealdb.scroll
Changed around line 12: writtenIn rust svg yaml markdown toml nix bourne-shell make dockerfile d ini
- newestCommit 2024
- commits 3989
- committers 146
- files 1043
+ newestCommit 2025
+ commits 4199
+ committers 152
+ files 1551
+ mb 33
concepts/susn.scroll
Changed around line 14: influencedBy json rdf markdown gemini recfiles xml s-expressions
- commits 74
+ commits 124
- files 4
+ files 6
+ mb 1
concepts/svelte.scroll
Changed around line 13: writtenIn svelte javascript markdown json css html typescript svg yaml
- commits 9146
- committers 787
- files 7302
- newestCommit 2024
+ commits 11163
+ committers 868
+ files 7285
+ newestCommit 2025
+ mb 116
concepts/svgbob.scroll
Changed around line 13: writtenIn rust bourne-shell markdown svg toml yaml
- commits 611
+ commits 623
- newestCommit 2024
+ newestCommit 2025
+ mb 4
concepts/swallow.scroll
Changed around line 10: writtenIn cpp markdown svg meson json yaml
- commits 753
+ commits 754
- newestCommit 2023
+ newestCommit 2024
+ mb 8
concepts/sweetjs.scroll
Changed around line 16: repoStats
+ mb 26
concepts/swi-prolog.scroll
Changed around line 10: writtenIn prolog c cmake markdown bourne-shell bash tex html yaml csv json javas
- commits 33136
- committers 175
- files 1911
- newestCommit 2024
+ commits 33909
+ committers 180
+ files 1912
+ newestCommit 2025
+ mb 106
concepts/swift.scroll
Changed around line 30: replit https://repl.it/languages/swift
- commits 196634
- committers 1509
- files 25789
- newestCommit 2024
+ commits 212658
+ committers 1612
+ files 27214
+ newestCommit 2025
+ mb 1241
concepts/swym.scroll
Changed around line 15: repoStats
+ mb 2
concepts/sympy.scroll
Changed around line 9: writtenIn python restructuredtext svg markdown jupyter-notebook perl yaml bourne
- commits 58237
- committers 1307
- files 2055
- newestCommit 2024
+ commits 60155
+ committers 1358
+ files 2029
+ newestCommit 2025
+ mb 204
concepts/t-lang.scroll
Changed around line 14: repoStats
+ mb 3
concepts/t2b.scroll
Changed around line 14: repoStats
+ mb 2
concepts/tabloid.scroll
Changed around line 14: repoStats
+ mb 1
concepts/taf.scroll
Changed around line 14: repoStats
+ mb 1
concepts/taijilang.scroll
Changed around line 15: repoStats
+ mb 2
concepts/tamgu.scroll
Changed around line 9: writtenIn markdown cpp xml c make objective-c java python cmake json bourne-shel
- commits 634
- committers 4
- files 1239
- newestCommit 2024
+ commits 796
+ committers 6
+ files 2314
+ newestCommit 2025
+ mb 464
concepts/tampio.scroll
Changed around line 14: repoStats
+ mb 1
concepts/tangledown.scroll
Changed around line 15: repoStats
+ mb 1
concepts/tao3d.scroll
Changed around line 16: repoStats
+ mb 139
concepts/taxa.scroll
Changed around line 14: repoStats
+ mb 1
concepts/tbox-lib.scroll
Changed around line 10: writtenIn c assembly-language yaml markdown lua bourne-shell objective-c cpp
- commits 3367
- committers 35
- files 1101
- newestCommit 2024
+ commits 3407
+ committers 38
+ files 1102
+ newestCommit 2025
+ mb 34
concepts/tensorflow.scroll
Changed around line 13: isOpenSource true
- newestCommit 2024
- commits 173453
- committers 4711
- files 31902
+ newestCommit 2025
+ commits 191509
+ committers 4905
+ files 34981
+ mb 1195
concepts/terra.scroll
Changed around line 15: docs https://docs.terra.money/
- commits 1603
- committers 68
- files 735
- newestCommit 2023
+ commits 1623
+ committers 70
+ files 738
+ newestCommit 2025
+ mb 8
- - This top-level code is plain Lua code.
concepts/testml.scroll
Changed around line 15: repoStats
+ mb 13
concepts/textadept-editor.scroll
Changed around line 9: writtenIn lua markdown diff c bourne-shell yaml html xml cpp cmake svg qt css ba
- commits 3863
- committers 1
- files 169
- newestCommit 2024
+ commits 4150
+ committers 2
+ files 165
+ newestCommit 2025
+ mb 90
concepts/textframe.scroll
Changed around line 13: repoStats
+ mb 1
concepts/textile.scroll
Changed around line 15: wordRank 8426
- commits 1524
- committers 12
- files 93
- newestCommit 2024
+ commits 1539
+ committers 13
+ files 98
+ newestCommit 2025
+ mb 3
concepts/thjson.scroll
Changed around line 15: repoStats
+ mb 1
concepts/tht.scroll
Changed around line 10: writtenIn php css javascript markdown bourne-shell json
- commits 624
+ commits 732
- files 249
+ files 370
+ mb 24
concepts/tidyverse.scroll
Changed around line 15: related dplyr
- commits 414
- committers 39
- files 76
- newestCommit 2023
+ commits 421
+ committers 41
+ files 83
+ newestCommit 2024
+ mb 4
concepts/tiledb.scroll
Changed around line 10: writtenIn cpp cmake markdown c yaml bourne-shell diff python json svg powershell
- commits 9653
- committers 109
- files 1898
- newestCommit 2024
+ commits 10162
+ committers 114
+ files 2052
+ newestCommit 2025
+ mb 107
concepts/timpani.scroll
Changed around line 15: repoStats
+ mb 1
concepts/tinyc-compiler.scroll
Changed around line 14: fileType na
- commits 3470
- committers 199
- files 506
- newestCommit 2024
+ commits 3544
+ committers 213
+ files 514
+ newestCommit 2025
+ mb 7
concepts/tiscript.scroll
Changed around line 10: lab Terra Informatica Software
- commits 547
+ commits 549
+ newestCommit 2023
+ mb 4436
concepts/tl.scroll
Changed around line 10: writtenIn lua markdown yaml bourne-shell make
- commits 1498
- committers 50
- files 176
- newestCommit 2024
+ commits 1532
+ committers 59
+ files 201
+ newestCommit 2025
+ mb 5
concepts/tlc.scroll
Changed around line 15: repoStats
+ mb 1
concepts/tldr.scroll
Changed around line 11: writtenIn markdown yaml python bourne-shell json css svg javascript
- newestCommit 2024
- commits 14189
- committers 2794
- files 16390
+ newestCommit 2025
+ commits 16865
+ committers 3033
+ files 21327
+ mb 36
concepts/tldraw.scroll
Changed around line 10: writtenIn typescript svg markdown json css javascript yaml bourne-shell toml dif
- newestCommit 2024
- commits 3034
- committers 159
- files 2039
+ newestCommit 2025
+ commits 7651
+ committers 189
+ files 2923
+ mb 710
concepts/tmtp.scroll
Changed around line 16: repoStats
+ mb 1
concepts/toffeescript.scroll
Changed around line 16: repoStats
+ mb 27
concepts/toi.scroll
Changed around line 15: repoStats
+ mb 1
concepts/toml.scroll
Changed around line 18: fileType text
- commits 856
+ commits 857
- newestCommit 2023
+ newestCommit 2024
+ mb 3
concepts/toontalk.scroll
Changed around line 15: repoStats
+ mb 107
concepts/topshell.scroll
Changed around line 15: repoStats
+ mb 2
concepts/tornado.scroll
Changed around line 15: fileType text
- commits 4787
- committers 472
- files 310
- newestCommit 2024
+ commits 4922
+ committers 483
+ files 311
+ newestCommit 2025
+ mb 11
concepts/tosh.scroll
Changed around line 14: repoStats
+ mb 1
concepts/touch.scroll
Changed around line 15: repoStats
+ mb 1
concepts/toy-lang.scroll
Changed around line 10: latestVersion v1.3.1
- firstCommit 2022
- commits 749
- committers 7
- files 168
- newestCommit 2023
+ firstCommit 2024
+ commits 1014
+ committers 3
+ files 115
+ newestCommit 2025
+ mb 3
concepts/tql.scroll
Changed around line 21: subsetOf particles
- commits 290
+ commits 356
- files 58
+ files 63
+ newestCommit 2024
+ mb 1
concepts/tree-annotation-operator.scroll
Changed around line 15: repoStats
+ mb 1
concepts/treesheets.scroll
Changed around line 12: writtenIn cpp c svg xml html yaml markdown bourne-shell cmake
- commits 676
- committers 40
- files 388
- newestCommit 2024
+ commits 868
+ committers 42
+ files 403
+ newestCommit 2025
+ mb 8
concepts/triton.scroll
Changed around line 14: writtenIn cpp python cmake markdown yaml restructuredtext bourne-shell c dockerf
- commits 8140
- committers 312
- files 675
- newestCommit 2024
+ commits 10180
+ committers 446
+ files 904
+ newestCommit 2025
+ mb 422
concepts/truck.scroll
Changed around line 13: repoStats
+ mb 1
concepts/truth.scroll
Changed around line 15: repoStats
+ mb 19
concepts/tsar.scroll
Changed around line 13: repoStats
+ mb 2
concepts/tsquery.scroll
Changed around line 13: repoStats
+ mb 1
concepts/tuplemarkup.scroll
Changed around line 13: repoStats
+ mb 1
concepts/twtxt.scroll
Changed around line 10: writtenIn python restructuredtext make yaml markdown css svg ini
- newestCommit 2023
- commits 295
- committers 41
+ newestCommit 2024
+ commits 300
+ committers 43
+ mb 1
concepts/txtzyme.scroll
Changed around line 16: repoStats
+ mb 5
concepts/typecastjs.scroll
Changed around line 15: repoStats
+ mb 1
concepts/typecobol.scroll
Changed around line 10: writtenIn cobol csharp xml csv markdown yaml json pascal powershell xsd
- commits 4478
- committers 53
- files 3639
- newestCommit 2024
+ commits 4593
+ committers 54
+ files 3770
+ newestCommit 2025
+ mb 63
concepts/typescript.scroll
Changed around line 32: packageRepository https://npmjs.org/
- commits 39579
- committers 981
- files 71312
- newestCommit 2024
+ commits 40300
+ committers 1007
+ files 73529
+ newestCommit 2025
+ mb 2542
concepts/u.scroll
Changed around line 18: repoStats
+ mb 1
concepts/ucg.scroll
Changed around line 19: repoStats
+ mb 2
concepts/ucl.scroll
Changed around line 16: repoStats
+ mb 4
concepts/ugbasic.scroll
Changed around line 17: demoVideo https://www.youtube.com/watch?v=Klg1njCwZhs
- commits 4037
- committers 5
- files 3260
+ commits 9673
+ committers 8
+ files 6054
+ newestCommit 2025
+ mb 33
concepts/uiua.scroll
Changed around line 16: related j
- commits 4761
- committers 83
- files 147
- newestCommit 2024
+ commits 7244
+ committers 112
+ files 205
+ newestCommit 2025
+ mb 22
concepts/ulisp.scroll
Changed around line 11: writtenIn markdown
- commits 69
+ commits 75
- files 7
- newestCommit 2023
+ files 6
+ newestCommit 2024
+ mb 1
concepts/ultralisp-pm.scroll
Changed around line 12: writtenIn lisp sql bourne-shell yaml bash restructuredtext svg markdown json doc
- commits 942
+ commits 989
- files 207
- newestCommit 2024
+ files 228
+ newestCommit 2025
+ mb 3
concepts/umka.scroll
Changed around line 12: writtenIn c umka
- commits 920
- committers 16
- files 161
+ commits 943
+ committers 20
+ files 171
+ mb 36
concepts/uno.scroll
Changed around line 14: tryItOnline https://tio.run/#uno
- commits 6031
+ commits 6037
+ mb 38
concepts/unseemly.scroll
Changed around line 15: repoStats
+ mb 2
concepts/urweb.scroll
Changed around line 15: repoStats
+ mb 54
concepts/v-golf.scroll
Changed around line 14: repoStats
+ mb 4
concepts/v.scroll
Changed around line 14: exercism https://exercism.org/tracks/v
- commits 17736
- committers 874
- files 8021
- newestCommit 2024
+ commits 19459
+ committers 923
+ files 9184
+ newestCommit 2025
+ mb 89
concepts/v8.scroll
Changed around line 16: inputLanguages javascript wasm
- newestCommit 2024
- commits 122206
- committers 1243
- files 16044
+ newestCommit 2025
+ commits 130036
+ committers 1300
+ files 17162
+ mb 1089
concepts/vale-assembly.scroll
Changed around line 17: repoStats
+ mb 65
concepts/vale.scroll
Changed around line 14: repoStats
+ mb 213
concepts/vega-editor-app.scroll
Changed around line 10: writtenIn typescript css json yaml bourne-shell markdown html diff
- commits 2272
- committers 56
- files 781
- newestCommit 2024
+ commits 2312
+ committers 60
+ files 849
+ newestCommit 2025
+ mb 214
concepts/vega.scroll
Changed around line 13: compilesTo svg
- newestCommit 2024
- commits 6748
- committers 167
- files 1874
+ newestCommit 2025
+ commits 6774
+ committers 177
+ files 1892
+ mb 101
concepts/verona.scroll
Changed around line 9: writtenIn cpp markdown cmake yaml html scss
- commits 1040
+ commits 1054
+ mb 5
concepts/veryl.scroll
Changed around line 16: fileType text
- commits 1934
- committers 13
- newestCommit 2024
- files 362
+ commits 2873
+ committers 18
+ newestCommit 2025
+ files 483
+ mb 76
concepts/video.scroll
Changed around line 20: repoStats
+ mb 3
concepts/vigil.scroll
Changed around line 13: repoStats
+ mb 1
concepts/vimwiki.scroll
Changed around line 11: writtenIn vim-script markdown bourne-shell svg yaml css dockerfile toml
- commits 1142
- committers 171
+ commits 1147
+ committers 172
+ mb 7
concepts/violent-es.scroll
Changed around line 16: repoStats
+ mb 1
concepts/virgil.scroll
Changed around line 9: writtenIn bash markdown c json assembly-language java typescript bourne-shell ja
- commits 2680
- committers 28
- files 22957
- newestCommit 2024
+ commits 3007
+ committers 42
+ files 24486
+ newestCommit 2025
+ mb 82
concepts/visdown.scroll
Changed around line 18: repoStats
+ mb 5
concepts/volt.scroll
Changed around line 14: fileType text
- commits 4062
+ commits 4072
- files 1428
- newestCommit 2022
+ files 1429
+ newestCommit 2024
+ mb 12
concepts/vsxu.scroll
Changed around line 16: repoStats
+ mb 156
concepts/vuejs.scroll
Changed around line 15: clocExtensions vue
- newestCommit 2023
- commits 6691
- committers 404
+ newestCommit 2024
+ commits 6694
+ committers 407
+ mb 34
concepts/vyxal.scroll
Changed around line 16: visualParadigm false
- commits 9013
- committers 70
- files 135
- newestCommit 2024
+ commits 10125
+ committers 76
+ files 132
+ newestCommit 2025
+ mb 69
concepts/wa.scroll
Changed around line 21: influencedBy c cpp go wasm
- newestCommit 2024
- commits 1604
- committers 13
- files 1451
+ newestCommit 2025
+ commits 1661
+ committers 21
+ files 1559
+ mb 30
concepts/wah.scroll
Changed around line 18: repoStats
+ mb 1
concepts/walt.scroll
Changed around line 19: repoStats
+ mb 20
concepts/wasm.scroll
Changed around line 21: fileType text
- commits 2580
- committers 149
- files 1736
- newestCommit 2024
+ commits 2643
+ committers 162
+ files 1810
+ newestCommit 2025
+ mb 27
concepts/wasmer.scroll
Changed around line 11: writtenIn rust wasm markdown toml svg c cpp graphql yaml bourne-shell xml python
- newestCommit 2024
- commits 19897
- committers 226
- files 2062
+ newestCommit 2025
+ commits 21939
+ committers 252
+ files 2468
+ mb 1102
concepts/wasp-lang.scroll
Changed around line 12: writtenIn typescript haskell markdown javascript json jsx sql css svg toml html
- commits 2860
- committers 89
- files 3968
- newestCommit 2024
+ commits 3423
+ committers 109
+ files 4696
+ newestCommit 2025
+ mb 645
concepts/wats.scroll
Changed around line 14: repoStats
+ mb 1
concepts/wdl.scroll
Changed around line 14: isOpenSource true
- commits 1069
- committers 65
+ commits 781
+ committers 72
- newestCommit 2024
+ newestCommit 2025
+ mb 5
concepts/web3js.scroll
Changed around line 10: writtenIn typescript markdown json javascript yaml solidity bourne-shell svg htm
- newestCommit 2024
- commits 8596
- committers 345
- files 1610
+ newestCommit 2025
+ commits 8669
+ committers 352
+ files 1649
+ mb 137
concepts/weebasic.scroll
Changed around line 10: writtenIn visual-basic rust markdown
- commits 61
+ commits 62
- newestCommit 2022
+ newestCommit 2025
+ mb 1
concepts/whack.scroll
Changed around line 13: repoStats
+ mb 2
concepts/whiley.scroll
Changed around line 17: repoStats
+ mb 48
concepts/wing.scroll
Changed around line 14: writtenIn markdown typescript json rust yaml javascript toml html css python dif
- commits 4857
- committers 111
- files 3006
- newestCommit 2024
+ commits 5302
+ committers 119
+ files 3240
+ newestCommit 2025
+ mb 164
concepts/winxed.scroll
Changed around line 14: repoStats
+ mb 6
concepts/wisp.scroll
Changed around line 18: repoStats
+ mb 4
concepts/wlambda.scroll
Changed around line 10: writtenIn rust mathematica markdown bourne-shell json toml python vim-script svg
- commits 1188
+ commits 1262
- files 88
- newestCommit 2024
+ files 91
+ newestCommit 2025
+ mb 5
concepts/woe.scroll
Changed around line 12: repoStats
+ mb 1
concepts/wonkey.scroll
Changed around line 14: repoStats
+ mb 190
concepts/workfl.scroll
Changed around line 16: repoStats
+ mb 1
concepts/worst.scroll
Changed around line 13: writtenIn rust bourne-shell toml json nix markdown
- commits 323
+ commits 342
+ mb 2
concepts/wren.scroll
Changed around line 17: fileType text
- commits 1974
- committers 132
+ commits 1975
+ committers 133
- newestCommit 2022
+ newestCommit 2025
+ mb 9
concepts/wyvern.scroll
Changed around line 9: writtenIn java javascript bash json markdown bourne-shell logos ejs python xml h
- commits 3540
+ commits 3542
- newestCommit 2022
+ newestCommit 2025
+ mb 46
concepts/x-it.scroll
Changed around line 15: repoStats
+ mb 1
concepts/xarray.scroll
Changed around line 15: writtenIn python restructuredtext yaml markdown jupyter-notebook svg css json to
- newestCommit 2024
- commits 5628
- committers 586
- files 368
+ newestCommit 2025
+ commits 5907
+ committers 607
+ files 379
+ mb 50
concepts/xgboost.scroll
Changed around line 11: writtenIn cpp python cuda scala r restructuredtext bourne-shell java markdown ya
- newestCommit 2024
- commits 7479
- committers 697
- files 1363
+ newestCommit 2025
+ commits 8053
+ committers 716
+ files 1370
+ mb 36
concepts/xl-lang.scroll
Changed around line 16: repoStats
+ mb 24
concepts/xlwings-editor.scroll
Changed around line 11: writtenIn python restructuredtext yaml visual-basic typescript html json javascr
- commits 2721
- committers 70
- files 439
- newestCommit 2024
+ commits 2840
+ committers 71
+ files 366
+ newestCommit 2025
+ mb 55
concepts/xodio.scroll
Changed around line 17: repoStats
+ mb 53
concepts/xsv-app.scroll
Changed around line 13: repoStats
+ mb 1
concepts/xtclang.scroll
Changed around line 10: writtenIn java logos gradle markdown bourne-shell kotlin xml c json lisp make ya
- commits 8714
+ commits 9062
- files 2010
- newestCommit 2024
+ files 2086
+ newestCommit 2025
+ mb 106
concepts/xtext.scroll
Changed around line 11: writtenIn java xml xtend ini html javascript gradle bourne-shell css markdown js
- commits 37645
- committers 195
- files 20034
- newestCommit 2024
+ commits 38192
+ committers 202
+ files 19789
+ newestCommit 2025
+ mb 174
concepts/xxl.scroll
Changed around line 12: repoStats
+ mb 2
concepts/y-lang.scroll
Changed around line 13: repoStats
+ mb 1
concepts/yakou-lang.scroll
Changed around line 14: repoStats
+ mb 3
concepts/yamp.scroll
Changed around line 15: repoStats
+ mb 1
concepts/yara.scroll
Changed around line 15: isOpenSource true
- commits 3358
- committers 237
+ commits 3401
+ committers 247
- newestCommit 2024
+ newestCommit 2025
+ mb 24
concepts/yasl.scroll
Changed around line 10: writtenIn c cpp logos bourne-shell markdown python yaml cmake
- commits 2202
+ commits 2268
- files 1202
- newestCommit 2024
+ files 998
+ newestCommit 2025
+ mb 4
concepts/yasnippet.scroll
Changed around line 13: isOpenSource true
- commits 1438
- committers 75
+ commits 1443
+ committers 76
- newestCommit 2024
+ newestCommit 2025
+ mb 6
concepts/yawl.scroll
Changed around line 14: isOpenSource true
- commits 2408
- committers 20
- files 1567
- newestCommit 2023
+ commits 2479
+ committers 21
+ files 1594
+ newestCommit 2025
+ mb 470
concepts/yeti.scroll
Changed around line 15: repoStats
+ mb 9
concepts/yggdrasil.scroll
Changed around line 10: writtenIn go bourne-shell markdown yaml c bash dockerfile svg xml make
- newestCommit 2024
- commits 2469
- committers 61
- files 122
+ newestCommit 2025
+ commits 2496
+ committers 63
+ files 123
+ mb 5
concepts/yii.scroll
Changed around line 14: isOpenSource true
- newestCommit 2024
- commits 20536
- committers 1608
- files 2381
+ newestCommit 2025
+ commits 20676
+ committers 1632
+ files 2397
+ mb 84
concepts/yoptascript.scroll
Changed around line 13: compilesTo javascript
- commits 586
- committers 25
+ commits 591
+ committers 26
- newestCommit 2023
+ newestCommit 2024
+ mb 5
concepts/z-expressions.scroll
Changed around line 15: repoStats
+ mb 1
concepts/z-flat.scroll
Changed around line 15: repoStats
+ mb 1
concepts/z.scroll
Changed around line 14: repoStats
+ mb 2
concepts/z2.scroll
Changed around line 13: repoStats
+ mb 1
concepts/zephir.scroll
Changed around line 14: fileType text
- commits 6144
- committers 146
- files 1454
- newestCommit 2024
+ commits 6230
+ committers 147
+ files 1440
+ newestCommit 2025
+ mb 27
concepts/zl.scroll
Changed around line 14: repoStats
+ mb 2
concepts/zlang.scroll
Changed around line 14: repoStats
+ mb 1
concepts/zolang.scroll
Changed around line 17: repoStats
+ mb 3
concepts/zot.scroll
Changed around line 13: repoStats
+ mb 1
concepts/zz.scroll
Changed around line 14: repoStats
+ mb 3
Breck Yunits
Breck Yunits
9 days ago
More git datA
concepts/bitsy.scroll
Changed around line 13: writtenIn svg javascript markdown css json xml html yaml typescript
- newestCommit 2024
- commits 1649
- committers 17
+ newestCommit 2025
+ commits 1658
+ committers 18
+ mb 178
concepts/bpkg-pm.scroll
Changed around line 18: repoStats
+ mb 1
concepts/bucklescript.scroll
Changed around line 12: writtenIn rescript javascript ocaml typescript json cpp markdown bourne-shell py
- commits 14372
- committers 421
- files 5722
- newestCommit 2024
+ commits 15052
+ committers 432
+ files 6397
+ newestCommit 2025
+ mb 1893
concepts/cali-lang.scroll
Changed around line 15: repoStats
+ mb 1
concepts/chapel.scroll
Changed around line 36: eventsPageUrl https://chapel-lang.org/events.html
- commits 100203
- committers 371
- files 68945
- newestCommit 2024
+ commits 106965
+ committers 383
+ files 71180
+ newestCommit 2025
+ mb 1052
concepts/clamp.scroll
Changed around line 14: repoStats
+ mb 1
concepts/cloc.scroll
Changed around line 12: writtenIn yaml cpp perl c java python bourne-shell pascal fortran-90 csharp java
- commits 1132
- committers 125
- files 898
- newestCommit 2024
+ commits 1203
+ committers 132
+ files 967
+ newestCommit 2025
+ mb 6
concepts/comby.scroll
Changed around line 16: repoStats
+ mb 3
concepts/egel.scroll
Changed around line 16: repoStats
+ mb 4
concepts/esoteric-reaction.scroll
Changed around line 13: repoStats
+ mb 2
concepts/flatbuffers.scroll
Changed around line 12: writtenIn typescript rust java python javascript cpp csharp swift kotlin markdow
- commits 3192
- committers 716
- files 1833
- newestCommit 2024
+ commits 3316
+ committers 737
+ files 1860
+ newestCommit 2025
+ mb 23
concepts/futurescript.scroll
Changed around line 16: repoStats
+ mb 4
concepts/g-portugol.scroll
Changed around line 18: repoStats
+ mb 1
concepts/glush.scroll
Changed around line 14: repoStats
+ mb 1
concepts/htmx.scroll
Changed around line 16: leetSheets https://htmx.org/reference/
- commits 3044
- committers 343
- files 732
- newestCommit 2024
+ commits 3470
+ committers 435
+ files 644
+ newestCommit 2025
+ mb 98
concepts/hush.scroll
Changed around line 12: writtenIn rust json bourne-shell markdown python lua toml lisp dockerfile make
- commits 298
+ commits 299
+ mb 1
concepts/hy.scroll
Changed around line 18: docs https://docs.hylang.org/en/stable/
- commits 4329
- committers 208
- files 165
- newestCommit 2024
+ commits 4400
+ committers 209
+ files 166
+ newestCommit 2025
+ mb 9
concepts/infusion-framework.scroll
Changed around line 11: writtenIn javascript html json css scss markdown yaml dockerfile ini svg
- commits 9965
- committers 77
- files 830
- newestCommit 2024
+ commits 10014
+ committers 78
+ files 834
+ newestCommit 2025
+ mb 51
concepts/jasmine.scroll
Changed around line 13: isOpenSource true
- commits 2831
- committers 363
- files 350
- newestCommit 2024
+ commits 2913
+ committers 370
+ files 363
+ newestCommit 2025
+ mb 11
concepts/kasaya.scroll
Changed around line 15: repoStats
+ mb 4
concepts/livr.scroll
Changed around line 17: repoStats
+ mb 12
concepts/mathics.scroll
Changed around line 19: repoStats
+ mb 23
concepts/mathjson.scroll
Changed around line 14: writtenIn typescript markdown json javascript bourne-shell html css bash yaml
- newestCommit 2024
- commits 899
- committers 11
- files 248
+ newestCommit 2025
+ commits 1153
+ committers 17
+ files 296
+ mb 16
concepts/mlatu.scroll
Changed around line 11: writtenIn markdown rust toml yaml
- commits 192
+ commits 194
+ mb 3
concepts/monaco.scroll
Changed around line 16: related codemirror
- newestCommit 2024
- commits 3447
- committers 352
- files 786
+ newestCommit 2025
+ commits 3529
+ committers 355
+ files 785
+ mb 146
concepts/monte.scroll
Changed around line 18: repoStats
+ mb 4
concepts/observable-plot.scroll
Changed around line 11: writtenIn svg typescript javascript csv markdown html json yaml css
- newestCommit 2024
- commits 2543
- committers 22
- files 1729
+ newestCommit 2025
+ commits 2645
+ committers 26
+ files 1863
+ mb 97
concepts/orange.scroll
Changed around line 16: repoStats
+ mb 4
concepts/pep8.scroll
Changed around line 15: repoStats
+ mb 25
concepts/pie-lang.scroll
Changed around line 17: repoStats
+ mb 1
concepts/prometheus.scroll
Changed around line 12: writtenIn go yaml typescript markdown json javascript css bourne-shell svg html
- commits 14358
- committers 1175
- files 1248
- newestCommit 2024
+ commits 16972
+ committers 1295
+ files 1409
+ newestCommit 2025
+ mb 260
concepts/qore.scroll
Changed around line 12: writtenIn cpp cmake bourne-shell make m4 yaml vim-script svg assembly-language x
- commits 13852
+ commits 14145
- files 2122
- newestCommit 2024
+ files 2146
+ newestCommit 2025
+ mb 63
concepts/quickjs.scroll
Changed around line 19: repoStats
+ mb 6
concepts/reko-decompiler.scroll
Changed around line 8: tags decompiler
+ repoStats
+ firstCommit 2007
+ newestCommit 2025
+ commits 11098
+ mb 952
+ committers 53
+ files 7028
concepts/rescript.scroll
Changed around line 17: repoStats
+ mb 1874
concepts/rhine.scroll
Changed around line 14: repoStats
+ mb 2
concepts/ruby.scroll
Changed around line 38: packageRepository https://rubygems.org/
- commits 102768
- committers 985
- files 12153
+ commits 108184
+ committers 1116
+ files 11005
+ mb 339
concepts/scryer.scroll
Changed around line 13: writtenIn prolog rust toml json markdown yaml svg lisp dockerfile bourne-shell
- newestCommit 2024
- commits 3795
- committers 49
- files 288
+ newestCommit 2025
+ commits 4101
+ committers 61
+ files 346
+ mb 11
concepts/sile.scroll
Changed around line 13: writtenIn lua yaml xml c m4 bourne-shell diff nix svg markdown make cmake json c
- commits 6310
- committers 79
- files 797
- newestCommit 2024
+ commits 6921
+ committers 84
+ files 969
+ newestCommit 2025
+ mb 58
concepts/sill.scroll
Changed around line 17: repoStats
+ mb 1
concepts/tap.scroll
Changed around line 17: repoStats
+ mb 1
concepts/vine.scroll
Changed around line 15: repoStats
+ mb 4
concepts/wart.scroll
Changed around line 14: repoStats
+ mb 7
Breck Yunits
Breck Yunits
9 days ago
More git info
concepts/11ty.scroll
Changed around line 14: writtenIn javascript markdown liquid json yaml html scss typescript
- newestCommit 2024
- commits 2771
- committers 126
- files 852
+ newestCommit 2025
+ commits 3075
+ committers 133
+ files 872
+ mb 6
concepts/blackcoffee.scroll
Changed around line 17: repoStats
+ mb 15
concepts/carp.scroll
Changed around line 13: isOpenSource true
- commits 5018
+ commits 5022
- newestCommit 2023
+ newestCommit 2024
+ mb 13
concepts/civet.scroll
Changed around line 17: influencedBy coffeescript elm livescript flow haskell perl python ruby crystal b
- newestCommit 2024
- commits 2839
- committers 25
- files 344
+ newestCommit 2025
+ commits 3713
+ committers 32
+ files 372
+ mb 8
concepts/coffeekup.scroll
Changed around line 15: repoStats
+ mb 2
concepts/conan-pm.scroll
Changed around line 13: writtenIn python markdown yaml svg xml dockerfile toml ini
- commits 8391
- committers 447
- files 1036
- newestCommit 2024
+ commits 9049
+ committers 480
+ files 1085
+ newestCommit 2025
+ mb 35
concepts/cone.scroll
Changed around line 18: repoStats
+ mb 25
concepts/cosh.scroll
Changed around line 12: writtenIn rust markdown yaml perl xml toml make json
- commits 524
+ commits 552
+ mb 2
concepts/couchdb.scroll
Changed around line 14: fileType text
- commits 17537
- committers 303
- files 1478
- newestCommit 2024
+ commits 17933
+ committers 311
+ files 1488
+ newestCommit 2025
+ mb 47
concepts/deno.scroll
Changed around line 14: related javascript typescript
- newestCommit 2024
- commits 14080
- committers 1006
- files 5301
+ newestCommit 2025
+ commits 17115
+ committers 1108
+ files 9657
+ mb 166
concepts/dplyr.scroll
Changed around line 14: leetSheets https://www.rstudio.com/wp-content/uploads/2015/02/data-wrangling-che
- newestCommit 2024
- commits 10002
- committers 313
- files 540
+ newestCommit 2025
+ commits 10039
+ committers 321
+ files 481
+ mb 66
concepts/dub-pm.scroll
Changed around line 14: writtenIn d bourne-shell json yaml markdown xml bash c dockerfile
- commits 3974
- committers 193
- files 1030
- newestCommit 2024
+ commits 4077
+ committers 196
+ files 1043
+ newestCommit 2025
+ mb 9
concepts/easybuild.scroll
Changed around line 16: fileType text
- commits 2763
+ commits 2793
+ mb 609
concepts/eco-editor.scroll
Changed around line 16: repoStats
+ mb 5
concepts/egison.scroll
Changed around line 17: repoStats
+ mb 10
concepts/elfe.scroll
Changed around line 15: repoStats
+ mb 8
concepts/emerald-lang.scroll
Changed around line 16: repoStats
+ mb 1
concepts/flatline.scroll
Changed around line 15: repoStats
+ mb 2
concepts/flix.scroll
Changed around line 12: writtenIn scala java markdown yaml toml css bourne-shell gradle javascript svg
- commits 9379
- committers 80
- files 1057
- newestCommit 2024
+ commits 10797
+ committers 89
+ files 1172
+ newestCommit 2025
+ mb 133
concepts/floscript.scroll
Changed around line 15: repoStats
+ mb 9
concepts/fold.scroll
Changed around line 16: repoStats
+ mb 1
concepts/fork-lang.scroll
Changed around line 10: writtenIn bourne-shell markdown make c json cson xml
- commits 514
+ commits 515
- newestCommit 2018
+ newestCommit 2024
+ mb 2
concepts/gfoo.scroll
Changed around line 13: repoStats
+ mb 1
concepts/grid-notation.scroll
Changed around line 12: writtenIn coffeescript markdown json bourne-shell javascript yaml
- commits 104
+ commits 105
- newestCommit 2017
+ newestCommit 2024
+ mb 1
concepts/gridstudio-editor.scroll
Changed around line 15: repoStats
+ mb 129
concepts/huginn.scroll
Changed around line 16: repoStats
+ mb 2
concepts/huwcode.scroll
Changed around line 15: repoStats
+ mb 59
concepts/json-ld.scroll
Changed around line 15: isOpenSource true
- commits 2335
- committers 48
+ commits 2348
+ committers 49
- newestCommit 2023
+ newestCommit 2024
+ mb 4
concepts/juvix.scroll
Changed around line 12: writtenIn haskell c json yaml markdown ocaml bourne-shell css make javascript do
- commits 1631
- committers 17
- files 2880
- newestCommit 2024
+ commits 1990
+ committers 18
+ files 3193
+ newestCommit 2025
+ mb 13
concepts/kalyn.scroll
Changed around line 15: repoStats
+ mb 10
concepts/kuc.scroll
Changed around line 16: repoStats
+ mb 1
concepts/minizinc.scroll
Changed around line 16: quineRelay MiniZinc
- commits 7042
- committers 61
- files 2359
- newestCommit 2024
+ commits 7205
+ committers 64
+ files 2464
+ newestCommit 2025
+ mb 32
concepts/nestedtext.scroll
Changed around line 12: writtenIn python restructuredtext yaml ini toml json make xml bourne-shell csv c
- commits 502
- committers 8
+ commits 539
+ committers 9
- newestCommit 2024
+ newestCommit 2025
+ mb 1
concepts/nim.scroll
Changed around line 30: packageRepository https://nimble.directory/
- commits 25030
- committers 1032
- files 3588
- newestCommit 2024
+ commits 25787
+ committers 1060
+ files 3836
+ newestCommit 2025
+ mb 133
concepts/nomad.scroll
Changed around line 15: repoStats
+ mb 1
concepts/nylo.scroll
Changed around line 17: repoStats
+ mb 6
concepts/onnx.scroll
Changed around line 14: isOpenSource true
- commits 3107
- committers 364
- files 6660
- newestCommit 2024
+ commits 3591
+ committers 388
+ files 7607
+ newestCommit 2025
+ mb 39
concepts/open-shading-language.scroll
Changed around line 11: writtenIn python cpp xml markdown cmake bash cuda yaml tex yacc html lex make d
- commits 4171
- committers 87
- files 3147
- newestCommit 2024
+ commits 4346
+ committers 95
+ files 3249
+ newestCommit 2025
+ mb 226
concepts/openrc-runscript.scroll
Changed around line 13: writtenIn meson c bourne-shell markdown yaml perl
- commits 4177
- committers 211
- files 321
- newestCommit 2024
+ commits 4276
+ committers 215
+ files 323
+ newestCommit 2025
+ mb 8
concepts/pomsky.scroll
Changed around line 13: writtenIn rust markdown toml javascript yaml java csharp python z-shell bash svg
- commits 414
+ commits 457
- files 546
+ files 586
+ mb 2
concepts/porffor.scroll
Changed around line 14: compilesTo wasm
- newestCommit 2024
- commits 1956
- committers 15
- files 230
+ newestCommit 2025
+ commits 2531
+ committers 17
+ files 126
+ mb 10
concepts/pov-ray-sdl.scroll
Changed around line 13: writtenIn cpp c html xml ini bourne-shell make m4 markdown pascal yaml ada assem
- commits 1029
- committers 21
+ commits 1035
+ committers 23
- newestCommit 2021
+ newestCommit 2024
+ mb 195
concepts/praat-script.scroll
Changed around line 10: lab Universiteit van Amsterdam
- commits 7914
+ commits 9013
- files 3231
+ files 3772
+ newestCommit 2025
+ mb 259
concepts/redprl.scroll
Changed around line 16: repoStats
+ mb 12
concepts/rustscript.scroll
Changed around line 14: repoStats
+ mb 1
concepts/shiv.scroll
Changed around line 14: repoStats
+ mb 2
concepts/simoji.scroll
Changed around line 20: repoStats
+ mb 3
concepts/skulpt.scroll
Changed around line 14: isOpenSource true
- commits 5721
- committers 139
- files 3219
- newestCommit 2024
+ commits 5744
+ committers 140
+ files 3221
+ newestCommit 2025
+ mb 99
concepts/snowman.scroll
Changed around line 12: related twine
- newestCommit 2024
- commits 701
+ newestCommit 2025
+ commits 768
- files 185
+ files 187
+ mb 8
concepts/tablam.scroll
Changed around line 15: repoStats
+ mb 1
concepts/tao-lang.scroll
Changed around line 15: repoStats
+ mb 2
concepts/tawa.scroll
Changed around line 13: repoStats
+ mb 1
concepts/tea-pm.scroll
Changed around line 15: isOpenSource true
- commits 1034
- committers 56
- files 126
- newestCommit 2024
+ commits 1129
+ committers 64
+ files 59
+ newestCommit 2025
+ mb 2
concepts/toki-sona.scroll
Changed around line 16: repoStats
+ mb 1
concepts/twine.scroll
Changed around line 12: writtenIn typescript markdown css json javascript svg yaml html toml
- newestCommit 2024
- commits 3042
- committers 75
- files 925
+ newestCommit 2025
+ commits 3108
+ committers 77
+ files 917
+ mb 22
concepts/unison.scroll
Changed around line 10: isOpenSource true
- commits 14701
- committers 111
- files 1405
+ commits 18590
+ committers 151
+ files 1620
+ newestCommit 2025
+ mb 150
concepts/vcpkg-pm.scroll
Changed around line 10: writtenIn json cmake diff powershell markdown yaml bourne-shell python xml bash
- newestCommit 2024
- commits 22228
- committers 2356
- files 11339
+ newestCommit 2025
+ commits 24623
+ committers 2583
+ files 12165
+ mb 104
concepts/vlc.scroll
Changed around line 11: writtenIn c cpp diff qml objective-c svg xml make lua meson bourne-shell qt m4 a
- newestCommit 2024
- commits 110460
- committers 1080
- files 5182
+ newestCommit 2025
+ commits 113745
+ committers 1088
+ files 5257
+ mb 599
concepts/wax.scroll
Changed around line 18: repoStats
+ mb 2
concepts/wu.scroll
Changed around line 14: repoStats
+ mb 2
concepts/xidoc.scroll
Changed around line 15: isOpenSource true
- commits 344
+ commits 345
- newestCommit 2024
+ newestCommit 2025
+ mb 9
concepts/xla.scroll
Changed around line 14: repoStats
+ mb 243
concepts/yang.scroll
Changed around line 16: repoStats
+ mb 157
concepts/yess.scroll
Changed around line 16: repoStats
+ mb 1
Breck Yunits
Breck Yunits
9 days ago
More git repo info
concepts/al.scroll
Changed around line 10: writtenIn perl json markdown javascript xml powershell yaml css
- commits 450
- committers 68
- files 110
+ commits 490
+ committers 74
+ files 113
+ mb 10
concepts/beef.scroll
Changed around line 15: writtenIn c cpp xml toml make bourne-shell assembly-language m4 python html cmak
- commits 4542
- committers 66
- files 3967
- newestCommit 2024
+ commits 5088
+ committers 73
+ files 4000
+ newestCommit 2025
+ mb 57
concepts/binaryen.scroll
Changed around line 11: writtenIn wasm cpp javascript python c cmake yaml markdown bourne-shell json pas
- commits 8455
- committers 190
- files 2400
- newestCommit 2024
+ commits 9060
+ committers 213
+ files 2560
+ newestCommit 2025
+ mb 149
concepts/bizubee.scroll
Changed around line 17: repoStats
+ mb 1
concepts/blazex.scroll
Changed around line 15: repoStats
+ mb 1
concepts/bruijn.scroll
Changed around line 15: compilesTo blc
- newestCommit 2024
- commits 277
+ newestCommit 2025
+ commits 316
- files 228
+ files 241
+ mb 2
concepts/ciel.scroll
Changed around line 15: repoStats
+ mb 1
concepts/codecept.scroll
Changed around line 13: isOpenSource true
- commits 2940
- committers 437
- files 879
- newestCommit 2024
+ commits 3339
+ committers 450
+ files 924
+ newestCommit 2025
+ mb 59
concepts/cryptol.scroll
Changed around line 15: tryItOnline https://tio.run/#cryptol
- commits 4608
- committers 90
- files 1780
- newestCommit 2024
+ commits 4817
+ committers 96
+ files 1905
+ newestCommit 2025
+ mb 98
concepts/cwerg.scroll
Changed around line 10: writtenIn python cpp assembly-language c markdown make wasm yaml javascript svg
- newestCommit 2024
- commits 2228
+ newestCommit 2025
+ commits 2773
- files 737
+ files 656
+ mb 27
concepts/dexvis.scroll
Changed around line 16: repoStats
+ mb 177
concepts/eff.scroll
Changed around line 10: writtenIn ocaml xml svg html markdown matlab yaml bourne-shell lisp javascript p
- commits 2572
+ commits 2577
- newestCommit 2023
+ newestCommit 2024
+ mb 16
concepts/eiffel.scroll
Changed around line 19: codeMirror eiffel
- commits 97832
+ commits 98515
- files 75980
- newestCommit 2023
+ files 77257
+ newestCommit 2024
+ mb 705
concepts/elpi.scroll
Changed around line 11: writtenIn standard-ml ocaml json markdown make restructuredtext yaml python type
- commits 2683
- committers 31
- files 521
- newestCommit 2024
+ commits 3176
+ committers 32
+ files 523
+ newestCommit 2025
+ mb 44
concepts/expresso.scroll
Changed around line 14: repoStats
+ mb 1
concepts/fpp.scroll
Changed around line 18: repoStats
+ mb 2
concepts/hashlink.scroll
Changed around line 13: isOpenSource true
- commits 1680
- committers 82
- files 647
- newestCommit 2024
+ commits 1755
+ committers 84
+ files 803
+ newestCommit 2025
+ mb 11
concepts/hexagony.scroll
Changed around line 17: repoStats
+ mb 1
concepts/hhvm.scroll
Changed around line 12: isOpenSource true
- newestCommit 2024
- commits 69581
- committers 2430
- files 92035
+ newestCommit 2025
+ commits 76389
+ committers 2733
+ files 90613
+ mb 793
concepts/hodor.scroll
Changed around line 19: repoStats
+ mb 1
concepts/httplang.scroll
Changed around line 13: repoStats
+ mb 1
concepts/information-processing-language.scroll
Changed around line 3
+ creators Allen Newell and Cliff Shaw and Herbert A. Simon
concepts/json-graph-format.scroll
Changed around line 16: repoStats
+ mb 1
concepts/kai.scroll
Changed around line 16: repoStats
+ mb 3
concepts/kaml.scroll
Changed around line 15: repoStats
+ mb 1
concepts/kubernetes.scroll
Changed around line 14: leetSheets https://cheatsheets.zip/kubernetes
- newestCommit 2024
- commits 141133
- committers 5251
- files 24065
+ newestCommit 2025
+ commits 147545
+ committers 5485
+ files 26339
+ mb 1164
concepts/lawvere.scroll
Changed around line 15: repoStats
+ mb 1
concepts/lemon-lang.scroll
Changed around line 15: repoStats
+ mb 1
concepts/ligo.scroll
Changed around line 19: related solidity pascal reason ocaml
- commits 20823
- committers 253
- files 9497
- newestCommit 2024
+ commits 21495
+ committers 260
+ files 9643
+ newestCommit 2025
+ mb 280
concepts/little-smalltalk.scroll
Changed around line 3
+ creators Timothy Budd
concepts/little.scroll
Changed around line 15: repoStats
+ mb 1
concepts/lobster.scroll
Changed around line 14: fileType text
- commits 2049
- committers 55
- files 2735
- newestCommit 2024
+ commits 2221
+ committers 59
+ files 2744
+ newestCommit 2025
+ mb 114
concepts/lsif-format.scroll
Changed around line 16: repoStats
+ mb 1
concepts/markovjunior.scroll
Changed around line 10: writtenIn xml csharp markdown yaml
- commits 31
+ commits 32
+ mb 15
concepts/mawk.scroll
Changed around line 3
+ creators Alfred Aho and Peter J. Weinberger
concepts/microarchitecture-description-language.scroll
Changed around line 20: repoStats
+ mb 1774
concepts/microblocks.scroll
Changed around line 12: writtenIn c markdown bourne-shell cpp javascript html svg json python ini xml cs
- newestCommit 2023
- commits 5389
- committers 29
- files 614
+ newestCommit 2025
+ commits 6924
+ committers 58
+ files 746
+ mb 98
concepts/minidsdb.scroll
Changed around line 14: related python sql
- commits 19830
- committers 926
- files 3111
- newestCommit 2024
+ commits 19974
+ committers 964
+ files 3400
+ newestCommit 2025
+ mb 261
concepts/ngs.scroll
Changed around line 17: fileType text
- commits 2845
+ commits 2988
+ mb 6
concepts/nilscript.scroll
Changed around line 16: repoStats
+ mb 2
concepts/nodejs.scroll
Changed around line 20: replit https://repl.it/languages/nodejs
- commits 87401
- committers 3986
- files 43380
- newestCommit 2024
+ commits 93629
+ committers 4173
+ files 43051
+ newestCommit 2025
+ mb 1260
concepts/nomnoml.scroll
Changed around line 14: writtenIn typescript javascript json css html markdown svg
- commits 388
- committers 19
- files 80
+ commits 401
+ committers 20
+ files 79
+ mb 2
concepts/opa.scroll
Changed around line 18: repoStats
+ mb 43
concepts/opencomal.scroll
Changed around line 16: repoStats
+ mb 2
concepts/owen-lang.scroll
Changed around line 15: repoStats
+ mb 1
concepts/pan.scroll
Changed around line 14: fileType text
- commits 954
- committers 26
- files 1267
- newestCommit 2022
+ commits 999
+ committers 27
+ files 1283
+ newestCommit 2025
+ mb 5
concepts/parenthetic.scroll
Changed around line 14: repoStats
+ mb 1
concepts/pegjs.scroll
Changed around line 22: repoStats
+ mb 6
concepts/pkl.scroll
Changed around line 18: repoStats
+ mb 7
concepts/pointless.scroll
Changed around line 17: repoStats
+ mb 15
concepts/prescheme.scroll
Changed around line 12: writtenIn scheme c make markdown
- commits 271
+ commits 294
- files 267
+ files 281
+ mb 3
concepts/prettier.scroll
Changed around line 13: writtenIn javascript markdown typescript yaml html css json handlebars svg scss
- newestCommit 2024
- commits 9664
- committers 766
- files 8705
+ newestCommit 2025
+ commits 9984
+ committers 787
+ files 8789
+ mb 148
concepts/r4.scroll
Changed around line 10: writtenIn assembly-language svg markdown xml lisp ini
- commits 2042
+ commits 2043
- newestCommit 2023
+ newestCommit 2025
+ mb 62
concepts/rainbow.scroll
Changed around line 16: repoStats
+ mb 2
concepts/rapira.scroll
Changed around line 19: repoStats
+ mb 1
concepts/rust.scroll
Changed around line 33: packageRepository https://crates.io/
- commits 259266
- committers 6746
- files 47502
- newestCommit 2024
+ commits 287557
+ committers 7485
+ files 52262
+ newestCommit 2025
+ mb 686
concepts/shadama.scroll
Changed around line 11: writtenIn javascript html css
- commits 359
+ commits 361
- newestCommit 2022
+ newestCommit 2024
+ mb 8
concepts/slab.scroll
Changed around line 13: compilesTo html
- newestCommit 2024
- commits 335
- committers 1
- files 216
+ newestCommit 2025
+ commits 351
+ committers 3
+ files 225
+ mb 3
concepts/smallbasic.scroll
Changed around line 12: writtenIn visual-basic c cpp tex make xml java html css gradle m4 jsx csv bourne
- commits 2613
+ commits 2624
+ mb 16
concepts/swizzle.scroll
Changed around line 13: repoStats
+ mb 1
concepts/taichi.scroll
Changed around line 12: writtenIn python cpp markdown cmake json glsl yaml cuda bourne-shell objective-c
- commits 11493
- committers 283
- files 1562
- newestCommit 2024
+ commits 11536
+ committers 288
+ files 1564
+ newestCommit 2025
+ mb 63
concepts/texti.scroll
Changed around line 17: repoStats
+ mb 1
concepts/threejs.scroll
Changed around line 10: description Javascript library for making animated 3D computer graphics in a web
- newestCommit 2024
- commits 45213
- committers 2465
- files 5327
+ newestCommit 2025
+ commits 45780
+ committers 2501
+ files 5356
+ mb 1402
concepts/titan.scroll
Changed around line 13: repoStats
+ mb 2
concepts/tridash.scroll
Changed around line 14: repoStats
+ mb 10
concepts/twig.scroll
Changed around line 18: repoStats
+ mb 1
concepts/vyper.scroll
Changed around line 11: writtenIn python restructuredtext markdown yaml make html dockerfile toml bash s
- commits 5702
- committers 266
- files 511
- newestCommit 2024
+ commits 6070
+ committers 273
+ files 557
+ newestCommit 2025
+ mb 14
concepts/wiredtiger.scroll
Changed around line 16: repoStats
+ mb 163
concepts/zenscript.scroll
Changed around line 10: writtenIn java gradle markdown
- commits 276
+ commits 277
- newestCommit 2024
+ newestCommit 2025
+ mb 1
concepts/zig.scroll
Changed around line 23: faq https://github.com/ziglang/zig/wiki/FAQ
- commits 31001
- committers 1172
- files 17759
- newestCommit 2024
+ commits 33613
+ committers 1301
+ files 17087
+ newestCommit 2025
+ mb 329
Breck Yunits
Breck Yunits
9 days ago
Start adding disk size of git repo
cli.js
Changed around line 85: class PLDBCli extends ScrollSetCLI {
- shuffled.forEach(async file => {
- if (lang && lang !== file.id) return
+
+ for (let file of shuffled) {
+ if (lang && lang !== file.id) continue
- if (!mainRepo) return
+ if (!mainRepo) continue
- //if (Disk.exists(targetFolder)) return
- if (file.repoStats_files) return
- //if (file.isFinished) return
+ //if (Disk.exists(targetFolder)) continue
+ //if (file.repoStats_files) continue
+ //if (file.isFinished) continue
Changed around line 102: class PLDBCli extends ScrollSetCLI {
- this.formatAndSave(file, particle)
+ await this.formatAndSave(file, particle)
- })
+ }
code/gitStats.js
Changed around line 60: class GitStats {
+ get mb() {
+ const command = "du -sm .git/objects | cut -f1"
+ const output = execSync(`${command}`, { encoding: "utf8", cwd: this.targetDir, maxBuffer: 100 * 1024 * 1024 })
+ return Number(output.trim())
+ }
+
+ mb: this.mb,
code/measures.parsers
Changed around line 2195: repoStatsParser
+ mbParser
+ extends abstractCountMeasureParser
+ description How many MBs in .git/objects?
concepts/adept.scroll
Changed around line 12: writtenIn c ring markdown cmake python bourne-shell yaml json
- commits 996
- committers 9
- files 538
- newestCommit 2024
+ commits 1025
+ committers 10
+ files 540
+ newestCommit 2025
+ mb 59
concepts/cito.scroll
Changed around line 13: writtenIn json markdown make csharp cpp javascript yaml xml vim-script java type
- commits 2572
- committers 12
- files 700
- newestCommit 2024
+ commits 2666
+ committers 13
+ files 708
+ newestCommit 2025
+ mb 6
concepts/contracts.coffee.scroll
Changed around line 18: repoStats
+ mb 14
concepts/flame-ir.scroll
Changed around line 16: repoStats
+ mb 114
concepts/jison-lex.scroll
Changed around line 17: repoStats
+ mb 1
concepts/json-schema.scroll
Changed around line 14: writtenIn markdown json javascript yaml xml make
- commits 2082
- committers 83
- files 47
- newestCommit 2024
+ commits 2257
+ committers 86
+ files 60
+ newestCommit 2025
+ mb 4
concepts/leo-editor.scroll
Changed around line 12: writtenIn python html javascript svg xml css markdown restructuredtext qt ini bo
- newestCommit 2024
- commits 34468
- committers 107
- files 5427
+ newestCommit 2025
+ commits 35910
+ committers 110
+ files 5340
+ mb 263
concepts/lily.scroll
Changed around line 16: fileType text
- commits 5225
+ commits 5226
- newestCommit 2021
+ newestCommit 2024
+ mb 13
concepts/netlogo.scroll
Changed around line 16: fileType text
- commits 8155
- committers 85
- files 3137
- newestCommit 2024
+ commits 9203
+ committers 88
+ files 3193
+ newestCommit 2025
+ mb 84
concepts/p.scroll
Changed around line 12: writtenIn pascal csharp java markdown bourne-shell yaml c xml python cmake json
- commits 4350
- committers 83
- files 1423
- newestCommit 2024
+ commits 4484
+ committers 89
+ files 1389
+ newestCommit 2025
+ mb 164
concepts/pug.scroll
Changed around line 18: docs https://pugjs.org/api/getting-started.html
- commits 2715
+ commits 2716
- newestCommit 2021
+ newestCommit 2024
+ mb 15
concepts/pyth.scroll
Changed around line 17: repoStats
+ mb 2
concepts/rita.scroll
Changed around line 15: repoStats
+ mb 1
concepts/statsplorer.scroll
Changed around line 17: repoStats
+ mb 11
concepts/storymatic.scroll
Changed around line 17: repoStats
+ mb 2
concepts/tibet.scroll
Changed around line 15: repoStats
+ mb 92
concepts/wenyan.scroll
Changed around line 21: repoStats
+ mb 45
Breck Yunits
Breck Yunits
11 days ago
footer.scroll
Changed around line 5: buildTxt
- stumpNoSnippet
- div
- class trueBaseThemeFooter
- a PLDB
- href BASE_URL/index.html
- class trueBaseThemeLogo
- span - Build the next great programming language
- span ·
- a Add
- href BASE_URL/edit.html?folderName=pldb.io&buffer=..%2Fcode%2FconceptPage.scroll%0A%0Aid%20%0Aname%20%0Aappeared%20%0Acreators%20%0Atags%20pl%0Awebsite%20%0Adescription%20%0A%0AgitRepo%20%0A%0Aexample%0A%20&bufferName=concepts/untitled.scroll
- span ·
- a Add Prompt
- href addPrompt.txt
- span ·
- a Issues
- href https://issues.pldb.io/
- span ·
- a About
- href BASE_URL/pages/about.html
- span ·
- a Search
- href BASE_URL/search.html
- span ·
- a Keywords
- href BASE_URL/lists/keywords.html
- span ·
- a Livestreams
- href BASE_URL/lists/live.html
- span ·
- a Labs
- href BASE_URL/lists/labs.html
- span ·
- a Resources
- href BASE_URL/lists/resources.html
- span ·
- a Acknowledgements
- href BASE_URL/pages/acknowledgements.html
+ div
+ noSnippet
+ class trueBaseThemeFooter
+ a PLDB
+ href BASE_URL/index.html
+ class trueBaseThemeLogo
+ span - Build the next great programming language
+ span ·
+ a Add
+ href BASE_URL/edit.html?folderName=pldb.io&buffer=..%2Fcode%2FconceptPage.scroll%0A%0Aid%20%0Aname%20%0Aappeared%20%0Acreators%20%0Atags%20pl%0Awebsite%20%0Adescription%20%0A%0AgitRepo%20%0A%0Aexample%0A%20&bufferName=concepts/untitled.scroll
+ span ·
+ a Add Prompt
+ href addPrompt.txt
+ span ·
+ a Issues
+ href https://issues.pldb.io/
+ span ·
+ a About
+ href BASE_URL/pages/about.html
+ span ·
+ a Search
+ href BASE_URL/search.html
+ span ·
+ a Keywords
+ href BASE_URL/lists/keywords.html
+ span ·
+ a Livestreams
+ href BASE_URL/lists/live.html
+ span ·
+ a Labs
+ href BASE_URL/lists/labs.html
+ span ·
+ a Resources
+ href BASE_URL/lists/resources.html
+ span ·
+ a Acknowledgements
+ href BASE_URL/pages/acknowledgements.html
header.scroll
Changed around line 8: emailBanner.scroll
- stumpNoSnippet
- div
- class trueBaseThemeHeader
- a PLDB
- href BASE_URL/index.html
- class trueBaseThemeLogo
- form
- style display:inline-block;
- method get
- action BASE_URL/search.html
- input
- type search
- id trueBaseThemeHeaderSearch
- name q
- placeholder Search
- autocomplete off
- a Top 1K
- href BASE_URL/lists/top1000.html
- a Features
- href BASE_URL/lists/features.html
- a Creators
- href BASE_URL/lists/creators.html
- a Events
- href BASE_URL/lists/events.html
- a Podcasts
- href BASE_URL/lists/podcasts.html
- a Books
- href BASE_URL/books/index.html
- a Extensions
- href BASE_URL/lists/extensions.html
- a Interviews
- href BASE_URL/blog/interviews.html
- a Blog
- href BASE_URL/blog/index.html
- a Explorer
- href BASE_URL/lists/explorer.html
- a CSV
- href BASE_URL/csv.html
+ div
+ noSnippet
+ class trueBaseThemeHeader
+ a PLDB
+ href BASE_URL/index.html
+ class trueBaseThemeLogo
+ form
+ style display:inline-block;
+ method get
+ action BASE_URL/search.html
+ input
+ type search
+ id trueBaseThemeHeaderSearch
+ name q
+ placeholder Search
+ autocomplete off
+ a Top 1K
+ href BASE_URL/lists/top1000.html
+ a Features
+ href BASE_URL/lists/features.html
+ a Creators
+ href BASE_URL/lists/creators.html
+ a Events
+ href BASE_URL/lists/events.html
+ a Podcasts
+ href BASE_URL/lists/podcasts.html
+ a Books
+ href BASE_URL/books/index.html
+ a Extensions
+ href BASE_URL/lists/extensions.html
+ a Interviews
+ href BASE_URL/blog/interviews.html
+ a Blog
+ href BASE_URL/blog/index.html
+ a Explorer
+ href BASE_URL/lists/explorer.html
+ a CSV
+ href BASE_URL/csv.html
package.json
Changed around line 46
- "scroll-cli": "^170.4.1",
+ "scroll-cli": "173.0.0",
Breck Yunits
Breck Yunits
12 days ago
concepts/egel.scroll
Changed around line 10: description A simple untyped eager functional language.
+ repoStats
+ firstCommit 2016
+ newestCommit 2024
+ commits 1433
+ committers 6
+ files 225
+
concepts/jill.scroll
Changed around line 6: appeared 2023
+ repoStats
+ firstCommit 2024
+ newestCommit 2025
+ commits 255
+ committers 2
+ files 113
+
concepts/microarchitecture-description-language.scroll
Changed around line 14: writtenIn cpp
+ repoStats
+ firstCommit 2001
+ newestCommit 2024
+ commits 526965
+ committers 7002
+ files 152106
concepts/netbeans-editor.scroll
Changed around line 11: lab Apache Software Foundation
- firstCommit 2019
- newestCommit 2024
- commits 4102
- committers 129
+ firstCommit 2017
+ newestCommit 2025
+ commits 12422
+ committers 362
+ files 92388
concepts/reactjs.scroll
Changed around line 7: creators Jordan Walke
+ repoStats
+ firstCommit 2013
+ newestCommit 2025
+ commits 27132
+ committers 1966
+ files 6036
+
concepts/rescript.scroll
Changed around line 11: description ReScript is a robustly typed language that compiles to efficient and
+ repoStats
+ firstCommit 2010
+ newestCommit 2025
+ commits 15058
+ committers 431
+ files 6397
concepts/yang.scroll
Changed around line 12: fileType text
- newestCommit 2024
- commits 2778
- committers 148
+ newestCommit 2025
+ commits 2839
+ committers 151
+ files 135966
Breck Yunits
Breck Yunits
14 days ago
created concepts/mdq.scroll
concepts/mdq.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id mdq
+ name mdq
+ appeared 2024
+ creators Yuval Shavit
+ standsFor Markdown Query
+ tags queryLanguage
+ description Provide an easy way to zero in on specific parts of a Markdown document.
+ related markdown
+ influencedBy jq
+
+ githubRepo https://github.com/yshavit/mdq
+
+ example
+ cat example.md | mdq '# usage | -'
Breck Yunits
Breck Yunits
15 days ago
updated concepts/neut.scroll
concepts/neut.scroll
Changed around line 1
- name neut
+ name Neut
Breck Yunits
Breck Yunits
16 days ago
concepts/vine.scroll
Changed around line 5: name Vine
- docs https://vine.dev/docs
- fileExtensions vi
+ fileExtensions vi
- githubRepo https://github.com/VineLang/vine
+ docs https://vine.dev/docs
+ repoStats
+ firstCommit 2024
+ newestCommit 2025
+ commits 143
+ committers 5
+ files 517
-
-
+
+
+ githubRepo https://github.com/VineLang/vine
Breck Yunits
Breck Yunits
16 days ago
concepts/fossil.scroll
Changed around line 1
- id fossil-scm
+ id fossil
Breck Yunits
Breck Yunits
16 days ago
created concepts/vine.scroll
concepts/vine.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id vine
+ name Vine
+ appeared 2024
+ tags pl
+ website https://vine.dev
+ docs https://vine.dev/docs
+ fileExtensions vi
+ description Vine is an experimental new programming language based on interaction nets. Vine is a multi-paradigm language, featuring seamless interop between functional and imperative patterns.
+
+ githubRepo https://github.com/VineLang/vine
+
+ discord https://discord.gg/bgUPV8KjDv
+
+ example
+ // vine/examples/hello_world.vi
+ pub fn main(&io: &IO) {
+ io.println("Hello, world!");
+ }
+
Breck Yunits
Breck Yunits
16 days ago
footer.scroll
Changed around line 14: stumpNoSnippet
- href BASE_URL/edit.html?buffer=..%2Fcode%2FconceptPage.scroll%0A%0Aid%20%0Aname%20%0Aappeared%20%0Acreators%20%0Atags%20pl%0Awebsite%20%0Adescription%20%0A%0AgitRepo%20%0A%0Aexample%0A%20&bufferName=concepts/untitled.scroll
+ href BASE_URL/edit.html?folderName=pldb.io&buffer=..%2Fcode%2FconceptPage.scroll%0A%0Aid%20%0Aname%20%0Aappeared%20%0Acreators%20%0Atags%20pl%0Awebsite%20%0Adescription%20%0A%0AgitRepo%20%0A%0Aexample%0A%20&bufferName=concepts/untitled.scroll
Breck Yunits
Breck Yunits
18 days ago
created concepts/th1.scroll
concepts/th1.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id th1
+ name TH1
+ appeared 2015
+ related tcl fossil
+ tags pl
+ website https://fossil-scm.org/home/doc/trunk/www/th1.md
+ standsFor Test Harness 1
+ description TH1 is a very small scripting language used to help generate web-page content in Fossil. TH1 began as a minimalist re-implementation of the Tcl scripting language. There was a need to test the SQLite library on Symbian phones, but at that time all of the test cases for SQLite were written in Tcl and Tcl could not be easily compiled on the SymbianOS. So TH1 was developed as a cut-down version of Tcl that would facilitate running the SQLite test scripts on SymbianOS.
+
+ reference https://fossil-scm.org/home/finfo/www/th1.md
+
+ example
+ if {$current eq "dev"} {
+ puts "hello"
+ }
+ else {
+ puts "world"
+ }
Breck Yunits
Breck Yunits
19 days ago
Deleted lamda-prolog.scroll
concepts/lamda-prolog.scroll
Changed around line 0
- ../code/conceptPage.scroll
-
- id lamda-prolog
- name λProlog
- appeared 1988
- creators Gopalan Nadathur and Dale Miller
- lab Duke University && University of Pennsylvania
- tags pl
- description λProlog is a logic programming language that extends Prolog by incorporating notions of higher-order functions, λ-terms, higher-order unification, polymorphic types, and mechanisms for building modules and secure abstract data types.
-
- reference https://www-users.cse.umn.edu/~ngopalan/papers/oldholp.pdf
- hopl https://hopl.info/showlanguage.prx?exp=4206
Breck Yunits
Breck Yunits
19 days ago
updated concepts/lambda-prolog.scroll
concepts/lambda-prolog.scroll
Changed around line 1
- name ΛProlog
+ name λProlog
+ creators Gopalan Nadathur and Dale Miller
- lab École polytechnique
+ website https://www.lix.polytechnique.fr/Labo/Dale.Miller/lProlog/
+ lab Duke University && University of Pennsylvania
+ description λProlog is a logic programming language that extends Prolog by incorporating notions of higher-order functions, λ-terms, higher-order unification, polymorphic types, and mechanisms for building modules and secure abstract data types.
- country France
+ reference https://www-users.cse.umn.edu/~ngopalan/papers/oldholp.pdf
+
+ example
+ reverse L K :- pi rev \
+ (rev nil K &
+ (pi H\ pi T\ pi S\ rev (H::T) S :- rev T (H::S)))
+ => rev L nil.
+
+ ?- reverse [1, 2, 3] L.
+
+ Success:
+ L = 3 :: 2 :: 1 :: nil
Changed around line 32: wikipedia https://en.wikipedia.org/wiki/%CE%9BProlog
+ hopl https://hopl.info/showlanguage.prx?exp=4206
+
Breck Yunits
Breck Yunits
19 days ago
Renamed concepts/star-prolog.scroll to concepts/lamda-prolog.scroll
concepts/lamda-prolog.scroll
Breck Yunits
Breck Yunits
19 days ago
updated concepts/star-prolog.scroll
concepts/star-prolog.scroll
Changed around line 1
- id star-prolog
- name *Prolog
- appeared 1989
+ id lamda-prolog
+ name λProlog
+ appeared 1988
+ creators Gopalan Nadathur and Dale Miller
+ lab Duke University && University of Pennsylvania
- lab Centrum Wiskunde & Informatica && University of Amsterdam
-
- country The Netherlands
- reference https://semanticscholar.org/paper/eb5328ea0faa0364b6892d192d506edb3b9d3d11
+ description λProlog is a logic programming language that extends Prolog by incorporating notions of higher-order functions, λ-terms, higher-order unification, polymorphic types, and mechanisms for building modules and secure abstract data types.
+ reference https://www-users.cse.umn.edu/~ngopalan/papers/oldholp.pdf
Breck Yunits
Breck Yunits
20 days ago
concepts/arch.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id arch
+ name GNU arch
+ appeared 2001
+ creators Thomas Lord
+ tags versionControlApplication
+ website https://www.gnu.org/software/gnu-arch/
+
+ wikipedia https://en.wikipedia.org/wiki/GNU_arch
concepts/bazaar.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id bazaar
+ name GNU Bazaar
+ appeared 2005
+ creators Martin Pool
+ tags versionControlApplication
+ website https://bazaar.canonical.com/
+
+ wikipedia https://en.wikipedia.org/wiki/GNU_Bazaar
concepts/dcvs.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id dcvs
+ name DCVS
+ appeared 2002
+ tags versionControlApplication
+ standsFor Distributed Concurrent Versions System
+
+ wikipedia https://en.wikipedia.org/wiki/Distributed_Concurrent_Versions_System
Breck Yunits
Breck Yunits
20 days ago
concepts/clang.scroll
Changed around line 6: appeared 2007
- country United States
- docs https://clang.llvm.org/docs/
+ writtenIn cpp
- writtenIn cpp
-
- wikipedia https://en.wikipedia.org/wiki/Clang
+ docs https://clang.llvm.org/docs/
+ country United States
+
+ wikipedia https://en.wikipedia.org/wiki/Clang
concepts/cvs.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id cvs
+ name CVS
+ appeared 1986
+ creators Dick Grune
+ tags versionControlApplication
+ website https://cvs.nongnu.org/
+ standsFor Concurrent Versions System
+
+ wikipedia https://en.wikipedia.org/wiki/Concurrent_Versions_System
concepts/jill.scroll
Changed around line 6: appeared 2023
- githubRepo https://github.com/mpatajac/jillc
-
- fn main = Output::printString("Hello, world!").
+ fn main = Output::printString("Hello, world!").
+
+ githubRepo https://github.com/mpatajac/jillc
concepts/rcs.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id rcs
+ name RCS
+ appeared 1982
+ creators Walter F. Tichy
+ tags versionControlApplication
+ website https://www.gnu.org/software/rcs/
+ standsFor Revision Control System
+ lab Purdue University
+
+ reference https://www.gnu.org/software/rcs/tichy-paper.pdf
+
+ wikipedia https://en.wikipedia.org/wiki/Revision_Control_System
concepts/sccs.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id sccs
+ name SCCS
+ appeared 1973
+ creators Marc J. Rochkind
+ tags versionControlApplication
+ standsFor Source Code Control System
+ lab Bell Labs
+
+ wikipedia https://en.wikipedia.org/wiki/Source_Code_Control_System
creators/creators.scroll
Changed around line 1904: name Sam Williams
+
+ name Walter F. Tichy
+ homepage https://ps.ipd.kit.edu/english/176_376.php
+ twitter https://x.com/wtichy
+ born 1952
+ country Germany
+ wikipedia https://en.wikipedia.org/wiki/Walter_F._Tichy
+
+ name Marc J. Rochkind
+ born 1948
+ wikipedia https://en.wikipedia.org/wiki/Marc_Rochkind
+
+ name Dick Grune
+ homepage https://dickgrune.com/index.html
+ born 1939
+ wikipedia https://en.wikipedia.org/wiki/Dick_Grune
+ country Netherlands
Breck Yunits
Breck Yunits
22 days ago
package.json
Changed around line 46
- "scroll-cli": "^170.4.0",
+ "scroll-cli": "^170.4.1",
Breck Yunits
Breck Yunits
24 days ago
created concepts/jill.scroll
concepts/jill.scroll
Changed around line 1
+ ../code/conceptPage.scroll
+
+ id jill
+ name Jill
+ appeared 2023
+ tags pl
+ description Jill is a functional programming language built for the Nand2Tetris platform, as an alternative to the original Jack high-level language.
+
+ githubRepo https://github.com/mpatajac/jillc
+
+ example
+ fn main = Output::printString("Hello, world!").
Breck Yunits
Breck Yunits
24 days ago
updated blog/2023-roadmap.scroll
blog/2023-roadmap.scroll
Changed around line 15: thinColumns 2
- image images/traffic.png
+ images/traffic.png
Breck Yunits
Breck Yunits
24 days ago
updated blog/JohnOusterhout.scroll
blog/JohnOusterhout.scroll
Changed around line 52: One interesting note on this. Historically, I think the most widely used program
- image images/JohnO.jpg
+ images/JohnO.jpg
Breck Yunits
Breck Yunits
24 days ago
updated blog/brianKernighan.scroll
blog/brianKernighan.scroll
Changed around line 45: I guess the pattern-action paradigm was also not novel but not widely used at th
- image images/brianKernighan.gif
+ images/brianKernighan.gif
Breck Yunits
Breck Yunits
24 days ago
updated blog/does-every-programming-language-have-a-central-package-repository.scroll
blog/does-every-programming-language-have-a-central-package-repository.scroll
Changed around line 52: This surprised me. The median age of a language with a CR is 24 (1995). Of the t
- image images/packages-repos.png
+ images/packages-repos.png
Breck Yunits
Breck Yunits
24 days ago
updated blog/does-every-programming-language-support-line-comments.scroll
blog/does-every-programming-language-support-line-comments.scroll
Changed around line 6: title Does every programming language have line comments?
- image line-comments.png
+ line-comments.png
Breck Yunits
Breck Yunits
24 days ago
updated blog/douglasCrockford.scroll
blog/douglasCrockford.scroll
Changed around line 66: Definitely go for it. It's definitely going to make you smarter. Understand the
- image images/dc.jpg
+ images/dc.jpg
Breck Yunits
Breck Yunits
24 days ago
updated blog/foundationScore.scroll
blog/foundationScore.scroll
Changed around line 23: endColumns
- image foundationScore.png
+ foundationScore.png
Breck Yunits
Breck Yunits
24 days ago
updated blog/how-many-major-global-programming-competitions-are-there.scroll
blog/how-many-major-global-programming-competitions-are-there.scroll
Changed around line 26: I started my quest by watching a great interview with a competitive programmer.
- image images/hostCountries.png
+ images/hostCountries.png
Breck Yunits
Breck Yunits
24 days ago
updated blog/josefPospisilInterview.scroll
blog/josefPospisilInterview.scroll
Changed around line 38: Josef Pospíšil (Pepe) is a programming enthusiast, first with Basic in 1986, t
- image images/pospisil.jpeg
+ images/pospisil.jpeg
Breck Yunits
Breck Yunits
24 days ago
updated blog/kartik.scroll
blog/kartik.scroll
Changed around line 57: So yes, breakage will be a little more visible where it's normally happening in
- image images/kartikAgaram.jpg
+ images/kartikAgaram.jpg
Breck Yunits
Breck Yunits
24 days ago
updated blog/leetSheets.scroll
blog/leetSheets.scroll
Changed around line 20: A Leet Sheet is a single page densely packed with intelligent information about
- image ggplot2.jpg
+ ggplot2.jpg
Changed around line 29: image ggplot2.jpg
- image leetSheetButton.png
+ leetSheetButton.png
Breck Yunits
Breck Yunits
24 days ago
updated blog/mikecowlishaw-interview.scroll
blog/mikecowlishaw-interview.scroll
Changed around line 34: As for what I'd change in Rexx: there are some limitations because of the slowne
- image images/cowlishaw.jpg
+ images/cowlishaw.jpg
Breck Yunits
Breck Yunits
24 days ago
updated blog/niklausWirth.scroll
blog/niklausWirth.scroll
Changed around line 35: Niklaus Wirth(🙏🏽) has designed programming languages all over the world th
- image images/wirth.jpeg
+ images/wirth.jpeg
Breck Yunits
Breck Yunits
24 days ago
updated blog/number-of-programming-languages.scroll
blog/number-of-programming-languages.scroll
Changed around line 11: wideColumns 1
- image images/languageTrends.svg
+ images/languageTrends.svg
Breck Yunits
Breck Yunits
24 days ago
updated blog/originCountries11-3-2022.scroll
blog/originCountries11-3-2022.scroll
Changed around line 11: wideColumns 1
- image images/originCountries11-3-2022.svg
+ images/originCountries11-3-2022.svg
Breck Yunits
Breck Yunits
24 days ago
updated blog/scottFalhmanInterview.scroll
blog/scottFalhmanInterview.scroll
Changed around line 61: So, in the mid-1990s, I decided that I was not longer going to put effort into b
- image images/scottFahlman.jpg
+ images/scottFahlman.jpg
Breck Yunits
Breck Yunits
24 days ago
updated blog/stevenDrucker.scroll
blog/stevenDrucker.scroll
Changed around line 82: I am driven by "oh my god that's going to fundamentally change the way I do thin
- image images/stevenDrucker.jpg
+ images/stevenDrucker.jpg
Breck Yunits
Breck Yunits
24 days ago
updated blog/stevenDrucker.scroll
blog/stevenDrucker.scroll
Changed around line 11: Steven Drucker's SandDance (⌨️) is both twenty years in the future and timel
- image images/sanddance.gif
+ images/sanddance.gif
Breck Yunits
Breck Yunits
24 days ago
updated blog/what-letter-should-your-language-start-with.scroll
blog/what-letter-should-your-language-start-with.scroll
Changed around line 6: title What letters do programming languages start with?
- * As the chart below shows, the number of programming languages beginning with a certain letter varies as much as 10x by letter.
+ As the chart below shows, the number of programming languages beginning with a certain letter varies as much as 10x by letter.
- image images/firstLetter.png
+ images/firstLetter.png
- * Below is the same list, sorted by popularity.
+ Below is the same list, sorted by popularity.
- image images/firstLetter-sorted.png
+ images/firstLetter-sorted.png
- * A curious observation: why are A and C both ~3x more popular than B?
+ A curious observation: why are A and C both ~3x more popular than B?
- * Data used for these charts:
+ Data used for these charts:
Breck Yunits
Breck Yunits
27 days ago
cli.js
Changed around line 5: const path = require("path")
- const { ScrollFile, ScrollFileSystem, ScrollCli } = require("scroll-cli")
Changed around line 116: class PLDBCli extends ScrollSetCLI {
- async formatCommand(lang) {
- // Todo: figuring out best repo orgnization for crawlers.
- // Note: this currently assumes you have crawlers project installed separateely.
- if (!lang) return
- const file = this.concepts.filter(file => lang === file.id)[0]
- if (file) this.formatAndSave(file)
- }
-
- async testCommand(lang) {
- if (!lang) return ""
- const file = new ScrollFile(undefined, path.join(this.conceptsFolder, lang + ".scroll"), new ScrollFileSystem())
- const errors = file.scrollProgram.getAllErrors().map(obj => obj.toObject())
- console.log(errors.length + " errors")
- if (errors.length) console.log(errors)
- }
-
- async buildCommand(lang) {
- if (!lang) return ""
- const sfs = new ScrollFileSystem()
- const file = new ScrollFile(undefined, path.join(this.conceptsFolder, lang + ".scroll"), sfs)
- new ScrollCli().buildFiles(sfs, [file], this.conceptsFolder)
- }
-
package.json
Changed around line 46
- "scroll-cli": "^170.1.0",
- "scrollsdk": "^101.1.1",
+ "scroll-cli": "^170.4.0",
+ "scrollsdk": "^101.2.1",
Breck Yunits
Breck Yunits
28 days ago
pages/acknowledgements.scroll
Changed around line 24: datatable contributors.json
- ../measures.json
+ ../measures.csv
Breck Yunits
Breck Yunits
1 month ago
updated concepts/perl.scroll
concepts/perl.scroll
Changed around line 76: leachim6 Perl
-
-
Breck Yunits
Breck Yunits
1 month ago
updated concepts/perl.scroll
concepts/perl.scroll
Changed around line 78: leachim6 Perl
+
Breck Yunits
Breck Yunits
1 month ago
updated concepts/cuda.scroll
concepts/cuda.scroll
Changed around line 11: download https://developer.nvidia.com/cuda-downloads
+ compilesTo ptx
Breck Yunits
Breck Yunits
1 month ago
updated concepts/roc.scroll
concepts/roc.scroll
Changed around line 18: repoStats
+ example
+ credits = List.map(songs, |song|
+ "Performed by ${song.artist}"
+ )
+
Changed around line 31: githubRepo https://github.com/roc-lang/roc
-
- example
- credits = List.map(songs, |song|
- "Performed by ${song.artist}"
- )
Breck Yunits
Breck Yunits
1 month ago
updated concepts/roc.scroll
concepts/roc.scroll
Changed around line 26: githubRepo https://github.com/roc-lang/roc
+
+ example
+ credits = List.map(songs, |song|
+ "Performed by ${song.artist}"
+ )
Breck Yunits
Breck Yunits
1 month ago
start removing computer.js
Computer.js
Changed around line 1889: class Tables {
-
- get acknowledgements() {
- const sources = this.measures.map(col => col.Source).filter(i => i)
- let writtenIn = [
- "javascript",
- "nodejs",
- "html",
- "css",
- "particles",
- "scroll",
- "parsers",
- "git",
- "python",
- "bash",
- "markdown",
- "json",
- "typescript",
- "png",
- "svg",
- "explorer",
- "gitignore"
- ].map(id => this.getConceptPage(id).parsed)
-
- const npmPackages = Object.keys({
- ...require("./package.json").devDependencies
- })
- npmPackages.sort()
-
- return {
- WRITTEN_IN_TABLE: lodash
- .sortBy(writtenIn, "rank")
- .map(file => `- ${file.id}\n link ../concepts/${file.id}.html`)
- .join("\n"),
- PACKAGES_TABLE: npmPackages.map(s => `- ${s}\n https://www.npmjs.com/package/${s}`).join("\n"),
- SOURCES_TABLE: sources.map(s => `- ${s}\n https://${s}`).join("\n")
- }
- }
package.json
Changed around line 46
- "scroll-cli": "^170.0.0",
+ "scroll-cli": "^170.1.0",
pages/acknowledgements.scroll
Changed around line 1
- replaceNodejs
- const {Tables} = require("../Computer.js")
- module.exports = Tables.acknowledgements
Changed around line 24: datatable contributors.json
- SOURCES_TABLE
+ ../measures.json
+ where Source notEmpty
+ compose links
  • {Source}
  • + printColumn links
    - PACKAGES_TABLE
    + ../package.json
    + path devDependencies
    + compose links
  • {key}
  • + printColumn links
    - WRITTEN_IN_TABLE
    + ../pldb.json
    + where id oneOf javascript nodejs html css particles scroll parsers git python bash markdown json typescript png svg explorer gitignore
    + compose links
  • {id}
  • + printColumn links
    Breck Yunits
    Breck Yunits
    1 month ago
    blog/age.tsv
    Changed around line 1
    + id name pldbScore rank appeared tags creators ageAtCreation foundationScore numberOfUsersEstimate numberOfJobsEstimate inboundLinksCount measurements
    + javascript JavaScript 24427 1 1995 pl Brendan Eich 34 455 5962666 63993 499 140
    + python Python 24408 2 1991 pl Guido van Rossum 35 361 2952597 46976 376 116
    + c C 24406 3 1972 pl Dennis Ritchie 31 359 3793768 59919 390 95
    + java Java 24395 4 1995 pl James Gosling 40 124 5581347 85206 133 105
    + cpp C++ 24385 5 1985 pl Bjarne Stroustrup 35 260 4128238 61098 273 76
    + html HTML 24373 6 1991 textMarkup Tim Berners-Lee 36 436 5570873 69531 440 50
    + css CSS 24344 7 1996 stylesheetLanguage Håkon Wium Lie 31 359 2881846 45617 361 46
    + ruby Ruby 24334 8 1995 pl Yukihiro Matsumoto 30 84 394798 11438 87 104
    + perl Perl 24333 9 1987 pl Larry Wall 33 98 491984 13482 100 79
    + php PHP 24331 10 1995 pl Rasmus Lerdorf 27 54 2357682 30349 57 99
    + go Go 24319 11 2009 pl Rob Pike and Ken Thompson and Robert Griesemer 53 71 687156 6403 73 94
    + xml XML 24312 12 1996 dataNotation Tim Bray and Jean Paoli and C. M. Sperberg-McQueen and Eve Maler and François Yergeau and John W. Cowan 41 353 1917452 42277 361 40
    + json JSON 24309 13 2001 dataNotation Douglas Crockford 46 520 355741 9228 539 44
    + typescript TypeScript 24304 14 2012 pl Anders Hejlsberg 52 129 217940 1542 137 82
    + sql SQL 24300 15 1974 queryLanguage Donald D. Chamberlin and Raymond F. Boyce 30 40 7179119 219617 49 49
    + csharp C# 24295 16 2000 pl Anders Hejlsberg 40 56 217261 19747 59 79
    + r R 24284 17 1993 pl Ross Ihaka and Robert Gentleman 39 30 1075613 14173 36 75
    + bash Bash 24274 18 1989 pl Brian Fox 30 200 61747 4774 202 58
    + powershell PowerShell 24271 19 2006 pl Jeffrey Snover 44 61 208708 19576 62 53
    + swift Swift 24260 20 2014 pl Chris Lattner 36 27 364099 3754 29 84
    + rust Rust 24257 21 2010 pl Graydon Hoare 33 89 308939 141 95 80
    + lua Lua 24237 22 1993 pl Roberto Ierusalimschy 33 59 64497 1106 67 81
    + scala Scala 24237 23 2004 pl Martin Odersky 46 26 139471 4525 26 84
    + matlab MATLAB 24219 24 1984 pl Cleve Moler 45 12 2661579 32228 13 57
    + haskell Haskell 24217 25 1990 pl Paul Hudak and John Hughes 38 76 37628 495 82 81
    + kotlin Kotlin 24201 26 2011 pl Andrey Breslav 27 17 131287 5276 17 83
    + clojure Clojure 24157 27 2007 pl Rich Hickey 48 20 59464 469 20 77
    + lisp Lisp 24109 29 1958 pl John McCarthy 31 120 61481 303 125 33
    + objective-c Objective-C 24103 30 1984 pl Brad Cox 40 44 12380 4276 47 64
    + coffeescript CoffeeScript 24102 31 2009 pl Jeremy Ashkenas 28 26 23320 216 27 65
    + julia Julia 24096 32 2012 pl Jeff Bezanson and Alan Edelman and Stefan Karpinski and Viral B. Shah 32 10 83769 85 10 84
    + sas SAS 24087 33 1976 pl Anthony James Barr 36 7 361103 4682 9 42
    + erlang Erlang 24079 34 1986 pl Joe Armstrong and Robert Virding and Mike Williams 36 13 27148 308 13 69
    + prolog Prolog 24071 35 1972 pl Alain Colmerauer 31 8 51482 446 13 56
    + mathematica Mathematica 24053 36 1988 pl Stephen Wolfram 29 6 148741 1553 8 46
    + dart Dart 24038 38 2011 pl Lars Bak 46 8 38325 208 8 68
    + pascal Pascal 24003 42 1970 pl Niklaus Wirth 36 46 7708 102 52 61
    + ada Ada 23996 44 1980 pl Jean Ichbiah 40 9 12116 2184 12 66
    + fortran Fortran 23964 46 1957 pl John Backus 33 0 165151 1931 5 61
    + markdown Markdown 23961 47 2004 textMarkup John Gruber and Aaron Swartz 31 970 12503 0 980 31
    + racket Racket 23948 49 1994 pl Matthias Felleisen and Matthew Flatt and Robert Bruce Findler and Shriram Krishnamurthi 36 21 7353 48 24 56
    + toml TOML 23944 50 2013 dataNotation Tom Preston-Werner 34 175 20055 0 179 29
    + mysql MySQL 23914 54 1995 queryLanguage David Axmark and Michael Widenius 33 0 2608362 47466 1 48
    + d D 23910 55 2001 pl Walter Bright and Andrei Alexandrescu 44 22 6311 0 23 64
    + scheme Scheme 23886 57 1975 pl Guy Steele and Gerald Jay Sussman 21 31 3796 1174 39 57
    + groovy Groovy 23856 61 2003 pl James Strachan 34 13 6056 0 13 67
    + awk awk 23837 62 1977 pl Alfred Aho and Peter J. Weinberger and Brian Kernighan 36 36 4680 7 37 44
    + tex Tex 23835 63 1978 pl Donald Knuth 40 102 4276 3 107 38
    + ocaml OCaml 23816 65 1996 pl Xavier Leroy 28 48 3341 0 51 66
    + coq Coq 23815 66 1989 pl Thierry Coquand 28 8 10452 0 8 39
    + f-sharp F# 23810 67 2005 pl Don Syme 40 17 4316 0 17 74
    + spss SPSS 23808 68 1968 pl Norman H. Nie and C. Hadlai Hull and Dale H. Bent 25 0 965674 9587 2 30
    + smalltalk Smalltalk 23764 71 1972 pl Alan Kay and Dan Ingalls and Adele Goldberg 32 10 5400 0 10 46
    + haml HAML 23714 77 2006 template Hampton Lintorn-Catlin 24 5 6547 0 9 36
    + nodejs Node.js 23683 80 2009 pl Ryan Dahl 29 0 378129 6864 0 39
    + forth Forth 23667 83 1970 pl Charles H. Moore 32 10 3230 0 12 44
    + liquid Liquid 23666 84 2008 template Tobias Lütke 28 4 13801 325 4 27
    + deno Deno 23623 90 2018 compiler Ryan Dahl 38 0 107126 0 1 30
    + yacc Yacc 23622 91 1975 grammarLanguage compiler Stephen C. Johnson 31 58 3087 17 59 28
    + apl APL 23622 92 1964 pl Kenneth E. Iverson 44 4 3670 0 9 40
    + arm ARM 23605 94 1985 assembly Sophie Wilson and Steve Furber 28 0 123423 7695 1 25
    + latex LaTeX 23553 97 1985 textMarkup Leslie Lamport 44 0 7721 0 7 29
    + j J 23535 98 1990 pl Kenneth E. Iverson and Roger Hui 70 0 3790 0 4 46
    + sqlite SQLite 23491 107 2000 queryLanguage Dwayne Richard Hipp 39 0 5610 561 1 35
    + antlr ANTLR 23483 108 1992 grammarLanguage Terence Parr 28 0 3048 30 6 38
    + delphi Delphi 23448 113 1995 pl Anders Hejlsberg 35 0 7084 181 0 46
    + jquery JQuery 23429 114 2006 library John Resig 22 0 1673925 24780 0 23
    + sed sed 23429 115 1974 pl Lee E. McMahon 43 19 1865 0 19 29
    + v V 23401 122 2019 pl Alexander Medvednikov 26 0 37480 0 0 28
    + tcl Tcl 23397 123 1988 pl John Ousterhout 34 0 3106 0 1 47
    + verilog Verilog 23395 124 1984 hardwareDescriptionLanguage Phil Moorby and Prabhu Goel 31 0 5176 246 0 50
    + sass Sass 23372 130 2006 stylesheetLanguage Hampton Lintorn-Catlin 24 2 3241 0 2 30
    + actionscript ActionScript 23366 131 1998 pl Gary Grossman 36 5 1630 88 5 35
    + basic BASIC 23365 133 1964 pl John G. Kemeny and Thomas E. Kurtz 38 0 7025 0 0 38
    + http HTTP 23343 141 1989 protocol Tim Berners-Lee 34 0 33780 771996 0 22
    + postscript PostScript 23318 147 1982 textMarkup John Warnock and Chuck Geschke and Doug Brotz and Ed Taft and Bill Paxton 42 0 2585 0 1 39
    + common-lisp Common Lisp 23269 156 1984 pl Scott Fahlman and Richard P. Gabriel and David A. Moon and Kent Pitman and Guy Steele and Dan Weinreb 36 0 1891 24 1 45
    + coldfusion ColdFusion 23260 157 1995 pl Joseph J. Allaire 26 3 1646 0 4 32
    + eiffel Eiffel 23239 163 1986 pl Bertrand Meyer 36 0 1690 0 1 52
    + ml ML 23185 178 1973 pl Robin Milner 39 0 2725 6 1 27
    + lex Lex 23170 186 1975 grammarLanguage Mike Lesk and Eric Schmidt 30 58 1110 0 58 24
    + m4 M4 23144 196 1977 pl Brian Kernighan and Dennis Ritchie 35 65 715 0 65 29
    + bourne-shell Bourne shell 23121 205 1977 pl Stephen Bourne 33 532 1370 0 532 19
    + mlir mlir 23065 220 2019 ir Chris Lattner 41 0 2551 0 1 24
    + literate-coffeescript Literate CoffeeScript 23054 225 2013 pl Jeremy Ashkenas 32 0 22814 0 0 19
    + pandas Pandas 23048 227 2008 library Wes McKinney 23 0 5153 341 0 22
    + matplotlib Matplotlib 23035 231 2003 dataVis library John D. Hunter 35 0 37826 0 0 18
    + flex FLEX 23033 232 1987 grammarLanguage Vern Paxson 18 0 4484 0 0 24
    + scala-js Scala.js 23022 234 2013 pl Martin Odersky 55 0 5785 0 0 22
    + semver Semantic Versioning 23015 237 2011 schema Tom Preston-Werner 32 0 8425 0 0 20
    + emacs-lisp Emacs Lisp 23005 242 1985 pl Richard Stallman 32 0 1645 0 0 36
    + wolfram Wolfram Language 22990 246 1988 pl Stephen Wolfram 29 0 1626 0 0 35
    + ampl AMPL 22945 261 1985 pl Robert Fourer and David Gay and Brian Kernighan 36 0 766 3 2 38
    + jekyll Jekyll 22932 266 2008 application Tom Preston-Werner 29 0 76013 0 1 15
    + zuo Zuo 22912 277 2022 pl Matthew Flatt 55 0 6265 0 0 19
    + modula-2 Modula-2 22910 278 1978 pl Niklaus Wirth 44 0 655 0 2 41
    + numpy NumPy 22904 281 1995 library Travis Oliphant 24 0 2156 0 0 25
    + v8 v8 22894 286 2008 vm Lars Bak 43 0 31973 0 1 15
    + rexx Rexx 22894 288 1979 pl Mike Cowlishaw 31 5 435 40 5 39
    + mojo Mojo 22885 292 2022 pl Chris Lattner 44 1 1767 0 1 21
    + oberon Oberon 22871 297 1986 pl Niklaus Wirth 52 0 810 0 1 34
    + soap SOAP 22854 308 1998 xmlFormat Dave Winer and Don Box and Bob Atkinson and Mohsen Al-Ghosein 43 0 10535 7493 0 16
    + scipy SciPy 22841 312 2001 library Travis Oliphant and Pearu Peterson and Eric Jones 30 0 25598 0 0 16
    + simula Simula 22840 314 1965 pl Ole-Johan Dahl 34 0 1110 0 0 34
    + algol-60 ALGOL 60 22831 322 1960 pl John Backus and Friedrich L. Bauer and Julien Green and Charles Katz and John McCarthy and Peter Naur and Alan Perlis and Heinz Rutishauser and Klaus Samelson and Adriaan van Wijngaarden and Bernard Vauquois and Joseph Henry Wegstein and Michael Woodger 36 0 1260 0 2 22
    + scikit-learn Scikit-learn 22786 337 2007 library David Cournapeau 27 0 125147 0 0 15
    + mime MIME 22780 341 1991 textDataFormat Nathaniel Borenstein and Ned Freed 34 0 4380 1 0 18
    + bcpl BCPL 22757 348 1966 pl Martin Richards 26 0 1050 0 0 29
    + mochajs mochajs 22738 353 2011 library TJ Holowaychuk and Guillermo Rauch 23 0 30892 0 0 15
    + k K 22723 357 1993 pl Arthur Whitney 36 0 585 0 2 28
    + ebnf EBNF 22703 362 1977 grammarLanguage Niklaus Wirth 43 0 1490 0 1 19
    + tla TLA 22665 378 1999 pl Leslie Lamport 58 0 1055 0 0 25
    + b B 22655 384 1969 pl Ken Thompson and Dennis Ritchie 26 0 1380 0 0 22
    + scss SCSS 22648 386 2006 stylesheetLanguage Hampton Lintorn-Catlin 24 31 201 0 31 35
    + rebol REBOL 22643 389 1997 pl Carl Sassenrath 40 0 326 0 3 45
    + self Self 22617 405 1987 pl David Ungar 32 0 461 0 1 30
    + q Q 22569 425 2003 pl Arthur Whitney 46 0 765 0 0 26
    + scroll Scroll 22554 438 2019 textMarkup commandLineApp dataNotation dataValidationLanguage wikiMarkup Breck Yunits 35 0 380 0 2 29
    + arc Arc 22542 444 2001 pl Paul Graham and Robert Morris 37 0 431 0 1 28
    + grammar Grammar 22527 456 2017 grammarLanguage compiler Breck Yunits 33 1 420 0 4 24
    + bnf BNF 22519 460 1956 grammarLanguage John Backus and Peter Naur 32 0 2460 0 1 15
    + url URL 22517 462 1994 schema Tim Berners-Lee 39 0 17850 0 1 13
    + stylus Stylus 22494 470 2010 stylesheetLanguage TJ Holowaychuk 22 4 391 0 4 22
    + inform Inform 22484 475 1993 pl Graham Nelson 25 0 586 0 0 26
    + scrollnotation Scroll Notation 22470 484 2017 dataNotation Breck Yunits 33 0 420 0 6 22
    + tidyverse tidyverse 22467 486 2016 dataFlow library Hadley Wickham 37 0 2071 0 1 15
    + rfc RFC 22454 496 1969 notation Steve Crocker 25 0 3520 0 0 15
    + emacs-editor Emacs 22448 498 1976 editor Guy Steele and Dave Moon 22 0 64338 0 0 13
    + e E 22438 504 1997 pl Mark S. Miller 39 0 406 0 0 33
    + icon Icon 22437 505 1977 pl Ralph Griswold 43 0 271 0 1 36
    + livescript LiveScript 22407 521 2011 pl Jeremy Ashkenas and Satoshi Murakami and George Zahariev 30 0 395 0 0 32
    + streem Streem 22385 531 2014 pl Yukihiro Matsumoto 49 0 5417 0 0 14
    + dlvm dlvm 22362 546 2017 ir Chris Lattner 39 0 771 0 0 20
    + limbo Limbo 22341 556 1995 pl Rob Pike 39 0 386 0 0 28
    + occam Occam 22137 683 1983 pl David May 32 0 325 0 0 24
    + luna-1 Luna 22080 708 2011 pl TJ Holowaychuk 23 0 2898 0 0 13
    + clu CLU 22009 739 1975 pl Barbara Liskov 36 0 331 0 0 20
    + lpc LPC 21977 757 1995 pl Lars Pensjö 32 0 256 0 0 22
    + oberon-2 Oberon-2 21874 812 1991 pl Niklaus Wirth and Hanspeter Mössenböck 57 0 165 0 1 22
    + bbc-basic BBC BASIC 21822 834 1981 pl Sophie Wilson 24 0 335 0 0 17
    + homa Homa 21712 904 2018 protocol John Ousterhout 64 0 176 0 0 21
    + sather Sather 21708 906 1990 pl Steve Omohundro 31 0 126 0 0 25
    + roff ROFF 21703 909 1971 textMarkup Joe Ossanna and Ken Thompson 43 0 220 0 1 16
    + aplus A+ 21697 912 1988 pl Arthur Whitney 31 0 306 0 0 16
    + ibm-gml GML 21560 982 1969 xmlFormat Charles Goldfarb and Edward Mosher and Raymond Lorie 30 0 135 0 0 20
    + cweb CWEB 21547 988 1987 textMarkup Donald Knuth 49 0 176 0 1 16
    + modula Modula 21403 1055 1975 pl Niklaus Wirth 41 0 205 0 0 15
    + femtolisp femtolisp 21392 1061 2008 pl Jeff Bezanson 28 0 1734 0 0 11
    + ohayo Ohayo 21391 1063 2017 pl dataFlow dataVis Breck Yunits 33 0 121 0 0 18
    + notation3 Notation3 21372 1070 1998 dataNotation Tim Berners-Lee 43 0 390 0 0 13
    + fp FP 21313 1100 1977 pl John Backus 53 0 195 0 0 15
    + slideshow Slideshow 21218 1163 2000 textMarkup Matthew Flatt and Robert Bruce Findler 33 0 118 0 0 16
    + netrexx NetRexx 21207 1173 1996 pl Mike Cowlishaw 48 0 65 0 0 21
    + json-url json->url 21178 1184 2017 jsonFormat Tim Bray 62 0 66 0 0 20
    + flow-matic FLOW-MATIC 21147 1197 1955 pl Grace Hopper 49 0 425 0 0 12
    + raku Raku 21124 1210 2019 pl Larry Wall 65 7 16 0 7 26
    + plankalkul Plankalkul 21098 1222 1948 pl Konrad Zuse 38 0 790 0 0 11
    + speedcoding Speedcoding 21035 1259 1953 pl John Backus 29 0 335 0 0 12
    + scribble scribble 20932 1302 1997 pl Matthew Flatt 30 0 492 0 0 11
    + dplyr dplyr 20916 1310 2012 dataScience library Hadley Wickham 33 0 315 0 2 11
    + recfiles Recfiles 20913 1312 2009 dataNotation Jose E. Marchesi 29 0 39 0 0 21
    + wenyan 文言文編程語言 20904 1316 2019 pl Lingdong Huang 22 0 69 0 0 16
    + poke GNU Poke 20873 1336 2017 pl editor Jose E. Marchesi 37 0 55 0 0 17
    + pl-0 PL/0 20851 1343 1976 pl Niklaus Wirth 42 0 220 0 0 12
    + fl FL 20817 1362 1989 pl John Backus 65 0 90 0 0 14
    + bel Bel 20733 1400 2019 pl Paul Graham 55 0 1 0 1 27
    + etoys Etoys 20691 1421 1996 pl Alan Kay 56 0 175 0 0 12
    + wax Wax 20571 1487 2020 pl Lingdong Huang 23 0 10 0 0 24
    + dartmouth-basic Dartmouth BASIC 20570 1488 1964 pl John G. Kemeny and Thomas E. Kurtz 38 0 230 0 0 11
    + utf-8 UTF-8 20538 1501 1993 characterEncoding Rob Pike and Ken Thompson 37 0 13435 0 0 9
    + gcc GCC 20447 1546 1987 compiler Richard Stallman 34 0 21 0 0 16
    + tql TQL 20393 1579 2023 queryLanguage Breck Yunits 39 0 11 0 0 19
    + vega Vega 20378 1592 2013 dataVis library Jeffrey Heer 34 0 169 0 0 11
    + lil Little Implementation Language 20369 1599 1974 pl P. J. Plauger 30 0 41 0 0 14
    + note Note 20334 1627 2012 dataNotation Breck Yunits 28 0 13 0 1 16
    + arrow-format Apache Arrow 20331 1631 2016 binaryDataFormat Wes McKinney 31 0 22 0 0 15
    + up-arrow-notation Up-arrow notation 20300 1651 1976 notation Donald Knuth 38 0 1765 0 1 9
    + colorforth ColorForth 20214 1703 1992 pl Charles H. Moore 54 0 86 0 1 11
    + space Space 20182 1722 2013 dataNotation Breck Yunits 29 0 13 0 0 16
    + pl360 PL360 20135 1744 1967 pl Niklaus Wirth 33 0 60 0 0 12
    + ivy ivy 20120 1746 2014 pl Rob Pike 58 0 1633 0 0 9
    + ibis Ibis 20029 1802 2015 library Wes McKinney 30 0 209 0 0 10
    + spidermonkey SpiderMonkey 20003 1811 1996 vm Brendan Eich 35 0 21 0 0 13
    + plot-lang Plot 19948 1844 2006 pl David A. Moon 50 0 1 0 0 15
    + corman-common-lisp Corman Common Lisp 19852 1890 1995 pl Scott Fahlman and Richard P. Gabriel and David A. Moon and Kent Pitman and Guy Steele and Dan Weinreb and Roger Corman 47 0 61 0 0 11
    + spice-lisp Spice Lisp 19792 1938 1980 pl Scott Fahlman 32 0 55 0 0 11
    + lisp-machine-lisp Lisp Machine Lisp 19753 1956 1974 pl David A. Moon and Richard Stallman and Daniel Weinreb 18 0 125 0 0 10
    + newsqueak Newsqueak 19714 1985 1990 pl Rob Pike 34 0 115 0 0 10
    + formac FORMAC 19634 2038 1993 pl Jean E. Sammet 65 0 40 0 0 11
    + flex-lang Flex language 19587 2092 1967 pl Alan Kay 27 0 90 0 0 10
    + psvg PSVG 19375 2220 2020 pl Lingdong Huang 23 0 2 0 0 12
    + red-lang Red 19155 2371 1972 pl John Backus 48 0 0 0 0 13
    + ed-editor ed 19129 2395 1973 editor Ken Thompson 30 0 20 0 2 10
    + unix Unix 19104 2407 1969 os Ken Thompson and Dennis Ritchie and Brian Kernighan and Douglas McIlroy and Joe Ossanna 26 0 12105 0 0 7
    + arquero Arquero 18960 2534 2020 dataFlow library Jeffrey Heer 41 0 23 0 0 10
    + python-for-s60 Python for S60 18915 2560 2006 pl Guido van Rossum 50 0 105 0 0 9
    + it IT 18757 2637 1955 pl Alan Perlis 33 0 0 0 1 11
    + prompter prompter 18605 2774 2011 pl Graham Nelson 43 0 0 0 0 11
    + loglan Loglan 18574 2825 1955 constructedLanguage James Cooke Brown 34 0 3515 0 0 6
    + atx atx 18256 3003 2002 textMarkup Aaron Swartz 16 0 0 0 1 10
    + bayer-expressions Bayer Expressions 18256 3004 2018 dataNotation Dave Bayer 63 0 0 0 1 10
    + magic-paper Magic Paper 18104 3221 1963 pl Jean E. Sammet 35 0 0 0 0 10
    + lola-2 Lola-2 17355 3946 1994 pl Niklaus Wirth 60 0 0 0 0 9
    + xt3d xt3d 17355 4231 2000 grammarLanguage Shriram Krishnamurthi and Kathryn E. Gray and Paul T. Graunke 27 0 0 0 0 9
    + advice-taker Advice Taker 17202 4255 1958 pl John McCarthy 31 0 20 0 0 8
    + nroff nroff 17202 4263 1972 textMarkup Joe Ossanna 44 0 20 0 0 8
    + patch patch 16903 4310 1985 unixApplication Larry Wall 31 0 20 0 1 7
    + tilton tilton 16849 4365 2000 pl Douglas Crockford 45 0 1 0 0 8
    + gnu-emacs-editor GNU Emacs 16751 4393 1985 editor Richard Stallman 32 0 20 0 0 7
    + ethereum Ethereum 16423 4435 2015 protocol Vitalik Buterin 21 0 20 0 0 6
    + lunar lunar 16398 4461 2017 pl David A. Moon 61 0 1 0 0 7
    + elephant Elephant 2000 16381 4566 1989 pl John McCarthy 62 0 0 0 0 8
    + uberscript UberScript 15930 4820 2011 pl James Strachan 42 0 0 0 0 7
    Breck Yunits
    Breck Yunits
    1 month ago
    blog/aSingleCreator.scroll
    Changed around line 15: Janet's Swift post sparked me to add a computed measure to PLDB calculating the
    - image aSingleCreator.png
    + aSingleCreator.png
    - link https://www.datawrapper.de/_/ejd5e/
    + https://www.datawrapper.de/_/ejd5e/
    blog/age.scroll
    Changed around line 18: dashboard
    - image age.png
    + age.png
    Changed around line 26: image age.png
    - image ageHistogram.png
    + ageHistogram.png
    blog/ages.scroll
    Changed around line 6: userPostHeader.scroll
    - image janetSwift.jpeg
    - link https://www.i-programmer.info/news/98-languages/17222-at-what-age-do-programmers-write-languages.html
    + janetSwift.jpeg
    + https://www.i-programmer.info/news/98-languages/17222-at-what-age-do-programmers-write-languages.html
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/ageAtCreation.scroll
    blog/ageAtCreation.scroll
    Changed around line 20: dashboard
    - image ages.png
    - link https://datawrapper.dwcdn.net/rT0yG/1/
    + ages.png
    + https://datawrapper.dwcdn.net/rT0yG/1/
    Changed around line 38: Aaron Swartz created atx at 16, which hinted at his later work with John Gruber
    - image ageHistogram.png
    + ageHistogram.png
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/ageExploration.scroll
    blog/ageExploration.scroll
    Changed around line 9: Anton Antonov posted an analysis of PLDB's age data.
    - image antonov.png
    + antonov.png
    - link https://community.wolfram.com/groups/-/m/t/3180327
    + https://community.wolfram.com/groups/-/m/t/3180327
    Breck Yunits
    Breck Yunits
    1 month ago
    package.json
    Changed around line 46
    - "scroll-cli": "^169.0.1",
    - "scrollsdk": "^100.3.0",
    + "scroll-cli": "^170.0.0",
    + "scrollsdk": "^101.1.1",
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/grep.scroll
    concepts/grep.scroll
    Changed around line 2
    - appeared 1974
    + appeared 1973
    + creators Ken Thompson
    Breck Yunits
    Breck Yunits
    1 month ago
    updated emailBanner.scroll
    emailBanner.scroll
    Changed around line 1
    - div New: join the /r/PLDB subreddit
    - https://www.reddit.com/r/pldb /r/PLDB subreddit
    + div Join our new subreddit    
    + https://www.reddit.com/r/pldb new subreddit
    Breck Yunits
    Breck Yunits
    1 month ago
    updated emailBanner.scroll
    emailBanner.scroll
    Changed around line 1
    - div
    + div New: join the /r/PLDB subreddit
    + https://www.reddit.com/r/pldb /r/PLDB subreddit
    - form
    - onsubmit handleSubmit(event)
    - span Like PLDB? Join our email list:
    - button Join
    - type submit
    - a X
    - onclick hideEmailList()
    - class closeBannerButton
    + a X
    + onclick hideEmailList()
    + class closeBannerButton
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/mojo.scroll
    concepts/mojo.scroll
    Changed around line 15: writtenIn markdown jupyter-notebook yaml python bourne-shell cmake dockerfile
    - influencedBy python c mlir zig
    + influencedBy python c mlir zig swift llvmir
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/mojo.scroll
    concepts/mojo.scroll
    Changed around line 15: writtenIn markdown jupyter-notebook yaml python bourne-shell cmake dockerfile
    - influencedBy python c mlir
    + influencedBy python c mlir zig
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/interviews.scroll
    blog/interviews.scroll
    Changed around line 1
    - title Interviews with Programming Language Designers
    + title Interviews with Programming Language Creators
    Breck Yunits
    Breck Yunits
    1 month ago
    blogcgog.png
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 4: date 1/26/2025
    - openGraphImage cgog.png
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 4: date 1/26/2025
    - openGraphImage cgOg.png
    + openGraphImage cgog.png
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 4: date 1/26/2025
    + openGraphImage cgOg.png
    Breck Yunits
    Breck Yunits
    1 month ago
    Renamed cgog.png to blogcgog.png
    blogcgog.png
    root
    root
    1 month ago
    Added cgog.png
    cgog.png
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 5: title An interview with Chris Lattner
    - HTML | TXT
    + div HTML | TXT
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 5: title An interview with Chris Lattner
    + HTML | TXT
    + class scrollDateline
    + center
    + link chrisLattner.html HTML
    + link chrisLattner.txt TXT
    +
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 203: chrisLattner.jpg
    + Lightly edited for length.
    + italics
    +
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 5: title An interview with Chris Lattner
    - Chris Lattner is one of the most prolific programming language pioneers of our times. He created many of the core platforms today's programmers build on including LLVM, Clang, Swift and MLIR. Now he is focused on a new language, Mojo, which allows Python programmers to write code that runs orders of magnitude faster. Chris took the time to talk to us about some of the new stuff in Mojo; his path toward mastering the entire stack; and his daily habits that help him produce hit after hit. Thank you for your time Chris!
    + Chris Lattner created many of the core platforms today's programmers build on including LLVM, Clang, Swift and MLIR. Now he is focused on a new language, Mojo, which allows Python programmers to write code that runs orders of magnitude faster. Chris took the time to talk to us about some of the new stuff in Mojo; his path toward mastering the entire stack; and his daily habits that help him produce hit after hit. Thank you for your time Chris!
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 7: interviewHeader.scroll
    - https://x.com/clattner_llvm Chris Lattner
    + https://nondot.org/sabre/ Chris Lattner
    Breck Yunits
    Breck Yunits
    1 month ago
    Computer.js
    Changed around line 1552: class Tables {
    - return "table\n delimiter ,\n printTable\n data\n " + tsv
    + return "datatable\n delimiter ,\n printTable\n data\n " + tsv
    concepts/xla.scroll
    Changed around line 2
    + appeared 2017
    + repoStats
    + firstCommit 2017
    + newestCommit 2025
    + commits 35262
    + committers 863
    + files 6586
    Breck Yunits
    Breck Yunits
    1 month ago
    concepts/egel.scroll
    Changed around line 31: example
    + stars 80
    + forks 4
    + subscribers 2
    + created 2016
    + updated 2024
    + description The Egel Programming Language
    + issues 0
    concepts/mlir.scroll
    Changed around line 3
    - standsFor Multi-Level Intermediate Representation
    + standsFor Multi-Level Intermediate Representation
    - influencedBy llvmir swift-il xla
    + influencedBy llvmir swift-il xla
    concepts/srt.scroll
    Changed around line 10: lab Haivision
    + stars 3182
    + forks 863
    + subscribers 151
    + created 2017
    + updated 2025
    + description Secure, Reliable, Transport
    + issues 352
    concepts/umka.scroll
    Changed around line 19: repoStats
    - stars 1096
    + stars 1010
    - updated 2025
    + updated 2024
    - issues 39
    + issues 34
    concepts/xla.scroll
    Changed around line 2
    - type compiler
    - description XLA (Accelerated Linear Algebra) is an open source compiler for machine learning. The XLA compiler takes models from popular frameworks such as PyTorch, TensorFlow, and JAX, and optimizes the models for high-performance execution across different hardware platforms including GPUs, CPUs, and ML accelerators.
    + tags compiler
    - country United States
    + description XLA (Accelerated Linear Algebra) is an open source compiler for machine learning. The XLA compiler takes models from popular frameworks such as PyTorch, TensorFlow, and JAX, and optimizes the models for high-performance execution across different hardware platforms including GPUs, CPUs, and ML accelerators.
    - wikipedia https://en.wikipedia.org/wiki/Accelerated_Linear_Algebra
    + country United States
    +
    + githubRepo https://github.com/openxla/xla
    + stars 2877
    + forks 488
    + subscribers 44
    + created 2022
    + updated 2025
    + description A machine learning compiler for GPUs, CPUs, and ML accelerators
    + issues 2876
    +
    + wikipedia https://en.wikipedia.org/wiki/Accelerated_Linear_Algebra
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/mlir.scroll
    concepts/mlir.scroll
    Changed around line 10: website https://mlir.llvm.org/
    + influencedBy llvmir swift-il xla
    Breck Yunits
    Breck Yunits
    1 month ago
    created concepts/xla.scroll
    concepts/xla.scroll
    Changed around line 1
    + ../code/conceptPage.scroll
    +
    + id xla
    + name XLA
    + type compiler
    + description XLA (Accelerated Linear Algebra) is an open source compiler for machine learning. The XLA compiler takes models from popular frameworks such as PyTorch, TensorFlow, and JAX, and optimizes the models for high-performance execution across different hardware platforms including GPUs, CPUs, and ML accelerators.
    + website https://openxla.org
    + country United States
    + lab Google
    +
    + wikipedia https://en.wikipedia.org/wiki/Accelerated_Linear_Algebra
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/swift-il.scroll
    concepts/swift-il.scroll
    Changed around line 1
    - name SIL
    + name Swift SIL
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/mlir.scroll
    concepts/mlir.scroll
    Changed around line 9: tags ir
    - writtenIn markdown
    + description The MLIR project is a novel approach to building reusable and extensible compiler infrastructure. MLIR aims to address software fragmentation, improve compilation for heterogeneous hardware, significantly reduce the cost of building domain specific compilers, and aid in connecting existing compilers together.
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/mlir.scroll
    concepts/mlir.scroll
    Changed around line 1
    - name mlir
    + name MLIR
    + standsFor Multi-Level Intermediate Representation
    - lab https://github.com/tensorflow
    + lab Google
    Breck Yunits
    Breck Yunits
    1 month ago
    updated blog/chrisLattner.scroll
    blog/chrisLattner.scroll
    Changed around line 1
    - title An interview with Mojo, MLIR, Swift, Clang and LLVM creator Chris Lattner
    + title An interview with Chris Lattner
    Breck Yunits
    Breck Yunits
    1 month ago
    Chris Lattner interview
    blog/chrisLattner.jpg
    blog/chrisLattner.scroll
    Changed around line 1
    + authors Breck Yunits
    + https://x.com/breckyunits Breck Yunits
    + date 1/26/2025
    + title An interview with Mojo, MLIR, Swift, Clang and LLVM creator Chris Lattner
    +
    + interviewHeader.scroll
    +
    + Chris Lattner is one of the most prolific programming language pioneers of our times. He created many of the core platforms today's programmers build on including LLVM, Clang, Swift and MLIR. Now he is focused on a new language, Mojo, which allows Python programmers to write code that runs orders of magnitude faster. Chris took the time to talk to us about some of the new stuff in Mojo; his path toward mastering the entire stack; and his daily habits that help him produce hit after hit. Thank you for your time Chris!
    + dateline
    + https://x.com/clattner_llvm Chris Lattner
    + https://llvm.org LLVM
    + https://clang.llvm.org Clang
    + https://www.swift.org/ Swift
    + https://mlir.llvm.org/ MLIR
    + https://www.modular.com/mojo Mojo
    + ..concepts/python.html Python
    +
    + ***
    +
    + ? Can you explain the life cycle of a Mojo program?
    +
    + This is super confusing to people because they often think that Mojo is Python or is a Python implementation or something like this, but the best way to think about Mojo is it's a completely from scratch programming language, you can say it's like Swift or Rust or something like this, with a completely new compiler.
    + ../concepts/swift.html Swift
    + ../concepts/rust.html Rust
    +
    + It has a traditional lexer and parser. The most interesting bits of what the front end does is it does type checking and semantic analysis and this kind of stuff.
    +
    + There's some defining features. It generates MLIR. It generates that directly instead of a syntax tree. The way it does that is quite different and unusual.
    +
    + From that it goes through a whole bunch of different MLIR passes for lowering, optimization, things like this.
    +
    + Eventually it does bottom out to LLVM. Mojo uses LLVM in a very different way than most other compilers. I've given various technical talks at like the LLVM developer meeting talking about this.
    + https://www.youtube.com/watch?v=SEwTjZvy8vw technical talks
    +
    + Then it goes through the LLVM code generator up to a target. If you're compiling to a GPU, it's the same thing, but slightly different. There's a code slicing thing that goes on, there's a bunch of different fancy things built into it, but that's the basic gist of it.
    +
    + ? You said there's no syntax tree?
    +
    + Normally you build a parse tree and then annotate with types. Instead of doing that, we generate declaration nodes in MLIR. You can serialize it, you can inspect it. All the MLIR tooling works.
    + https://mlir.llvm.org/docs/LangRef/#high-level-structure declaration nodes
    +
    + ***
    +
    + ? What languages changed the way you think?
    +
    + I would put in some of the classics like Prolog and APL. APL and Prolog are like a completely different way of looking at problems and thinking about them.
    + ../concepts/prolog.html Prolog
    + ../concepts/apl.html APL
    +
    + I love that, even though it's less practical in certain ways. Though all the ML compilers today are basically reinventing APL.
    +
    + The fairly canonical ones like Lisp and Scheme also really changed how I thought about things.
    + ../concepts/lisp.html Lisp
    + ../concepts/scheme.html Scheme
    +
    + A much more recent example is Zig with the comptime features.
    + ../concepts/zig.html Zig
    + https://kristoff.it/blog/what-is-zig-comptime/ comptime
    +
    + If you zoom into that, that's one of Mojo's main features as well for parametric metaprogramming.
    +
    + One of the things that I really appreciate about comptime is that it allows you to tie a bunch of other complexity that creeps into a language into one feature. I love it when you can have one thing that replaces a bunch of other related things.
    +
    + Swift, for example, has a ton of complexity and a ton of language features that got accreted over time because it doesn't have the right meta programming features. Because it didn't have the one thing it got a whole bunch of other things.
    +
    + ***
    +
    + ? Are there families of languages you'd like to explore more?
    +
    + I'm not really a programming language tourist. I'm more interested in what problems can be solved.
    +
    + I build a programming language when I have a novel problem to solve that can't be solved by somebody else. Like, "I need a good way to build iOS applications that is familiar and not as scary as Objective-C."
    + ../concepts/objective-c.html Objective-C
    +
    + ***
    +
    + ? In building your languages have you had "aha" moments on problems that were bugging you?
    +
    + All the time.
    +
    + As a designer/engineer/whatever you wanna call me, I find beauty when things click together and it enables things to happen that you didn't plan for.
    +
    + One example of that is, through a combination of very small orthogonal features in Mojo, we got conditional conformance to traits for free. I did not think we had that, and people in the community started using this new design pattern they invented, and I thought that was not even possible. And so, that is like, that is amazing.
    + https://docs.modular.com/mojo/manual/traits/#implicit-trait-conformance conformance to traits
    +
    + Also in the case of Mojo, the lifetime ownership system we spent a long time on—months and months and months—iterating, changing, adapting, learning, building to get to the point where it actually works. And then you realize, oh, we can make it way more simple.
    + https://www.youtube.com/watch?v=9ag0fPMmYPQ ownership system
    +
    + The first step is: it works.
    +
    + Second step is: make it way simpler and way more explainable and way more beautiful by going from a working thing that you refactor—now that you understand it—into something that is much cleaner and simpler.
    +
    + ***
    +
    + ? What's been your experience developing in public versus private?
    +
    + It's changed over the years.
    +
    + ### LLVM
    +
    + When I was very young and I wasn't known, I just wanted people to use my stuff. I was desperate to have anybody to talk to. Anybody who could be involved I wanted to be involved. You can go back and read posts on mailing lists from me in 2005 or 2003. I think that's one of the things that led LLVM to be such a vibrant and strong community.
    +
    + ### Clang
    +
    + Over time, things like Clang, working on C and C++, it was secret for 6 or 9 months. Nobody, except for my wife, knew that I was working on this project. It was a side project, a hobby project. I had no idea if it would go anywhere. Everybody knew that building a C++ parser was impossible. And so I didn't have the confidence to say, I'm going to embark on a project and go do it. Because, you know, all odds are that it would fail. And, honestly, I didn't even know what I was doing. I didn't really have any goals. I just had curiosity and I was chasing it to see where it would go.
    +
    + Only as it got further did I tell people at Apple and that caused some heads to explode. My manager said, "I thought you only cared about code generation". I said "I care about solving interesting problems and doing things."
    +
    + We eventually open sourced it and added it to LLVM and through that process what I figured out is that in the early phases of a project—when you are just kind of figuring stuff out, like you don't even know how to define the problem; you don't know how to explain it; or justify it; or provide rationale;—actually keeping things small and secret is a good thing.
    +
    + And later in Clang's life we had 3 or 4 people within Apple working on it, you can make decisions and move really fast and get a lot of stuff done with a few people because you can have a very shared mindset.
    +
    + ### Swift
    +
    + Later with Swift, same thing. I worked on Swift secretly for like a year and a half without telling anybody about it. Nobody at Apple even knew. Just figuring out what were the parameters? How can I make this thing better? What were the design points? How do I think about it? So it went from being secret for a year and a half to then secret within Apple for four years. By the time it launched publicly, only about 250 people at Apple even knew about it. Caused virtually every software engineer at Apple's heads to explode.
    +
    + The secrecy within Apple, for that project at least, was extremely useful. Because every Objective-C programmer had lots of opinions, and they were not opinions about the compiler implementation, or the low level type system details, or whatever. They had very, they had strong opinions about superficial things.
    +
    + ### MLIR
    +
    + Later I worked on the MLIR compiler. That was public within Google from the very beginning. But it was a "within Google" project. We got five people together and spent a ton of time on the whiteboard. And again, it was more about deciding what is the problem we want to solve? What are the core things? MLIR is a generally useful domain agnostic compiler, meta compiler construction toolkit...was a point that we didn't start with, but that became an emergent requirement which is now what it's really known for.
    +
    + As you get it nailed down you can explain it, as you can explain it and you can scale it and you get more confident, and then you can launch it, and then you can open source it, and then you can try to convince other people that it's actually good, and that maybe they should look at it, which is also hard.
    +
    + ### Mojo
    +
    + At this point in my career, I know that Mojo will be successful. I will just state this, like, very directly. Because it's a Python family member that's 1000x faster. Or even more in some cases. Because it runs on GPUs and nothing else does. And because it's a very important problem today, and it's designed intentionally to be very familiar to people, and so the adoption and stuff like that, I think it'll go very rapidly.
    +
    + The problem that Mojo has is that it's not done yet. Everybody always tells me, oh open source it, oh do this, do that, do whatever. And honestly, I don't think that's going to make it get done faster or be better. What's really important is we iterate on it. We continue to, refactor, learn, change, make the core type system correct, make simple things that compose, which is another huge problem with Swift. Swift added all these features too quickly and they never sat together great. We need to get it right in the early phase because it's so difficult to fix core design and engineering problems later.
    +
    + As we do this, what we're doing is we're progressively opening it. As we progressively open it, we can get more and more and more people involved.
    +
    + Earlier in my career I'd be desperate to get somebody to pay attention to something, but now I have more confidence that, okay, if it's good, then people will adopt it because it's useful.
    +
    + And so steering towards utility and solving important problems for the world is really the thing, and making sure we can do that well is the thing that I'm optimizing for now.
    +
    + So Mojo is a combination of learning from all these different projects and learning from what's worked and what didn't.
    +
    + The Apple secrecy thing was super annoying for a variety of reasons, but it was the right thing for something as polarizing as changing language syntax. In the case of Mojo, it's anchored to Python syntax so that's been very, very helpful for me for helping like reduce bike shedding and stuff like that.
    +
    + ***
    +
    + ? How did you master the whole stack?
    +
    + I grew up as a kid, back in the 90s, writing assembly language on DOS computers. And learning Turbo Pascal 5 and 6.
    + ..concepts/turbo-pascal.html Turbo Pascal
    +
    + It was a much simpler world than it is today, because you can actually really understand almost everything that's happening within a computer.
    +
    + In those days I didn't understand how the computer was built. I didn't understand why it was that way, but I understood the framebuffer for VGA is at 0xA0000 and these weird things.
    +
    + From there I just kind of climbed the stack. Had a good idea of what an x86 computer does and suddenly you say, well how do I get that code? And so this is where my interest in compilers comes from. My initial work on compilers was really not in the programming language space. It was really more building optimizers and code generators because that's what I understood.
    +
    + For me, I didn't really become a programming languages person, really, until working on Swift.
    +
    + The path was working on code generation and building high performance x86 and PowerPC and this kind of code generation stuff that Apple needed to then building Clang, which forced me to learn how parsers work; how front ends work; how GCC and other technologies work; how type checking worked. It was a training ground for learning. I could measure against GCC. I cared about things like compile time, and so, making sure the parser was faster than GCC and things like this gave me a metric of where I could measure what success looked like when getting to Swift.
    +
    + Swift benefited from the experience of building front ends before, like Clang, but also having a really good understanding of how LLVM works. And so Swift was, among other things, like a zero cost abstraction on top of LLVM.
    +
    + In the case of Mojo, there's a number of different things. I developed mastery of CPUs and CPU architecture and things like that but then also switched gears to work on AI accelerators. Building and scaling out the TPU platform at Google, working with GPUs and things like this, are things that I'd done and so I knew the pain points and problems and many of the other existing solutions. It didn't just magically pop into my brain, I had spent years working with the existing systems and a combination of these things that led to MLIR. And MLIR again, not a language, it's an engineering artifact that allows you to build stuff.
    +
    + This is what leads to Mojo.
    +
    + ***
    +
    + ? What are things in your daily life that have helped you produce at such a high level for decades?
    +
    + I sleep eight hours a day. Which is maybe controversial but I think is very core.
    +
    + Every morning I walk. I have two cute dogs, and they have very big brown eyes, and they look at me every morning saying, are we going to go for a walk? And the answer is yes. So depending on the day I'll walk from half hour to 45 or 60 minutes up and down hills, and so it's actually strenuous, which is good for health.
    +
    + I drink way too much Diet Coke. My kids tell me Diet Coke is killing me but so far I still seem to be alive.
    +
    + I put in way too many hours. I'm not a nine to five kind of guy.
    +
    + I am always thinking about things and working on things and working way into the evening and, and working on weekends and whatever.
    +
    + If you look at my GitHub commit thingy you'll see most of my actual coding happens on weekends, because I have a day job being a CEO.
    +
    + The actual coding, because I can help things go faster. I can push things forward in the early phase in a project. I have a lot of value to contribute because I understand things to the depth that a lot of other people don't.
    +
    + Many things are obvious and intuitive to me that would otherwise take a lot of iteration. You know, two steps forward one step back.
    +
    + ***
    +
    + ? With the rise of AI, are humans still going to be creating languages in 30 years?
    +
    + I get asked, "Chris, why are you building Mojo when AI replaces all programmers?"
    +
    + There's two different worldviews.
    +
    + One worldview is that AGI or ASI, or whatever they want to call it these days, magically replaces all humans. I don't know if that's going to be true at some point. If it is true, it seems like it would happen in the next 30 years. The way I look at it is that if it does happen, well, just like computers are better than humans at chess, some people still play chess. It's not that the skill and the art and the reason for doing it disappears.
    +
    + I'm fairly skeptical that AGI will magically eliminate the need for programming and programmers and the whole art of what we do. The way I look at it, much more pragmatically, is AI is a superpower and today AI is kind of akin to hiring a junior programmer onto your team.
    +
    + The thing about programming is that programming is not about telling the computer what to do. That's what the vast majority of people think of when they think of code: instructions for the computer. The way I see code, and programming language therefore, is code is about allowing the humans on a team to understand what the product is and what it does. Building a product is the intersection of understanding what the world wants, understanding what you currently have to work with, and then understanding the path from here to there. You can understand the requirements without code, fine. But practically speaking, there's trade offs. And if you have trade offs, you have to understand how things work. Or at least you really benefit from knowing how things work. I think for the foreseeable future programming is a team sport and code is the interchange format between the players. So I think it's still pretty important.
    +
    + ****
    +
    + chrisLattner.jpg
    + width 200px
    + https://www.youtube.com/watch?v=pdJQ8iVTwj8
    + caption For a long form interview with Chris, check out his interviews on Lex Fridman. Thank you for your time Chris!
    + https://www.youtube.com/watch?v=pdJQ8iVTwj8 his interviews on Lex Fridman
    +
    + footer.scroll
    blog/subreddit.scroll
    Changed around line 8: postHeader.scroll
    - printDate
    + printDate
    - The 3 dominant platforms for programming language creators (r/ProgrammingLanguages, Lobsters, and HackerNews), all of which I helped grow initially, are all now heavily moderated and censored. As a result, I expect very few novel ideas to arise in those communities.
    + The three dominant platforms for programming language creators (r/ProgrammingLanguages, Lobsters, and HackerNews), all of which I helped grow for years, banned me. Most of my comments and submissions are very high value add to these communities, but occasionally I post things the moderators disapprove of (but usually the users like). I have little respect for moderators who put their own self-interests ahead of free speech and the interests of their communities.
    - Thereforce I launched a new subreddit r/pldb, who's motto is very simple: An uncensored community about Programming Language design. No censorship for non-anon posters.
    + Thereforce I launched a new subreddit r/pldb, who's guiding principle is very simple: an uncensored community about Programming Language design. No manual censorship for non-anon posters. Feel free to post your craziest, freshest ideas. Get value from the upvotes and the downvotes. As long as you are brave enough to post under your real name, you won't be censored. I think great ideas can come from anywhere and can often start out as terrible, really unpopular ideas. The new sub is a place to nurture those ideas.
    concepts/acsv.scroll
    Changed around line 6: appeared 2020
    +
    Changed around line 15: example
    - ,,,str2,2.0,false,2,2,2us,2020-01-11T10:10:10Z
    + ,,,str2,2.0,false,2,2,2us,2020-01-11T10:10:10Z
    concepts/arweave.scroll
    Changed around line 2
    - creators Sam Williams
    + creators Sam Williams
    - twitter https://x.com/arweaveeco
    +
    + twitter https://x.com/arweaveeco
    concepts/aui-lang.scroll
    Changed around line 4: id aui-lang
    - standsFor Abstract User Interface
    + standsFor Abstract User Interface
    - hopl https://hopl.info/showlanguage.prx?exp=5777
    -
    Changed around line 23: example
    - end where
    + end where
    +
    + hopl https://hopl.info/showlanguage.prx?exp=5777
    concepts/aui.scroll
    Changed around line 7: creators W. John Weilgart
    - wikipedia https://en.wikipedia.org/wiki/AUI_(constructed_language)
    + wikipedia https://en.wikipedia.org/wiki/AUI_(constructed_language)
    concepts/clang.scroll
    Changed around line 1
    + ../code/conceptPage.scroll
    +
    + id clang
    + name Clang
    + appeared 2007
    + creators Chris Lattner
    + tags compiler
    + website https://clang.llvm.org/
    + country United States
    + docs https://clang.llvm.org/docs/
    +
    + isOpenSource true
    + writtenIn cpp
    + inputLanguages c cpp objective-c
    +
    + wikipedia https://en.wikipedia.org/wiki/Clang
    +
    + subreddit https://reddit.com/r/Clang
    + memberCount
    + 2025 792
    concepts/dash.scroll
    Changed around line 2
    - standsFor Dynamic Adaptive Streaming over HTTP
    + standsFor Dynamic Adaptive Streaming over HTTP
    concepts/egel.scroll
    Changed around line 9: website https://egel-lang.github.io/
    - githubRepo https://github.com/egel-lang/egel
    Changed around line 28: example
    - def main = print_rhyme 99
    + def main = print_rhyme 99
    +
    + githubRepo https://github.com/egel-lang/egel
    concepts/gemtext.scroll
    Changed around line 6: appeared 2020
    +
    Changed around line 18: example
    - => desk/ Desk
    + => desk/ Desk
    concepts/hls.scroll
    Changed around line 6: appeared 2009
    - reference https://datatracker.ietf.org/doc/html/rfc8216
    + fileExtensions m3u8 m3u
    - wikipedia https://en.wikipedia.org/wiki/HTTP_Live_Streaming
    - related http m3u mpeg-2 aac h.264 microsoft-smooth-streaming mpeg-dash
    - summary HTTP Live Streaming (HLS) is an HTTP-based adaptive bitrate streaming communications protocol developed by Apple Inc. and released in 2009. Support for the protocol is widespread in media players, web browsers, mobile devices, and streaming media servers. HLS is designed for reliability and dynamically adapts to network conditions by optimizing playback for the available speed of wired and wireless connections.
    -
    - githubLanguage HLS
    - fileExtensions m3u8
    - tmScope source.m3u
    - aceMode text
    + reference https://datatracker.ietf.org/doc/html/rfc8216
    - fileExtensions m3u8 m3u
    + wikipedia https://en.wikipedia.org/wiki/HTTP_Live_Streaming
    concepts/llvmir.scroll
    Changed around line 3
    + creators Chris Lattner
    concepts/rtmp.scroll
    Changed around line 2
    - standsFor Real-Time Messaging Protocol
    + standsFor Real-Time Messaging Protocol
    +
    concepts/sdlang.scroll
    Changed around line 5: name SDLang
    - fileExtensions sdl
    - description SDLang is a simple and concise way to textually represent data. It has an XML-like structure – tags, values and attributes – which makes it a versatile choice for data serialization, configuration files, or declarative languages.
    + description SDLang is a simple and concise way to textually represent data. It has an XML-like structure – tags, values and attributes – which makes it a versatile choice for data serialization, configuration files, or declarative languages.
    + fileExtensions sdl
    +
    Changed around line 38: example
    - }
    + }
    concepts/snap.scroll
    Changed around line 5: name Snap!
    + website https://snap.berkeley.edu/
    + webRepl https://snap.berkeley.edu/snap/snap.html
    Changed around line 14: fileType text
    - website https://snap.berkeley.edu/
    - webRepl https://snap.berkeley.edu/snap/snap.html
    -
    concepts/srt.scroll
    Changed around line 9: website https://www.srtalliance.org/
    - wikipedia https://en.wikipedia.org/wiki/Secure_Reliable_Transport
    -
    +
    + wikipedia https://en.wikipedia.org/wiki/Secure_Reliable_Transport
    concepts/webrtc.scroll
    Changed around line 3
    + creators Justin Uberti and Peter Thatcher
    - creators Justin Uberti and Peter Thatcher
    creators/creators.scroll
    Changed around line 1395: name Andreas Kling
    - country Sweden
    + country Sweden
    Changed around line 1891: gits https://github.com/zkat
    - gits https://github.com/alpacaaa
    + gits https://github.com/alpacaaa
    Changed around line 1901: gits https://github.com/janderland
    - twitter https://x.com/samecwilliams
    - gits https://github.com/samcamwilliams
    -
    -
    + gits https://github.com/samcamwilliams
    + twitter https://x.com/samecwilliams
    emailBanner.scroll
    Changed around line 8: div
    - class closeBannerButton
    + class closeBannerButton
    Changed around line 29: script
    - }
    + }
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/red.scroll
    concepts/red.scroll
    Changed around line 26: repoStats
    - country China
    Breck Yunits
    Breck Yunits
    1 month ago
    updated concepts/prql.scroll
    concepts/prql.scroll
    Changed around line 25: repoStats
    - country South Africa and United States
    + country United States