{"id":16247125,"url":"https://github.com/dotnetcarpenter/virtualcontrol","last_synced_at":"2025-04-08T11:49:30.839Z","repository":{"id":66936052,"uuid":"69801038","full_name":"dotnetCarpenter/virtualcontrol","owner":"dotnetCarpenter","description":"An attempt to recreate the look and feel from the Virtual Control see in Matrix Reloaded","archived":false,"fork":false,"pushed_at":"2018-07-04T19:15:12.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-19T19:53:46.864Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dotnetCarpenter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-10-02T14:16:55.000Z","updated_at":"2016-10-15T05:13:38.000Z","dependencies_parsed_at":"2023-07-10T02:19:23.004Z","dependency_job_id":null,"html_url":"https://github.com/dotnetCarpenter/virtualcontrol","commit_stats":{"total_commits":20,"total_committers":1,"mean_commits":20.0,"dds":0.0,"last_synced_commit":"8e20921301036da794c080d6fa830e6ae2080e95"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetCarpenter%2Fvirtualcontrol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetCarpenter%2Fvirtualcontrol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetCarpenter%2Fvirtualcontrol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetCarpenter%2Fvirtualcontrol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotnetCarpenter","download_url":"https://codeload.github.com/dotnetCarpenter/virtualcontrol/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247838415,"owners_count":21004576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T14:36:00.987Z","updated_at":"2025-04-08T11:49:30.814Z","avatar_url":"https://github.com/dotnetCarpenter.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Virtual Control Center\nAn attempt to recreate the look and feel from the Virtual Control as seen in Matrix Reloaded.\n\nhttp://www.kazumichi.com/Matrix-Reloaded-Virtual-Control-Design\n\n# How to run\n\nTLDR; `npm i \u0026\u0026 npm start`\n\n1. First install all of the dependencies ([SVG.js](http://svgjs.com/)) `npm install`\n2. Then start the development server `npm start`\n\n\n\n## GNU Make automatic variables\n[Automatic-Variables](https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html#Automatic-Variables)\n\n`$@`\n\nThe file name of the target of the rule. If the target is an archive member, then `$@` is the name of\nthe archive file. In a pattern rule that has multiple targets (see Introduction to Pattern Rules),\n`$@` is the name of whichever target caused the rule`s recipe to be run.\n\n`$%`\n\nThe target member name, when the target is an archive member. See Archives. For example, if the target\nis foo.a(bar.o) then `$%` is bar.o and `$@` is foo.a. `$%` is empty when the target is not an archive member.\n\n`$\u003c`\n\nThe name of the first prerequisite. If the target got its recipe from an implicit rule, this will be the\nfirst prerequisite added by the implicit rule (see [Implicit Rules](https://www.gnu.org/software/make/manual/html_node/Pattern-Rules.html#Pattern-Rules)).\n\n`$?`\n\nThe names of all the prerequisites that are newer than the target, with spaces between them. For prerequisites which are archive members, only the named member is used (see Archives).\n\n`$^`\n\nThe names of all the prerequisites, with spaces between them. For prerequisites which are archive members, only the named member is used (see Archives). A target has only one prerequisite on each other file it depends on, no matter how many times each file is listed as a prerequisite. So if you list a prerequisite more than once for a target, the value of $^ contains just one copy of the name. This list does not contain any of the order-only prerequisites; for those see the `$|` variable, below.\n\n`$+`\n\nThis is like `$^`, but prerequisites listed more than once are duplicated in the order they were listed in the makefile. This is primarily useful for use in linking commands where it is meaningful to repeat library file names in a particular order.\n\n`$|`\n\nThe names of all the order-only prerequisites, with spaces between them.\n\n`$*`\n\nThe stem with which an implicit rule matches (see How Patterns Match). If the target is dir/a.foo.b and the target pattern is a.%.b then the stem is dir/foo. The stem is useful for constructing names of related files.\n\nIn a static pattern rule, the stem is part of the file name that matched the `%` in the target pattern.\n\nIn an explicit rule, there is no stem; so `$*` cannot be determined in that way. Instead, if the target name ends with a recognized suffix (see Old-Fashioned Suffix Rules), `$*` is set to the target name minus the suffix. For example, if the target name is `foo.c`, then `$*` is set to `foo`, since `.c` is a suffix. GNU make does this bizarre thing only for compatibility with other implementations of make. You should generally avoid using `$*` except in implicit rules or static pattern rules.\n\nIf the target name in an explicit rule does not end with a recognized suffix, `$*` is set to the empty string for that rule. \n\n`$?` is useful even in explicit rules when you wish to operate on only the prerequisites that have changed. For example, suppose that an archive named lib is supposed to contain copies of several object files. This rule copies just the changed object files into the archive:\n\nlib: foo.o bar.o lose.o win.o\n        ar r lib $?\n\nOf the variables listed above, four have values that are single file names, and three have values that are lists of file names. These seven have variants that get just the file`s directory name or just the file name within the directory. The variant variables` names are formed by appending `D` or `F`, respectively. These variants are semi-obsolete in GNU make since the functions dir and notdir can be used to get a similar effect (see Functions for File Names). Note, however, that the `D` variants all omit the trailing slash which always appears in the output of the dir function. Here is a table of the variants:\n\n`$(@D)`\n\nThe directory part of the file name of the target, with the trailing slash removed. If the value of `$@` is dir/foo.o then `$(@D)` is dir. This value is . if `$@` does not contain a slash.\n`$(@F)`\n\nThe file-within-directory part of the file name of the target. If the value of `$@` is dir/foo.o then `$(@F)` is foo.o. `$(@F)` is equivalent to `$(notdir $@)`.\n\n`$(*D)`\n`$(*F)`\n\nThe directory part and the file-within-directory part of the stem; dir and foo in this example.\n\n`$(%D)`\n`$(%F)`\n\nThe directory part and the file-within-directory part of the target archive member name. This makes sense only for archive member targets of the form archive(member) and is useful only when member may contain a directory name. (See Archive Members as Targets.)\n\n`$(\u003cD)`\n`$(\u003cF)`\n\nThe directory part and the file-within-directory part of the first prerequisite.\n\n`$(^D)`\n`$(^F)`\n\nLists of the directory parts and the file-within-directory parts of all prerequisites.\n\n`$(+D)`\n`$(+F)`\n\nLists of the directory parts and the file-within-directory parts of all prerequisites, including multiple instances of duplicated prerequisites.\n\n`$(?D)`\n`$(?F)`\n\nLists of the directory parts and the file-within-directory parts of all prerequisites that are newer than the target. \n\nNote that we use a special stylistic convention when we talk about these automatic variables; we write “the value of `$\u003c`”, rather than “the variable \u003c” as we would write for ordinary variables such as objects and CFLAGS. We think this convention looks more natural in this special case. Please do not assume it has a deep significance; `$\u003c` refers to the variable named \u003c just as `$(CFLAGS)` refers to the variable named CFLAGS. You could just as well use `$(\u003c)` in place of `$\u003c`. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnetcarpenter%2Fvirtualcontrol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotnetcarpenter%2Fvirtualcontrol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnetcarpenter%2Fvirtualcontrol/lists"}