gitextract_96evfk3n/ ├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── build.gradle ├── deploy/ │ ├── GradleDockerfile │ ├── Jenkinsfile │ ├── default.conf │ ├── production_env.sh │ ├── sandbox_env.sh │ ├── sourcerer-app.yaml │ └── staging_env.sh ├── do.sh └── src/ ├── install/ │ └── install ├── main/ │ ├── kotlin/ │ │ └── app/ │ │ ├── Analytics.kt │ │ ├── FactCodes.kt │ │ ├── Logger.kt │ │ ├── Main.kt │ │ ├── api/ │ │ │ ├── Api.kt │ │ │ ├── ApiError.kt │ │ │ ├── MockApi.kt │ │ │ ├── Result.kt │ │ │ └── ServerApi.kt │ │ ├── config/ │ │ │ ├── Config.kt │ │ │ ├── Configurator.kt │ │ │ ├── FileConfigurator.kt │ │ │ └── MockConfigurator.kt │ │ ├── extractors/ │ │ │ ├── CExtractor.kt │ │ │ ├── CSharpExtractor.kt │ │ │ ├── ClassifierManager.kt │ │ │ ├── CommonExtractor.kt │ │ │ ├── CppExtractor.kt │ │ │ ├── CrystalExtractor.kt │ │ │ ├── CssExtractor.kt │ │ │ ├── DMExtractor.kt │ │ │ ├── DartExtractor.kt │ │ │ ├── DevopsExtractor.kt │ │ │ ├── ElixirExtractor.kt │ │ │ ├── Extractor.kt │ │ │ ├── ExtractorBase.kt │ │ │ ├── ExtractorInterface.kt │ │ │ ├── FSharpExtractor.kt │ │ │ ├── GoExtractor.kt │ │ │ ├── Heuristics.kt │ │ │ ├── IPythonExtractor.kt │ │ │ ├── JavaExtractor.kt │ │ │ ├── JavascriptExtractor.kt │ │ │ ├── KotlinExtractor.kt │ │ │ ├── Languages.kt │ │ │ ├── ObjectiveCExtractor.kt │ │ │ ├── PerlExtractor.kt │ │ │ ├── PhpExtractor.kt │ │ │ ├── PlpgsqlExtractor.kt │ │ │ ├── PythonExtractor.kt │ │ │ ├── RubyExtractor.kt │ │ │ ├── RustExtractor.kt │ │ │ ├── ScalaExtractor.kt │ │ │ ├── SwiftExtractor.kt │ │ │ └── TypescriptExtractor.kt │ │ ├── hashers/ │ │ │ ├── AuthorDistanceHasher.kt │ │ │ ├── CodeLongevity.kt │ │ │ ├── CommitCrawler.kt │ │ │ ├── CommitHasher.kt │ │ │ ├── FactHasher.kt │ │ │ ├── MetaHasher.kt │ │ │ ├── RepoHasher.kt │ │ │ └── Vendors.kt │ │ ├── model/ │ │ │ ├── Author.kt │ │ │ ├── AuthorDistance.kt │ │ │ ├── AuthorDistanceGroup.kt │ │ │ ├── AuthorGroup.kt │ │ │ ├── Classifier.kt │ │ │ ├── Commit.kt │ │ │ ├── CommitGroup.kt │ │ │ ├── CommitStats.kt │ │ │ ├── DiffContent.kt │ │ │ ├── DiffFile.kt │ │ │ ├── DiffRange.kt │ │ │ ├── Error.kt │ │ │ ├── Errors.kt │ │ │ ├── Fact.kt │ │ │ ├── FactGroup.kt │ │ │ ├── LibraryMeta.kt │ │ │ ├── LocalRepo.kt │ │ │ ├── Process.kt │ │ │ ├── ProcessEntry.kt │ │ │ ├── Repo.kt │ │ │ ├── RepoMeta.kt │ │ │ ├── User.kt │ │ │ └── UserEmail.kt │ │ ├── ui/ │ │ │ ├── AddRepoState.kt │ │ │ ├── AuthState.kt │ │ │ ├── CloseState.kt │ │ │ ├── ConsoleState.kt │ │ │ ├── ConsoleUi.kt │ │ │ ├── Context.kt │ │ │ ├── EmailState.kt │ │ │ ├── ListRepoState.kt │ │ │ ├── OpenState.kt │ │ │ └── UpdateRepoState.kt │ │ └── utils/ │ │ ├── CommandAdd.kt │ │ ├── CommandConfig.kt │ │ ├── CommandList.kt │ │ ├── CommandRemove.kt │ │ ├── FileHelper.kt │ │ ├── HashingException.kt │ │ ├── Metrics.kt │ │ ├── Misc.kt │ │ ├── Options.kt │ │ ├── PasswordHelper.kt │ │ ├── RepoHelper.kt │ │ ├── RequestException.kt │ │ └── UiHelper.kt │ ├── proto/ │ │ ├── classifier.proto │ │ └── sourcerer.proto │ └── resources/ │ └── data/ │ ├── imports/ │ │ ├── cpp.txt │ │ └── python.txt │ └── libraries/ │ ├── cs_libraries.txt │ ├── java_libraries.txt │ ├── js_libraries.txt │ └── kotlin_libraries.txt └── test/ ├── delete_repo.sh ├── kotlin/ │ └── test/ │ ├── tests/ │ │ ├── extractors/ │ │ │ ├── DirToLangMap.kt │ │ │ ├── ExtractorTest.kt │ │ │ ├── HeuristicsTest.kt │ │ │ └── IgnoredSamplesWildcards.kt │ │ ├── hashers/ │ │ │ ├── AuthorDistanceHasherTest.kt │ │ │ ├── CodeLongevityTest.kt │ │ │ ├── ColleaguesTest.kt │ │ │ ├── CommitHasherTest.kt │ │ │ ├── FactHasherTest.kt │ │ │ ├── IgnorePathsTest.kt │ │ │ ├── IgnoreVendorsTest.kt │ │ │ └── MetaHasherTest.kt │ │ └── utils/ │ │ └── FileHelperTest.kt │ └── utils/ │ ├── FactHelper.kt │ └── TestRepo.kt └── resources/ └── samples/ ├── devops/ │ ├── circleci/ │ │ └── .circleci/ │ │ └── config.yml │ ├── docker/ │ │ ├── Dockerfile │ │ ├── alpine.Dockerfile │ │ └── docker-compose.yml │ ├── drone/ │ │ └── .drone.yml │ ├── github-actions/ │ │ └── .github/ │ │ └── workflows/ │ │ └── ci.yml │ ├── gitlab-ci/ │ │ └── .gitlab-ci.yml │ ├── jenkins/ │ │ └── Jenkinsfile │ ├── k8s/ │ │ ├── postgres-manifest.yaml │ │ ├── rss-site.json │ │ └── rss-site.yml │ └── travis/ │ └── .travis.yml └── langs/ ├── 1C Enterprise/ │ ├── Catalog.ИсходящиеПисьма.Form.ФормаЭлемента.Form.Module.bsl │ ├── Catalog.Товары.Command.ПечатьПрайсЛиста.CommandModule.bsl │ ├── CommonModule.ОбменМобильныеОбщее.Module.bsl │ ├── Document.РасходТовара.ObjectModule.bsl │ ├── ci_before_script.os │ └── test_canCompile.os ├── ABAP/ │ └── cl_csv_parser.abap ├── AGS Script/ │ ├── GlobalScript.asc │ ├── GlobalScript.ash │ ├── KeyboardMovement_102.asc │ └── KeyboardMovement_102.ash ├── AMPL/ │ ├── CT2.mod │ └── toy.ampl ├── API Blueprint/ │ ├── actions.apib │ ├── attributes.apib │ └── simple.apib ├── APL/ │ ├── DeepakChopra.apl │ ├── UT.dyalog │ └── hashbang ├── ASN.1/ │ └── example.asn ├── ATS/ │ ├── CoYonedaLemma.dats │ ├── DiningPhil2.dats │ ├── DiningPhil2.sats │ ├── DiningPhil2_fork.dats │ ├── DiningPhil2_thread.dats │ ├── YonedaLemma.dats │ ├── basis_ssntype.sats │ ├── csv_parse.hats │ └── intinf_vt.dats ├── ActionScript/ │ ├── FooBar.as │ └── HelloWorld.as ├── Adobe Font Metrics/ │ ├── OpenSansCondensed-Bold.afm │ ├── SpecialElite.afm │ └── lambda.afm ├── Agda/ │ └── NatCat.agda ├── Alloy/ │ ├── file_system.als │ ├── marksweepgc.als │ └── views.als ├── Alpine Abuild/ │ └── filenames/ │ └── APKBUILD ├── AngelScript/ │ ├── botmanager.as │ └── payload.as ├── Ant Build System/ │ └── filenames/ │ ├── ant.xml │ └── build.xml ├── ApacheConf/ │ ├── apache.vhost │ └── filenames/ │ ├── .htaccess │ ├── apache2.conf │ └── httpd.conf ├── Apex/ │ ├── ArrayUtils.cls │ ├── BooleanUtils.cls │ ├── EmailUtils.cls │ ├── GeoUtils.cls │ ├── LanguageUtils.cls │ └── TwilioAPI.cls ├── Apollo Guidance Computer/ │ └── BURN_BABY_BURN--MASTER_IGNITION_ROUTINE.agc ├── AppleScript/ │ ├── Convert To PDF.applescript │ ├── Convert To PostScript.applescript │ ├── Count Messages in All Mailboxes.applescript │ ├── Crazy Message Text.applescript │ ├── Get User Name.applescript │ ├── Time Of Day.applescript │ └── center.applescript ├── AsciiDoc/ │ ├── encoding.asciidoc │ ├── list.asc │ └── sample.adoc ├── AspectJ/ │ ├── CacheAspect.aj │ └── OptimizeRecursionCache.aj ├── Assembly/ │ ├── External Interrupt.a51 │ ├── FASM.asm │ ├── forth.nasm │ ├── fp_sqr32_160_comba.inc │ ├── lib.inc │ └── macros.inc ├── AutoHotkey/ │ └── hello.ahk ├── Awk/ │ └── test.awk ├── Ballerina/ │ ├── hello-world-service.bal │ ├── hello-world.bal │ ├── json.bal │ ├── var.bal │ └── xml.bal ├── BitBake/ │ ├── gstreamer-libav.bb │ └── qtbase-native.bb ├── Blade/ │ ├── hello.blade │ └── hello.blade.php ├── BlitzBasic/ │ ├── HalfAndDouble.bb │ ├── LList.bb │ └── PObj.bb ├── BlitzMax/ │ └── sample.bmx ├── Bluespec/ │ ├── TL.bsv │ └── TbTL.bsv ├── Brainfuck/ │ ├── factor.b │ ├── fib100.bf │ ├── hello.bf │ ├── helloworld.bf │ └── rot13.bf ├── Brightscript/ │ └── SimpleGrid.brs ├── C/ │ ├── 2D.C │ ├── 2D.H │ ├── Arduino.cats │ ├── ArrowLeft.h │ ├── GLKMatrix4.h │ ├── NWMan.h │ ├── Nightmare.h │ ├── array.c │ ├── array.h │ ├── asm.h │ ├── bitmap.h │ ├── blob.c │ ├── blob.h │ ├── bootstrap.h │ ├── color.h │ ├── commit.c │ ├── commit.h │ ├── cpuid.h │ ├── custom_extensions.c │ ├── driver.h │ ├── elf.h │ ├── exception.zep.c │ ├── exception.zep.h │ ├── filter.h │ ├── fudge_node.c │ ├── git.c │ ├── hello.c │ ├── hello.h │ ├── http_parser.c │ ├── http_parser.h │ ├── info.h │ ├── interface.h │ ├── ip4.h │ ├── jni_layer.h │ ├── main.c │ ├── markdown.c │ ├── multiboot.h │ ├── ntru_encrypt.h │ ├── portio.h │ ├── pqiv.h │ ├── process.c │ ├── rdiscount.c │ ├── readline.cats │ ├── redis.c │ ├── rf_io.c │ ├── rf_io.h │ ├── rfc_string.c │ ├── rfc_string.h │ ├── scheduler.h │ ├── script │ ├── sgd_fast.c │ ├── syscalldefs.h │ ├── syscalls.h │ ├── vfs.h │ ├── vmem.h │ ├── wglew.h │ └── yajl.c ├── C#/ │ ├── AssemblyInfo.cs │ ├── BsonPropertyValue.cs │ ├── Index.cshtml │ ├── MongoExpressionVisitor.cs │ ├── Program.cs │ └── build.cake ├── C++/ │ ├── 16F88.h │ ├── ClasspathVMSystemProperties.inc │ ├── CsvStreamer.h │ ├── Entity.h │ ├── Field.h │ ├── Math.inl │ ├── Memory16F88.h │ ├── PackageInfoParser.cpp │ ├── ThreadedQueue.h │ ├── Types.h │ ├── bar.h │ ├── bar.hh │ ├── bar.hpp │ ├── bug1163046.--skeleton.re │ ├── cnokw.re │ ├── crypter.cpp │ ├── cvsignore.re │ ├── env.cpp │ ├── env.h │ ├── epoll_reactor.ipp │ ├── gdsdbreader.h │ ├── graphics.cpp │ ├── grpc.pb.cc │ ├── hello.cpp │ ├── hello.grpc.pb.h │ ├── hello.ino │ ├── initClasses.inc │ ├── instances.inc │ ├── json_reader.cpp │ ├── json_writer.cpp │ ├── key.cpp │ ├── key.h │ ├── libcanister.h │ ├── main.cpp │ ├── metrics.h │ ├── octave_changer.ino │ ├── program.cp │ ├── protocol-buffer.pb.cc │ ├── protocol-buffer.pb.h │ ├── render_adapter.cpp │ ├── rpc.h │ ├── scanner.cc │ ├── scanner.h │ ├── simple.re │ ├── srs_app_ingest.cpp │ ├── utils.h │ ├── v8.cc │ ├── v8.h │ └── wrapper_inner.cpp ├── CLIPS/ │ ├── demo.clp │ └── sudoku.clp ├── CMake/ │ ├── filenames/ │ │ └── CMakeLists.txt │ ├── sample1.cmake │ ├── sample2.cmake │ ├── sample3.cmake │ ├── sample4.cmake │ ├── sample5.cmake │ └── uninstall.cmake.in ├── COBOL/ │ ├── hello_world.cbl │ ├── hello_world.ccp │ ├── hello_world.cob │ └── simple.cpy ├── CSON/ │ ├── base.cson │ ├── config.cson │ ├── ff-sfd.cson │ └── wercker-status.cson ├── CSS/ │ └── bootstrap.css ├── CSV/ │ └── cars.csv ├── CWeb/ │ └── sat-life.w ├── CartoCSS/ │ └── amenity-points.mss ├── Ceylon/ │ └── Foo.ceylon ├── Chapel/ │ ├── distributions.chpl │ ├── hello.chpl │ ├── lulesh.chpl │ ├── nbody.chpl │ └── quicksort.chpl ├── Charity/ │ └── example.ch ├── Cirru/ │ ├── array.cirru │ ├── block.cirru │ ├── bool.cirru │ ├── map.cirru │ ├── number.cirru │ ├── require.cirru │ ├── scope.cirru │ ├── stdio.cirru │ └── string.cirru ├── Clarion/ │ ├── CStringClass.clw │ ├── ConsoleSupport.clw │ ├── HelloWorld.clw │ └── hello.clw ├── Clean/ │ ├── GenHylo.dcl │ ├── GenMap.dcl │ ├── GenMap.icl │ ├── fsieve.icl │ ├── sem.icl │ ├── stack.dcl │ ├── stack.icl │ ├── streams.dcl │ └── streams.icl ├── Click/ │ ├── sr2.click │ └── thomer-nat.click ├── Clojure/ │ ├── build.boot │ ├── for.clj │ ├── hiccup.hic │ ├── index.cljs.hl │ ├── into-array.cljc │ ├── protocol.cljs │ ├── rand.cljscm │ ├── svg.cljx │ └── unit-test.cl2 ├── Closure Templates/ │ └── example.soy ├── CoNLL-U/ │ ├── CF1.conllu │ ├── en-ud-test-abridged.conllu │ └── ug-ud-test-abridged.conllu ├── CoffeeScript/ │ ├── browser.coffee │ ├── build.cake │ ├── classes.coffee │ ├── coffee-script.coffee │ ├── example.cjsx │ ├── hello.coffee │ ├── intro.coffee │ ├── lexer.coffee │ ├── rack_application.coffee │ └── xipd.coffee ├── ColdFusion/ │ └── example.cfm ├── ColdFusion CFC/ │ ├── exampleScript.cfc │ └── exampleTag.cfc ├── Common Lisp/ │ ├── array.l │ ├── common.l │ ├── config.sexp │ ├── hello.lisp │ ├── macros-advanced.cl │ ├── motor-inferencia.cl │ ├── rss.sexp │ ├── sample.lisp │ └── sample.lsp ├── Common Workflow Language/ │ └── trunk-peak-score.cwl ├── Component Pascal/ │ ├── Example.cp │ └── Example2.cps ├── Cool/ │ ├── list.cl │ └── sample.cl ├── Coq/ │ ├── Computation.v │ ├── Imp.v │ ├── JsCorrectness.v │ ├── JsInterpreterExtraction.v │ ├── JsNumber.v │ ├── JsPrettyInterm.v │ ├── Lists.v │ ├── Main.v │ ├── Poly.v │ ├── Rel.v │ ├── Smallstep.v │ ├── Spec.v │ └── Stlc.v ├── Creole/ │ └── creole.creole ├── Crystal/ │ ├── const_spec.cr │ ├── declare_var_spec.cr │ └── transformer.cr ├── Csound/ │ ├── allglass.orc │ ├── interp.orc │ └── test.orc ├── Csound Document/ │ ├── allglass.csd │ ├── interp.csd │ └── test.csd ├── Csound Score/ │ ├── allglass.sco │ ├── interp.sco │ └── test.sco ├── Cuda/ │ ├── scalarProd_kernel.cuh │ └── vectorAdd.cu ├── Cycript/ │ └── utils.cy ├── D/ │ ├── aa.d │ ├── arrayops.d │ ├── function.d │ ├── hello_world.d │ ├── mpq.d │ ├── template.d │ ├── template_function.d │ ├── unittest1.d │ └── unittest2.d ├── DIGITAL Command Language/ │ ├── fis_gtm_kitinstal.com │ ├── ghostpdl_zlib_make_vms.com │ ├── libxslt_build.com │ └── vmsbackup_build.com ├── DM/ │ └── example.dm ├── DNS Zone/ │ ├── sample.arpa │ └── sneaky.net.zone ├── DOS Batch/ │ └── BatchInstall.bat ├── DTrace/ │ ├── counts.d │ ├── probes.d │ └── trace_futexes.d ├── Dart/ │ └── point.dart ├── DataWeave/ │ ├── customInterpolator.dwl │ ├── directives.dwl │ ├── functions.dwl │ ├── literals.dwl │ └── match.dwl ├── Diff/ │ └── dude-thing-okay--001.patch ├── Dockerfile/ │ └── filenames/ │ └── Dockerfile ├── Dogescript/ │ └── example.djs ├── E/ │ ├── Extends.E │ ├── Functions.E │ ├── Guards.E │ ├── IO.E │ ├── Promises.E │ ├── atomic-updates.E │ └── minChat.E ├── EBNF/ │ ├── grammar.ebnf │ ├── material.ebnf │ ├── object.ebnf │ └── types.ebnf ├── ECL/ │ └── sample.ecl ├── ECLiPSe/ │ └── or-constraint.ecl ├── EJS/ │ ├── dash.ejs │ └── page.ejs ├── EQ/ │ ├── HTTPServerVirtualHostListener.eq │ ├── SEButtonEntity.eq │ └── String.eq ├── Eagle/ │ ├── Eagle.brd │ └── Eagle.sch ├── Easybuild/ │ └── bzip2-1.0.6-GCC-4.9.2.eb ├── Edje Data Collection/ │ └── mild.edc ├── Eiffel/ │ ├── application.e │ ├── book_collection.e │ └── git_checkout_command.e ├── Elixir/ │ ├── hello_world.exs │ └── hello_world_test.exs ├── Elm/ │ ├── Basic.elm │ ├── QuickSort.elm │ └── Tree.elm ├── Emacs Lisp/ │ ├── .emacs.desktop │ ├── dude.el │ ├── ess-julia.el │ └── filenames/ │ ├── .abbrev_defs │ ├── .gnus │ ├── .spacemacs │ ├── .viper │ ├── Cask │ ├── Project.ede │ ├── _emacs │ └── abbrev_defs ├── EmberScript/ │ └── momentComponent.em ├── Erlang/ │ ├── 170-os-daemons.es │ ├── elixir_parser.yrl │ ├── factorial │ ├── filenames/ │ │ ├── Emakefile │ │ └── rebar.config │ ├── hello.escript │ ├── lfe_scan.xrl │ ├── record_helper.erl │ ├── record_utils.erl │ ├── release │ ├── sample.app.src │ └── single-context.es ├── F#/ │ ├── Combinators.fs │ ├── JsonFormat.fs │ ├── JsonReader.fs │ ├── JsonSerializer.fs │ ├── JsonWriter.fs │ ├── PerformanceTesters.fs │ ├── PerformanceTests.fs │ └── sample.fs ├── FLUX/ │ ├── gameserver.fx │ ├── imageserver.fx │ ├── mbittorrent.fx │ └── test.fx ├── Factor/ │ └── hello-world.factor ├── Fantom/ │ ├── sample1.fan │ └── sample2.fan ├── Filebench WML/ │ └── copyfiles.f ├── Filterscript/ │ ├── colormatrix.fs │ └── fs_kernel.fs ├── Formatted/ │ ├── NiAlH_jea.eam.fs │ ├── long_seq.for │ └── wksst8110.for ├── Forth/ │ ├── KataDiversion.fth │ ├── asm.fr │ ├── bitmap.frt │ ├── block.fth │ ├── core-ext.fth │ ├── core.f │ ├── core.for │ ├── core.fs │ ├── core.fth │ ├── core1.F │ ├── enum.frt │ ├── hello-forth.forth │ ├── hello-forth.fth │ ├── macros.frt │ ├── tools.4TH │ └── tools.fth ├── Fortran/ │ ├── bug-185631.f │ ├── m_filt2d.F90 │ ├── sample1.f │ ├── sample1.for │ ├── sample2.f │ ├── sample3.F │ ├── tst.f03 │ ├── tst.f08 │ ├── tst.f15 │ └── tst.f95 ├── FreeMarker/ │ ├── example.ftl │ └── layout.ftl ├── Frege/ │ ├── CommandLineClock.fr │ ├── Concurrent.fr │ ├── Sudoku.fr │ └── SwingExamples.fr ├── G-code/ │ ├── duettest.g │ └── square.g ├── GAMS/ │ └── transport.gms ├── GAP/ │ ├── Magic.gd │ ├── Magic.gi │ ├── PackageInfo.g │ ├── bugfix.tst │ ├── example.gd │ ├── example.gi │ ├── factor.tst │ ├── vspc.gd │ └── vspc.gi ├── GCC Machine Description/ │ └── pdp10.md ├── GDB/ │ ├── as3.gdbinit │ └── gdb_lpc17xx_program.gdb ├── GDScript/ │ ├── example.gd │ ├── grid.gd │ ├── player.gd │ └── pong.gd ├── GLSL/ │ ├── SimpleLighting.gl2.frag │ ├── SyLens.glsl │ ├── SyLens.shader │ ├── gbuffers_textured_lit.fsh │ ├── gbuffers_textured_lit.vsh │ ├── islandScene.glsl │ ├── islandScene.shader │ ├── myfragment.frg │ ├── myvertex.vrx │ ├── pntriangles.tesc │ ├── pntriangles.tese │ ├── recurse1.frag │ ├── recurse1.fs │ └── shader.fp ├── GN/ │ ├── BUILD.2.gn │ ├── BUILD.3.gn │ ├── BUILD.gn │ ├── android-rules.gni │ ├── clang.gni │ ├── filenames/ │ │ └── .gn │ ├── gcc_toolchain.gni │ ├── icu.gn │ ├── internal_rules.gni │ ├── ios-rules.gni │ └── isolate.gni ├── Game Maker Language/ │ ├── GMLmenus.gml │ ├── _piwikCacheRequest.gml │ ├── _piwikSendBasicReq.gml │ ├── _piwikSendReq.gml │ ├── characterDrawEvent.gml │ ├── characterStepEvent.gml │ ├── draw_menu.gml │ ├── faucet-http.gml │ ├── jsonion.gml │ ├── jsonion_test.gml │ └── scrInitLevel.gml ├── Genie/ │ ├── Class.gs │ └── Hello.gs ├── Gerber Image/ │ ├── FelinaePurr-B.Cu.gbl │ ├── FelinaePurr-B.Mask.gbs │ ├── FelinaePurr-B.SilkS.gbo │ ├── FelinaePurr-F.Cu.gtl │ ├── FelinaePurr-F.Mask.gts │ ├── FelinaePurr-F.Paste.gtp │ ├── FelinaePurr-F.SilkS.gto │ ├── GOLMain_RevA-B.Paste.gbp │ ├── nonaprs_contour.gko │ ├── simonShield-B.Cu.gbr │ ├── simonShield-B.Mask.gbr │ ├── simonShield-Edge.Cuts.gbr │ ├── simonShield-F.Cu.gbr │ ├── simonShield-F.Mask.gbr │ ├── simonShield-F.SilkS.gbr │ └── simonShield-drl_map.gbr ├── Gnuplot/ │ ├── dashcolor.1.gnu │ ├── histograms.2.gnu │ ├── rates.gp │ ├── surface1.16.gnu │ ├── surface1.17.gnu │ └── world2.1.gnu ├── Go/ │ ├── api.pb.go │ ├── embedded.go │ └── gen-go-linguist-thrift.go ├── Golo/ │ ├── adapters.golo │ ├── async.golo │ ├── augmentations.golo │ ├── closures.golo │ ├── coin-change.golo │ ├── collection-literals.golo │ ├── context-decorator.golo │ ├── decorators.golo │ ├── dynamic-evaluation.golo │ ├── dynamic-object-person.golo │ ├── echo-args.golo │ ├── enums-thread-state.golo │ ├── fibonacci.golo │ ├── helloworld.golo │ ├── http-server.golo │ ├── logdeco.golo │ ├── matching-operator.golo │ ├── max-int.golo │ ├── memoize.golo │ ├── null-safety.golo │ ├── prepost-decorators.golo │ ├── structs.golo │ ├── swing-actionlistener.golo │ ├── swing-helloworld.golo │ ├── templates-chat-webapp.golo │ ├── util-containers.golo │ └── workers.golo ├── Gosu/ │ ├── Hello.gst │ ├── Hello.gsx │ ├── Person.gs │ ├── Ronin.gs │ └── hello.vark ├── Grace/ │ ├── ackerman_function.grace │ └── grace_IDE.grace ├── Gradle/ │ ├── build.gradle │ └── builder.gradle ├── Grammatical Framework/ │ ├── Foods.gf │ ├── FoodsAfr.gf │ ├── FoodsAmh.gf │ ├── FoodsBul.gf │ ├── FoodsCat.gf │ ├── FoodsChi.gf │ ├── FoodsCze.gf │ ├── FoodsDut.gf │ ├── FoodsEng.gf │ ├── FoodsEpo.gf │ ├── FoodsFin.gf │ ├── FoodsFre.gf │ ├── FoodsGer.gf │ ├── FoodsHeb.gf │ ├── FoodsHin.gf │ ├── FoodsI.gf │ ├── FoodsIce.gf │ ├── FoodsIta.gf │ ├── FoodsJpn.gf │ ├── FoodsLav.gf │ ├── FoodsMlt.gf │ ├── FoodsMon.gf │ ├── FoodsNep.gf │ ├── FoodsOri.gf │ ├── FoodsPes.gf │ ├── FoodsPor.gf │ ├── FoodsRon.gf │ ├── FoodsSpa.gf │ ├── FoodsSwe.gf │ ├── FoodsTha.gf │ ├── FoodsTsn.gf │ ├── FoodsTur.gf │ ├── FoodsUrd.gf │ ├── LexFoods.gf │ ├── LexFoodsCat.gf │ ├── LexFoodsFin.gf │ ├── LexFoodsGer.gf │ ├── LexFoodsIta.gf │ ├── LexFoodsSwe.gf │ ├── ResCze.gf │ └── transFoodsHin.gf ├── Graph Modeling Language/ │ └── sample.gml ├── GraphQL/ │ ├── kitchen-sink.graphql │ └── schema-kitchen-sink.graphql ├── Graphviz (DOT)/ │ ├── annoying.DOT │ └── sample.dot ├── Groovy/ │ ├── build.gvy │ ├── filenames/ │ │ └── Jenkinsfile │ ├── groovy │ ├── script.gvy │ ├── template.grt │ └── template.gtpl ├── Groovy Server Pages/ │ ├── bar.gsp │ ├── hello-pagedirective.gsp │ ├── hello-resources.gsp │ └── hello-var.gsp ├── HCL/ │ ├── example.hcl │ ├── example.tf │ ├── main.tf │ └── terraform.tfvars ├── HLSL/ │ ├── accelerated_surface_win.hlsl │ ├── bloom.cginc │ ├── corridor.fx │ ├── jellyfish.fx │ └── noise.fx ├── HTML/ │ ├── ApiOverviewPage.st │ ├── example.xht │ ├── index.html.hl │ ├── pages.html │ ├── rpanel.inc │ └── tailDel.inc ├── HTML+Django/ │ ├── _worker.jinja2 │ └── nunjucks.njk ├── HTML+ECR/ │ └── greeting.ecr ├── HTML+EEX/ │ └── index.html.eex ├── HTML+ERB/ │ ├── fishbowl.html.erb.deface │ └── index.html.erb ├── HXML/ │ ├── checkstyle.hxml │ └── vshaxe.hxml ├── Hack/ │ ├── Assert.hh │ ├── AssertRecipe.hh │ ├── Controller.hh │ ├── DBResultRecipe.hh │ ├── Documentation.hh │ ├── FakeDB.hh │ ├── GetAndPostRecipe.hh │ ├── GetController.hh │ ├── HomeController.hh │ ├── MySecureRequest.hh │ ├── Nav.hh │ ├── NonStrictFile.hh │ ├── Recipe.hh │ ├── RecipeWithDemo.hh │ ├── Request.hh │ ├── StandardPage.hh │ ├── StrictFile.hh │ ├── UnescapedString.hh │ ├── UnescapedStringRecipe.hh │ ├── UserID.hh │ ├── UserIDRecipe.hh │ ├── UsingUserID.hh │ ├── error.hh │ ├── funs.hh │ ├── funs.php │ ├── index.hh │ ├── phpfile.hh │ └── startup.hh ├── Haml/ │ ├── buttons.html.haml.deface │ └── hello.haml ├── Handlebars/ │ ├── basic.handlebars │ └── each.hbs ├── Haskell/ │ ├── Hello.hs │ ├── HsColour.hs │ ├── Main.hs │ ├── Sudoku.hs │ └── maze-solving.hs ├── Haxe/ │ └── HaxeExamples.hx ├── Hy/ │ ├── fibonacci.hy │ └── hello-world.hy ├── HyPhy/ │ ├── AAModelComparison.bf │ ├── CodonModelCompare.bf │ ├── MFPositiveSelection.bf │ ├── MatrixIndexing.bf │ ├── MolecularClock.bf │ ├── dNdSDistributionComparison.bf │ ├── hyphy_cmds.bf │ └── profile_test.bf ├── IDL/ │ ├── mg_acosh.pro │ ├── mg_analysis.dlm │ ├── mg_gcd.pro │ └── mg_trunc.pro ├── IGOR Pro/ │ ├── functions.ipf │ └── generic.ipf ├── INI/ │ ├── MouseKeyboard.pro │ ├── filenames/ │ │ ├── .editorconfig │ │ ├── .gitconfig │ │ └── buildozer.spec │ └── ultimate-temp-controller.pro ├── Idris/ │ └── Chars.idr ├── Inform 7/ │ ├── Trivial Extension.i7x │ └── story.ni ├── Inno Setup/ │ └── expat.iss ├── Ioke/ │ └── hello.ik ├── Isabelle/ │ └── HelloWorld.thy ├── Isabelle ROOT/ │ └── filenames/ │ └── ROOT ├── J/ │ ├── hashbang │ └── stwij.ijs ├── JFlex/ │ ├── LexScan.flex │ └── java.jflex ├── JSON/ │ ├── Git Commit.JSON-tmLanguage │ ├── Material_Alpha_01.gltf │ ├── filenames/ │ │ ├── .arcconfig │ │ ├── .htmlhintrc │ │ ├── .jscsrc │ │ ├── .tern-config │ │ ├── .tern-project │ │ └── mcmod.info │ ├── geo.geojson │ ├── http_response.avsc │ ├── manifest.webapp │ ├── manifest.webmanifest │ ├── person.json │ ├── product.json │ ├── schema.json │ ├── small.tfstate │ ├── switzerland.topojson │ └── terraform.tfstate.backup ├── JSON5/ │ ├── example.json5 │ ├── filenames/ │ │ ├── .babelrc │ │ └── .jslintrc │ └── package.json5 ├── JSONLD/ │ └── sample.jsonld ├── JSONiq/ │ ├── detail.jq │ └── query.jq ├── JSX/ │ └── sample.jsx ├── Jasmin/ │ ├── if1.j │ ├── if2.j │ ├── if3.j │ ├── if4.j │ ├── op1.j │ ├── op2.j │ ├── op3.j │ └── op4.j ├── Java/ │ ├── GrammarKit.java │ ├── HtmlDomParserContext.java │ ├── Hudson.java │ ├── JFlexLexer.java │ ├── NokogiriService.java │ ├── ProtocolBuffer.java │ ├── clojure-type.java │ ├── clojure-util.java │ └── gen-java-linguist-thrift.java ├── JavaScript/ │ ├── axios.es │ ├── basic.svelte │ ├── basic.vue │ ├── bootstrap-modal.js │ ├── ccalc-lex.js │ ├── ccalc-parse.js │ ├── chart_composers.gs │ ├── classes-old.js │ ├── classes.js │ ├── constant_fold.mjs │ ├── dude.js │ ├── entry.mjs │ ├── gen-js-linguist-thrift.js │ ├── hello.js │ ├── helloHanaEndpoint.xsjs │ ├── helloHanaMath.xsjslib │ ├── http.js │ ├── index.es │ ├── intro-old.js │ ├── intro.js │ ├── intro.js.frag │ ├── itau.gs │ ├── jquery-1.6.1.js │ ├── jquery-1.7.2.js │ ├── js │ ├── js2 │ ├── jsbuild.jsb │ ├── json2_backbone.js │ ├── logo.jscad │ ├── modernizr.js │ ├── module.mjs │ ├── namespace.js │ ├── outro.js.frag │ ├── parser.js │ ├── pre-processors.vue │ ├── proto.js │ ├── steelseries-min.js │ └── uglify.js ├── Jison/ │ ├── ansic.jison │ ├── classy.jison │ └── lex.jison ├── Jison Lex/ │ ├── classy.jisonlex │ └── lex_grammar.jisonlex ├── Jolie/ │ ├── common.iol │ ├── exam.ol │ ├── examiner.ol │ ├── hanoi.ol │ └── student.ol ├── Julia/ │ ├── julia │ └── stockcorr.jl ├── KRL/ │ └── helloworld.krl ├── KiCad Layout/ │ ├── C_Disc_D3_P2.5.kicad_mod │ ├── Conn_Poncho_SinBorde.kicad_mod │ ├── Fiducial_1mm.kicad_mod │ ├── LED-5MM.kicad_mod │ ├── Logo_OSHWA.kicad_mod │ ├── Logo_Poncho.kicad_mod │ ├── MagneticBuzzer_ProSignal_ABT-410-RC.kicad_mod │ ├── Pin_Header_Straight_2x02.kicad_mod │ ├── Pin_Header_Straight_2x20.kicad_mod │ ├── Resistor_Horizontal_RM7mm.kicad_mod │ ├── SW_PUSH_SMALL.kicad_mod │ ├── TO-92_Molded_Narrow.kicad_mod │ ├── filenames/ │ │ └── fp-lib-table │ ├── kivicad.kicad_wks │ ├── nrf-bga.kicad_pcb │ └── simonShield.kicad_pcb ├── KiCad Legacy Layout/ │ └── tc14badge.brd ├── KiCad Schematic/ │ ├── Volume.sch │ ├── buttons.sch │ ├── buzzer.sch │ ├── ciaaConector.sch │ ├── gedda-junk.sch │ └── ultimate-temp-controller.sch ├── Kit/ │ └── demo.kit ├── Kotlin/ │ └── Foo.kt ├── LFE/ │ ├── church.lfe │ ├── gps1.lfe │ ├── mnesia_demo.lfe │ └── object.lfe ├── LOLCODE/ │ └── LOLTracer.lol ├── LSL/ │ ├── LSL.lsl │ └── LSL.lslp ├── Lasso/ │ ├── json.lasso │ ├── json.lasso9 │ ├── knop.las │ └── knop.ldml ├── Latte/ │ ├── layout.latte │ └── template.latte ├── Lean/ │ ├── binary.lean │ └── set.hlean ├── Less/ │ └── screen.less ├── Lex/ │ └── zend_ini_scanner.l ├── Limbo/ │ ├── cat.b │ ├── lock.b │ └── lock.m ├── Linker Script/ │ ├── filenames/ │ │ └── ld.script │ ├── inject.x │ ├── link.ld │ └── vmlinux.lds ├── Linux Kernel Module/ │ ├── bcm4334x.mod │ ├── mbcache.mod │ └── md5.mod ├── Liquid/ │ ├── layout.liquid │ └── template.liquid ├── Literate Agda/ │ └── NatCat.lagda ├── Literate CoffeeScript/ │ └── scope.litcoffee ├── LiveScript/ │ └── hello.ls ├── Logos/ │ ├── NCHax.x │ ├── NoCarrier.x │ ├── Tweak.x │ ├── example.xm │ └── string1.x ├── Logtalk/ │ └── foo.lgt ├── LookML/ │ ├── comments.view.lookml │ ├── example.model.lkml │ └── example.view.lkml ├── LoomScript/ │ ├── HelloWorld.ls │ └── SyntaxExercise.ls ├── Lua/ │ ├── h-counter.pd_lua │ ├── treegen.p8 │ ├── vidya-file-list-parser.pd_lua │ ├── vidya-file-modder.pd_lua │ └── wsapi.fcgi ├── M/ │ ├── Comment.m │ ├── GMRGPNB0.m │ ├── MDB.m │ ├── PRCAAPR.m │ ├── PXAI.m │ ├── WVBRNOT.m │ ├── ZDIOUT1.m │ ├── _zewdAPI.m │ ├── _zewdDemo.m │ ├── arrays.m │ ├── base64.m │ ├── digest.m │ ├── dynamicscoping.m │ ├── fibonacci.m │ ├── forloop.m │ ├── functions.m │ ├── helloworld.m │ ├── ifelse.m │ ├── indirectfunctions.m │ ├── md5.m │ ├── mileage.m │ ├── mumtris.m │ ├── nesting.m │ ├── pcre.m │ ├── pcreexamples.m │ ├── postconditional.m │ ├── primes.m │ ├── url.m │ └── zmwire.m ├── M4/ │ └── htmlgen.m4 ├── M4Sugar/ │ ├── ax_ruby_devel.m4 │ ├── filenames/ │ │ └── configure.ac │ └── list.m4 ├── MAXScript/ │ ├── macro-1.mcr │ ├── macro-2.mcr │ ├── rolloutCreator.ms │ ├── svg-renderer.ms │ └── volume-calc.ms ├── MQL4/ │ ├── header-sample.mqh │ ├── indicator-sample.mq4 │ └── script-sample.mq4 ├── MQL5/ │ ├── Regex.mqh │ ├── indicator-sample.mq5 │ └── script-sample.mq5 ├── MTML/ │ └── categories_to_columns.mtml ├── MUF/ │ ├── 39.m │ └── cmd-say.muf ├── Makefile/ │ ├── file-icons.make │ ├── filenames/ │ │ ├── BSDmakefile │ │ ├── Kbuild │ │ ├── Makefile │ │ ├── Makefile.boot │ │ ├── Makefile.frag │ │ ├── Makefile.inc │ │ ├── Makefile.wat │ │ ├── makefile.sco │ │ └── mkfile │ ├── foo.o.d │ └── makefile ├── Markdown/ │ ├── README.mdown │ ├── csharp6.workbook │ ├── minimal.md │ ├── symlink.md │ └── tender.md ├── Marko/ │ ├── counter.marko │ ├── hello.marko │ └── rgb-sliders.marko ├── Mask/ │ └── view.mask ├── Mathematica/ │ ├── HeyexImport.m │ ├── Init.m │ ├── MiscCalculations.nb │ ├── MiscCalculations2.nb │ ├── PacletInfo.m │ ├── Predicates.m │ ├── Predicates.wl │ ├── Problem12.m │ ├── TestArithmetic.mt │ ├── TestString.mt │ ├── TestSuite.mt │ └── UnitTest.wlt ├── Matlab/ │ ├── CVX/ │ │ ├── Contents.m │ │ ├── builtins/ │ │ │ ├── @cvx/ │ │ │ │ ├── abs.m │ │ │ │ ├── blkdiag.m │ │ │ │ ├── builtins.m │ │ │ │ ├── cat.m │ │ │ │ ├── conj.m │ │ │ │ ├── conv.m │ │ │ │ ├── ctranspose.m │ │ │ │ ├── cumprod.m │ │ │ │ ├── cumsum.m │ │ │ │ ├── diag.m │ │ │ │ ├── disp.m │ │ │ │ ├── end.m │ │ │ │ ├── eq.m │ │ │ │ ├── exp.m │ │ │ │ ├── find.m │ │ │ │ ├── full.m │ │ │ │ ├── ge.m │ │ │ │ ├── gt.m │ │ │ │ ├── hankel.m │ │ │ │ ├── horzcat.m │ │ │ │ ├── imag.m │ │ │ │ ├── ipermute.m │ │ │ │ ├── isreal.m │ │ │ │ ├── kron.m │ │ │ │ ├── ldivide.m │ │ │ │ ├── le.m │ │ │ │ ├── log.m │ │ │ │ ├── lt.m │ │ │ │ ├── max.m │ │ │ │ ├── min.m │ │ │ │ ├── minus.m │ │ │ │ ├── mldivide.m │ │ │ │ ├── mpower.m │ │ │ │ ├── mrdivide.m │ │ │ │ ├── mtimes.m │ │ │ │ ├── ne.m │ │ │ │ ├── nnz.m │ │ │ │ ├── norm.m │ │ │ │ ├── permute.m │ │ │ │ ├── plus.m │ │ │ │ ├── polyval.m │ │ │ │ ├── power.m │ │ │ │ ├── prod.m │ │ │ │ ├── rdivide.m │ │ │ │ ├── real.m │ │ │ │ ├── reshape.m │ │ │ │ ├── size.m │ │ │ │ ├── sparse.m │ │ │ │ ├── spy.m │ │ │ │ ├── sqrt.m │ │ │ │ ├── std.m │ │ │ │ ├── subsasgn.m │ │ │ │ ├── subsref.m │ │ │ │ ├── sum.m │ │ │ │ ├── times.m │ │ │ │ ├── toeplitz.m │ │ │ │ ├── transpose.m │ │ │ │ ├── tril.m │ │ │ │ ├── triu.m │ │ │ │ ├── uminus.m │ │ │ │ ├── uplus.m │ │ │ │ ├── var.m │ │ │ │ └── vertcat.m │ │ │ ├── @cvxcnst/ │ │ │ │ ├── eq.m │ │ │ │ ├── ge.m │ │ │ │ ├── gt.m │ │ │ │ ├── le.m │ │ │ │ ├── lt.m │ │ │ │ └── ne.m │ │ │ └── Contents.m │ │ ├── commands/ │ │ │ ├── @cvx/ │ │ │ │ └── commands.m │ │ │ ├── Contents.m │ │ │ ├── cvx_begin.m │ │ │ ├── cvx_clear.m │ │ │ ├── cvx_end.m │ │ │ ├── cvx_expert.m │ │ │ ├── cvx_pause.m │ │ │ ├── cvx_power_warning.m │ │ │ ├── cvx_precision.m │ │ │ ├── cvx_profile.m │ │ │ ├── cvx_quiet.m │ │ │ ├── cvx_save_prefs.m │ │ │ ├── cvx_solver.m │ │ │ ├── cvx_solver_settings.m │ │ │ ├── cvx_tic.m │ │ │ ├── cvx_toc.m │ │ │ └── cvx_where.m │ │ ├── cvx_error.m │ │ ├── cvx_setup.m │ │ ├── cvx_startup.m │ │ ├── cvx_version.m │ │ ├── examples/ │ │ │ ├── Contents.m │ │ │ ├── antenna_array_design/ │ │ │ │ ├── Contents.m │ │ │ │ ├── ant_array_min_beamwidth.m │ │ │ │ ├── ant_array_min_sidelobe.m │ │ │ │ ├── ant_array_min_therm_noise.m │ │ │ │ ├── broadband_array_min_sidelobe.m │ │ │ │ ├── line_array_spec_fact.m │ │ │ │ ├── polar_plot_ant.m │ │ │ │ └── spectral_fact.m │ │ │ ├── circuit_design/ │ │ │ │ ├── Contents.m │ │ │ │ ├── LC_osc_design.m │ │ │ │ ├── clock_mesh.m │ │ │ │ ├── dig_ckt_sizing.m │ │ │ │ ├── elmore_straight_wire.m │ │ │ │ ├── inverter_chain_sizing.m │ │ │ │ ├── plot_four_tapers.m │ │ │ │ ├── simple_NAND2_gate_design.m │ │ │ │ ├── simple_step.m │ │ │ │ ├── tristate_bus_sizing.m │ │ │ │ ├── wire_driver_sizing.m │ │ │ │ ├── wire_sizing.m │ │ │ │ ├── wire_sizing_spacing.m │ │ │ │ └── wire_sizing_topology.m │ │ │ ├── closest_toeplitz_psd.m │ │ │ ├── cvxbook/ │ │ │ │ ├── Ch04_cvx_opt_probs/ │ │ │ │ │ ├── Contents.m │ │ │ │ │ ├── cantilever_beam.m │ │ │ │ │ ├── cantilever_beam_plot.m │ │ │ │ │ ├── cantilever_beam_rec.m │ │ │ │ │ ├── channel_capacity.m │ │ │ │ │ ├── chebyshev_center.m │ │ │ │ │ ├── chebyshev_center_2D.m │ │ │ │ │ ├── ex_4_27.m │ │ │ │ │ ├── ex_4_3.m │ │ │ │ │ ├── ex_4_38.m │ │ │ │ │ ├── ex_4_5.m │ │ │ │ │ ├── fastest_mixing_MC.m │ │ │ │ │ ├── frob_norm_diag_scaling.m │ │ │ │ │ ├── logopt_investment.m │ │ │ │ │ ├── max_det_psd_completion.m │ │ │ │ │ └── min_spec_rad_ppl_dynamics.m │ │ │ │ ├── Ch05_duality/ │ │ │ │ │ ├── Contents.m │ │ │ │ │ ├── ex_5_1.m │ │ │ │ │ ├── ex_5_19.m │ │ │ │ │ ├── ex_5_33.m │ │ │ │ │ ├── ex_5_39.m │ │ │ │ │ ├── matrix_games.m │ │ │ │ │ ├── matrix_games_LP.m │ │ │ │ │ ├── norm_approx.m │ │ │ │ │ └── qcqp.m │ │ │ │ ├── Ch06_approx_fitting/ │ │ │ │ │ ├── Contents.m │ │ │ │ │ ├── basispursuit.m │ │ │ │ │ ├── convex_interpolation.m │ │ │ │ │ ├── deadzone.m │ │ │ │ │ ├── fig6_15.m │ │ │ │ │ ├── fig6_19.m │ │ │ │ │ ├── fig6_20.m │ │ │ │ │ ├── fig6_5.m │ │ │ │ │ ├── fig6_6.m │ │ │ │ │ ├── fig6_9.m │ │ │ │ │ ├── penalty_comp_cvx.m │ │ │ │ │ ├── preference_regions.m │ │ │ │ │ ├── regressor_cvx.m │ │ │ │ │ ├── smoothrec_cvx.m │ │ │ │ │ ├── tv_cvx.m │ │ │ │ │ └── wcrobls.m │ │ │ │ ├── Ch07_statistical_estim/ │ │ │ │ │ ├── Contents.m │ │ │ │ │ ├── ML_covariance_est.m │ │ │ │ │ ├── cheb.m │ │ │ │ │ ├── cher.m │ │ │ │ │ ├── counting_problem_poisson.m │ │ │ │ │ ├── detector2.m │ │ │ │ │ ├── expdesign.m │ │ │ │ │ ├── logistics.m │ │ │ │ │ ├── logistics_gp.m │ │ │ │ │ ├── maxent.m │ │ │ │ │ ├── montecarlo.m │ │ │ │ │ └── probbounds.m │ │ │ │ ├── Ch08_geometric_probs/ │ │ │ │ │ ├── Contents.m │ │ │ │ │ ├── analytic_center.m │ │ │ │ │ ├── data_floorplan_32.mat │ │ │ │ │ ├── data_floorplan_60.mat │ │ │ │ │ ├── eucl_dist_poly.m │ │ │ │ │ ├── eucl_dist_poly_2D.m │ │ │ │ │ ├── eucl_proj_cone1.m │ │ │ │ │ ├── eucl_proj_cone2.m │ │ │ │ │ ├── eucl_proj_hlf.m │ │ │ │ │ ├── eucl_proj_hyp.m │ │ │ │ │ ├── eucl_proj_rect.m │ │ │ │ │ ├── ex_8_3.m │ │ │ │ │ ├── ex_8_4.m │ │ │ │ │ ├── ex_8_5.m │ │ │ │ │ ├── floor_plan.m │ │ │ │ │ ├── floor_plan_graphs.m │ │ │ │ │ ├── floorplan.m │ │ │ │ │ ├── linear_discr.m │ │ │ │ │ ├── max_vol_ellip_in_polyhedra.m │ │ │ │ │ ├── min_vol_elp_finite_set.m │ │ │ │ │ ├── min_vol_union_ellip.m │ │ │ │ │ ├── placement_lin.m │ │ │ │ │ ├── placement_quad.m │ │ │ │ │ ├── placement_quar.m │ │ │ │ │ ├── poly3_discr.m │ │ │ │ │ ├── poly4_discr.m │ │ │ │ │ ├── quad_discr.m │ │ │ │ │ ├── robust_lin_discr.m │ │ │ │ │ ├── separate_ell_2D.m │ │ │ │ │ ├── separate_poly_2D.m │ │ │ │ │ ├── separate_pt_poly.m │ │ │ │ │ ├── svm_1.m │ │ │ │ │ ├── svm_2.m │ │ │ │ │ └── test_floorplan.m │ │ │ │ ├── Ch11_intpt_methods/ │ │ │ │ │ ├── Contents.m │ │ │ │ │ └── log_utility_flow.m │ │ │ │ └── Contents.m │ │ │ ├── equality_constr_norm_min.m │ │ │ ├── filter_design/ │ │ │ │ ├── Contents.m │ │ │ │ ├── equalizer_design.m │ │ │ │ ├── fir_chebychev_design.m │ │ │ │ ├── fir_lin_phase_lowpass_max_atten.m │ │ │ │ ├── fir_lin_phase_lowpass_min_order.m │ │ │ │ ├── fir_lin_phase_lowpass_min_ripple.m │ │ │ │ ├── fir_lin_phase_lowpass_min_trans.m │ │ │ │ ├── fir_mag_design_lowpass_max_atten.m │ │ │ │ ├── fir_mag_design_lowpass_min_order.m │ │ │ │ ├── iir_mag_design_bandpass_max_atten.m │ │ │ │ ├── iir_mag_design_lowpass_max_atten.m │ │ │ │ ├── one_over_f_filter.m │ │ │ │ └── spectral_fact.m │ │ │ ├── gp_tutorial/ │ │ │ │ ├── Contents.m │ │ │ │ ├── basic_odp.m │ │ │ │ ├── beta_min_odp.m │ │ │ │ ├── elmore_interconnect.m │ │ │ │ ├── floor_planning.m │ │ │ │ ├── max_volume_box.m │ │ │ │ ├── power_control.m │ │ │ │ ├── simple_dig_ckt_sizing.m │ │ │ │ └── simple_dig_ckt_sizing_vect.m │ │ │ ├── graph_laplacian/ │ │ │ │ ├── Contents.m │ │ │ │ ├── best_const.m │ │ │ │ ├── cut_grid_data.m │ │ │ │ ├── cut_grid_example.m │ │ │ │ ├── fdla.m │ │ │ │ ├── fmmc.m │ │ │ │ ├── larger_example.m │ │ │ │ ├── max_deg.m │ │ │ │ ├── mh.m │ │ │ │ ├── plotgraph.m │ │ │ │ └── small_example.m │ │ │ ├── log_exp/ │ │ │ │ ├── Contents.m │ │ │ │ ├── max_entropy.m │ │ │ │ ├── sparse_covariance_est.m │ │ │ │ ├── sparse_covariance_est_tradeoff.m │ │ │ │ └── weighted_analytic_center.m │ │ │ ├── make.m │ │ │ ├── min_phase_spectral_fact.m │ │ │ ├── nonneg_matrix_fact.m │ │ │ ├── quickstart.m │ │ │ ├── regularized_norm_tradeoff.m │ │ │ ├── simple_LP.m │ │ │ ├── simple_LP2.m │ │ │ ├── simple_LS.m │ │ │ ├── sparse_heuristics/ │ │ │ │ ├── Contents.m │ │ │ │ ├── sparse_infeas.m │ │ │ │ ├── sparse_infeas_dual.m │ │ │ │ └── sparse_solution.m │ │ │ └── time_series_analysis/ │ │ │ ├── Contents.m │ │ │ └── l1_trend_filter_snp500.m │ │ ├── functions/ │ │ │ ├── @cvx/ │ │ │ │ ├── avg_abs_dev.m │ │ │ │ ├── avg_abs_dev_med.m │ │ │ │ ├── berhu.m │ │ │ │ ├── cvx_recip.m │ │ │ │ ├── det_inv.m │ │ │ │ ├── det_rootn.m │ │ │ │ ├── functions.m │ │ │ │ ├── geo_mean.m │ │ │ │ ├── huber_pos.m │ │ │ │ ├── inv_pos.m │ │ │ │ ├── lambda_max.m │ │ │ │ ├── lambda_sum_largest.m │ │ │ │ ├── log_normcdf.m │ │ │ │ ├── log_sum_exp.m │ │ │ │ ├── matrix_frac.m │ │ │ │ ├── norm_nuc.m │ │ │ │ ├── norms.m │ │ │ │ ├── pow_abs.m │ │ │ │ ├── pow_cvx.m │ │ │ │ ├── pow_p.m │ │ │ │ ├── pow_pos.m │ │ │ │ ├── prod_inv.m │ │ │ │ ├── quad_form.m │ │ │ │ ├── quad_over_lin.m │ │ │ │ ├── quad_pos_over_lin.m │ │ │ │ ├── rel_entr.m │ │ │ │ ├── sigma_max.m │ │ │ │ ├── square.m │ │ │ │ ├── square_abs.m │ │ │ │ ├── square_pos.m │ │ │ │ ├── sum_largest.m │ │ │ │ ├── sum_log.m │ │ │ │ ├── sum_square.m │ │ │ │ ├── sum_square_abs.m │ │ │ │ ├── sum_square_pos.m │ │ │ │ ├── trace_inv.m │ │ │ │ ├── trace_sqrtm.m │ │ │ │ └── vec.m │ │ │ ├── Contents.m │ │ │ ├── avg_abs_dev.m │ │ │ ├── avg_abs_dev_med.m │ │ │ ├── berhu.m │ │ │ ├── det_inv.m │ │ │ ├── det_root2n.m │ │ │ ├── det_rootn.m │ │ │ ├── entr.m │ │ │ ├── geo_mean.m │ │ │ ├── geomean.m │ │ │ ├── huber.m │ │ │ ├── huber_circ.m │ │ │ ├── huber_pos.m │ │ │ ├── inv_pos.m │ │ │ ├── kl_div.m │ │ │ ├── lambda_max.m │ │ │ ├── lambda_min.m │ │ │ ├── lambda_sum_largest.m │ │ │ ├── lambda_sum_smallest.m │ │ │ ├── log_det.m │ │ │ ├── log_normcdf.m │ │ │ ├── log_prod.m │ │ │ ├── log_sum_exp.m │ │ │ ├── logsumexp.m │ │ │ ├── logsumexp_sdp.m │ │ │ ├── matrix_frac.m │ │ │ ├── norm_largest.m │ │ │ ├── norm_nuc.m │ │ │ ├── norms.m │ │ │ ├── norms_largest.m │ │ │ ├── poly_env.m │ │ │ ├── polyenv.m │ │ │ ├── polyval_trig.m │ │ │ ├── pos.m │ │ │ ├── pow_abs.m │ │ │ ├── pow_p.m │ │ │ ├── pow_pos.m │ │ │ ├── prod_inv.m │ │ │ ├── quad_form.m │ │ │ ├── quad_over_lin.m │ │ │ ├── quad_pos_over_lin.m │ │ │ ├── rel_entr.m │ │ │ ├── sigma_max.m │ │ │ ├── square_/ │ │ │ │ └── square.m │ │ │ ├── square_abs.m │ │ │ ├── square_pos.m │ │ │ ├── sum_largest.m │ │ │ ├── sum_log.m │ │ │ ├── sum_smallest.m │ │ │ ├── sum_square.m │ │ │ ├── sum_square_abs.m │ │ │ ├── sum_square_pos.m │ │ │ ├── sym.m │ │ │ ├── trace_inv.m │ │ │ ├── trace_sqrtm.m │ │ │ └── vec_/ │ │ │ └── vec.m │ │ ├── keywords/ │ │ │ ├── Contents.m │ │ │ ├── In.m │ │ │ ├── binary.m │ │ │ ├── dual.m │ │ │ ├── epigraph.m │ │ │ ├── expression.m │ │ │ ├── expressions.m │ │ │ ├── hypograph.m │ │ │ ├── integer.m │ │ │ ├── maximise.m │ │ │ ├── maximize.m │ │ │ ├── minimise.m │ │ │ ├── minimize.m │ │ │ ├── subject.m │ │ │ ├── variable.m │ │ │ └── variables.m │ │ ├── lib/ │ │ │ ├── @cell/ │ │ │ │ ├── cvx_id.m │ │ │ │ ├── cvx_setdual.m │ │ │ │ └── cvx_value.m │ │ │ ├── @cvx/ │ │ │ │ ├── bcompress.m │ │ │ │ ├── buncompress.m │ │ │ │ ├── cvx.m │ │ │ │ ├── cvx_basis.m │ │ │ │ ├── cvx_classify.m │ │ │ │ ├── cvx_constant.m │ │ │ │ ├── cvx_getdual.m │ │ │ │ ├── cvx_isaffine.m │ │ │ │ ├── cvx_isconcave.m │ │ │ │ ├── cvx_isconstant.m │ │ │ │ ├── cvx_isconvex.m │ │ │ │ ├── cvx_isnonzero.m │ │ │ │ ├── cvx_readlevel.m │ │ │ │ ├── cvx_setdual.m │ │ │ │ ├── cvx_value.m │ │ │ │ ├── cvx_vexity.m │ │ │ │ ├── in.m │ │ │ │ ├── keywords.m │ │ │ │ ├── matlab6.m │ │ │ │ ├── sets.m │ │ │ │ ├── sparsify.m │ │ │ │ ├── svec.m │ │ │ │ ├── type.m │ │ │ │ └── value.m │ │ │ ├── @cvxcnst/ │ │ │ │ ├── cvxcnst.m │ │ │ │ ├── disp.m │ │ │ │ ├── display.m │ │ │ │ ├── double.m │ │ │ │ ├── logical.m │ │ │ │ └── rhs.m │ │ │ ├── @cvxdual/ │ │ │ │ ├── colon.m │ │ │ │ ├── cvx_basis.m │ │ │ │ ├── cvx_value.m │ │ │ │ ├── cvxaff.m │ │ │ │ ├── cvxdual.m │ │ │ │ ├── disp.m │ │ │ │ ├── display.m │ │ │ │ ├── dof.m │ │ │ │ ├── inuse.m │ │ │ │ ├── isreal.m │ │ │ │ ├── name.m │ │ │ │ ├── problem.m │ │ │ │ ├── size.m │ │ │ │ ├── subsref.m │ │ │ │ ├── type.m │ │ │ │ └── value.m │ │ │ ├── @cvxin/ │ │ │ │ ├── cvxin.m │ │ │ │ ├── cvxtuple.m │ │ │ │ ├── gt.m │ │ │ │ └── lt.m │ │ │ ├── @cvxobj/ │ │ │ │ ├── cvx_id.m │ │ │ │ ├── cvxobj.m │ │ │ │ ├── disp.m │ │ │ │ ├── display.m │ │ │ │ ├── isempty.m │ │ │ │ ├── isequal.m │ │ │ │ ├── length.m │ │ │ │ ├── ndims.m │ │ │ │ ├── numel.m │ │ │ │ ├── subsasgn.m │ │ │ │ └── subsref.m │ │ │ ├── @cvxprob/ │ │ │ │ ├── cvx_value.m │ │ │ │ ├── cvxprob.m │ │ │ │ ├── disp.m │ │ │ │ ├── eliminate.m │ │ │ │ ├── eq.m │ │ │ │ ├── extract.m │ │ │ │ ├── index.m │ │ │ │ ├── ne.m │ │ │ │ ├── newcnstr.m │ │ │ │ ├── newdual.m │ │ │ │ ├── newnonl.m │ │ │ │ ├── newobj.m │ │ │ │ ├── newtemp.m │ │ │ │ ├── newvar.m │ │ │ │ ├── pop.m │ │ │ │ ├── solve.m │ │ │ │ ├── spy.m │ │ │ │ ├── subsasgn.m │ │ │ │ ├── subsref.m │ │ │ │ └── touch.m │ │ │ ├── @cvxtuple/ │ │ │ │ ├── apply.m │ │ │ │ ├── cvx_collapse.m │ │ │ │ ├── cvx_constant.m │ │ │ │ ├── cvx_getdual.m │ │ │ │ ├── cvx_id.m │ │ │ │ ├── cvx_isaffine.m │ │ │ │ ├── cvx_isconcave.m │ │ │ │ ├── cvx_isconstant.m │ │ │ │ ├── cvx_isconvex.m │ │ │ │ ├── cvx_setdual.m │ │ │ │ ├── cvx_value.m │ │ │ │ ├── cvxtuple.m │ │ │ │ ├── disp.m │ │ │ │ ├── eq.m │ │ │ │ ├── ge.m │ │ │ │ ├── gt.m │ │ │ │ ├── in.m │ │ │ │ ├── le.m │ │ │ │ ├── lt.m │ │ │ │ ├── ne.m │ │ │ │ ├── numel.m │ │ │ │ ├── subsasgn.m │ │ │ │ ├── subsref.m │ │ │ │ └── testall.m │ │ │ ├── Contents.m │ │ │ ├── cvx_accept_concave.m │ │ │ ├── cvx_accept_convex.m │ │ │ ├── cvx_basis.m │ │ │ ├── cvx_bcompress.m │ │ │ ├── cvx_blkdiag.m │ │ │ ├── cvx_c2r.m │ │ │ ├── cvx_check_dimension.m │ │ │ ├── cvx_check_dimlist.m │ │ │ ├── cvx_class.m │ │ │ ├── cvx_classify.m │ │ │ ├── cvx_clearpath.m │ │ │ ├── cvx_clearspath.m │ │ │ ├── cvx_collapse.m │ │ │ ├── cvx_constant.m │ │ │ ├── cvx_default_dimension.m │ │ │ ├── cvx_expand_dim.m │ │ │ ├── cvx_expert_check.m │ │ │ ├── cvx_getdual.m │ │ │ ├── cvx_global.m │ │ │ ├── cvx_id.m │ │ │ ├── cvx_ids.m │ │ │ ├── cvx_isaffine.m │ │ │ ├── cvx_isconcave.m │ │ │ ├── cvx_isconstant.m │ │ │ ├── cvx_isconvex.m │ │ │ ├── cvx_isnonzero.m │ │ │ ├── cvx_r2c.m │ │ │ ├── cvx_readlevel.m │ │ │ ├── cvx_reduce_size.m │ │ │ ├── cvx_remap.m │ │ │ ├── cvx_reshape.m │ │ │ ├── cvx_run_solver.m │ │ │ ├── cvx_setdual.m │ │ │ ├── cvx_setpath.m │ │ │ ├── cvx_setspath.m │ │ │ ├── cvx_size_check.m │ │ │ ├── cvx_subs2str.m │ │ │ ├── cvx_subsasgn.m │ │ │ ├── cvx_subsref.m │ │ │ ├── cvx_subsref_check.m │ │ │ ├── cvx_use_sparse.m │ │ │ ├── cvx_value.m │ │ │ ├── cvx_values.m │ │ │ ├── cvx_vexity.m │ │ │ ├── cvx_zeros.m │ │ │ └── narginchk_/ │ │ │ └── narginchk.m │ │ ├── sets/ │ │ │ ├── Contents.m │ │ │ ├── complex_lorentz.m │ │ │ ├── convex_poly_coeffs.m │ │ │ ├── exponential.m │ │ │ ├── geo_mean_cone.m │ │ │ ├── hermitian_semidefinite.m │ │ │ ├── lorentz.m │ │ │ ├── nonneg_poly_coeffs.m │ │ │ ├── nonnegative.m │ │ │ ├── norm_ball.m │ │ │ ├── rotated_complex_lorentz.m │ │ │ ├── rotated_lorentz.m │ │ │ ├── semidefinite.m │ │ │ └── simplex.m │ │ ├── shims/ │ │ │ ├── cvx_glpk.m │ │ │ ├── cvx_sdpt3.m │ │ │ └── cvx_sedumi.m │ │ └── structures/ │ │ ├── @cvx/ │ │ │ └── structures.m │ │ ├── Contents.m │ │ ├── cvx_create_structure.m │ │ ├── cvx_invert_structure.m │ │ ├── cvx_orthog_structure.m │ │ ├── cvx_replicate_structure.m │ │ ├── cvx_s_banded.m │ │ ├── cvx_s_hankel.m │ │ ├── cvx_s_hermitian.m │ │ ├── cvx_s_sparse.m │ │ ├── cvx_s_symmetric.m │ │ ├── cvx_s_symmetric_ut.m │ │ └── cvx_s_upper_hankel.m │ ├── Check_plot.m │ ├── FTLEH.m │ ├── FTLE_reg.m │ ├── Integrate1.m │ ├── Integrate2.m │ ├── Lagr.m │ ├── Lagrangian_points.m │ ├── Poincare.m │ ├── RK4.m │ ├── TFOCS/ │ │ ├── @double/ │ │ │ ├── tfocs_dot.m │ │ │ ├── tfocs_size.m │ │ │ └── vec.m │ │ ├── @single/ │ │ │ ├── tfocs_dot.m │ │ │ ├── tfocs_size.m │ │ │ └── vec.m │ │ ├── @tfocs_tuple/ │ │ │ ├── abs.m │ │ │ ├── cell.m │ │ │ ├── disp.m │ │ │ ├── display.m │ │ │ ├── get.m │ │ │ ├── max.m │ │ │ ├── min.m │ │ │ ├── minus.m │ │ │ ├── mtimes.m │ │ │ ├── nnz.m │ │ │ ├── numel.m │ │ │ ├── plus.m │ │ │ ├── power.m │ │ │ ├── size.m │ │ │ ├── subsref.m │ │ │ ├── tfocs_dot.m │ │ │ ├── tfocs_normsq.m │ │ │ ├── tfocs_size.m │ │ │ ├── tfocs_tuple.m │ │ │ ├── tfocs_zeros.m │ │ │ ├── times.m │ │ │ └── uminus.m │ │ ├── Contents.m │ │ ├── continuation.m │ │ ├── examples/ │ │ │ ├── demos/ │ │ │ │ ├── SIAM_demo.m │ │ │ │ ├── callandmap.m │ │ │ │ ├── demo_MatrixCompletion.m │ │ │ │ ├── demo_SVM.m │ │ │ │ ├── demo_alternatingProjections.m │ │ │ │ ├── project2DCone.m │ │ │ │ └── recordPoints.m │ │ │ ├── largescale/ │ │ │ │ ├── BugsBunny.mat │ │ │ │ ├── PsiTransposeWFF.m │ │ │ │ ├── PsiWFF.m │ │ │ │ ├── example_quantumTomography.m │ │ │ │ ├── explicitPauliTensor.m │ │ │ │ ├── findWeights.m │ │ │ │ ├── image_denoising_withSPOT.m │ │ │ │ ├── plotNow.m │ │ │ │ ├── test_SVM.m │ │ │ │ ├── test_sBPDN_W_largescale.m │ │ │ │ ├── test_sTV_Analysis_largescale.m │ │ │ │ └── test_sTV_largescale.m │ │ │ ├── private/ │ │ │ │ ├── eig_backup.m │ │ │ │ ├── linop_identity.m │ │ │ │ ├── linop_stack.m │ │ │ │ ├── print_cell_size.m │ │ │ │ ├── prox_stack.m │ │ │ │ ├── safe_eig.m │ │ │ │ ├── size_ambig.m │ │ │ │ ├── size_compat.m │ │ │ │ ├── smooth_stack.m │ │ │ │ ├── solver_apply.m │ │ │ │ ├── tfocs_backtrack.m │ │ │ │ ├── tfocs_cleanup.m │ │ │ │ ├── tfocs_initialize.m │ │ │ │ ├── tfocs_iterate.m │ │ │ │ ├── tfocs_prox.m │ │ │ │ ├── tfocs_round.m │ │ │ │ ├── tfocs_smooth.m │ │ │ │ └── tfocs_zeros.m │ │ │ └── smallscale/ │ │ │ ├── project_WeightedNorm.m │ │ │ ├── reference_solutions/ │ │ │ │ ├── LMI.mat │ │ │ │ ├── LMI_complex.mat │ │ │ │ ├── LP.mat │ │ │ │ ├── LP_box.mat │ │ │ │ ├── SDP.mat │ │ │ │ ├── SDP_complex.mat │ │ │ │ ├── basispursuit_WW_problem1_smoothed_noisy.mat │ │ │ │ ├── basispursuit_W_problem1_smoothed_noisy.mat │ │ │ │ ├── basispursuit_problem1_noisy.mat │ │ │ │ ├── basispursuit_problem1_smoothed_noiseless.mat │ │ │ │ ├── basispursuit_problem1_smoothed_noiseless_nonnegative.mat │ │ │ │ ├── basispursuit_problem1_smoothed_noisy.mat │ │ │ │ ├── basispursuit_problem1_smoothed_noisy_complex.mat │ │ │ │ ├── basispursuit_problem1_smoothed_noisy_complex_2.mat │ │ │ │ ├── basispursuit_problem1_smoothed_noisy_nonnegative.mat │ │ │ │ ├── blocknorm_smoothed_noisy.mat │ │ │ │ ├── complicatedProblem1.mat │ │ │ │ ├── dantzig_problem1_smoothed_noisy.mat │ │ │ │ ├── lasso_problem1_noisy.mat │ │ │ │ ├── nuclearNorm_problem1_noiseless.mat │ │ │ │ ├── ordered_lasso_problem1_noisy.mat │ │ │ │ ├── traceLS_problem1_noisy.mat │ │ │ │ ├── traceLS_problem2_noisy.mat │ │ │ │ └── tv_problem1_smoothed_noisy.mat │ │ │ ├── test_LASSO.m │ │ │ ├── test_LMI.m │ │ │ ├── test_LinearProgram.m │ │ │ ├── test_SDP.m │ │ │ ├── test_SLOPE.m │ │ │ ├── test_TraceLS.m │ │ │ ├── test_all.m │ │ │ ├── test_blockNorm.m │ │ │ ├── test_complicatedUsage.m │ │ │ ├── test_nuclearNorm.m │ │ │ ├── test_psdCompletion.m │ │ │ ├── test_quadratic.m │ │ │ ├── test_quadratic_constrained.m │ │ │ ├── test_sBP.m │ │ │ ├── test_sBPDN.m │ │ │ ├── test_sBPDN_W.m │ │ │ ├── test_sBPDN_WW.m │ │ │ ├── test_sBPDN_complex.m │ │ │ ├── test_sBPDN_complex_2.m │ │ │ ├── test_sBPDN_nonnegative.m │ │ │ ├── test_sBPDN_withContinuation.m │ │ │ ├── test_sBP_nonnegative.m │ │ │ ├── test_sDantzig.m │ │ │ ├── test_sDantzig_3methods.m │ │ │ ├── test_sTV.m │ │ │ └── test_variousSolvers.m │ │ ├── linop_TV.m │ │ ├── linop_TV3D.m │ │ ├── linop_adjoint.m │ │ ├── linop_compose.m │ │ ├── linop_dot.m │ │ ├── linop_explicit.m │ │ ├── linop_fft.m │ │ ├── linop_handles.m │ │ ├── linop_horzcat.m │ │ ├── linop_matrix.m │ │ ├── linop_normest.m │ │ ├── linop_reshape.m │ │ ├── linop_scale.m │ │ ├── linop_spot.m │ │ ├── linop_subsample.m │ │ ├── linop_test.m │ │ ├── linop_vec.m │ │ ├── linop_vertcat.m │ │ ├── proj_0.m │ │ ├── proj_Rn.m │ │ ├── proj_Rplus.m │ │ ├── proj_affine.m │ │ ├── proj_box.m │ │ ├── proj_boxAffine.m │ │ ├── proj_conic.m │ │ ├── proj_l1.m │ │ ├── proj_l1l2.m │ │ ├── proj_l2.m │ │ ├── proj_l2group.m │ │ ├── proj_linf.m │ │ ├── proj_linfl2.m │ │ ├── proj_max.m │ │ ├── proj_maxEig.m │ │ ├── proj_nuclear.m │ │ ├── proj_psd.m │ │ ├── proj_psdUTrace.m │ │ ├── proj_simplex.m │ │ ├── proj_singleAffine.m │ │ ├── proj_spectral.m │ │ ├── prox_0.m │ │ ├── prox_Sl1.m │ │ ├── prox_boxDual.m │ │ ├── prox_diag.m │ │ ├── prox_dualize.m │ │ ├── prox_hinge.m │ │ ├── prox_hingeDual.m │ │ ├── prox_l1.m │ │ ├── prox_l1_and_sum.m │ │ ├── prox_l1_deadzone.m │ │ ├── prox_l1_mat.m │ │ ├── prox_l1l2.m │ │ ├── prox_l1linf.m │ │ ├── prox_l1pos.m │ │ ├── prox_l2.m │ │ ├── prox_linf.m │ │ ├── prox_max.m │ │ ├── prox_maxEig.m │ │ ├── prox_nuclear.m │ │ ├── prox_scale.m │ │ ├── prox_shift.m │ │ ├── prox_spectral.m │ │ ├── prox_trace.m │ │ ├── randomizedSVD.m │ │ ├── smooth_constant.m │ │ ├── smooth_entropy.m │ │ ├── smooth_handles.m │ │ ├── smooth_huber.m │ │ ├── smooth_linear.m │ │ ├── smooth_logLLogistic.m │ │ ├── smooth_logLPoisson.m │ │ ├── smooth_logdet.m │ │ ├── smooth_logsumexp.m │ │ ├── smooth_quad.m │ │ ├── solver_L1RLS.m │ │ ├── solver_LASSO.m │ │ ├── solver_SLOPE.m │ │ ├── solver_TraceLS.m │ │ ├── solver_psdComp.m │ │ ├── solver_psdCompConstrainedTrace.m │ │ ├── solver_sBP.m │ │ ├── solver_sBPDN.m │ │ ├── solver_sBPDN_W.m │ │ ├── solver_sBPDN_WW.m │ │ ├── solver_sDantzig.m │ │ ├── solver_sDantzig_W.m │ │ ├── solver_sLMI.m │ │ ├── solver_sLP.m │ │ ├── solver_sLP_box.m │ │ ├── solver_sNuclearBP.m │ │ ├── solver_sNuclearBPDN.m │ │ ├── solver_sSDP.m │ │ ├── test_Lipschitz.m │ │ ├── test_nonsmooth.m │ │ ├── test_proxPair.m │ │ ├── test_smooth.m │ │ ├── tfocs.m │ │ ├── tfocs_AT.m │ │ ├── tfocs_GRA.m │ │ ├── tfocs_LLM.m │ │ ├── tfocs_N07.m │ │ ├── tfocs_N83.m │ │ ├── tfocs_SCD.m │ │ ├── tfocs_TS.m │ │ ├── tfocs_normsq.m │ │ ├── tfocs_version.m │ │ ├── tfocs_where.m │ │ ├── tfunc_scale.m │ │ └── tfunc_sum.m │ ├── Traj.m │ ├── adapting_structural_model.m │ ├── average.m │ ├── bicycle_state_space.m │ ├── convert_variable.m │ ├── create_ieee_paper_plots.m │ ├── cross_validation.m │ ├── distance.m │ ├── double_gyre.m │ ├── example.m │ ├── fit_adapt.m │ ├── fit_adapt_linear.m │ ├── gpu_RKF45_FILE.m │ ├── ieee.m │ ├── lane_change.m │ ├── load_bikes.m │ ├── load_data.m │ ├── make_filter.m │ ├── matlab_class.m │ ├── matlab_function.m │ ├── matlab_script.m │ ├── matlab_script2.m │ ├── normalize.m │ ├── overwrite_settings.m │ ├── par_text_to_struct.m │ ├── plant.m │ ├── test_rk_par.m │ ├── test_system_state_space.m │ ├── varargin_to_structure.m │ └── write_gains.m ├── Maven POM/ │ └── filenames/ │ └── pom.xml ├── Max/ │ ├── Hello.maxhelp │ ├── Hello.maxpat │ └── Hello.mxt ├── MediaWiki/ │ ├── README.wiki │ └── mediawiki.mediawiki ├── Mercury/ │ ├── code_info.m │ ├── expr.moo │ ├── hello.m │ ├── options.m │ ├── polymorphism.m │ ├── rot13_concise.m │ ├── rot13_ralph.m │ ├── rot13_verbose.m │ ├── store.m │ └── switch_detection_bug.m ├── Meson/ │ └── filenames/ │ ├── meson.build │ └── meson_options.txt ├── Metal/ │ └── ITMVisualisationEngine.metal ├── Modelica/ │ ├── NestedPackages.mo │ ├── NewtonCooling.mo │ ├── Pendulum.mo │ ├── RLC.mo │ ├── SecondOrderSystem.mo │ ├── System.mo │ ├── Translational.mo │ ├── modelica.mo │ ├── package.mo │ ├── package2.mo │ ├── package3.mo │ └── package4.mo ├── Modula-2/ │ └── HuffChan.mod ├── Module Management System/ │ ├── descrip.mms │ ├── openvms.mmk │ ├── simh_descrip.mms │ ├── spline_descrip.mms │ └── xv_makefile.mms ├── Monkey/ │ ├── encodeToPng.monkey2 │ ├── example.monkey │ ├── example.monkey2 │ ├── gui.monkey2 │ └── sorting.monkey2 ├── Moocode/ │ ├── hello.moo │ ├── moocode_toolkit.moo │ └── toy.moo ├── MoonScript/ │ └── transform.moon ├── NCL/ │ ├── PrnOscPat_driver.ncl │ ├── WRF_static_2.ncl │ ├── WRF_track_1.ncl │ ├── cru_8.ncl │ ├── gsn_csm_xy2_time_series_inputs.ncl │ ├── hdf4sds_7.ncl │ ├── mask_12.ncl │ ├── mcsst_1.ncl │ ├── primero.ncl │ ├── topo_9.ncl │ ├── traj_3.ncl │ ├── tsdiagram_1.ncl │ ├── unique_9.ncl │ ├── viewport_4.ncl │ ├── weather_sym_6.ncl │ └── xy_29.ncl ├── NL/ │ ├── assign0.nl │ └── balassign0.nl ├── NSIS/ │ ├── bigtest.nsi │ └── x64.nsh ├── Nearley/ │ └── nearley-language-bootstrapped.ne ├── Nemerle/ │ └── hello.n ├── NetLinx/ │ ├── projector.axi │ └── volume-array.axs ├── NetLinx+ERB/ │ ├── sample.axi.erb │ └── sample.axs.erb ├── NetLogo/ │ └── Life.nlogo ├── NewLisp/ │ ├── irc.lsp │ ├── log-to-database.lisp │ └── queens.nl ├── Nextflow/ │ ├── blast.nf │ ├── callings.nf │ ├── filenames/ │ │ └── nextflow.config │ └── rnaseq.nf ├── Nginx/ │ ├── example.com.vhost │ └── filenames/ │ └── nginx.conf ├── Nim/ │ └── foo.nim ├── Nit/ │ ├── calculator.nit │ ├── callback_chimpanze.nit │ ├── callback_monkey.nit │ ├── circular_list.nit │ ├── clock.nit │ ├── clock_more.nit │ ├── curl_http.nit │ ├── curl_mail.nit │ ├── draw_operation.nit │ ├── drop_privileges.nit │ ├── extern_methods.nit │ ├── fibonacci.nit │ ├── file.nit │ ├── hello_world.nit │ ├── html_page.nit │ ├── int_stack.nit │ ├── meetup.nit │ ├── opengles2_hello_triangle.nit │ ├── print_arguments.nit │ ├── procedural_array.nit │ ├── socket_client.nit │ ├── socket_server.nit │ ├── tmpl_composer.nit │ └── websocket_server.nit ├── Nix/ │ └── nginx.nix ├── Nu/ │ ├── RandomApp.nu │ └── nu ├── OCaml/ │ ├── Foo.ml │ ├── cmdliner.ml │ ├── common.ml │ ├── date.ml │ ├── example.eliom │ ├── map.ml │ ├── mirage.ml │ ├── reload.ml │ ├── sigset.ml │ └── uutf.ml ├── Objective-C/ │ ├── ASIHTTPRequest.h │ ├── ASIHTTPRequest.m │ ├── Foo.h │ ├── Foo.m │ ├── FooAppDelegate.h │ ├── FooAppDelegate.m │ ├── JSONKit.h │ ├── JSONKit.m │ ├── MainMenuViewController.h │ ├── MainMenuViewController.m │ ├── PlaygroundViewController.h │ ├── PlaygroundViewController.m │ ├── SBJsonParser.h │ ├── SBJsonParser.m │ ├── Siesta.h │ ├── StyleViewController.h │ ├── StyleViewController.m │ ├── TUITableView.h │ ├── TUITableView.m │ ├── cocoa_monitor.m │ ├── gen-cocoa-linguist-thrift.m │ └── hello.m ├── Objective-C++/ │ ├── EventHandlerMac.mm │ └── objsql.mm ├── Objective-J/ │ ├── AppController.j │ ├── LightsOff.j │ └── iTunesLayout.j ├── Omgrofl/ │ └── hello.omgrofl ├── Opa/ │ ├── hello_syntax1.opa │ └── hello_syntax2.opa ├── Opal/ │ └── DeepakChopra.opal ├── OpenCL/ │ ├── fft.cl │ └── sample.cl ├── OpenEdge ABL/ │ ├── Email.cls │ ├── SendEmailAlgorithm.cls │ ├── SocketReader.p │ ├── Util.cls │ ├── openedge.p │ └── test-win.w ├── OpenRC runscript/ │ └── acpid ├── OpenSCAD/ │ ├── not_simple.scad │ └── simple.scad ├── Org/ │ └── org.org ├── Ox/ │ ├── IJCEmet2009.oxh │ ├── ParallelObjective.ox │ └── particle.oxo ├── Oxygene/ │ └── Loops.oxygene ├── Oz/ │ └── example.oz ├── P4/ │ ├── l2.p4 │ └── mirror_acl.p4 ├── PAWN/ │ ├── fixes.inc │ └── timertest.pwn ├── PHP/ │ ├── Application.php │ ├── Client.php │ ├── Controller.php │ ├── Form.php │ ├── Model.php │ ├── ThriftGenerated.php │ ├── drupal.php │ ├── exception.zep.php │ ├── file_display.inc │ ├── filenames/ │ │ ├── .php │ │ ├── .php_cs │ │ └── .php_cs.dist │ ├── mail.phps │ ├── php │ ├── php-script │ ├── php2 │ ├── prefix.fcgi │ └── root.php ├── PLSQL/ │ ├── myobject.sql │ ├── packagebody.pkb │ ├── packageheader.pks │ ├── plsqlguide.pck │ ├── prime#.plsql │ ├── print_bool.prc │ ├── videodb.ddl │ └── who_called_me.sql ├── PLpgSQL/ │ ├── plpgsql_lint-8.4.sql │ ├── plpgsql_lint-9.0.sql │ ├── plpgsql_lint-9.1.sql │ ├── plpgsql_lint-9.2.sql │ ├── plpgsql_lint-9.3.sql │ └── procedures.sql ├── POV-Ray SDL/ │ ├── balcony.pov │ ├── bglass.inc │ ├── building.inc │ ├── chair.inc │ ├── cloth.inc │ ├── gamma_showcase.pov │ ├── sky.inc │ ├── table.inc │ ├── table_cloth.inc │ ├── table_stuff.inc │ ├── terrain.inc │ └── water.inc ├── Pan/ │ ├── ceph-raid.pan │ ├── cluster-A.pan │ ├── databases.pan │ ├── functions.pan │ ├── infernalis.pan │ ├── libvirt.pan │ ├── link.pan │ ├── mysql.pan │ ├── nodes_properties.pan │ ├── onevm.pan │ ├── osd-fetch.pan │ ├── pakiti.pan │ ├── purge_fqan_accounts.pan │ ├── resources.pan │ ├── simple.pan │ ├── test.pan │ ├── types.pan │ └── unit.pan ├── Papyrus/ │ ├── CAMTEST_OverShoulderME.psc │ ├── vMFX_FXPlugin.psc │ └── vSCM_MetaQuestScript.psc ├── Parrot Assembly/ │ └── hello.pasm ├── Parrot Internal Representation/ │ └── hello.pir ├── Pascal/ │ ├── bulls-and-cows.pascal │ ├── custforms.pp │ ├── cwindirs.pp │ ├── image_url.inc │ ├── large.pp │ ├── libc.inc │ ├── program.dpr │ ├── read-a-configuration-file.pascal │ ├── tw27294.pp │ └── vmops_impl.inc ├── Pep8/ │ ├── div.pep │ ├── flag.pep │ ├── linked.pep │ ├── msq.pep │ ├── qsort.pep │ ├── stri_buf.pep │ └── stristack.pep ├── Perl/ │ ├── Ack.pm │ ├── Any.pm │ ├── Request.pm │ ├── Response.pm │ ├── example.cgi │ ├── exception_handler.pl │ ├── feedgnuplot │ ├── fib.pl │ ├── filenames/ │ │ ├── Makefile.PL │ │ ├── Rexfile │ │ ├── ack │ │ └── cpanfile │ ├── getchar.al │ ├── index.fcgi │ ├── oo1.pl │ ├── oo2.pl │ ├── oo3.pl │ ├── perl │ ├── perl-test.t │ ├── script.pl │ ├── strict.t │ ├── test-perl.pl │ ├── test-perl2.pl │ └── use5.pl ├── Perl 6/ │ ├── 01-dash-uppercase-i.t │ ├── 01-parse.t │ ├── A.pm │ ├── ANSIColor.pm │ ├── Bailador.pm │ ├── ContainsUnicode.pm │ ├── Exception.pm │ ├── List.pm │ ├── Model.pm │ ├── RoleQ.pm6 │ ├── Simple.pm │ ├── Win32.pm │ ├── advent2009-day16.t │ ├── basic-open.t │ ├── calendar.t │ ├── for.t │ ├── grammar-test.p6 │ ├── hash.t │ ├── htmlify.pl │ ├── listquote-whitespace.t │ ├── man-or-boy.t │ └── test.p6 ├── Pic/ │ ├── dextroamphetamine.chem │ ├── graph.pic │ └── ritalin.chem ├── Pickle/ │ ├── data.pkl │ ├── neural-network-ce-l2reg-784-10-30.pkl │ ├── random.pkl │ └── save.pkl ├── PicoLisp/ │ └── simul.l ├── PigLatin/ │ └── example.pig ├── Pike/ │ ├── Error.pmod │ ├── FakeFile.pike │ └── shebang.pike ├── Pod/ │ ├── PSGI.pod │ ├── Sample.pod │ └── contents.pod ├── PogoScript/ │ └── squashy.pogo ├── Pony/ │ ├── circle.pony │ ├── counter.pony │ ├── gups-opt.pony │ ├── hello-world.pony │ ├── mandelbrot.pony │ └── mixed.pony ├── PostCSS/ │ └── sample.pcss ├── PostScript/ │ ├── lambda.pfa │ └── sierpinski.ps ├── PowerBuilder/ │ ├── TestPBT.pbt │ ├── ginpix7.sra │ ├── myproject.pbt │ ├── n_cst_buttonlistbar_gradient.sru │ ├── part1.srw │ └── w_export.srw ├── PowerShell/ │ ├── ZLocation.psd1 │ ├── ZLocation.psm1 │ ├── history.ps1 │ └── pwsh-shebang.ps1 ├── Processing/ │ └── hello.pde ├── Prolog/ │ ├── admin.pl │ ├── dleak-report │ ├── ex6.pl │ ├── format_spec.pl │ ├── func.pl │ ├── logic-problem.pro │ ├── queues.yap │ ├── test-prolog.prolog │ └── turing.pl ├── Propeller Spin/ │ ├── 4x4 Keypad Reader.spin │ ├── Debug_Lcd.spin │ ├── Graphics.spin │ ├── Inductor.spin │ ├── Keyboard.spin │ ├── TV.spin │ ├── TV_Terminal.spin │ ├── TV_Text.spin │ ├── VGA.spin │ └── VocalTract.spin ├── Protocol Buffer/ │ └── addressbook.proto ├── Public Key/ │ ├── gpg_key.asc │ ├── id.pub │ ├── id_dsa.asc │ ├── id_rsa.asc │ ├── id_rsa.pub │ ├── sshkey1.asc │ └── sunCert.asc ├── Pug/ │ ├── hello.jade │ └── hello.pug ├── Puppet/ │ ├── apacheinit.pp │ ├── expiringhost.pp │ ├── hiera_include.pp │ ├── stages-example.pp │ └── unmanaged-notify-puppet25.pp ├── PureBasic/ │ ├── Example_Sine.pb │ └── Memory.pbi ├── PureScript/ │ ├── Control.Arrow.purs │ ├── Data.Foreign.purs │ ├── Data.Map.purs │ └── ReactiveJQueryTest.purs ├── Python/ │ ├── AdditiveWave.pyde │ ├── Cinema4DPythonPlugin.pyp │ ├── JupyterNotebook.ipynb │ ├── MoveEye.pyde │ ├── action.cgi │ ├── argparse.pyi │ ├── backstage.fcgi │ ├── closure_js_binary.bzl │ ├── django-models-base.py │ ├── filenames/ │ │ ├── .gclient │ │ ├── BUCK │ │ ├── BUILD │ │ └── WORKSPACE │ ├── flask-view.py │ ├── gen-py-linguist-thrift.py │ ├── protocol_buffer_pb2.py │ ├── py3.py3 │ ├── python │ ├── python2 │ ├── python3 │ ├── simpleclient.rpy │ ├── spec.linux.spec │ ├── standalone.gypi │ ├── toolchain.gypi │ └── tornado-httpserver.py ├── QML/ │ └── common.qbs ├── QMake/ │ ├── complex.pro │ ├── functions.pri │ ├── qmake │ └── simple.pro ├── R/ │ ├── R-qgis-extension.rsx │ ├── df.residual.r │ ├── filenames/ │ │ └── expr-dist │ ├── git-punchcard │ ├── hello-r.R │ ├── import.Rd │ ├── import.r │ └── scholar.Rd ├── RAML/ │ └── api.raml ├── RDoc/ │ └── rdoc.rdoc ├── REXX/ │ ├── BatchRemapBrushes.pprx │ ├── ShapesInfo.rexx │ ├── SkrivShape.rexx │ └── ag2xml.rexx ├── RMarkdown/ │ └── example.rmd ├── RPC/ │ ├── rpc.x │ ├── rusers.x │ └── yp.x ├── RPM Spec/ │ ├── apache.spec │ ├── erlang-erlydtl.spec │ └── manos.spec ├── RUNOFF/ │ ├── VMS_ZIP.RNH │ ├── contributing.rnh │ ├── longlib.rno │ └── mcp_help.rnh ├── Racket/ │ ├── 99-bottles-of-beer.scrbl │ └── scribble.scrbl ├── Ragel/ │ ├── ephemeris_parser.rl │ ├── simple_scanner.rl │ └── simple_tokenizer.rl ├── Rascal/ │ ├── Analyze.rsc │ ├── Compile.rsc │ ├── Rascal.rsc │ └── Syntax.rsc ├── Reason/ │ ├── JSX.re │ ├── Layout.re │ ├── Machine.re │ ├── SuperMerlin.re │ └── Syntax.re ├── Rebol/ │ ├── GCP-datatypes.r │ ├── booters.r │ ├── hello-world.r2 │ ├── hello-world.r3 │ ├── hello-world.reb │ └── hello-world.rebol ├── Red/ │ ├── example.red │ └── example.reds ├── Regular Expression/ │ ├── modeline-emacs.regexp │ ├── modeline-vim.regexp │ ├── ordinal.regex │ └── url.regex ├── Ren'Py/ │ └── example.rpy ├── RenderScript/ │ ├── convolve3x3.rs │ └── scenegraph_objects.rsh ├── Ring/ │ ├── hello.ring │ ├── natural.ring │ ├── weblib.ring │ └── weighthistory.ring ├── RobotFramework/ │ ├── data_driven.robot │ ├── gherkin.robot │ └── keyword_driven.robot ├── Roff/ │ ├── Tcl.n │ ├── an-ext.tmac │ ├── create_view.l │ ├── fsinterface.ms │ ├── refs.rno │ ├── sample.4 │ └── trekmanual.nr ├── Ruby/ │ ├── any.spec │ ├── filenames/ │ │ ├── .irbrc │ │ ├── .pryrc │ │ ├── Appraisals │ │ ├── Brewfile │ │ ├── Capfile │ │ ├── Dangerfile │ │ ├── Deliverfile │ │ ├── Fastfile │ │ ├── Podfile │ │ ├── Rakefile │ │ └── Snapfile │ ├── foo.rb │ ├── formula.rb │ ├── gen-rb-linguist-thrift.rb │ ├── grit.rb │ ├── index.json.jbuilder │ ├── inflector.rb │ ├── jekyll.rb │ ├── jenkinsci.pluginspec │ ├── macruby │ ├── mdata_server.fcgi │ ├── rabl.rabl │ ├── racc.rb │ ├── resque.rb │ ├── rexpl │ ├── ruby │ ├── ruby2 │ ├── script.rake │ ├── shoes-swt │ └── sinatra.rb ├── Rust/ │ ├── hashmap.rs │ ├── main.rs │ └── task.rs ├── SAS/ │ ├── data.sas │ ├── detect_phi.sas │ └── proc.sas ├── SCSS/ │ └── screen.scss ├── SMT/ │ ├── bignum_lia1.smt2 │ ├── list4.smt2 │ ├── queen10-1.smt2 │ └── shufflevector.smt ├── SPARQL/ │ ├── foaf.sparql │ └── string-matching.sparql ├── SQF/ │ ├── fn_remoteExecFnc.sqf │ └── macros.hqf ├── SQL/ │ ├── AvailableInSearchSel.prc │ ├── create_stuff.sql │ ├── db.sql │ ├── drop_stuff.sql │ ├── dual.sql │ ├── filial.tab │ ├── hostcache_set_state.inc │ ├── object-update.udf │ ├── suspendedtoday.viw │ ├── videodb.cql │ ├── videodb.ddl │ └── zipcodes.uk.mysql ├── SQLPL/ │ ├── check_reorg.sql │ ├── comm_amount.db2 │ ├── drop_table.db2 │ ├── runstats.sql │ ├── sleep.sql │ └── trigger.sql ├── SRecode Template/ │ └── linguist.srt ├── STON/ │ ├── Array.ston │ ├── Dictionary.ston │ ├── Rectangle.ston │ ├── TestDomainObject.ston │ ├── ZNResponse.ston │ ├── methodProperties.ston │ └── properties.ston ├── Sage/ │ └── polinomios.sagews ├── SaltStack/ │ ├── eval.sls │ ├── gimp.sls │ ├── gpg4win-light.sls │ ├── openoffice.sls │ ├── top.sls │ └── truecrypt.sls ├── Sass/ │ └── screen.sass ├── Scala/ │ ├── 99-bottles-of-beer │ ├── build.sbt │ ├── car-ride.kojo │ ├── fib-tree.kojo │ ├── node11.sc │ ├── scala │ └── turtle-controller.kojo ├── Scaml/ │ └── hello.scaml ├── Scheme/ │ ├── asteroids.sps │ ├── basic.sld │ ├── lambdastar.sls │ └── sboyer.sch ├── Scilab/ │ ├── scilab_function.sci │ ├── scilab_script.sce │ └── scilab_test.tst ├── ShaderLab/ │ ├── DepthOfField.shader │ ├── Fog.shader │ └── Uber.shader ├── Shell/ │ ├── 99-bottles-of-beer │ ├── bash │ ├── build.command │ ├── filenames/ │ │ ├── .bash_logout │ │ ├── .bash_profile │ │ ├── .bashrc │ │ ├── .cshrc │ │ ├── .login │ │ ├── .profile │ │ ├── .zlogin │ │ ├── .zlogout │ │ ├── .zprofile │ │ ├── .zshenv │ │ ├── .zshrc │ │ ├── 9fs │ │ ├── PKGBUILD │ │ ├── bash_logout │ │ ├── bash_profile │ │ ├── bashrc │ │ ├── cshrc │ │ ├── gradlew │ │ ├── login │ │ ├── man │ │ ├── profile │ │ ├── zlogin │ │ ├── zlogout │ │ ├── zprofile │ │ ├── zshenv │ │ └── zshrc │ ├── invalid-shebang.sh │ ├── php.fcgi │ ├── plugin │ ├── rbenv-sh-shell.sh │ ├── rvm.bash │ ├── sbt │ ├── script.bash │ ├── script.sh │ ├── script.zsh │ ├── settime.cgi │ ├── sh │ ├── string-chopping │ ├── valid-shebang.tool │ └── zsh ├── ShellSession/ │ ├── dollar.sh-session │ ├── gem-install.sh-session │ └── simple.sh-session ├── Shen/ │ ├── graph.shen │ ├── html.shen │ └── json.shen ├── Slash/ │ └── brainfuck.sl ├── Slim/ │ └── sample.slim ├── Smali/ │ ├── ActionBarDrawerToggle.smali │ ├── DoodleMobileAnaylise.smali │ ├── ModernAsyncTask.smali │ ├── PenguinSprite.smali │ ├── Subject.smali │ ├── ViewDragHelper.smali │ └── WbxmlSerializer.smali ├── Smalltalk/ │ ├── Booleans.cs │ ├── Collections.cs │ ├── Dinner.st │ ├── TestBasic.st │ ├── baselineDependency.st │ ├── categories.st │ ├── renderSeasideExampleOn..st │ ├── scriptWithPragma.st │ ├── smallMethod.st │ └── testSimpleChainMatches.st ├── Solidity/ │ └── VotingContract.sol ├── SourcePawn/ │ ├── Check.inc │ ├── fixed.inc │ ├── foo.sma │ ├── foo.sp │ ├── mfile.inc │ └── y_testing.inc ├── Squirrel/ │ └── Squirrel.nut ├── Stan/ │ ├── congress.stan │ ├── dogs.stan │ └── schools.stan ├── Standard ML/ │ ├── Foo.ML │ ├── Foo.sig │ ├── Foo.sml │ ├── RedBlackTree.fun │ └── main.fun ├── Stata/ │ ├── common.doh │ ├── hello.ado │ ├── include.ihlp │ ├── limits.matah │ ├── odkmeta.sthlp │ ├── regress_example.do │ └── tanh.mata ├── Stylus/ │ └── demo.styl ├── SubRip Text/ │ └── Adding.NCL.Language.S01E01.1080p.BluRay.x264.srt ├── Sublime Text Config/ │ ├── AMPL.sublime-build │ ├── CLIPS.sublime-settings │ ├── Context.sublime-menu │ ├── Dart.sublime-commands │ ├── Dart.sublime-project │ ├── Default (Linux).sublime-mousemap │ ├── Default.sublime-keymap │ ├── JavaDoc Add Line.sublime-macro │ ├── RunBuild.sublime-macro │ ├── SourcePawn.sublime-build │ ├── Tubnil.sublime-theme │ └── jade.sublime-completions ├── SugarSS/ │ └── sample.sss ├── SuperCollider/ │ ├── WarpPreset.sc │ ├── WarpTate.sc │ ├── WarpTrack.sc │ ├── WarpUtil.sc │ └── example.scd ├── Swift/ │ ├── section-11.swift │ ├── section-13.swift │ ├── section-15.swift │ ├── section-17.swift │ ├── section-19.swift │ ├── section-21.swift │ ├── section-23.swift │ ├── section-25.swift │ ├── section-27.swift │ ├── section-29.swift │ ├── section-3.swift │ ├── section-31.swift │ ├── section-33.swift │ ├── section-35.swift │ ├── section-37.swift │ ├── section-39.swift │ ├── section-41.swift │ ├── section-43.swift │ ├── section-45.swift │ ├── section-47.swift │ ├── section-49.swift │ ├── section-5.swift │ ├── section-51.swift │ ├── section-53.swift │ ├── section-55.swift │ ├── section-57.swift │ ├── section-59.swift │ ├── section-61.swift │ ├── section-63.swift │ ├── section-65.swift │ ├── section-67.swift │ ├── section-69.swift │ ├── section-7.swift │ ├── section-71.swift │ ├── section-73.swift │ ├── section-75.swift │ ├── section-77.swift │ ├── section-79.swift │ ├── section-81.swift │ ├── section-83.swift │ ├── section-85.swift │ ├── section-87.swift │ └── section-9.swift ├── SystemVerilog/ │ ├── endpoint_phy_wrapper.svh │ ├── fifo.sv │ ├── priority_encoder.sv │ └── util.vh ├── TI Program/ │ ├── srcalpha.8xp.txt │ ├── srcfunc.8xp.txt │ ├── srcgui.8xp.txt │ └── srcsort.8xp.txt ├── TLA/ │ ├── AsyncInterface.tla │ └── fifo.tla ├── TXL/ │ └── Cal.txl ├── Tcl/ │ ├── filenames/ │ │ ├── owh │ │ └── starfield │ ├── stream-0.1.tm │ └── xdgbasedir-0.3.tm ├── TeX/ │ ├── authortitle.cbx │ ├── beispiel.toc │ ├── english.lbx │ ├── perl.toc │ ├── problemset.cls │ ├── reedthesis.cls │ └── verbose.bbx ├── Tea/ │ └── foo.tea ├── Terra/ │ ├── arith.t │ ├── arrayt.t │ └── benchmark_nbody.t ├── Text/ │ ├── 01_top.ncl │ ├── ISO-2022-KR.txt │ ├── LIDARLite.ncl │ ├── Site.local.ncl │ ├── aptitude-defaults.nb │ ├── filenames/ │ │ ├── COPYING.regex │ │ ├── LICENSE.mysql │ │ ├── README.me │ │ ├── README.mysql │ │ ├── click.me │ │ ├── delete.me │ │ ├── keep.me │ │ ├── read.me │ │ ├── readme.1st │ │ └── test.me │ ├── foo.txt │ ├── mac.txt │ ├── main.ncl │ ├── messages.fr │ ├── min-help.ncl │ ├── readme.txt │ ├── receiver.ncl │ ├── rmMonAnnCycLLT-help.ncl │ ├── tutor.nb │ ├── tutor.no │ └── zonalAve-help.ncl ├── Thrift/ │ └── linguist.thrift ├── Turing/ │ ├── simplegame.t │ └── turing.t ├── Turtle/ │ ├── gnd-record.ttl │ └── rdf-syntax-grammar.ttl ├── Type Language/ │ ├── builtin.tl │ └── scheme.tl ├── TypeScript/ │ ├── cache.ts │ ├── classes.ts │ ├── hello.ts │ ├── import.tsx │ ├── react-native.tsx │ ├── require.tsx │ └── triple-slash-reference.tsx ├── Unity3D Asset/ │ ├── GapTile.mat │ ├── Hover.anim │ ├── Tiles.meta │ ├── TimeManager.asset │ └── canvas_Fullscreen_Fader.prefab ├── Unix Assembly/ │ ├── hello.ms │ └── hello.s ├── Uno/ │ ├── PlayerPads.uno │ ├── Pong.uno │ └── TowerBlock.uno ├── UnrealScript/ │ ├── MutU2Weapons.uc │ └── US3HelloWorld.uc ├── UrWeb/ │ ├── iso8601.ur │ └── parse.urs ├── VCL/ │ ├── varnish2_default.vcl │ └── varnish3_default.vcl ├── VHDL/ │ └── foo.vhd ├── Verilog/ │ ├── button_debounce.v │ ├── control.v │ ├── hex_display.v │ ├── mux.v │ ├── pipeline_registers.v │ ├── ps2_mouse.v │ ├── sha-256-functions.v │ ├── sign_extender.v │ ├── sqrt_pipelined.v │ ├── t_button_debounce.v │ ├── t_div_pipelined.v │ ├── t_sqrt_pipelined.v │ └── vga.v ├── Vim script/ │ ├── filenames/ │ │ ├── .gvimrc │ │ ├── .nvimrc │ │ ├── .vimrc │ │ └── _vimrc │ └── solarized.vim ├── Visual Basic/ │ ├── Index.vbhtml │ ├── Module1.vb │ ├── VBAllInOne.vb │ ├── cApplication.cls │ └── vpptype.bas ├── Volt/ │ └── tesla.volt ├── Wavefront Material/ │ ├── dice.mtl │ ├── ripple.mtl │ ├── shapes.mtl │ └── spline.mtl ├── Wavefront Object/ │ ├── dice.obj │ ├── random.obj │ ├── ripple.obj │ ├── shapes.obj │ └── spline.obj ├── Web Ontology Language/ │ └── sample.owl ├── WebAssembly/ │ ├── add.wat │ ├── fibonacci.wat │ ├── imported-min.wast │ ├── local-cse.wast │ ├── print.wat │ └── remove-unused-brs_shrink-level=1_ignore-implicit-traps.wast ├── WebIDL/ │ ├── AnimationEvent.webidl │ └── Fetch.webidl ├── Wolfram Language/ │ └── mendeley-wolfram.m ├── World of Warcraft Addon Data/ │ ├── addon.toc │ ├── lingua.toc │ └── linguist.toc ├── X10/ │ ├── ArraySum.x10 │ ├── Cancellation.x10 │ ├── Fibonacci.x10 │ ├── HeatTransfer_v0.x10 │ ├── HeatTransfer_v1.x10 │ ├── HelloWholeWorld.x10 │ ├── HelloWorld.x10 │ ├── Histogram.x10 │ ├── Integrate.x10 │ ├── KMeans.x10 │ ├── KMeansDist.x10 │ ├── KMeansDistPlh.x10 │ ├── KMeansSPMD.x10 │ ├── MontyPi.x10 │ ├── NQueensDist.x10 │ ├── NQueensPar.x10 │ ├── QSort.x10 │ └── StructSpheres.x10 ├── XC/ │ └── main.xc ├── XCompose/ │ └── filenames/ │ └── XCompose ├── XML/ │ ├── Application.xib │ ├── CSharpVSPackage.vstemplate │ ├── Default.props │ ├── Demo.sfproj │ ├── Example.mdpolicy │ ├── FXMLSample.fxml │ ├── HITSP_C32.sch │ ├── JSBrowser.jsproj │ ├── MDM.adml │ ├── MDM.admx │ ├── MainView.ux │ ├── MyApp.ux │ ├── NDepends_Example.ndproj │ ├── Storyboard.storyboard │ ├── Strings.resx │ ├── System.Buffers.pkgproj │ ├── XmlIO.pluginspec │ ├── chrome.natvis │ ├── cloudconfig.cscfg │ ├── clouddef.csdef │ ├── configdef.cscfg │ ├── csproj-sample.csproj │ ├── dependency-example.depproj │ ├── example-sharedproj.shproj │ ├── example.ccproj │ ├── filenames/ │ │ └── .cproject │ ├── fsproj-sample.fsproj │ ├── intellij.iml │ ├── libsomething.dll.config │ ├── module.ant │ ├── module.ivy │ ├── msbuild-example.proj │ ├── namespace-strict.sch │ ├── net_docfile.xml │ ├── nproj-sample.nproj │ ├── oasis-table.sch │ ├── phpunit.xml.dist │ ├── point-3.1.gml │ ├── point-3.2.gml │ ├── pt_BR.ts │ ├── pt_BR.xml │ ├── racoon.mjml │ ├── real-estate.mjml │ ├── sample.csl │ ├── sample.nuspec │ ├── sample.targets │ ├── some-ideas.mm │ ├── source.extension.vsixmanifest │ ├── src.builds │ ├── tei-odd-sample.odd │ ├── translation_en3.ts │ ├── vbproj-sample.vbproj │ ├── vcxproj-sample.vcxproj │ ├── vcxproj-sample.vcxproj.filters │ ├── water.tsx │ ├── wixdemo.wixproj │ ├── xhtml-struct-1.mod │ └── xquery-tutorial.xspec ├── XPM/ │ ├── cc-public_domain_mark_white.pm │ └── stick-unfocus.xpm ├── XPages/ │ ├── navbar.xsp-config │ └── navbar.xsp.metadata ├── XProc/ │ └── xproc.xpl ├── XQuery/ │ └── xproc.xqm ├── XS/ │ └── CommonMark.xs ├── XSLT/ │ └── test.xslt ├── Xojo/ │ ├── App.xojo_code │ ├── BillingReport.xojo_report │ ├── MainMenuBar.xojo_menu │ ├── MyToolbar.xojo_toolbar │ ├── Window1.xojo_window │ └── database.xojo_script ├── Xtend/ │ ├── BasicExpressions.xtend │ └── Movies.xtend ├── YAML/ │ ├── Ansible.YAML-tmLanguage │ ├── HexInspect.sublime-syntax │ ├── database.yml.mysql │ ├── filenames/ │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ └── .gemrc │ ├── source.r-console.syntax │ └── vcr_cassette.yml ├── YANG/ │ └── sfc-lisp-impl.yang ├── YARA/ │ ├── OfExample.yar │ ├── example.yara │ └── true.yar ├── Zephir/ │ ├── Cblock.zep │ └── Router.zep ├── Zimpl/ │ └── sample.zmpl ├── desktop/ │ └── example.desktop ├── eC/ │ └── Designer.ec ├── edn/ │ └── bigger-than-pluto.edn ├── fish/ │ ├── config.fish │ ├── eval.fish │ └── funced.fish ├── reStructuredText/ │ └── HACKING.rst.txt ├── sed/ │ └── hanoi.sed ├── wdl/ │ ├── hello.wdl │ ├── ifs_in_scatters.wdl │ └── passingfiles.wdl ├── wisp/ │ └── intro.wisp └── xBase/ ├── sample.ch ├── sample.prg └── sample.prw