<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://labviewwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=ChrisCilino</id>
	<title>LabVIEW Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://labviewwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=ChrisCilino"/>
	<link rel="alternate" type="text/html" href="https://labviewwiki.org/wiki/Special:Contributions/ChrisCilino"/>
	<updated>2026-05-09T23:02:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VI_Scripting&amp;diff=32759</id>
		<title>VI Scripting</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VI_Scripting&amp;diff=32759"/>
		<updated>2024-07-25T14:40:15Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: Fixing broken links to lv help on vi scripting under getting started.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCnestright}}&lt;br /&gt;
[[File:Lv scripting.jpg|thumb|VI Scripting Nodes appear as Light Cyan]]&lt;br /&gt;
&#039;&#039;&#039;VI Scripting&#039;&#039;&#039;, also known as Scripting, deals with the ability of LabVIEW to use G to write G. VI Scripting contains several new [[VI Server]] classes, properties, methods, and events so you can create, move, and wire objects; edit the connector pane; create new VIs; and more. Scripting is useful for generating or editing VIs automatically based on simpler configurations. Examples of scripting include the code generated by Express VIs, the code generated for LVOOP Accessor VIs and the code generated by the NI Vision Builder. Because scripting requires recompiling the VI and may break it, you can not run scripting code on a VI which is reserved for running.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
VI Scripting began shipping with LabVIEW beginning with [[LabVIEW 2010]].  However, it is available for download from the [http://sine.ni.com/nips/cds/view/p/lang/en/nid/209110 LabVIEW Tools Network] for [[LabVIEW 8.6]] and [[LabVIEW 2009|2009]]. Before [[LabVIEW 8.6]] scripting was an undocumented feature and was available to those that knew how to enable it as early as [[LabVIEW 5.0]] through  flags in the [[LabVIEW configuration file]].  However, as it was not documented or supported to the greater community, it had the potential to be dangerous.  Before scripting was official an NI employee famously refferred to it as something akin to [[Rusty_nails|Rusty Nails]].&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
VI Scripting generally falls into three categories:&lt;br /&gt;
# Using G to automate the generation of more G&lt;br /&gt;
# Using G to create add-on tools (i.e. [[Quick Drop]], [[Shortcut Menu Plugins]], etc.)&lt;br /&gt;
# Using G to inspect G (i.e. [[VI Analyzer]])&lt;br /&gt;
VI Scripting uses properties and methods to create, locate, and operate on Block Diagram objects (i.e. primatives, structures, wires, and terminals), Front Panel objects (i.e. controls, indicators, decorations, splitters, panes, and panels), edit the Connector Pane and the VI.&lt;br /&gt;
&lt;br /&gt;
=== Code Generation ===&lt;br /&gt;
Many of the main application frameworks use VI Scripting to automate the generation of code, modules, messages, etc. Some examples of this include:&lt;br /&gt;
* How [[Delacor Queued Message Handler (DQMH)|DQMH]] starts new projects and adds new modules&lt;br /&gt;
* How [[Actor Framework]] creates new messages (see also [http://www.mooregoodideas.com/actor-framework/AF-Message-maker/ MGI&#039;s AF Message Maker])&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;General Guideline for Code Generation:&#039;&#039;&#039; VI Scripting code can get large and complex very quickly. A guideline to VI Scripting is to start with a template, make a copy, and then edit the copy.&lt;br /&gt;
&lt;br /&gt;
Another common use case of VI Scripting is to automate repetitive tasks. For example, if the code required the generation of many similar VIs. It might be more efficient to create a template and then write the scripting code to copy, modify, and save the VI.&lt;br /&gt;
&lt;br /&gt;
=== Creation of Add-on Tools ===&lt;br /&gt;
The creation of add-on tools can improve efficiency by automating repetitive tasks or making tasks easier to accomplish. There are many hooks into the LabVIEW IDE to let you create add-on tools.&lt;br /&gt;
&lt;br /&gt;
Presentation to help create new tools:&lt;br /&gt;
* [http://bit.ly/dnattlvhooks Don&#039;t Wait for LabVIEW R&amp;amp;D, Implement Your Own LabVIEW Features] - by Darren Nattinger, National Instruments&lt;br /&gt;
* [https://forums.ni.com/t5/Top-of-Utah-LabVIEW-User-Group/Seven-Things-Your-Doctor-Won-t-Tell-You-About-LabVIEW-Scripting/gpm-p/3685320 Seven Things Your Doctor Won&#039;t Tell You About LabVIEW Scripting] - by Quentin Alldredge, Q Software Innovations&lt;br /&gt;
Cool tools that currently exist:&lt;br /&gt;
* More to come&lt;br /&gt;
&lt;br /&gt;
=== Code Inspection ===&lt;br /&gt;
Another use of VI Scripting is to automate inspection of code to ensure adherence to style guidelines and effective programming practices, to catch common errors, and improve performance, functionality, and maintainability.&lt;br /&gt;
&lt;br /&gt;
Such tools include:&lt;br /&gt;
* [[VI Analyzer]] - The LabVIEW VI Analyzer Toolkit helps you improve the quality and readability of graphical code developed in LabVIEW software.&lt;br /&gt;
* [http://sine.ni.com/psp/app/doc/p/id/psp-844/lang/en LabVIEW Unit Test Framework] - The Unit Test Framework Toolkit provides interactive tools to create, configure, manage, and execute tests that check VIs for functional correctness.&lt;br /&gt;
* [https://github.com/JKISoftware/JKI-VI-Tester JKI VI Tester] - software test framework for LabVIEW that allows software developers to test their LabVIEW code; VI Tester is based on the industry standard xUnit software test architecture that is used in many other programming languages&lt;br /&gt;
* [https://github.com/JKISoftware/Caraya JKI Caraya Unit Tester] - open source assertion and unit testing framework for LabVIEW; convert your manual test VIs you use for debugging into unit test cases with nearly no effort&lt;br /&gt;
&lt;br /&gt;
== Enabling VI Scripting ==&lt;br /&gt;
[https://www.ni.com/docs/en-US/bundle/labview/page/enabling-vi-scripting.html Instructions for enabling VI Scripting]&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
* [https://www.ni.com/docs/en-US/bundle/labview/page/common-vi-scripting-tasks.html Common VI Scripting Tasks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.ni.com/docs/en-US/bundle/labview/page/vi-scripting-tutorial.html VI Scripting Tutorial]&lt;br /&gt;
&lt;br /&gt;
== Tips and Tricks ==&lt;br /&gt;
[https://forums.ni.com/t5/LabVIEW-APIs-Discussions/Exploring-the-Depths-of-the-VI-Server/td-p/3844848 Exploring the Depths of the VI Server] - by Quentin Alldredge, Q Software Innovations&lt;br /&gt;
&lt;br /&gt;
This presentation goes into the depths of the [[VI Server]] including Basic LabVIEW, VI Scripting, and even the Private stuff, showing many of the Properties, Methods, and Events I have found useful in the creation of LabVIEW IDE add-ons.&lt;br /&gt;
&lt;br /&gt;
[https://delacor.com/5-steps-to-become-a-vi-scripting-ninja/ 5 Steps to Become a VI Scripting Ninja] - Fabiola De la Cueva, Delacor&lt;br /&gt;
&lt;br /&gt;
Why would you want to use LabVIEW Scripting? LabVIEW VI scripting allows LabVIEW Developers to programmatically generate, edit, and inspect LabVIEW code. You would want to use LabVIEW VI Scripting to create tools that would make you and your team more efficient, to enforce coding guidelines or to automate repetitive tasks.&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Rusty Nails]]&lt;br /&gt;
&lt;br /&gt;
[[Category:VI Scripting]]&lt;br /&gt;
[[Category:IDE Add-ons]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=30261</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=30261"/>
		<updated>2020-08-28T15:32:05Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Community Non-Commercial, Free Commercial, Pro $599) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || 2006 || 2017 || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes (Community &amp;amp; Free) || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || Yes (Community &amp;amp; Pro) || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || Yes (Pro) || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE or OS File System || OS File System || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ Free &amp;amp; Community] or Paid Direct || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || [https://gitlab.com/mgi/gpm/gpm/wikis/home GitLab Issue Tracking and Wiki]&amp;lt;sup&amp;gt;10&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || Yes (Community &amp;amp; Pro) || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community led, ungated repository of packages&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt; || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports offline\copies of repositories&amp;lt;sup&amp;gt;11&amp;lt;/sup&amp;gt; || Yes (Pro) ||  || Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 10 || GPM is open source.  The community can contribute to fix issues, add features and make support better.&lt;br /&gt;
|-&lt;br /&gt;
| 11 || For some organizations, a connection to the internet is not allowed. This feature allows you to internet-based repositories and host them locally for your organization.&lt;br /&gt;
|-&lt;br /&gt;
| 12 || A community package repository is not governed or gated by any organization. Community members are free to upload/download packages without oversight. &lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;br /&gt;
&lt;br /&gt;
[[Category:Code distribution]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26988</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26988"/>
		<updated>2020-05-09T23:28:24Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/ftBU5-L3MLQ Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
&amp;lt;center&amp;gt;:&amp;lt;youtube&amp;gt;ftBU5-L3MLQ&amp;lt;/youtube&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Visit the VIWeek Portal at [https://bit.ly/viweek https://bit.ly/viweek] for the full agenda.&lt;br /&gt;
&lt;br /&gt;
[[File:2020-05-09 18h21 54.png|link=https://bit.ly/viweek]]&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26987</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26987"/>
		<updated>2020-05-09T23:27:03Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/ftBU5-L3MLQ Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
&amp;lt;center&amp;gt;:&amp;lt;youtube&amp;gt;ftBU5-L3MLQ&amp;lt;/youtube&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Visit the VIWeek Portal at [https://bit.ly/viweek https://bit.ly/viweek] for the full agenda.&lt;br /&gt;
&lt;br /&gt;
[[File:2020-05-09 18h21 54.png]]&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=File:2020-05-09_18h21_54.png&amp;diff=26986</id>
		<title>File:2020-05-09 18h21 54.png</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=File:2020-05-09_18h21_54.png&amp;diff=26986"/>
		<updated>2020-05-09T23:23:56Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;bit.ly/viweek. This is the portal for #VIWeek 2020&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26985</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26985"/>
		<updated>2020-05-09T23:19:10Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/ftBU5-L3MLQ Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
&amp;lt;center&amp;gt;:&amp;lt;youtube&amp;gt;ftBU5-L3MLQ&amp;lt;/youtube&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also see the agenda at [https://bit.ly/viweek here].&lt;br /&gt;
&lt;br /&gt;
=== Sunday 17th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
| GCentral: State of the Union and Rolling Up Your Sleeves || GCentral is a nonprofit organization founded in late 2019. The vision: a LabVIEW community empowered to make the best version of itself. The mission: reduce/remove barriers to collaboration. In this presentation, we&#039;ll introduce you to GCentral and give a progress update. And we&#039;ll show you how we can all work together to make GCentral a reality. || [https://bit.ly/VIWeek_GCentralPresentation Youtube Live Stream] [mailto:info@gcentral.org?subject=VIWeek Email]|| Sunday May, 17th. 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST || [[GCentral]]: [https://www.linkedin.com/in/danielle-jobe/ Danielle Jobe], [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]&lt;br /&gt;
|-&lt;br /&gt;
| LabVIEW FPGA for high throughput applications  || LabVIEW FPGA for high throughput applications  - Terry Stratoudakis || [mailto:terry@aleconsultants.com terry@aleconsultants.com]|| 9-10 PDT, 11-12noon CDT, 5-6pm BST, 6-7pm CEST ||&lt;br /&gt;
|-&lt;br /&gt;
| Functional programming inspired object-oriented template in LabVIEW + SOLID  || [https://www.linkedin.com/pulse/functional-programming-inspired-object-oriented-piotr-kruczkowski/ LinkedIn post] Piotr Kruczkowski || TBD || 11-12 PDT, 1-2pm CDT, 7-8pm BST, 8-9pm CEST ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Monday 18th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tuesday 19th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Wednesday 20th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Thursday 21st May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|NI CEF (Configuration Editor Framework) Sreejtih Sreenivasan &amp;amp; Vikas Koujalagi || Configuration files are commonly used to specify application settings and hardware configuration. Manual editing of some of the complex configuration files of hardware systems or applications are often error prone. Shipping a configuration editor can ease the pain but development overheads may outweigh the benefits. [https://forums.ni.com/t5/Example-Code/Configuration-Editor-Framework-CEF/ta-p/3984276 Configuration Editor Framework (CEF)] from NI Systems Engineering is a versatile framework allowing rapid development of such editors. Development generally take hours instead of days or weeks. This presentation delves in to the features and walks through an example which saves the files in JSON format. || [https://bit.ly/VIWEEK_NICEF MS Teams Link] [[File:NICEF ICS.zip|thumb|ICS]] [mailto:info@multics.co.uk?subject=VIWeek%20NI%20CEF Email]|| 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|Using the new TLS/SSL functions in LabVIEW 2020 Sam Sharp || Sam will go through the newly added SSL/TLS functions in LabVIEW 2020 which enables secure TCP/IP communications in LabVIEW. This session should provide enough information to be able to implement secure TCP/IP communications in your own applications and learn why you should. He&#039;ll also demonstrate an update to his WebSockets library that enables secure WebSockets (wss://) support - a highly requested feature now possible with LabVIEW 2020. || [https://agilent.webex.com/agilent/j.php?MTID=e3d53dd57c11ae89cf4fa088a8cf978c4 Webex Link] [mailto:sam@mediamongrels.com?subject=VIWeek%20TLS%20SSL Email]|| 9-10 PDT, 11-12noon CDT, 5-6pm BST, 6-7pm CEST||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.dsh-workshops.com/#events DSH Soft Skills for Software Engineers Discussion] || Steve and anyone else who wants to join. It won&#039;t be the presentation I intended to do, more of a chat really. ||[mailto:hello@dsh-workshops.com?subject=VIWeek%20Soft%20Skills Email]|| 11-12 PDT, 1-2pm CDT, 7-8pm BST, 8-9pm CEST ||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Friday 22nd May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26984</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26984"/>
		<updated>2020-05-09T22:59:02Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/bCfK_da4VLY Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
&amp;lt;center&amp;gt;:&amp;lt;youtube&amp;gt;bCfK_da4VLY&amp;lt;/youtube&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also see the agenda at [https://bit.ly/viweek here].&lt;br /&gt;
&lt;br /&gt;
=== Sunday 17th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
| GCentral: State of the Union and Rolling Up Your Sleeves || GCentral is a nonprofit organization founded in late 2019. The vision: a LabVIEW community empowered to make the best version of itself. The mission: reduce/remove barriers to collaboration. In this presentation, we&#039;ll introduce you to GCentral and give a progress update. And we&#039;ll show you how we can all work together to make GCentral a reality. || [https://bit.ly/VIWeek_GCentralPresentation Youtube Live Stream] [mailto:info@gcentral.org?subject=VIWeek Email]|| Sunday May, 17th. 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST || [[GCentral]]: [https://www.linkedin.com/in/danielle-jobe/ Danielle Jobe], [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]&lt;br /&gt;
|-&lt;br /&gt;
| LabVIEW FPGA for high throughput applications  || LabVIEW FPGA for high throughput applications  - Terry Stratoudakis || [mailto:terry@aleconsultants.com terry@aleconsultants.com]|| 9-10 PDT, 11-12noon CDT, 5-6pm BST, 6-7pm CEST ||&lt;br /&gt;
|-&lt;br /&gt;
| Functional programming inspired object-oriented template in LabVIEW + SOLID  || [https://www.linkedin.com/pulse/functional-programming-inspired-object-oriented-piotr-kruczkowski/ LinkedIn post] Piotr Kruczkowski || TBD || 11-12 PDT, 1-2pm CDT, 7-8pm BST, 8-9pm CEST ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Monday 18th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tuesday 19th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Wednesday 20th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Thursday 21st May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|NI CEF (Configuration Editor Framework) Sreejtih Sreenivasan &amp;amp; Vikas Koujalagi || Configuration files are commonly used to specify application settings and hardware configuration. Manual editing of some of the complex configuration files of hardware systems or applications are often error prone. Shipping a configuration editor can ease the pain but development overheads may outweigh the benefits. [https://forums.ni.com/t5/Example-Code/Configuration-Editor-Framework-CEF/ta-p/3984276 Configuration Editor Framework (CEF)] from NI Systems Engineering is a versatile framework allowing rapid development of such editors. Development generally take hours instead of days or weeks. This presentation delves in to the features and walks through an example which saves the files in JSON format. || [https://bit.ly/VIWEEK_NICEF MS Teams Link] [[File:NICEF ICS.zip|thumb|ICS]] [mailto:info@multics.co.uk?subject=VIWeek%20NI%20CEF Email]|| 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|Using the new TLS/SSL functions in LabVIEW 2020 Sam Sharp || Sam will go through the newly added SSL/TLS functions in LabVIEW 2020 which enables secure TCP/IP communications in LabVIEW. This session should provide enough information to be able to implement secure TCP/IP communications in your own applications and learn why you should. He&#039;ll also demonstrate an update to his WebSockets library that enables secure WebSockets (wss://) support - a highly requested feature now possible with LabVIEW 2020. || [https://agilent.webex.com/agilent/j.php?MTID=e3d53dd57c11ae89cf4fa088a8cf978c4 Webex Link] [mailto:sam@mediamongrels.com?subject=VIWeek%20TLS%20SSL Email]|| 9-10 PDT, 11-12noon CDT, 5-6pm BST, 6-7pm CEST||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.dsh-workshops.com/#events DSH Soft Skills for Software Engineers Discussion] || Steve and anyone else who wants to join. It won&#039;t be the presentation I intended to do, more of a chat really. ||[mailto:hello@dsh-workshops.com?subject=VIWeek%20Soft%20Skills Email]|| 11-12 PDT, 1-2pm CDT, 7-8pm BST, 8-9pm CEST ||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Friday 22nd May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26975</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26975"/>
		<updated>2020-05-09T12:39:40Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/A4hgyH5tf9M Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
&amp;lt;center&amp;gt;:&amp;lt;youtube&amp;gt;A4hgyH5tf9M&amp;lt;/youtube&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also see the agenda at [https://bit.ly/viweek here].&lt;br /&gt;
&lt;br /&gt;
=== Sunday 17th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
| GCentral: State of the Union and Rolling Up Your Sleeves || GCentral is a nonprofit organization founded in late 2019. The vision: a LabVIEW community empowered to make the best version of itself. The mission: reduce/remove barriers to collaboration. In this presentation, we&#039;ll introduce you to GCentral and give a progress update. And we&#039;ll show you how we can all work together to make GCentral a reality. || [https://bit.ly/VIWeek_GCentralPresentation Youtube Live Stream] [mailto:info@gcentral.org?subject=VIWeek Email]|| Sunday May, 17th. 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST || [[GCentral]]: [https://www.linkedin.com/in/danielle-jobe/ Danielle Jobe], [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]&lt;br /&gt;
|-&lt;br /&gt;
| LabVIEW FPGA for high throughput applications  || LabVIEW FPGA for high throughput applications  - Terry Stratoudakis || [mailto:terry@aleconsultants.com terry@aleconsultants.com]|| 9-10 PDT, 11-12noon CDT, 5-6pm BST, 6-7pm CEST ||&lt;br /&gt;
|-&lt;br /&gt;
| Functional programming inspired object-oriented template in LabVIEW + SOLID  || [https://www.linkedin.com/pulse/functional-programming-inspired-object-oriented-piotr-kruczkowski/ LinkedIn post] Piotr Kruczkowski || TBD || 11-12 PDT, 1-2pm CDT, 7-8pm BST, 8-9pm CEST ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Monday 18th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tuesday 19th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Wednesday 20th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Thursday 21st May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|NI CEF (Configuration Editor Framework) Sreejtih Sreenivasan &amp;amp; Vikas Koujalagi || Configuration files are commonly used to specify application settings and hardware configuration. Manual editing of some of the complex configuration files of hardware systems or applications are often error prone. Shipping a configuration editor can ease the pain but development overheads may outweigh the benefits. [https://forums.ni.com/t5/Example-Code/Configuration-Editor-Framework-CEF/ta-p/3984276 Configuration Editor Framework (CEF)] from NI Systems Engineering is a versatile framework allowing rapid development of such editors. Development generally take hours instead of days or weeks. This presentation delves in to the features and walks through an example which saves the files in JSON format. || [https://bit.ly/VIWEEK_NICEF MS Teams Link] [[File:NICEF ICS.zip|thumb|ICS]] [mailto:info@multics.co.uk?subject=VIWeek%20NI%20CEF Email]|| 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|Using the new TLS/SSL functions in LabVIEW 2020 Sam Sharp || Sam will go through the newly added SSL/TLS functions in LabVIEW 2020 which enables secure TCP/IP communications in LabVIEW. This session should provide enough information to be able to implement secure TCP/IP communications in your own applications and learn why you should. He&#039;ll also demonstrate an update to his WebSockets library that enables secure WebSockets (wss://) support - a highly requested feature now possible with LabVIEW 2020. || [https://agilent.webex.com/agilent/j.php?MTID=e3d53dd57c11ae89cf4fa088a8cf978c4 Webex Link] [mailto:sam@mediamongrels.com?subject=VIWeek%20TLS%20SSL Email]|| 9-10 PDT, 11-12noon CDT, 5-6pm BST, 6-7pm CEST||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.dsh-workshops.com/#events DSH Soft Skills for Software Engineers Discussion] || Steve and anyone else who wants to join. It won&#039;t be the presentation I intended to do, more of a chat really. ||[mailto:hello@dsh-workshops.com?subject=VIWeek%20Soft%20Skills Email]|| 11-12 PDT, 1-2pm CDT, 7-8pm BST, 8-9pm CEST ||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Friday 22nd May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26954</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26954"/>
		<updated>2020-05-08T22:25:29Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/A4hgyH5tf9M Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
&amp;lt;center&amp;gt;:&amp;lt;youtube&amp;gt;A4hgyH5tf9M&amp;lt;/youtube&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sunday 17th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
| GCentral: State of the Union and Rolling Up Your Sleeves || GCentral is a nonprofit organization founded in late 2019. The vision: a LabVIEW community empowered to make the best version of itself. The mission: reduce/remove barriers to collaboration. In this presentation, we&#039;ll introduce you to GCentral and give a progress update. And we&#039;ll show you how we can all work together to make GCentral a reality. || [https://bit.ly/VIWeek_GCentralPresentation Youtube Live Stream] [mailto:info@gcentral.org?subject=VIWeek Email]|| Sunday May, 17th. 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST || [[GCentral]]: [https://www.linkedin.com/in/danielle-jobe/ Danielle Jobe], [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]&lt;br /&gt;
|-&lt;br /&gt;
| LabVIEW FPGA for high throughput applications  || LabVIEW FPGA for high throughput applications  - Terry Stratoudakis || [mailto:terry@aleconsultants.com terry@aleconsultants.com]|| 9-10 PDT, 11-12noon CDT, 5-6pm BST, 6-7pm CEST ||&lt;br /&gt;
|-&lt;br /&gt;
| Functional programming inspired object-oriented template in LabVIEW + SOLID  || [https://www.linkedin.com/pulse/functional-programming-inspired-object-oriented-piotr-kruczkowski/ LinkedIn post] Piotr Kruczkowski || TBD || 11-12 PDT, 1-2pm CDT, 7-8pm BST, 8-9pm CEST ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Monday 18th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tuesday 19th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Wednesday 20th May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Thursday 21st May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|NI CEF (Configuration Editor Framework) Sreejtih Sreenivasan &amp;amp; Vikas Koujalagi || Configuration files are commonly used to specify application settings and hardware configuration. Manual editing of some of the complex configuration files of hardware systems or applications are often error prone. Shipping a configuration editor can ease the pain but development overheads may outweigh the benefits. [https://forums.ni.com/t5/Example-Code/Configuration-Editor-Framework-CEF/ta-p/3984276 Configuration Editor Framework (CEF)] from NI Systems Engineering is a versatile framework allowing rapid development of such editors. Development generally take hours instead of days or weeks. This presentation delves in to the features and walks through an example which saves the files in JSON format. || [https://bit.ly/VIWEEK_NICEF MS Teams Link] [[File:NICEF ICS.zip|thumb|ICS]] [mailto:info@multics.co.uk?subject=VIWeek%20NI%20CEF Email]|| 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|Using the new TLS/SSL functions in LabVIEW 2020 Sam Sharp || Sam will go through the newly added SSL/TLS functions in LabVIEW 2020 which enables secure TCP/IP communications in LabVIEW. This session should provide enough information to be able to implement secure TCP/IP communications in your own applications and learn why you should. He&#039;ll also demonstrate an update to his WebSockets library that enables secure WebSockets (wss://) support - a highly requested feature now possible with LabVIEW 2020. || [https://agilent.webex.com/agilent/j.php?MTID=e3d53dd57c11ae89cf4fa088a8cf978c4 Webex Link] [mailto:sam@mediamongrels.com?subject=VIWeek%20TLS%20SSL Email]|| 9-10 PDT, 11-12noon CDT, 5-6pm BST, 6-7pm CEST||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.dsh-workshops.com/#events DSH Soft Skills for Software Engineers Discussion] || Steve and anyone else who wants to join. It won&#039;t be the presentation I intended to do, more of a chat really. ||[mailto:hello@dsh-workshops.com?subject=VIWeek%20Soft%20Skills Email]|| 11-12 PDT, 1-2pm CDT, 7-8pm BST, 8-9pm CEST ||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Friday 22nd May ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date !! Presenters / Company&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26809</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26809"/>
		<updated>2020-05-08T02:41:40Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/A4hgyH5tf9M Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
:&amp;lt;youtube&amp;gt;A4hgyH5tf9M&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date&lt;br /&gt;
|-&lt;br /&gt;
| GCentral: State of the Union and Rolling Up Your Sleeves || GCentral is a nonprofit organization founded in late 2019. The vision: a LabVIEW community empowered to make the best version of itself. The mission: reduce/remove barriers to collaboration. In this presentation, we&#039;ll introduce you to GCentral and give a progress update. And we&#039;ll show you how we can all work together to make GCentral a reality. || [https://bit.ly/VIWeek_GCentralPresentation Youtube Live Stream] || Sunday May, 17th. 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26808</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26808"/>
		<updated>2020-05-08T02:38:42Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/A4hgyH5tf9M Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
:&amp;lt;youtube&amp;gt;A4hgyH5tf9M&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Abstract !! Link !! Date&lt;br /&gt;
|-&lt;br /&gt;
| GCentral: State of the Union and Rolling Up Your Sleeves || GCentral is a nonprofit organization founded in late 2019. The vision: a LabVIEW community empowered to make the best version of itself. The mission: reduce/remove barriers to collaboration. In this presentation, we&#039;ll introduce you to GCentral and give a progress update. And we&#039;ll show you how we can all work together to make GCentral a reality. || [https://bit.ly/VIWeek_GCentralPresentation Youtube Live Stream] || Sunday May, 17th. 7-8am PDT, 9-10am CDT, 3-4pm BST, 4-5pm CEST&lt;br /&gt;
|}&lt;br /&gt;
[https://bit.ly/VIWeek_GCentralPresentation The opening broadcast will be Sunday May 17th at 9 AM CDT at this link.]&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26807</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26807"/>
		<updated>2020-05-08T02:15:42Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/A4hgyH5tf9M Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
:&amp;lt;youtube&amp;gt;A4hgyH5tf9M&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://bit.ly/VIWeek_GCentralPresentation The opening broadcast will be Sunday May 17th at 9 AM CDT at this link.]&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26806</id>
		<title>VIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=VIWeek_2020&amp;diff=26806"/>
		<updated>2020-05-08T02:12:19Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:VIWeek Logo, Title, and Tagline.png|VIWeek|700px|center|link=https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Due to the cancellation of live, in-person events from [[NI]], Steve Watts, with other LabVIEW Champions and Community leaders started the idea of a new community-led virtual event.  [https://forums.ni.com/t5/Random-Ramblings-on-LabVIEW/VIWeek-Making-Trouble-Again/ba-p/4044162 You can see Steve&#039;s blog here with the current agenda].&lt;br /&gt;
&lt;br /&gt;
===[https://youtu.be/A4hgyH5tf9M Introduction to VIWeek from] [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]===&lt;br /&gt;
:&amp;lt;youtube&amp;gt;A4hgyH5tf9M&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://%20bit.ly/VIWeek_GCentralPresentation The opening broadcast will be Sunday May 17th at 9 AM CDT at this link.]&lt;br /&gt;
&lt;br /&gt;
[[Category:VIWeek]]&lt;br /&gt;
[[Category:Videos]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=24729</id>
		<title>Chris Cilino (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=24729"/>
		<updated>2020-05-07T19:47:53Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
| Chris Cilino&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Home&#039;&#039;&#039;&lt;br /&gt;
| Austin, Texas USA&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Certification&#039;&#039;&#039;&lt;br /&gt;
| Certified LabVIEW Architect, 2014&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Used LabVIEW Since:&#039;&#039;&#039;&lt;br /&gt;
| 2003 with LabVIEW 7.0&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Applications Areas&#039;&#039;&#039;&lt;br /&gt;
| Semiconductor. General application development with a concentration on infrastructure.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Biography: ==&lt;br /&gt;
[[File:Profile Picture.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
I have a passion for technology, teamwork, and mentorship. In my 20+ year career, I&#039;ve employed all three in the context of using LabVIEW in creating applications and engaging with the LabVIEW community. I started my career at National Instruments in Applications Engineering, then Software Development in DAQ R&amp;amp;D (where I got my &#039;&#039;&#039;[http://bit.ly/ChrisCilino_CLABadge CLA in 2014]&#039;&#039;&#039;), and then finally in LabVIEW marketing where I owned programs such as the &#039;&#039;&#039;[[LabVIEW Champions]]&#039;&#039;&#039;. I spent the next three years at Cirrus Logic as the LabVIEW Framework architect. I was responsible for &#039;&#039;&#039;[https://bit.ly/ChrisCilino_2018Keynote reducing the time and cost of validation]&#039;&#039;&#039; by creating software that kept pace with Cirrus&#039; rapidly evolving products. During my time at Cirrus, I attained the status of &#039;&#039;&#039;[http://bit.ly/ChrisCilino_ChampionBadge LabVIEW Champion]&#039;&#039;&#039; in 2017, and then passed the &#039;&#039;&#039;[https://learn.ni.com/center-of-excellence Center of Excellence]&#039;&#039;&#039; audit in 2018. I&#039;ve given numerous presentations at the &#039;&#039;&#039;[https://bit.ly/ChrisCilino_Presentations CLA Summits]&#039;&#039;&#039; and &#039;&#039;&#039;[https://bit.ly/ChrisCilino_CSuite distributed my toolkits]&#039;&#039;&#039; for use. Most recently I&#039;ve joined Composed Systems as a LabVIEW Consultant. In parallel, I&#039;ve started &#039;&#039;&#039;[[GCentral]]&#039;&#039;&#039;, a non-profit organization with the mission of improving the LabVIEW Community&#039;s engineering capability by removing barriers to collaboration. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of LabVIEW Champions]]&lt;br /&gt;
*[[LabVIEW Champions]]&lt;br /&gt;
*[https://www.youtube.com/watch?v=N_SuL4YoqL8&amp;amp;list=PL6GvH0V49FYcO5dcLhRSZc5KAebUnjPyr&amp;amp;index=2&amp;amp;t=1793s My Champions Interview]&lt;br /&gt;
*[http://bit.ly/ChrisCilino_LinkedIn LinkedIn]&lt;br /&gt;
*[http://bit.ly/ChrisCilino_ChampionBadge Champion Certification]&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions|Cilino, Chris]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=19260</id>
		<title>Chris Cilino (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=19260"/>
		<updated>2020-05-01T16:28:39Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
| Chris Cilino&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Home&#039;&#039;&#039;&lt;br /&gt;
| Austin, Texas USA&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Certification&#039;&#039;&#039;&lt;br /&gt;
| Certified LabVIEW Architect, 2014&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Used LabVIEW Since:&#039;&#039;&#039;&lt;br /&gt;
| 2003 with LabVIEW 7.0&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Applications Areas&#039;&#039;&#039;&lt;br /&gt;
| Semiconductor. General application development with a concentration on infrastructure.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Biography: ==&lt;br /&gt;
[[File:Profile Picture.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
I have a passion for technology, teamwork, and mentorship. In my 20+ year career, I&#039;ve employed all three in the context of using LabVIEW in creating applications and engaging with the LabVIEW community. I started my career at National Instruments in Applications Engineering, then Software Development in DAQ R&amp;amp;D (where I got my &#039;&#039;&#039;[http://bit.ly/ChrisCilino_CLABadge CLA in 2014]&#039;&#039;&#039;), and then finally in LabVIEW marketing where I owned programs such as the &#039;&#039;&#039;[[LabVIEW Champions]]&#039;&#039;&#039;. I spent the next three years at Cirrus Logic as the LabVIEW Framework architect. I was responsible for &#039;&#039;&#039;[https://bit.ly/ChrisCilino_2018Keynote reducing the time and cost of validation]&#039;&#039;&#039; by creating software that kept pace with Cirrus&#039; rapidly evolving products. During my time at Cirrus, I attained the status of &#039;&#039;&#039;[http://bit.ly/ChrisCilino_ChampionBadge LabVIEW Champion]&#039;&#039;&#039; in 2017, and then passed the &#039;&#039;&#039;[https://learn.ni.com/center-of-excellence Center of Excellence]&#039;&#039;&#039; audit in 2018. I&#039;ve given numerous presentations at the &#039;&#039;&#039;[https://bit.ly/ChrisCilino_Presentations CLA Summits]&#039;&#039;&#039; and &#039;&#039;&#039;[https://bit.ly/ChrisCilino_CSuite distributed my toolkits]&#039;&#039;&#039; for use. Most recently I&#039;ve joined Composed Systems as a LabVIEW Consultant. In parallel, I&#039;ve started &#039;&#039;&#039;[[GCentral]]&#039;&#039;&#039;, a non-profit organization with the mission of improving the LabVIEW Community&#039;s engineering capability by removing barriers to collaboration. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of LabVIEW Champions]]&lt;br /&gt;
*[[LabVIEW Champions]]&lt;br /&gt;
*[https://www.youtube.com/watch?v=N_SuL4YoqL8&amp;amp;list=PL6GvH0V49FYcO5dcLhRSZc5KAebUnjPyr&amp;amp;index=2&amp;amp;t=1793s My Champions Interview]&lt;br /&gt;
*[http://bit.ly/ChrisCilino_LinkedIn LinkedIn]&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions|Cilino, Chris]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=19259</id>
		<title>Chris Cilino (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=19259"/>
		<updated>2020-05-01T16:27:38Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
| Chris Cilino&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Home&#039;&#039;&#039;&lt;br /&gt;
| Austin, Texas USA&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Certification&#039;&#039;&#039;&lt;br /&gt;
| Certified LabVIEW Architect, 2014&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Used LabVIEW Since:&#039;&#039;&#039;&lt;br /&gt;
| 2003 with LabVIEW 7.0&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Applications Areas&#039;&#039;&#039;&lt;br /&gt;
| Semiconductor. General application development with a concentration on infrastructure.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Biography: ==&lt;br /&gt;
[[File:Profile Picture.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
I have a passion for technology, teamwork, and mentorship. In my 20+ year career, I&#039;ve employed all three in the context of using LabVIEW in creating applications and engaging with the LabVIEW community. I started my career at National Instruments in Applications Engineering, then Software Development in DAQ R&amp;amp;D (where I got my &#039;&#039;&#039;[http://bit.ly/ChrisCilino_CLABadge CLA in 2014]&#039;&#039;&#039;), and then finally in LabVIEW marketing where I owned programs such as the &#039;&#039;&#039;[[LabVIEW Champions]]&#039;&#039;&#039;. I spent the next three years at Cirrus Logic as the LabVIEW Framework architect. I was responsible for &#039;&#039;&#039;[https://bit.ly/ChrisCilino_2018Keynote reducing the time and cost of validation]&#039;&#039;&#039; by creating software that kept pace with Cirrus&#039; rapidly evolving products. During my time at Cirrus, I attained the status of &#039;&#039;&#039;[http://bit.ly/ChrisCilino_ChampionBadge LabVIEW Champion]&#039;&#039;&#039; in 2017, and then passed the &#039;&#039;&#039;[https://learn.ni.com/center-of-excellence Center of Excellence]&#039;&#039;&#039; audit in 2018. I&#039;ve given numerous presentations at the &#039;&#039;&#039;[https://bit.ly/ChrisCilino_Presentations CLA Summits]&#039;&#039;&#039; and &#039;&#039;&#039;[https://bit.ly/ChrisCilino_CSuite distributed my toolkits]&#039;&#039;&#039; for use. Most recently I&#039;ve joined Composed Systems as a LabVIEW Consultant. In parallel, I&#039;ve started &#039;&#039;&#039;[[GCentral]]&#039;&#039;&#039;, a non-profit organization with the mission of improving the LabVIEW Community&#039;s engineering capability by removing barriers to collaboration. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of LabVIEW Champions]]&lt;br /&gt;
*[[LabVIEW Champions]]&lt;br /&gt;
[https://www.youtube.com/watch?v=N_SuL4YoqL8&amp;amp;list=PL6GvH0V49FYcO5dcLhRSZc5KAebUnjPyr&amp;amp;index=2&amp;amp;t=1793s My Champions Interview]&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions|Cilino, Chris]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=19258</id>
		<title>Chris Cilino (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=19258"/>
		<updated>2020-05-01T16:24:19Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
| Chris Cilino&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Home&#039;&#039;&#039;&lt;br /&gt;
| Austin, Texas USA&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Certification&#039;&#039;&#039;&lt;br /&gt;
| Certified LabVIEW Architect, 2014&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Used LabVIEW Since:&#039;&#039;&#039;&lt;br /&gt;
| 2003 with LabVIEW 7.0&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Applications Areas&#039;&#039;&#039;&lt;br /&gt;
| Semiconductor. General application development with a concentration on infrastructure.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Biography: ==&lt;br /&gt;
[[File:Profile Picture.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
I have a passion for technology, teamwork, and mentorship. In my 20+ year career, I&#039;ve employed all three in the context of using LabVIEW in creating applications and engaging with the LabVIEW community. I first started my career at National Instruments in Applications Engineering, then Software Development in DAQ R&amp;amp;D (where I got my &#039;&#039;&#039;[http://bit.ly/ChrisCilino_CLABadge CLA in 2014]&#039;&#039;&#039;), and then finally in LabVIEW marketing where I owned programs such as the LabVIEW Champions. I spent the next three years at Cirrus Logic as the LabVIEW Framework architect. I was responsible for &#039;&#039;&#039;[https://bit.ly/ChrisCilino_2018Keynote reducing the time and cost of validation]&#039;&#039;&#039; by creating software that kept pace with Cirrus&#039; rapidly evolving products. During my time at Cirrus, I attained the status of &#039;&#039;&#039;[http://bit.ly/ChrisCilino_ChampionBadge LabVIEW Champion]&#039;&#039;&#039; in 2017, and then passed the Center of Excellence audit in 2018. I&#039;ve given numerous presentations at the &#039;&#039;&#039;[https://bit.ly/ChrisCilino_Presentations CLA Summits]&#039;&#039;&#039; and &#039;&#039;&#039;[https://bit.ly/ChrisCilino_CSuite distributed my toolkits]&#039;&#039;&#039; for use. Most recently I&#039;ve joined Composed Systems as a LabVIEW Consultant. In parallel, I&#039;ve started &#039;&#039;&#039;[[GCentral]]&#039;&#039;&#039;, a non-profit organization with the mission of improving the LabVIEW Community&#039;s engineering capability by removing barriers to collaboration. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of LabVIEW Champions]]&lt;br /&gt;
*[[LabVIEW Champions]]&lt;br /&gt;
[https://www.youtube.com/watch?v=N_SuL4YoqL8&amp;amp;list=PL6GvH0V49FYcO5dcLhRSZc5KAebUnjPyr&amp;amp;index=2&amp;amp;t=1793s My Champions Interview]&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions|Cilino, Chris]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=19257</id>
		<title>Chris Cilino (LabVIEW Champion)</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Chris_Cilino_(LabVIEW_Champion)&amp;diff=19257"/>
		<updated>2020-05-01T16:23:55Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Name&#039;&#039;&#039;&lt;br /&gt;
| Chris Cilino&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Home&#039;&#039;&#039;&lt;br /&gt;
| Austin, Texas USA&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Certification&#039;&#039;&#039;&lt;br /&gt;
| Certified LabVIEW Architect, 2014&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Used LabVIEW Since:&#039;&#039;&#039;&lt;br /&gt;
| 2003 with LabVIEW 7.0&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Applications Areas&#039;&#039;&#039;&lt;br /&gt;
| Semiconductor. General application development with a concentration on infrastructure.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Biography: ==&lt;br /&gt;
[[File:Profile Picture.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
I have a passion for technology, teamwork, and mentorship. In my 20+ year career, I&#039;ve employed all three in the context of using LabVIEW to create applications and engaging with the LabVIEW community. I first started my career at National Instruments in Applications Engineering, then Software Development in DAQ R&amp;amp;D (where I got my &#039;&#039;&#039;[http://bit.ly/ChrisCilino_CLABadge CLA in 2014]&#039;&#039;&#039;), and then finally in LabVIEW marketing where I owned programs such as the LabVIEW Champions. I spent the next three years at Cirrus Logic as the LabVIEW Framework architect. I was responsible for &#039;&#039;&#039;[https://bit.ly/ChrisCilino_2018Keynote reducing the time and cost of validation]&#039;&#039;&#039; by creating software that kept pace with Cirrus&#039; rapidly evolving products. During my time at Cirrus, I attained the status of &#039;&#039;&#039;[http://bit.ly/ChrisCilino_ChampionBadge LabVIEW Champion]&#039;&#039;&#039; in 2017, and then passed the Center of Excellence audit in 2018. I&#039;ve given numerous presentations at the &#039;&#039;&#039;[https://bit.ly/ChrisCilino_Presentations CLA Summits]&#039;&#039;&#039; and &#039;&#039;&#039;[https://bit.ly/ChrisCilino_CSuite distributed my toolkits]&#039;&#039;&#039; for use. Most recently I&#039;ve joined Composed Systems as a LabVIEW Consultant. In parallel, I&#039;ve started &#039;&#039;&#039;[[GCentral]]&#039;&#039;&#039;, a non-profit organization with the mission of improving the LabVIEW Community&#039;s engineering capability by removing barriers to collaboration. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of LabVIEW Champions]]&lt;br /&gt;
*[[LabVIEW Champions]]&lt;br /&gt;
[https://www.youtube.com/watch?v=N_SuL4YoqL8&amp;amp;list=PL6GvH0V49FYcO5dcLhRSZc5KAebUnjPyr&amp;amp;index=2&amp;amp;t=1793s My Champions Interview]&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Champions|Cilino, Chris]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=19256</id>
		<title>LabVIEW Community Edition</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=19256"/>
		<updated>2020-05-01T16:14:05Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:LVComEd Logo Horiz Color RGB.png|700px|center|link=https://www.ni.com/en-us/shop/labview/select-edition/labview-community-edition.html]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
&#039;&#039;&#039;LabVIEW Community Edition&#039;&#039;&#039; is a free (unpaid) edition of [[LabVIEW]] and [[LabVIEW NXG]] that may only be used for personal, non-commercial, non-industrial and non-academic purposes.&amp;lt;ref name=&amp;quot;lvce-usage&amp;quot;/&amp;gt; It provides all of the capabilities of the professional editions of LabVIEW and LabVIEW NXG and comes bundled with the [https://www.labviewmakerhub.com/doku.php?id=libraries:linx:start LINX toolkit] for use with [https://www.raspberrypi.org/ Raspberry Pi], [https://www.beagleboard.org/ BeagleBoard] and [https://www.arduino.cc Arduino].&amp;lt;ref name=&amp;quot;lvce-home&amp;quot;/&amp;gt; LabVIEW Community Edition is for the hobbyist wishing to use graphical programming for their projects.&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
LabVIEW Community Edition is available for download on the &lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/en-us/shop/labview/select-edition/labview-community-edition.html LabVIEW Community Edition]&#039;&#039;&#039; page.&lt;br /&gt;
&lt;br /&gt;
==Learn== &lt;br /&gt;
===Announcement video with Darren Nattinger===&lt;br /&gt;
&amp;lt;youtube&amp;gt;FTW525ZG3po&amp;lt;/youtube&amp;gt;&lt;br /&gt;
===Post from LabVIEW Champion Joerg Hampel===&lt;br /&gt;
Visit Joerg Hampel&#039;s &#039;&#039;&#039;[https://forums.ni.com/t5/NI-Blog/LabVIEW-Community-Edition/ba-p/3970512?profile.language=en blog post]&#039;&#039;&#039; to learn about LabVIEW Community edition. Joerg answers questions like:&lt;br /&gt;
&lt;br /&gt;
*What exactly is this new edition?&lt;br /&gt;
*Is it free?&lt;br /&gt;
*Who is it for?&lt;br /&gt;
*What about hobbyist hardware?&lt;br /&gt;
===LabVIEW Community Edition Sneak Peek (VI Shots)===&lt;br /&gt;
&#039;&#039;Note&#039;&#039;: Audio is delayed in this video.&amp;lt;br&amp;gt;&amp;lt;!-- youtube is inline --&amp;gt;&lt;br /&gt;
&amp;lt;youtube&amp;gt;4HLVqYXpxIo&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Getting Started==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! About The Example  !! Download Link !! Author&lt;br /&gt;
|-&lt;br /&gt;
| This example demonstrates how to use LabVIEW Community Edition in conjunction with BeagleBone, SystemLink Cloud, and a web front to monitor the open/close state of doors and windows in a house. || &#039;&#039;&#039;[https://ekerry.wordpress.com/2019/11/26/getting-started-with-labview-community-edition-and-beaglebone-or-raspberry-pi/ Getting Started with LabVIEW Community Edition And Beaglebone Or Raspberry Pi]&#039;&#039;&#039; || Elijah Kerry&lt;br /&gt;
|-&lt;br /&gt;
| This example introduces you to the basic syntax of the LabVIEW Graphical language by implementing an alarm clock state machine. The example is broken down into lessons that build on each other and introduce digestible concepts one phase at a time.  || &#039;&#039;&#039;[https://bit.ly/ChrisCilino_LabVIEWCommunityAndRP LabVIEW Community and a Slice Of Raspberry Pi]&#039;&#039;&#039; || [[Chris Cilino (LabVIEW Champion)|Chris Cilino]]&lt;br /&gt;
|-&lt;br /&gt;
| Also check out the resources at the [[Getting Started]] LabVIEW Wiki page. || &#039;&#039;&#039;[[Getting Started]]&#039;&#039;&#039; ||  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Find Code==&lt;br /&gt;
Use &#039;&#039;&#039;[https://www.GCentral.org GCentral.org]&#039;&#039;&#039; to find LabVIEW packages.&lt;br /&gt;
&lt;br /&gt;
==Ask Questions==&lt;br /&gt;
Ask your friendly, neighborhood LabVIEW Experts at:&lt;br /&gt;
* [https://lavag.org/forum/58-labview-community-edition/ LabVIEW Community Edition board on LAVA]&lt;br /&gt;
* NI&#039;s Forums.  There is a board for [https://forums.ni.com/t5/forums/filteredbylabelpage/board-id/170/label-name/labview LabVIEW] and [https://forums.ni.com/t5/forums/filteredbylabelpage/board-id/170/label-name/labview%20nxg LabVIEW NXG].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;lvce-usage&amp;quot;&amp;gt;[https://www.ni.com/en-us/support/documentation/supplemental/20/labview-community-edition-usage-details.html LabVIEW Community Edition Usage Details]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;lvce-home&amp;quot;&amp;gt;[https://www.ni.com/en-us/shop/labview/select-edition/labview-community-edition.html LabVIEW Community Edition]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Community Edition]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=17292</id>
		<title>GCentral</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=17292"/>
		<updated>2020-04-23T20:46:57Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:GCentralLogo_black.png|800px|frameless|center|link=http://www.gcentral.org]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== GCentral.org ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
==== How Do I Get To GCentral? ====&lt;br /&gt;
:Go to [https://www.gcentral.org/ GCentral.org]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== GCentral ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
==== What Is GCentral? ====&lt;br /&gt;
:GCentral is for programmers who need to find, share or collaborate on G reusable code or software engineering tools. GCentral is a non profit organization that provides a platform for G code packages and collaboration resources. &lt;br /&gt;
&lt;br /&gt;
==== What problems is GCentral solving? ====&lt;br /&gt;
:G community members are often frustrated when looking for tools and code others have posted on the web. There are too many places to look, and most aren’t easy to find:&lt;br /&gt;
:*ni.com&lt;br /&gt;
:*lavag.org &lt;br /&gt;
:*LabVIEW Tools Network&lt;br /&gt;
:*NI package manager&lt;br /&gt;
:*VI Package Manager&lt;br /&gt;
:*G package manager&lt;br /&gt;
:*Git repos&lt;br /&gt;
:*Others&lt;br /&gt;
:These locations often don’t reference each other. Therefore, a new or even experienced G community member can easily miss code ALREADY WRITTEN that solves their problem, resulting in wasted time duplicating code.&lt;br /&gt;
&lt;br /&gt;
:Furthermore, should someone want to generously contribute their code, there are significant barriers to build and distribution.&lt;br /&gt;
&lt;br /&gt;
==== How does GCentral solve these problems? ==== &lt;br /&gt;
:GCentral exposes packages of all types (NIPkgs, VIPkgs, GPkgs) through a single web interface. The web interface indexes the main locations of packages.&lt;br /&gt;
&lt;br /&gt;
:GCentral provides software tools to build and move packages to the common locations making it easy to contribute code, and find and use each other&#039;s code.&lt;br /&gt;
&lt;br /&gt;
:Ultimately code that&#039;s easy to find reduces/eliminates wasted time in re-solving problems, and redirects the community&#039;s effort towards new and meaningful innovations.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
*GCentral was first envisioned by [[Chris_Cilino_(LabVIEW_Champion)]] in early 2019.&lt;br /&gt;
*Officially incorporated as a Non-Profit, September 18, 2019.&lt;br /&gt;
&lt;br /&gt;
== Organization ==&lt;br /&gt;
GCentral is organized as a non-profit with a Board of Directors, Executive Staff, and a Steering Committee.  These positions are currently held as follows:&lt;br /&gt;
&lt;br /&gt;
=== Board of Directors ===&lt;br /&gt;
&lt;br /&gt;
*[[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin Alldredge]]&lt;br /&gt;
*[[Chris Cilino (LabVIEW Champion)|Chris Cilino]]&lt;br /&gt;
*[[Francois Normandin (LabVIEW Champion)]]&lt;br /&gt;
*[[Elijah Kerry]]&lt;br /&gt;
*[[Danielle Jobe]]&lt;br /&gt;
&lt;br /&gt;
=== Executive Staff ===&lt;br /&gt;
&lt;br /&gt;
*[[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin Alldredge]], Secretary&lt;br /&gt;
*[[Chris Cilino (LabVIEW Champion)|Chris Cilino]], Treasurer&lt;br /&gt;
*Open Position, Bookkeeper&lt;br /&gt;
*Open Position, Public Relations&lt;br /&gt;
&lt;br /&gt;
=== Steering Committee ===&lt;br /&gt;
&lt;br /&gt;
*Michael Aivaliotis&lt;br /&gt;
*Brian Hoover&lt;br /&gt;
*Jeff Kodosky&lt;br /&gt;
*Jon McBee&lt;br /&gt;
*Brian Powell&lt;br /&gt;
*Michal Radziwon&lt;br /&gt;
*Derek Trepanier&lt;br /&gt;
&lt;br /&gt;
== Volunteers ==&lt;br /&gt;
Volunteers have been essential in getting GCentral&#039;s mission going.  This is above the volunteered time of our Board, Staff, and Committee. A few others have volunteered time and effort and have helped in getting a prototype website together.  They include:&lt;br /&gt;
&lt;br /&gt;
*Matthias Baudot, Studio Bods&lt;br /&gt;
*Siva Shankar, Soliton&lt;br /&gt;
&lt;br /&gt;
[[Category:Open Source Code]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=17291</id>
		<title>GCentral</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=17291"/>
		<updated>2020-04-23T20:46:32Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: /* Executive Staff */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:GCentralLogo_black.png|800px|frameless|center|link=http://www.gcentral.org]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== GCentral.org ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
==== How Do I Get To GCentral? ====&lt;br /&gt;
:Go to [https://www.gcentral.org/ GCentral.org]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== GCentral ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
==== What Is GCentral? ====&lt;br /&gt;
:GCentral is for programmers who need to find, share or collaborate on G reusable code or software engineering tools. GCentral is a non profit organization that provides a platform for G code packages and collaboration resources. &lt;br /&gt;
&lt;br /&gt;
==== What problems is GCentral solving? ====&lt;br /&gt;
:G community members are often frustrated when looking for tools and code others have posted on the web. There are too many places to look, and most aren’t easy to find:&lt;br /&gt;
:*ni.com&lt;br /&gt;
:*lavag.org &lt;br /&gt;
:*LabVIEW Tools Network&lt;br /&gt;
:*NI package manager&lt;br /&gt;
:*VI Package Manager&lt;br /&gt;
:*G package manager&lt;br /&gt;
:*Git repos&lt;br /&gt;
:*Others&lt;br /&gt;
:These locations often don’t reference each other. Therefore, a new or even experienced G community member can easily miss code ALREADY WRITTEN that solves their problem, resulting in wasted time duplicating code.&lt;br /&gt;
&lt;br /&gt;
:Furthermore, should someone want to generously contribute their code, there are significant barriers to build and distribution.&lt;br /&gt;
&lt;br /&gt;
==== How does GCentral solve these problems? ==== &lt;br /&gt;
:GCentral exposes packages of all types (NIPkgs, VIPkgs, GPkgs) through a single web interface. The web interface indexes the main locations of packages.&lt;br /&gt;
&lt;br /&gt;
:GCentral provides software tools to build and move packages to the common locations making it easy to contribute code, and find and use each other&#039;s code.&lt;br /&gt;
&lt;br /&gt;
:Ultimately code that&#039;s easy to find reduces/eliminates wasted time in re-solving problems, and redirects the community&#039;s effort towards new and meaningful innovations.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
*GCentral was first envisioned by [[Chris_Cilino_(LabVIEW_Champion)]] in early 2019.&lt;br /&gt;
*Officially incorporated as a Non-Profit, September 18, 2019.&lt;br /&gt;
&lt;br /&gt;
== Organization ==&lt;br /&gt;
GCentral is organized as a non-profit with a Board of Directors, Executive Staff, and a Steering Committee.  These positions are currently held as follows:&lt;br /&gt;
&lt;br /&gt;
=== Board of Directors ===&lt;br /&gt;
&lt;br /&gt;
*[[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin Alldredge]]&lt;br /&gt;
*[[Chris Cilino (LabVIEW Champion)|Chris Cilino]]&lt;br /&gt;
*[[Francois Normandin (LabVIEW Champion)]]&lt;br /&gt;
*[[Elijah Kerry]]&lt;br /&gt;
*[[Danielle Jobe]]&lt;br /&gt;
&lt;br /&gt;
=== Executive Staff ===&lt;br /&gt;
&lt;br /&gt;
*Quentin Alldredge, Secretary&lt;br /&gt;
*Chris Cilino, Treasurer&lt;br /&gt;
*Open Position, Bookkeeper&lt;br /&gt;
*Open Position, Public Relations&lt;br /&gt;
&lt;br /&gt;
=== Steering Committee ===&lt;br /&gt;
&lt;br /&gt;
*Michael Aivaliotis&lt;br /&gt;
*Brian Hoover&lt;br /&gt;
*Jeff Kodosky&lt;br /&gt;
*Jon McBee&lt;br /&gt;
*Brian Powell&lt;br /&gt;
*Michal Radziwon&lt;br /&gt;
*Derek Trepanier&lt;br /&gt;
&lt;br /&gt;
== Volunteers ==&lt;br /&gt;
Volunteers have been essential in getting GCentral&#039;s mission going.  This is above the volunteered time of our Board, Staff, and Committee. A few others have volunteered time and effort and have helped in getting a prototype website together.  They include:&lt;br /&gt;
&lt;br /&gt;
*Matthias Baudot, Studio Bods&lt;br /&gt;
*Siva Shankar, Soliton&lt;br /&gt;
&lt;br /&gt;
[[Category:Open Source Code]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=17290</id>
		<title>GCentral</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=17290"/>
		<updated>2020-04-23T20:45:46Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:GCentralLogo_black.png|800px|frameless|center|link=http://www.gcentral.org]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== GCentral.org ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
==== How Do I Get To GCentral? ====&lt;br /&gt;
:Go to [https://www.gcentral.org/ GCentral.org]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== GCentral ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
==== What Is GCentral? ====&lt;br /&gt;
:GCentral is for programmers who need to find, share or collaborate on G reusable code or software engineering tools. GCentral is a non profit organization that provides a platform for G code packages and collaboration resources. &lt;br /&gt;
&lt;br /&gt;
==== What problems is GCentral solving? ====&lt;br /&gt;
:G community members are often frustrated when looking for tools and code others have posted on the web. There are too many places to look, and most aren’t easy to find:&lt;br /&gt;
:*ni.com&lt;br /&gt;
:*lavag.org &lt;br /&gt;
:*LabVIEW Tools Network&lt;br /&gt;
:*NI package manager&lt;br /&gt;
:*VI Package Manager&lt;br /&gt;
:*G package manager&lt;br /&gt;
:*Git repos&lt;br /&gt;
:*Others&lt;br /&gt;
:These locations often don’t reference each other. Therefore, a new or even experienced G community member can easily miss code ALREADY WRITTEN that solves their problem, resulting in wasted time duplicating code.&lt;br /&gt;
&lt;br /&gt;
:Furthermore, should someone want to generously contribute their code, there are significant barriers to build and distribution.&lt;br /&gt;
&lt;br /&gt;
==== How does GCentral solve these problems? ==== &lt;br /&gt;
:GCentral exposes packages of all types (NIPkgs, VIPkgs, GPkgs) through a single web interface. The web interface indexes the main locations of packages.&lt;br /&gt;
&lt;br /&gt;
:GCentral provides software tools to build and move packages to the common locations making it easy to contribute code, and find and use each other&#039;s code.&lt;br /&gt;
&lt;br /&gt;
:Ultimately code that&#039;s easy to find reduces/eliminates wasted time in re-solving problems, and redirects the community&#039;s effort towards new and meaningful innovations.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
*GCentral was first envisioned by [[Chris_Cilino_(LabVIEW_Champion)]] in early 2019.&lt;br /&gt;
*Officially incorporated as a Non-Profit, September 18, 2019.&lt;br /&gt;
&lt;br /&gt;
== Organization ==&lt;br /&gt;
GCentral is organized as a non-profit with a Board of Directors, Executive Staff, and a Steering Committee.  These positions are currently held as follows:&lt;br /&gt;
&lt;br /&gt;
=== Board of Directors ===&lt;br /&gt;
&lt;br /&gt;
*[[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin Alldredge]]&lt;br /&gt;
*[[Chris Cilino (LabVIEW Champion)|Chris Cilino]]&lt;br /&gt;
*[[Francois Normandin (LabVIEW Champion)]]&lt;br /&gt;
*[[Elijah Kerry]]&lt;br /&gt;
*[[Danielle Jobe]]&lt;br /&gt;
&lt;br /&gt;
=== Executive Staff ===&lt;br /&gt;
&lt;br /&gt;
*[[Chris Cilino (LabVIEW Champion)|Chris Cilino]], Founder and President&lt;br /&gt;
*Open Position, Secretary&lt;br /&gt;
*Open Position, Accountant&lt;br /&gt;
*Open Position, Bookkeeper&lt;br /&gt;
*Open Position, Public Relations&lt;br /&gt;
&lt;br /&gt;
=== Steering Committee ===&lt;br /&gt;
&lt;br /&gt;
*Michael Aivaliotis&lt;br /&gt;
*Brian Hoover&lt;br /&gt;
*Jeff Kodosky&lt;br /&gt;
*Jon McBee&lt;br /&gt;
*Brian Powell&lt;br /&gt;
*Michal Radziwon&lt;br /&gt;
*Derek Trepanier&lt;br /&gt;
&lt;br /&gt;
== Volunteers ==&lt;br /&gt;
Volunteers have been essential in getting GCentral&#039;s mission going.  This is above the volunteered time of our Board, Staff, and Committee. A few others have volunteered time and effort and have helped in getting a prototype website together.  They include:&lt;br /&gt;
&lt;br /&gt;
*Matthias Baudot, Studio Bods&lt;br /&gt;
*Siva Shankar, Soliton&lt;br /&gt;
&lt;br /&gt;
[[Category:Open Source Code]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=14921</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=14921"/>
		<updated>2020-04-11T19:03:40Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Community Non-Commercial, Free Commercial, Pro $599) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || 2006 || 2017 || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes (Community &amp;amp; Free) || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || Yes (Community &amp;amp; Pro) || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || Yes (Pro) || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE or OS File System || OS File System || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ Free &amp;amp; Community] or Paid Direct || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || [https://gitlab.com/mgi/gpm/gpm/wikis/home GitLab Issue Tracking and Wiki]&amp;lt;sup&amp;gt;10&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || Yes (Community &amp;amp; Pro) || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt; || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports offline\copies of repositories&amp;lt;sup&amp;gt;11&amp;lt;/sup&amp;gt; || Yes (Pro) ||  || Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 10 || GPM is open source.  The community can contribute to fix issues, add features and make support better.&lt;br /&gt;
|-&lt;br /&gt;
| 11 || For some organizations, a connection to the internet is not allowed. This feature allows you to internet-based repositories and host them locally for your organization.&lt;br /&gt;
|-&lt;br /&gt;
| 12 || A community package repository is not governed or gated by any organization. Community members are free to upload/download packages without oversight. &lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10633</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10633"/>
		<updated>2020-03-23T22:34:48Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Community Non-Commercial, Free Commercial, Pro $599) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || 2006 || 2017 || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes (Community &amp;amp; Free) || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || Yes (Community &amp;amp; Pro) || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || Yes (Pro) || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE or OS File System || OS File System || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ Free &amp;amp; Community] or Paid Direct || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || [https://gitlab.com/mgi/gpm/gpm/wikis/home GitLab Issue Tracking and Wiki]&amp;lt;sup&amp;gt;10&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code (Community &amp;amp; Pro) || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || Yes (Community &amp;amp; Pro) || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports offline\copies of repositories&amp;lt;sup&amp;gt;11&amp;lt;/sup&amp;gt; || Yes (Pro) ||  || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 10 || GPM is open source.  The community can contribute to fix issues, add features and make support better.&lt;br /&gt;
|-&lt;br /&gt;
| 11 || For some organizations, a connection to the internet is not allowed. This feature allows you to internet-based repositories and host them locally for your organization.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10622</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10622"/>
		<updated>2020-03-05T02:01:03Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Free) !! [[VI Package Manager Community Edition]] (Free For Non Comerical Use)!! [[VI Package Manager]] (Pro $599/user/year) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || JKI || JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || ? || 2020 || ? || 2017 || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G  || G || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes || Yes || Yes Trial || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || No || No ||Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || No || No || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || Yes || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || Yes || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] ||  || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || [https://gitlab.com/mgi/gpm/gpm/wikis/home GitLab Issue Tracking and Wiki]&amp;lt;sup&amp;gt;10&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || No || || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || No || || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || No || || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || No || || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || || Yes|| Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports offline\copies of repsoitories&amp;lt;sup&amp;gt;11&amp;lt;/sup&amp;gt; ||  || || ||  || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 10 || GPM is open source.  The community can contribute to fix issues, add features and make support better.&lt;br /&gt;
|-&lt;br /&gt;
| 11 || For some organizations, a connection to the internet is not allowed. This feature allows you to internet-based repositories and host them locally for your organization.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10621</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10621"/>
		<updated>2020-03-05T02:00:49Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Free) !! [[VI Package Manager Community Edition]] (Free For Non Comerical Use)!! [[VI Package Manager]] (Pro $599/user/year) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || JKI || JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || ? || 2020 || ? || 2017 || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G  || G || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes || Yes || Yes Trial || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || No || No ||Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || No || No || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || Yes || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || Yes || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] ||  || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || [https://gitlab.com/mgi/gpm/gpm/wikis/home GitLab Issue Tracking and Wiki]&amp;lt;sup&amp;gt;10&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || No || || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || No || || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || No || || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || No || || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || || Yes|| Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports offline\copies of repsoitories&amp;lt;sup&amp;gt;31&amp;lt;/sup&amp;gt; ||  || || ||  || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 10 || GPM is open source.  The community can contribute to fix issues, add features and make support better.&lt;br /&gt;
|-&lt;br /&gt;
| 11 || For some organizations, a connection to the internet is not allowed. This feature allows you to internet-based repositories and host them locally for your organization.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10619</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10619"/>
		<updated>2020-02-26T01:32:09Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: Adding VIPM Community edition&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Free) !! [[VI Package Manager Community Edition]] (Free For Non Comerical Use)!! [[VI Package Manager]] (Pro $599/user/year) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || JKI || JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || ? || 2020 || ? || 2017 || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G  || G || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes || Yes || Yes Trial || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || No || No ||Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || No || No || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || Yes || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || Yes || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] ||  || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || [https://gitlab.com/mgi/gpm/gpm/wikis/home GitLab Issue Tracking and Wiki]&amp;lt;sup&amp;gt;10&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || No || || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || No || || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code || || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || No || || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || No || || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || || Yes|| Yes || No&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 10 || GPM is open source.  The community can contribute to fix issues, add features and make support better.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10453</id>
		<title>LabVIEW Community Edition</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10453"/>
		<updated>2019-11-26T17:02:10Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
LabVIEW 2020 Community Edition beta is available for download. First, create an NI.com account and then enroll in the beta program. You can enroll in the beta program and download LabVIEW 2020 Community Edition by going to the &lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/support/beta-program/ Download]&#039;&#039;&#039; page.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/support/beta-program/ Download]&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Learn== &lt;br /&gt;
Visit Joerg Hampel&#039;s &#039;&#039;&#039;[https://forums.ni.com/t5/NI-Blog/LabVIEW-Community-Edition/ba-p/3970512?profile.language=en blog post]&#039;&#039;&#039; to learn about LabVIEW Community edition. Joerg answers questions like:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What exactly is this new edition?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Is it free?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Who is it for?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What about hobbyist hardware?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Getting Started==&lt;br /&gt;
Check out Eli Kerry&#039;s blog post on&lt;br /&gt;
&#039;&#039;&#039;[https://ekerry.wordpress.com/2019/11/26/getting-started-with-labview-community-edition-and-beaglebone-or-raspberry-pi/ Getting Started with LabVIEW Community Edition And Beaglebone Or Raspberry Pi]&#039;&#039;&#039; to get started with LabVIEW Community Edition.&lt;br /&gt;
&lt;br /&gt;
==Find Code==&lt;br /&gt;
Use &#039;&#039;&#039;[https://www.GCentral.org GCentral.org]&#039;&#039;&#039; to find LabVIEW packages.&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Community Edition]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10452</id>
		<title>LabVIEW Community Edition</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10452"/>
		<updated>2019-11-26T17:00:57Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
LabVIEW 2020 Community Edition beta is available for download. First, create an NI.com account and then enroll in the beta program. You can enroll in the beta program and download LabVIEW 2020 Community Edition by going to the &lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/support/beta-program/ Download]&#039;&#039;&#039; page.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/support/beta-program/ Download]&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Learn== &lt;br /&gt;
Visit Joerg Hampel&#039;s &#039;&#039;&#039;[https://forums.ni.com/t5/NI-Blog/LabVIEW-Community-Edition/ba-p/3970512?profile.language=en blog post]&#039;&#039;&#039; to learn about LabVIEW Community edition. Joerg answers questions like:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What exactly is this new edition?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Is it free?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Who is it for?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What about hobbyist hardware?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Getting Started==&lt;br /&gt;
Check out Eli Kerry&#039;s blog post on&lt;br /&gt;
&#039;&#039;&#039;[https://ekerry.wordpress.com/2019/11/26/getting-started-with-labview-community-edition-and-beaglebone-or-raspberry-pi/ Getting Started with LabVIEW Community Edition And Beaglebone Or Raspberry Pi]&#039;&#039;&#039; to get started with LabVIEW Community Edition.&lt;br /&gt;
&lt;br /&gt;
==Find Code==&lt;br /&gt;
Use &#039;&#039;&#039;[https://www.GCentral.org GCentral.org]&#039;&#039;&#039; to find LabVIEW packages.&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Community Edition]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10451</id>
		<title>LabVIEW Community Edition</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10451"/>
		<updated>2019-11-26T17:00:37Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
LabVIEW 2020 Community Edition beta is available for download. First, create an NI.com account and then enroll in the beta program. You can enroll in the beta program and download LabVIEW 2020 Community Edition by going to the &lt;br /&gt;
[https://www.ni.com/support/beta-program/ Download] page.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/support/beta-program/ Download]&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Learn== &lt;br /&gt;
Visit Joerg Hampel&#039;s &#039;&#039;&#039;[https://forums.ni.com/t5/NI-Blog/LabVIEW-Community-Edition/ba-p/3970512?profile.language=en blog post]&#039;&#039;&#039; to learn about LabVIEW Community edition. Joerg answers questions like:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What exactly is this new edition?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Is it free?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Who is it for?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What about hobbyist hardware?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Getting Started==&lt;br /&gt;
Check out Eli Kerry&#039;s blog post on&lt;br /&gt;
&#039;&#039;&#039;[https://ekerry.wordpress.com/2019/11/26/getting-started-with-labview-community-edition-and-beaglebone-or-raspberry-pi/ Getting Started with LabVIEW Community Edition And Beaglebone Or Raspberry Pi]&#039;&#039;&#039; to get started with LabVIEW Community Edition.&lt;br /&gt;
&lt;br /&gt;
==Find Code==&lt;br /&gt;
Use &#039;&#039;&#039;[https://www.GCentral.org GCentral.org]&#039;&#039;&#039; to find LabVIEW packages.&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Community Edition]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10450</id>
		<title>LabVIEW Community Edition</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10450"/>
		<updated>2019-11-26T17:00:13Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
==Download==&lt;br /&gt;
LabVIEW 2020 Community Edition beta is available for download. First, create an NI.com account and then enroll in the beta program. You can enroll in the beta program and download LabVIEW 2020 Community Edition by going to the &lt;br /&gt;
[https://www.ni.com/support/beta-program/ Download] page.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/support/beta-program/ Download]&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Learn== &lt;br /&gt;
Visit Joerg Hampel&#039;s &#039;&#039;&#039;[https://forums.ni.com/t5/NI-Blog/LabVIEW-Community-Edition/ba-p/3970512?profile.language=en blog post]&#039;&#039;&#039; to learn about LabVIEW Community edition. Joerg answers questions like:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What exactly is this new edition?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Is it free?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Who is it for?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What about hobbyist hardware?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Getting Started==&lt;br /&gt;
Check out Eli Kerry&#039;s blog post on&lt;br /&gt;
[https://ekerry.wordpress.com/2019/11/26/getting-started-with-labview-community-edition-and-beaglebone-or-raspberry-pi/ Getting Started with LabVIEW Community Edition And Beaglebone Or Raspberry Pi] to get started with LabVIEW Community Edition.&lt;br /&gt;
&lt;br /&gt;
==Find Code==&lt;br /&gt;
Use [https://www.GCentral.org GCentral.org] to find LabVIEW packages.&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Community Edition]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10449</id>
		<title>LabVIEW Community Edition</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10449"/>
		<updated>2019-11-26T16:58:40Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
==Download Community Edition==&lt;br /&gt;
LabVIEW 2020 Community Edition beta is available for download. First, create an NI.com account and then enroll in the beta program. You can enroll in the beta program and download LabVIEW 2020 Community Edition by going to the &lt;br /&gt;
[https://www.ni.com/support/beta-program/ Download] page.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/support/beta-program/ Download]&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Learn About Community Edition== &lt;br /&gt;
Visit Joerg Hampel&#039;s &#039;&#039;&#039;[https://forums.ni.com/t5/NI-Blog/LabVIEW-Community-Edition/ba-p/3970512?profile.language=en blog post]&#039;&#039;&#039; to learn about LabVIEW Community edition. Joerg answers questions like:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What exactly is this new edition?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Is it free?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Who is it for?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What about hobbyist hardware?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Get Started With Community Edition==&lt;br /&gt;
Check out Eli Kerry&#039;s blog post on&lt;br /&gt;
[https://ekerry.wordpress.com/2019/11/26/getting-started-with-labview-community-edition-and-beaglebone-or-raspberry-pi/ Getting Started with LabVIEW Community Edition And Beaglebone Or Raspberry Pi] to get started with LabVIEW Community Edition.&lt;br /&gt;
&lt;br /&gt;
==Find Code To Use In Community Edition==&lt;br /&gt;
Use [https://www.GCentral.org GCentral.org] to find LabVIEW packages.&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Community Edition]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10448</id>
		<title>LabVIEW Community Edition</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10448"/>
		<updated>2019-11-26T16:56:03Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
==Download Community Edition==&lt;br /&gt;
LabVIEW 2020 Community Edition beta is available for download. First, create an NI.com account and then enroll in the beta program. You can enroll in the beta program and download LabVIEW 20202 Community edition by going to the &lt;br /&gt;
[https://www.ni.com/support/beta-program/ Download] page.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[https://www.ni.com/support/beta-program/ Download]&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Learn About Community Edition== &lt;br /&gt;
Visit Joerg Hampel&#039;s &#039;&#039;&#039;[https://forums.ni.com/t5/NI-Blog/LabVIEW-Community-Edition/ba-p/3970512?profile.language=en blog post]&#039;&#039;&#039; to learn about LabVIEW Community edition. Joerg answers questions like:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What exactly is this new edition?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Is it free?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Who is it for?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What about hobbyist hardware?&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Get Started With Community Edition==&lt;br /&gt;
Check out Eli Kerry&#039;s blog post on&lt;br /&gt;
[https://ekerry.wordpress.com/2019/11/26/getting-started-with-labview-community-edition-and-beaglebone-or-raspberry-pi/ Getting Started with LabVIEW Community Edition And Beaglebone Or Raspberry Pi] to get started with LabVIEW Community Edition.&lt;br /&gt;
&lt;br /&gt;
==Find Code To Use In Community Edition==&lt;br /&gt;
Use [https://www.GCentral.org GCentral.org] to find LabVIEW packages.&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Community Edition]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10447</id>
		<title>LabVIEW Community Edition</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Community_Edition&amp;diff=10447"/>
		<updated>2019-11-26T16:43:11Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: Created page with &amp;quot;__TOC__  ==Download Community Edition== LabVIEW 2020 Community Edition beta is available for use. You can join the beta program by creating an NI.com account and enrolling in...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
==Download Community Edition==&lt;br /&gt;
LabVIEW 2020 Community Edition beta is available for use. You can join the beta program by creating an NI.com account and enrolling in the beta program. Once enrolled download LabVIEW 20202 Community edition by going to the &lt;br /&gt;
[https://www.ni.com/support/beta-program/ Download] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Learn About Community Edition== &lt;br /&gt;
Visit Joerg Hampel&#039;s [https://forums.ni.com/t5/NI-Blog/LabVIEW-Community-Edition/ba-p/3970512?profile.language=en blog post] to learn about LabVIEW Community edition. Joerg answers questions like:&lt;br /&gt;
What exactly is this new edition?&lt;br /&gt;
Is it free?&lt;br /&gt;
Who is it for?&lt;br /&gt;
What about hobbyist hardware?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Get Started With Community Edition==&lt;br /&gt;
https://ekerry.wordpress.com/2019/11/26/getting-started-with-labview-community-edition-and-beaglebone-or-raspberry-pi/&lt;br /&gt;
&lt;br /&gt;
==Find Code To Use In Community Edition==&lt;br /&gt;
&lt;br /&gt;
==Feedback==&lt;br /&gt;
http://bit.ly/LabVIEWCommunityPoll&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW Community Edition]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Versions&amp;diff=10446</id>
		<title>LabVIEW Versions</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Versions&amp;diff=10446"/>
		<updated>2019-11-26T16:29:57Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
==LabVIEW Community Edition==&lt;br /&gt;
[[LabVIEW Community Edition Home Page]]&lt;br /&gt;
&lt;br /&gt;
==LabVIEW==&lt;br /&gt;
Click on a Logo or Picture to see more about that version of LabVIEW.&lt;br /&gt;
&amp;lt;gallery mode=nolines perrow=6&amp;gt;&lt;br /&gt;
File:LV2019.png|link=LabVIEW 2019|[[LabVIEW 2019]]&lt;br /&gt;
File:LV2018.png|link=LabVIEW 2018|[[LabVIEW 2018]]&lt;br /&gt;
File:LV2017.png|link=LabVIEW 2017|[[LabVIEW 2017]]&lt;br /&gt;
File:LV2016.png|link=LabVIEW 2016|[[LabVIEW 2016]]&lt;br /&gt;
File:LV2015.png|link=LabVIEW 2015|[[LabVIEW 2015]]&lt;br /&gt;
File:LV2014.png|link=LabVIEW 2014|[[LabVIEW 2014]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2013|[[LabVIEW 2013]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2012|[[LabVIEW 2012]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2011|[[LabVIEW 2011]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2010|[[LabVIEW 2010]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2009|[[LabVIEW 2009]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 8.6|[[LabVIEW 8.6|LabVIEW 8.6 (2008)]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 8.5|[[LabVIEW 8.5|LabVIEW 8.5 (2007)]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 8.20|[[LabVIEW 8.20|LabVIEW 8.20 (2006 - 20th Anniversary Edition)]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 8|[[LabVIEW 8|LabVIEW 8 (2005)]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 7 Express|[[LabVIEW 7 Express|LabVIEW 7 Express (2003)]]&lt;br /&gt;
File:LV5.png|link=LabVIEW 6i|[[LabVIEW 6i|LabVIEW 6i (2000)]]&lt;br /&gt;
File:LV5.png|link=LabVIEW Real-Time|[[LabVIEW Real-Time|LabVIEW Real-Time (1999)]]&lt;br /&gt;
File:LV5.png|link=LabVIEW 5.0|[[LabVIEW 5.0|LabVIEW 5.0 (1998)]]&lt;br /&gt;
File:NILogo.jpg|link=LabVIEW 4.0|[[LabVIEW 4.0|LabVIEW 4.0 (1996)]]&lt;br /&gt;
File:NILogo.jpg|link=LabVIEW 3.0|[[LabVIEW 3.0|LabVIEW 3.0 (1993 - Multi-platform)]]&lt;br /&gt;
File:NILogo.jpg|link=LabVIEW 2.0|[[LabVIEW 2.0|LabVIEW 2.0 (1990)]]&lt;br /&gt;
File:NILogo.jpg|link=LabVIEW 1.0|[[LabVIEW 1.0|LabVIEW 1.0 (1986 - for Macintosh)]]&lt;br /&gt;
File:LV1.png|link=LabVIEW Inception|[[LabVIEW Inception|LabVIEW Inception (1983 - LabVIEW Project Begins)]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==LabVIEW NXG==&lt;br /&gt;
Click on a Logo to see more about that version of LabVIEW.&lt;br /&gt;
&amp;lt;gallery mode=nolines perrow=6&amp;gt;&lt;br /&gt;
File:LVNXG.png|link=LabVIEW NXG 3.0|[[LabVIEW NXG 3.0|LabVIEW NXG 3.0 (2019)]]&lt;br /&gt;
File:LVNXG.png|link=LabVIEW NXG 2.0|[[LabVIEW NXG 2.0|LabVIEW NXG 2.0 (2018)]]&lt;br /&gt;
File:LVNXG.png|link=LabVIEW NXG 1.0|[[LabVIEW NXG 1.0|LabVIEW NXG 1.0 (2017)]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW]]&lt;br /&gt;
[[Category:LabVIEW Logo]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=LabVIEW_Versions&amp;diff=10445</id>
		<title>LabVIEW Versions</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=LabVIEW_Versions&amp;diff=10445"/>
		<updated>2019-11-26T16:29:24Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
==LabVIEW Community Edition==&lt;br /&gt;
LabVIEW Community Edition [[LabVIEW Community Edition Home Page]]&lt;br /&gt;
&lt;br /&gt;
==LabVIEW==&lt;br /&gt;
Click on a Logo or Picture to see more about that version of LabVIEW.&lt;br /&gt;
&amp;lt;gallery mode=nolines perrow=6&amp;gt;&lt;br /&gt;
File:LV2019.png|link=LabVIEW 2019|[[LabVIEW 2019]]&lt;br /&gt;
File:LV2018.png|link=LabVIEW 2018|[[LabVIEW 2018]]&lt;br /&gt;
File:LV2017.png|link=LabVIEW 2017|[[LabVIEW 2017]]&lt;br /&gt;
File:LV2016.png|link=LabVIEW 2016|[[LabVIEW 2016]]&lt;br /&gt;
File:LV2015.png|link=LabVIEW 2015|[[LabVIEW 2015]]&lt;br /&gt;
File:LV2014.png|link=LabVIEW 2014|[[LabVIEW 2014]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2013|[[LabVIEW 2013]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2012|[[LabVIEW 2012]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2011|[[LabVIEW 2011]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2010|[[LabVIEW 2010]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 2009|[[LabVIEW 2009]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 8.6|[[LabVIEW 8.6|LabVIEW 8.6 (2008)]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 8.5|[[LabVIEW 8.5|LabVIEW 8.5 (2007)]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 8.20|[[LabVIEW 8.20|LabVIEW 8.20 (2006 - 20th Anniversary Edition)]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 8|[[LabVIEW 8|LabVIEW 8 (2005)]]&lt;br /&gt;
File:LV8-2013.png|link=LabVIEW 7 Express|[[LabVIEW 7 Express|LabVIEW 7 Express (2003)]]&lt;br /&gt;
File:LV5.png|link=LabVIEW 6i|[[LabVIEW 6i|LabVIEW 6i (2000)]]&lt;br /&gt;
File:LV5.png|link=LabVIEW Real-Time|[[LabVIEW Real-Time|LabVIEW Real-Time (1999)]]&lt;br /&gt;
File:LV5.png|link=LabVIEW 5.0|[[LabVIEW 5.0|LabVIEW 5.0 (1998)]]&lt;br /&gt;
File:NILogo.jpg|link=LabVIEW 4.0|[[LabVIEW 4.0|LabVIEW 4.0 (1996)]]&lt;br /&gt;
File:NILogo.jpg|link=LabVIEW 3.0|[[LabVIEW 3.0|LabVIEW 3.0 (1993 - Multi-platform)]]&lt;br /&gt;
File:NILogo.jpg|link=LabVIEW 2.0|[[LabVIEW 2.0|LabVIEW 2.0 (1990)]]&lt;br /&gt;
File:NILogo.jpg|link=LabVIEW 1.0|[[LabVIEW 1.0|LabVIEW 1.0 (1986 - for Macintosh)]]&lt;br /&gt;
File:LV1.png|link=LabVIEW Inception|[[LabVIEW Inception|LabVIEW Inception (1983 - LabVIEW Project Begins)]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==LabVIEW NXG==&lt;br /&gt;
Click on a Logo to see more about that version of LabVIEW.&lt;br /&gt;
&amp;lt;gallery mode=nolines perrow=6&amp;gt;&lt;br /&gt;
File:LVNXG.png|link=LabVIEW NXG 3.0|[[LabVIEW NXG 3.0|LabVIEW NXG 3.0 (2019)]]&lt;br /&gt;
File:LVNXG.png|link=LabVIEW NXG 2.0|[[LabVIEW NXG 2.0|LabVIEW NXG 2.0 (2018)]]&lt;br /&gt;
File:LVNXG.png|link=LabVIEW NXG 1.0|[[LabVIEW NXG 1.0|LabVIEW NXG 1.0 (2017)]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW]]&lt;br /&gt;
[[Category:LabVIEW Logo]]&lt;br /&gt;
&lt;br /&gt;
[[Category:LabVIEW]]&lt;br /&gt;
[[Category:LabVIEW Logo]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=NIWeek_2020&amp;diff=10443</id>
		<title>NIWeek 2020</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=NIWeek_2020&amp;diff=10443"/>
		<updated>2019-11-22T02:11:34Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[NIWeek 2019|&amp;lt; NIWeek 2019]] | [[NIWeek|NIWeek Home]] | [[NIWeek 2021|NIWeek 2021 &amp;gt;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:NIWeek 2020.png|800px|frameless|center|link=http://niweek.ni.com]]&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://www.ni.com/en-us/events/niweek.html NIWeek Main Page]&lt;br /&gt;
* [http://www.ni.com/en-us/events/niweek/speakers.html Call for Speakers]&lt;br /&gt;
* [http://www.ni.com/en-us/events/niweek/agenda.html Agenda]&lt;br /&gt;
* [http://www.ni.com/en-us/events/niweek/registration.html Register for NIWeek 2020]&lt;br /&gt;
&lt;br /&gt;
== Keynote Sessions ==&lt;br /&gt;
===Monday, May 18&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;, 2020===&lt;br /&gt;
*&#039;&#039;&#039;NI Partner Keynote&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Kickoff Keynote&#039;&#039;&#039;&lt;br /&gt;
===Tuesday, May 19&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;, 2020===&lt;br /&gt;
*&#039;&#039;&#039;Morning Keynote&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Afternoon Keynote&#039;&#039;&#039;&lt;br /&gt;
===Wednesday, May 20&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;, 2020===&lt;br /&gt;
*&#039;&#039;&#039;Closing Keynote&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Technical Sessions ==&lt;br /&gt;
=== Engineering Culture Track ===&lt;br /&gt;
New to NIWeek, this track explores topics that influence and impact the work culture of different industries in engineering. Sessions in this track must broaden views on issues, ranging from managing high-performing teams to developing soft skills emphasizing the importance of diversity in the workplace. Participation in this track provides an opportunity for speakers to encourage and help attendees to develop the skills they need to become better teammates and leaders.&lt;br /&gt;
&lt;br /&gt;
=== Engineering Skills Track ===&lt;br /&gt;
Technical advice on the tangible engineering skills and cost-effective practices necessary to design high-quality solutions quickly and efficiently. Sessions in this track must provide a deeper understanding of how hardware, software and systems work and include content that covers beginner, intermediate and advanced levels.&lt;br /&gt;
&lt;br /&gt;
=== Industry Trends Track ===&lt;br /&gt;
Sessions in this track must help participants understand the latest advances in engineering for their specific industry/business by sharing insights and strategies reinvent processes, accelerate innovation, and serve as a catalyst for their specific industry/business and the world.  &lt;br /&gt;
&lt;br /&gt;
=== Solutions Discovery Track ===&lt;br /&gt;
Sessions in this track must show case studies on how speakers use the NI platform to create solutions. Participation in this track provides an opportunity for speakers to inspire others through personal experiences.&lt;br /&gt;
&lt;br /&gt;
== Presenting at NIWeek ==&lt;br /&gt;
NIWeek 2015 introduced a whole track of sessions led by the LabVIEW community. This content, created by industry experts and LabVIEW community leaders, is designed to present highly relevant material for day-to-day execution as well as long term stability in our application development. You can [https://events.ni.com/ev/17956#/login submit you presentation] until December 31, 2019.&lt;br /&gt;
&lt;br /&gt;
[[Category:Events]]&lt;br /&gt;
[[Category:NIWeek]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Americas_CLA_Summit_2019&amp;diff=10251</id>
		<title>Americas CLA Summit 2019</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Americas_CLA_Summit_2019&amp;diff=10251"/>
		<updated>2019-10-16T16:16:46Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[European CLA Summit 2019|&amp;lt; European CLA Summit 2019]] | [[CLA Summit]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:CLASummit2019.jpg|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== Recordings/Production Courtesy Of ==&lt;br /&gt;
*Mark Balla&lt;br /&gt;
*Kevin Shirey&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[https://events.ni.com/profile/web/index.cfm?PKwebID=0x755267dca&amp;amp;varPage=home&amp;amp;&amp;amp;varPage=location Overview]&lt;br /&gt;
*[http://download.ni.com/pub/events/cla_summit/2019/cla-summit-agenda.pdf?&amp;amp;varPage=agenda Link to Agenda PDF]&lt;br /&gt;
&lt;br /&gt;
== Day 1 - Wednesday, September 25&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;, 2019==&lt;br /&gt;
&#039;&#039;&#039;Future Proofing Your Software and Your Business&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Keynote:  How to Leave a Legacy Without Leaving Legacy Software&#039;&#039;&#039; by Sarah Zalusky ([[media:How to Leave a Legacy Without Leaving Legacy Software-- CLA Summit 2019-- Zalusky.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Future Proofing Begins With Your People - Lessons Learned from My Life on the Outside&#039;&#039;&#039; by Brian Powell ([[media:Future Proofing CLA Summit 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;G Interfaces&#039;&#039;&#039; by Stephen Loftus-Mercer ([https://forums.ni.com/t5/Certified-LabVIEW-Architects/CLA-A-2019-Interfaces-in-G/ta-p/3973633 NI forum]|[https://forums.ni.com/ni/attachments/ni/7302/944/1/2019_CLA%20Summit_Interfaces.pptx slides (NI forum)]|[[media:2019 CLA Summit Interfaces.pdf|slides (wiki)]]|[https://forums.ni.com/ni/attachments/ni/7302/944/2/2019_CLASummit_Demos.zip demo code (NI forum)])&lt;br /&gt;
*&#039;&#039;&#039;Item Manager Wizard and Dependency Injection&#039;&#039;&#039; by Michael Klessens ([[media:ItemManagerFramework CLA2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Unit Testing at Mock Speed&#039;&#039;&#039; by Samuel Taggart ([[media:Taggart Mocks.pdf|slides (wiki)]]|[[media:Taggart CLA 2019.zip|demo code (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Building Distributed Systems with LabVIEW and ZeroMQ&#039;&#039;&#039; by Maciej Kolosko ([[media:Developing Distibuted Systems with LabVIEW and ZMQ.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;You&#039;re Doing It Wrong: Avoidable Asynchronous Headaches&#039;&#039;&#039; by Ethan Stern&lt;br /&gt;
*&#039;&#039;&#039;Why you should (not?) write your own framework&#039;&#039;&#039; by Christopher Stryker ([[media:Frameworks temp.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Test Driven Development in Actor-Oriented Systems&#039;&#039;&#039; by Allen C Smith ([[media:Unit Testing in AF.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Design for Research (A Case Study of Building a Research Metal 3D Printer)&#039;&#039;&#039; by Damien Gray ([[media:DesignForResearch-2019-09.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;7x7 Presentations&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Help! I&#039;m out of letters in Quick Drop!&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Help! I&#039;m out of letters in Quick Drop!.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;Introduction to the LabVIEW Wiki&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Introduction to the LabVIEW Wiki.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;Decoupling LabVIEW and Continuous Integration&#039;&#039;&#039; by Steve Ball ([[media:Decoupling LabVIEW and Continuous Integration 7x7.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;The Natt Sequence&#039;&#039;&#039; by  by Darren Nattinger ([http://bit.ly/nattsequence NI Forum])&lt;br /&gt;
&lt;br /&gt;
== Day 2 - Thursday, September 26&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;==&lt;br /&gt;
&#039;&#039;&#039;Facing Forward: UI and UX in LabVIEW&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Separation Anxiety: Designing for Change&#039;&#039;&#039; by Jon McBee ([[media:Design for Change.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Futureproofing Software with Clean Architecture&#039;&#039;&#039; by Dmitry Sagatelyan ([https://forums.ni.com/t5/Bay-Area-LabVIEW-User-Group/CLA-A-2019-Summit-Presentation-Futureproofing-Software-with/gpm-p/3973757?profile.language=en NI Forum]|[https://forums.ni.com/ni/attachments/ni/5018/410/1/Clean_Architecture_Ver_1.4_Final_Published.pptx slides (NI forum)]|[[media:Clean Architecture Ver 1.4 Final Published.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: LabVIEW Roadmap&#039;&#039;&#039; by Deb Burke&lt;br /&gt;
*&#039;&#039;&#039;How YOU can design amazing looking UIs&#039;&#039;&#039; by Jim Kring ([[media:Jim Kring - Professional UI Design - CLA Summit - Sep 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Making Modern UIs with LabVIEW&#039;&#039;&#039; by Steve Ball ([[media:Making Modern UIs with LabVIEW.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: UI closed door&#039;&#039;&#039; by Rita Prather&lt;br /&gt;
*&#039;&#039;&#039;Encapsulating and Reusing your UI Code&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Encapsulating and Reusing UI Code.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Composition Up Front: A Good UI is an Abstracted UI&#039;&#039;&#039; by Ethan Stern&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: WebVIs&#039;&#039;&#039; by Rita Prather and Darin Gillis&lt;br /&gt;
*&#039;&#039;&#039;UI/UX Considerations when there is No Keyboard or Mouse&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:UI-UX Considerations When There is No Keyboard or Mouse.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;7x7 Presentations&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Automating IDE Setup&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Automating IDE Setup.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Poster Sessions&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Day 3 - Friday, September 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;==&lt;br /&gt;
&#039;&#039;&#039;Saving Time: Optimization and Performance&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Keynote: TBD&#039;&#039;&#039; by Jeremy Marquis&lt;br /&gt;
*&#039;&#039;&#039;[https://www.youtube.com/watch?v=H4nFQeP3AYU GCentral: Removing Barriers to a Collaborative Community]&#039;&#039;&#039; by [[Chris Cilino (LabVIEW Champion)|Chris Cilino]] and [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([https://www.gcentral.org/ GCentral website]) ([[media:GCentral_-_CLA_2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Quick! Drop Your VI Execution Time!&#039;&#039;&#039; by Darren Nattinger ([http://bit.ly/slowvis NI Forum]|[https://forums.ni.com/ni/attachments/ni/3044/3863/4/Quick%20Drop%20Your%20VI%20Execution%20Time.pptx slides (NI forum)]|[[media:Quick Drop Your VI Execution Time.pdf|slides (wiki)]]|[https://forums.ni.com/ni/attachments/ni/3044/3863/2/Slow%20VI%20Demos.zip demos (NI forum)])&lt;br /&gt;
*&#039;&#039;&#039;Sharing LabVIEW Code: What tools are good for what?&#039;&#039;&#039; by Andrew Heim and Tanner Blair ([https://youtu.be/rfMGDe8Uy6g NIWeek video])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: Reusable Add-on Libraries&#039;&#039;&#039; by Sumedha Ganjoo&lt;br /&gt;
*&#039;&#039;&#039;What&#039;s new in GPM&#039;&#039;&#039; by Derek Trepanier ([[media:GPM CLA 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Composed Event Logger - How integrating a SOLID Event Logger into your Applications Reduces Time Spent Debugging Problems&#039;&#039;&#039; by Paul Ross&lt;br /&gt;
*&#039;&#039;&#039;Scripting to Save Time&#039;&#039;&#039; by Daniel Coons ([[media:Scripting to Save Time.pdf|slides (wiki)]]|[[media:Scripting to Save Time - with notes.pdf|slides with notes (wiki)]]|[[media:Scripting to Save Time (Coons - CLA Summit 2019).zip|demo code (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Software Test Lab&#039;&#039;&#039; &lt;br /&gt;
**&#039;&#039;&#039;Software Test Lab Exercises and Scripts&#039;&#039;&#039; ([https://forums.ni.com/t5/Certified-LabVIEW-Architects/CLA-A-2019-Summit-Software-Test-Lab-Exercises-and-Scripts/ta-p/3975034 NI forum])&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* &#039;&#039;&#039;[http://stry.kr/2019/10/05/2019-cla-summit-top-5-takeaways/ 2019 CLA Summit: Top 5 Takeaways]&#039;&#039;&#039; by Chris Stryker&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Americas_CLA_Summit_2019&amp;diff=10250</id>
		<title>Americas CLA Summit 2019</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Americas_CLA_Summit_2019&amp;diff=10250"/>
		<updated>2019-10-16T16:12:04Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[European CLA Summit 2019|&amp;lt; European CLA Summit 2019]] | [[CLA Summit]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:CLASummit2019.jpg|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== Links ==&lt;br /&gt;
*[https://events.ni.com/profile/web/index.cfm?PKwebID=0x755267dca&amp;amp;varPage=home&amp;amp;&amp;amp;varPage=location Overview]&lt;br /&gt;
*[http://download.ni.com/pub/events/cla_summit/2019/cla-summit-agenda.pdf?&amp;amp;varPage=agenda Link to Agenda PDF]&lt;br /&gt;
&lt;br /&gt;
== Day 1 - Wednesday, September 25&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;, 2019==&lt;br /&gt;
&#039;&#039;&#039;Future Proofing Your Software and Your Business&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Keynote:  How to Leave a Legacy Without Leaving Legacy Software&#039;&#039;&#039; by Sarah Zalusky ([[media:How to Leave a Legacy Without Leaving Legacy Software-- CLA Summit 2019-- Zalusky.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Future Proofing Begins With Your People - Lessons Learned from My Life on the Outside&#039;&#039;&#039; by Brian Powell ([[media:Future Proofing CLA Summit 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;G Interfaces&#039;&#039;&#039; by Stephen Loftus-Mercer ([https://forums.ni.com/t5/Certified-LabVIEW-Architects/CLA-A-2019-Interfaces-in-G/ta-p/3973633 NI forum]|[https://forums.ni.com/ni/attachments/ni/7302/944/1/2019_CLA%20Summit_Interfaces.pptx slides (NI forum)]|[[media:2019 CLA Summit Interfaces.pdf|slides (wiki)]]|[https://forums.ni.com/ni/attachments/ni/7302/944/2/2019_CLASummit_Demos.zip demo code (NI forum)])&lt;br /&gt;
*&#039;&#039;&#039;Item Manager Wizard and Dependency Injection&#039;&#039;&#039; by Michael Klessens ([[media:ItemManagerFramework CLA2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Unit Testing at Mock Speed&#039;&#039;&#039; by Samuel Taggart ([[media:Taggart Mocks.pdf|slides (wiki)]]|[[media:Taggart CLA 2019.zip|demo code (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Building Distributed Systems with LabVIEW and ZeroMQ&#039;&#039;&#039; by Maciej Kolosko ([[media:Developing Distibuted Systems with LabVIEW and ZMQ.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;You&#039;re Doing It Wrong: Avoidable Asynchronous Headaches&#039;&#039;&#039; by Ethan Stern&lt;br /&gt;
*&#039;&#039;&#039;Why you should (not?) write your own framework&#039;&#039;&#039; by Christopher Stryker ([[media:Frameworks temp.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Test Driven Development in Actor-Oriented Systems&#039;&#039;&#039; by Allen C Smith ([[media:Unit Testing in AF.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Design for Research (A Case Study of Building a Research Metal 3D Printer)&#039;&#039;&#039; by Damien Gray ([[media:DesignForResearch-2019-09.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;7x7 Presentations&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Help! I&#039;m out of letters in Quick Drop!&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Help! I&#039;m out of letters in Quick Drop!.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;Introduction to the LabVIEW Wiki&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Introduction to the LabVIEW Wiki.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;Decoupling LabVIEW and Continuous Integration&#039;&#039;&#039; by Steve Ball ([[media:Decoupling LabVIEW and Continuous Integration 7x7.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;The Natt Sequence&#039;&#039;&#039; by  by Darren Nattinger ([http://bit.ly/nattsequence NI Forum])&lt;br /&gt;
&lt;br /&gt;
== Day 2 - Thursday, September 26&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;==&lt;br /&gt;
&#039;&#039;&#039;Facing Forward: UI and UX in LabVIEW&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Separation Anxiety: Designing for Change&#039;&#039;&#039; by Jon McBee ([[media:Design for Change.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Futureproofing Software with Clean Architecture&#039;&#039;&#039; by Dmitry Sagatelyan ([https://forums.ni.com/t5/Bay-Area-LabVIEW-User-Group/CLA-A-2019-Summit-Presentation-Futureproofing-Software-with/gpm-p/3973757?profile.language=en NI Forum]|[https://forums.ni.com/ni/attachments/ni/5018/410/1/Clean_Architecture_Ver_1.4_Final_Published.pptx slides (NI forum)]|[[media:Clean Architecture Ver 1.4 Final Published.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: LabVIEW Roadmap&#039;&#039;&#039; by Deb Burke&lt;br /&gt;
*&#039;&#039;&#039;How YOU can design amazing looking UIs&#039;&#039;&#039; by Jim Kring ([[media:Jim Kring - Professional UI Design - CLA Summit - Sep 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Making Modern UIs with LabVIEW&#039;&#039;&#039; by Steve Ball ([[media:Making Modern UIs with LabVIEW.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: UI closed door&#039;&#039;&#039; by Rita Prather&lt;br /&gt;
*&#039;&#039;&#039;Encapsulating and Reusing your UI Code&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Encapsulating and Reusing UI Code.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Composition Up Front: A Good UI is an Abstracted UI&#039;&#039;&#039; by Ethan Stern&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: WebVIs&#039;&#039;&#039; by Rita Prather and Darin Gillis&lt;br /&gt;
*&#039;&#039;&#039;UI/UX Considerations when there is No Keyboard or Mouse&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:UI-UX Considerations When There is No Keyboard or Mouse.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;7x7 Presentations&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Automating IDE Setup&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Automating IDE Setup.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Poster Sessions&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Day 3 - Friday, September 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;==&lt;br /&gt;
&#039;&#039;&#039;Saving Time: Optimization and Performance&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Keynote: TBD&#039;&#039;&#039; by Jeremy Marquis&lt;br /&gt;
*&#039;&#039;&#039;[https://www.youtube.com/watch?v=H4nFQeP3AYU GCentral: Removing Barriers to a Collaborative Community]&#039;&#039;&#039; by [[Chris Cilino (LabVIEW Champion)|Chris Cilino]] and [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([https://www.gcentral.org/ GCentral website]) ([[media:GCentral_-_CLA_2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Quick! Drop Your VI Execution Time!&#039;&#039;&#039; by Darren Nattinger ([http://bit.ly/slowvis NI Forum]|[https://forums.ni.com/ni/attachments/ni/3044/3863/4/Quick%20Drop%20Your%20VI%20Execution%20Time.pptx slides (NI forum)]|[[media:Quick Drop Your VI Execution Time.pdf|slides (wiki)]]|[https://forums.ni.com/ni/attachments/ni/3044/3863/2/Slow%20VI%20Demos.zip demos (NI forum)])&lt;br /&gt;
*&#039;&#039;&#039;Sharing LabVIEW Code: What tools are good for what?&#039;&#039;&#039; by Andrew Heim and Tanner Blair ([https://youtu.be/rfMGDe8Uy6g NIWeek video])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: Reusable Add-on Libraries&#039;&#039;&#039; by Sumedha Ganjoo&lt;br /&gt;
*&#039;&#039;&#039;What&#039;s new in GPM&#039;&#039;&#039; by Derek Trepanier ([[media:GPM CLA 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Composed Event Logger - How integrating a SOLID Event Logger into your Applications Reduces Time Spent Debugging Problems&#039;&#039;&#039; by Paul Ross&lt;br /&gt;
*&#039;&#039;&#039;Scripting to Save Time&#039;&#039;&#039; by Daniel Coons ([[media:Scripting to Save Time.pdf|slides (wiki)]]|[[media:Scripting to Save Time - with notes.pdf|slides with notes (wiki)]]|[[media:Scripting to Save Time (Coons - CLA Summit 2019).zip|demo code (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Software Test Lab&#039;&#039;&#039; &lt;br /&gt;
**&#039;&#039;&#039;Software Test Lab Exercises and Scripts&#039;&#039;&#039; ([https://forums.ni.com/t5/Certified-LabVIEW-Architects/CLA-A-2019-Summit-Software-Test-Lab-Exercises-and-Scripts/ta-p/3975034 NI forum])&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* &#039;&#039;&#039;[http://stry.kr/2019/10/05/2019-cla-summit-top-5-takeaways/ 2019 CLA Summit: Top 5 Takeaways]&#039;&#039;&#039; by Chris Stryker&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Americas_CLA_Summit_2019&amp;diff=10249</id>
		<title>Americas CLA Summit 2019</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Americas_CLA_Summit_2019&amp;diff=10249"/>
		<updated>2019-10-16T15:50:33Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[European CLA Summit 2019|&amp;lt; European CLA Summit 2019]] | [[CLA Summit]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:CLASummit2019.jpg|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== Links ==&lt;br /&gt;
*[https://events.ni.com/profile/web/index.cfm?PKwebID=0x755267dca&amp;amp;varPage=home&amp;amp;&amp;amp;varPage=location Overview]&lt;br /&gt;
*[http://download.ni.com/pub/events/cla_summit/2019/cla-summit-agenda.pdf?&amp;amp;varPage=agenda Link to Agenda PDF]&lt;br /&gt;
&lt;br /&gt;
== Day 1 - Wednesday, September 25&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;, 2019==&lt;br /&gt;
&#039;&#039;&#039;Future Proofing Your Software and Your Business&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Keynote:  How to Leave a Legacy Without Leaving Legacy Software&#039;&#039;&#039; by Sarah Zalusky ([[media:How to Leave a Legacy Without Leaving Legacy Software-- CLA Summit 2019-- Zalusky.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Future Proofing Begins With Your People - Lessons Learned from My Life on the Outside&#039;&#039;&#039; by Brian Powell ([[media:Future Proofing CLA Summit 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;G Interfaces&#039;&#039;&#039; by Stephen Loftus-Mercer ([https://forums.ni.com/t5/Certified-LabVIEW-Architects/CLA-A-2019-Interfaces-in-G/ta-p/3973633 NI forum]|[https://forums.ni.com/ni/attachments/ni/7302/944/1/2019_CLA%20Summit_Interfaces.pptx slides (NI forum)]|[[media:2019 CLA Summit Interfaces.pdf|slides (wiki)]]|[https://forums.ni.com/ni/attachments/ni/7302/944/2/2019_CLASummit_Demos.zip demo code (NI forum)])&lt;br /&gt;
*&#039;&#039;&#039;Item Manager Wizard and Dependency Injection&#039;&#039;&#039; by Michael Klessens ([[media:ItemManagerFramework CLA2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Unit Testing at Mock Speed&#039;&#039;&#039; by Samuel Taggart ([[media:Taggart Mocks.pdf|slides (wiki)]]|[[media:Taggart CLA 2019.zip|demo code (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Building Distributed Systems with LabVIEW and ZeroMQ&#039;&#039;&#039; by Maciej Kolosko ([[media:Developing Distibuted Systems with LabVIEW and ZMQ.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;You&#039;re Doing It Wrong: Avoidable Asynchronous Headaches&#039;&#039;&#039; by Ethan Stern&lt;br /&gt;
*&#039;&#039;&#039;Why you should (not?) write your own framework&#039;&#039;&#039; by Christopher Stryker ([[media:Frameworks temp.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Test Driven Development in Actor-Oriented Systems&#039;&#039;&#039; by Allen C Smith ([[media:Unit Testing in AF.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Design for Research (A Case Study of Building a Research Metal 3D Printer)&#039;&#039;&#039; by Damien Gray ([[media:DesignForResearch-2019-09.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;7x7 Presentations&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Help! I&#039;m out of letters in Quick Drop!&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Help! I&#039;m out of letters in Quick Drop!.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;Introduction to the LabVIEW Wiki&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Introduction to the LabVIEW Wiki.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;Decoupling LabVIEW and Continuous Integration&#039;&#039;&#039; by Steve Ball ([[media:Decoupling LabVIEW and Continuous Integration 7x7.pdf|slides (wiki)]])&lt;br /&gt;
**&#039;&#039;&#039;The Natt Sequence&#039;&#039;&#039; by  by Darren Nattinger ([http://bit.ly/nattsequence NI Forum])&lt;br /&gt;
&lt;br /&gt;
== Day 2 - Thursday, September 26&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;==&lt;br /&gt;
&#039;&#039;&#039;Facing Forward: UI and UX in LabVIEW&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Separation Anxiety: Designing for Change&#039;&#039;&#039; by Jon McBee ([[media:Design for Change.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Futureproofing Software with Clean Architecture&#039;&#039;&#039; by Dmitry Sagatelyan ([https://forums.ni.com/t5/Bay-Area-LabVIEW-User-Group/CLA-A-2019-Summit-Presentation-Futureproofing-Software-with/gpm-p/3973757?profile.language=en NI Forum]|[https://forums.ni.com/ni/attachments/ni/5018/410/1/Clean_Architecture_Ver_1.4_Final_Published.pptx slides (NI forum)]|[[media:Clean Architecture Ver 1.4 Final Published.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: LabVIEW Roadmap&#039;&#039;&#039; by Deb Burke&lt;br /&gt;
*&#039;&#039;&#039;How YOU can design amazing looking UIs&#039;&#039;&#039; by Jim Kring ([[media:Jim Kring - Professional UI Design - CLA Summit - Sep 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Making Modern UIs with LabVIEW&#039;&#039;&#039; by Steve Ball ([[media:Making Modern UIs with LabVIEW.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: UI closed door&#039;&#039;&#039; by Rita Prather&lt;br /&gt;
*&#039;&#039;&#039;Encapsulating and Reusing your UI Code&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Encapsulating and Reusing UI Code.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Composition Up Front: A Good UI is an Abstracted UI&#039;&#039;&#039; by Ethan Stern&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: WebVIs&#039;&#039;&#039; by Rita Prather and Darin Gillis&lt;br /&gt;
*&#039;&#039;&#039;UI/UX Considerations when there is No Keyboard or Mouse&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:UI-UX Considerations When There is No Keyboard or Mouse.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;7x7 Presentations&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;Automating IDE Setup&#039;&#039;&#039; by [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([[media:Automating IDE Setup.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Poster Sessions&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Day 3 - Friday, September 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;==&lt;br /&gt;
&#039;&#039;&#039;Saving Time: Optimization and Performance&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Keynote: TBD&#039;&#039;&#039; by Jeremy Marquis&lt;br /&gt;
*&#039;&#039;&#039;GCentral: Removing Barriers to a Collaborative Community&#039;&#039;&#039; by [[Chris Cilino (LabVIEW Champion)|Chris Cilino]] and [[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin &amp;quot;Q&amp;quot; Alldredge]] ([https://www.gcentral.org/ GCentral website]) ([[media:GCentral_-_CLA_2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Quick! Drop Your VI Execution Time!&#039;&#039;&#039; by Darren Nattinger ([http://bit.ly/slowvis NI Forum]|[https://forums.ni.com/ni/attachments/ni/3044/3863/4/Quick%20Drop%20Your%20VI%20Execution%20Time.pptx slides (NI forum)]|[[media:Quick Drop Your VI Execution Time.pdf|slides (wiki)]]|[https://forums.ni.com/ni/attachments/ni/3044/3863/2/Slow%20VI%20Demos.zip demos (NI forum)])&lt;br /&gt;
*&#039;&#039;&#039;Sharing LabVIEW Code: What tools are good for what?&#039;&#039;&#039; by Andrew Heim and Tanner Blair ([https://youtu.be/rfMGDe8Uy6g NIWeek video])&lt;br /&gt;
*&#039;&#039;&#039;NI Presents: Reusable Add-on Libraries&#039;&#039;&#039; by Sumedha Ganjoo&lt;br /&gt;
*&#039;&#039;&#039;What&#039;s new in GPM&#039;&#039;&#039; by Derek Trepanier ([[media:GPM CLA 2019.pdf|slides (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Composed Event Logger - How integrating a SOLID Event Logger into your Applications Reduces Time Spent Debugging Problems&#039;&#039;&#039; by Paul Ross&lt;br /&gt;
*&#039;&#039;&#039;Scripting to Save Time&#039;&#039;&#039; by Daniel Coons ([[media:Scripting to Save Time.pdf|slides (wiki)]]|[[media:Scripting to Save Time - with notes.pdf|slides with notes (wiki)]]|[[media:Scripting to Save Time (Coons - CLA Summit 2019).zip|demo code (wiki)]])&lt;br /&gt;
*&#039;&#039;&#039;Software Test Lab&#039;&#039;&#039; &lt;br /&gt;
**&#039;&#039;&#039;Software Test Lab Exercises and Scripts&#039;&#039;&#039; ([https://forums.ni.com/t5/Certified-LabVIEW-Architects/CLA-A-2019-Summit-Software-Test-Lab-Exercises-and-Scripts/ta-p/3975034 NI forum])&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* &#039;&#039;&#039;[http://stry.kr/2019/10/05/2019-cla-summit-top-5-takeaways/ 2019 CLA Summit: Top 5 Takeaways]&#039;&#039;&#039; by Chris Stryker&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=File:GCentral_-_CLA_2019.pdf&amp;diff=10248</id>
		<title>File:GCentral - CLA 2019.pdf</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=File:GCentral_-_CLA_2019.pdf&amp;diff=10248"/>
		<updated>2019-10-16T15:45:23Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: GCentral presentation at the 2019 CLA summit in Austin.

Category:CLA Summit&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
GCentral presentation at the 2019 CLA summit in Austin.&lt;br /&gt;
&lt;br /&gt;
[[Category:CLA Summit]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=10208</id>
		<title>GCentral</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=10208"/>
		<updated>2019-10-03T03:17:31Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:GCentralLogo_black.png|800px|frameless|center|link=http://www.gcentral.org]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== GCentral.org ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
==== How Do I Get To GCentral? ====&lt;br /&gt;
:Go to [https://www.gcentral.org/ GCentral.org]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== GCentral ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
==== What Is GCentral? ====&lt;br /&gt;
:GCentral is for programmers who need to find, share or collaborate on G reusable code or software engineering tools. GCentral is a non profit organization that provides a platform for G code packages and collaboration resources. &lt;br /&gt;
&lt;br /&gt;
==== What problems is GCentral solving? ====&lt;br /&gt;
:G community members are often frustrated when looking for tools and code others have posted on the web. There are too many places to look, and most aren’t easy to find:&lt;br /&gt;
:*ni.com&lt;br /&gt;
:*lavag.org &lt;br /&gt;
:*LabVIEW Tools Network&lt;br /&gt;
:*NI package manager&lt;br /&gt;
:*VI Package Manager&lt;br /&gt;
:*G package manager&lt;br /&gt;
:*Git repos&lt;br /&gt;
:*Others&lt;br /&gt;
:These locations often don’t reference each other. Therefore, a new or even experienced G community member can easily miss code ALREADY WRITTEN that solves their problem, resulting in wasted time duplicating code.&lt;br /&gt;
&lt;br /&gt;
:Furthermore, should someone want to generously contribute their code, there are significant barriers to build and distribution.&lt;br /&gt;
&lt;br /&gt;
==== How does GCentral solve these problems? ==== &lt;br /&gt;
:GCentral exposes packages of all types (NIPkgs, VIPkgs, GPkgs) through a single web interface. The web interface indexes the main locations of packages.&lt;br /&gt;
&lt;br /&gt;
:GCentral provides software tools to build and move packages to the common locations making it easy to contribute code, and find and use each other&#039;s code.&lt;br /&gt;
&lt;br /&gt;
:Ultimately code that&#039;s easy to find reduces/eliminates wasted time in re-solving problems, and redirects the community&#039;s effort towards new and meaningful innovations.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
*GCentral was first envisioned by [[Chris_Cilino_(LabVIEW_Champion)]] in early 2019.&lt;br /&gt;
*Officially incorporated as a Non-Profit, September 18, 2019.&lt;br /&gt;
&lt;br /&gt;
== Organization ==&lt;br /&gt;
GCentral is organized as a non-profit with a Board of Directors, Executive Staff, and a Steering Committee.  These positions are currently held as follows:&lt;br /&gt;
&lt;br /&gt;
=== Board of Directors ===&lt;br /&gt;
&lt;br /&gt;
*[[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin Alldredge]]&lt;br /&gt;
*[[Fabiola De la Cueva (LabVIEW Champion)|Fabiola De la Cueva]]&lt;br /&gt;
*[[Danielle Jobe]]&lt;br /&gt;
&lt;br /&gt;
=== Executive Staff ===&lt;br /&gt;
&lt;br /&gt;
*[[Chris Cilino (LabVIEW Champion)|Chris Cilino]], Founder and President&lt;br /&gt;
*Open Position, Secretary&lt;br /&gt;
*Open Position, Accountant&lt;br /&gt;
*Open Position, Bookkeeper&lt;br /&gt;
*Open Position, Public Relations&lt;br /&gt;
&lt;br /&gt;
=== Steering Committee ===&lt;br /&gt;
&lt;br /&gt;
*Michael Aivaliotis&lt;br /&gt;
*Brian Hoover&lt;br /&gt;
*Jeff Kodosky&lt;br /&gt;
*Jon McBee&lt;br /&gt;
*Brian Powell&lt;br /&gt;
*Michal Radziwon&lt;br /&gt;
*Derek Trepanier&lt;br /&gt;
&lt;br /&gt;
== Volunteers ==&lt;br /&gt;
Volunteers have been essential in getting GCentral&#039;s mission going.  This is above the volunteered time of our Board, Staff, and Committee. A few others have volunteered time and effort and have helped in getting a prototype website together.  They include:&lt;br /&gt;
&lt;br /&gt;
*Matthias Baudot, Studio Bods&lt;br /&gt;
*Siva Shankar, Soliton&lt;br /&gt;
&lt;br /&gt;
[[Category:Open Source Code]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10168</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10168"/>
		<updated>2019-09-27T03:51:32Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Free)] !! [[VI Package Manager]] (Pro $599/user/year) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || ? || ? || 2017 || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G  || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes || Yes Trial || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || No || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || No || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || [https://gitlab.com/mgi/gpm/gpm/wikis/home GitLab Issue Tracking and Wiki]&amp;lt;sup&amp;gt;10&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || No || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes|| Yes || No&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 10 || GPM is open source.  The community can contribute to fix issues, add features and make support better.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10167</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10167"/>
		<updated>2019-09-27T03:42:40Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Free)] !! [[VI Package Manager]] (Pro $599/user/year) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || ? || ? || 2017 || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G  || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes || Yes Trial || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || No || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || No || Yes || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Local and Global repositories&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || [https://gitlab.com/mgi/gpm/gpm/wikis/home GitLab Issue Tracking and Wiki]&amp;lt;sup&amp;gt;10&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || No || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes|| Yes || No&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 10 || GPM is open source.  The community can contribute to fix issues, add features and make support better.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=10166</id>
		<title>GCentral</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=10166"/>
		<updated>2019-09-26T23:50:53Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:GCentralLogo_black.png|800px|frameless|center|link=http://www.gcentral.org]]&lt;br /&gt;
&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== GCentral.org ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
==== How Do I Get To GCentral? ====&lt;br /&gt;
:Go to [https://www.gcentral.org/ GCentral.org]&lt;br /&gt;
&lt;br /&gt;
==== What Is GCentral.org? ====&lt;br /&gt;
:GCentral.org is &lt;br /&gt;
&lt;br /&gt;
a non profit organization (incorporated September 2019)&lt;br /&gt;
composed of G community leaders&lt;br /&gt;
creating a platform for programmers to find/use, contribute, and co-develop G code packages and collaboration resources.&lt;br /&gt;
&lt;br /&gt;
GCentral is leading the charge to reduce the friction in collaboration felt by the G programmer community, and will align its efforts with the community&#039;s needs.&lt;br /&gt;
&lt;br /&gt;
=== Is GCentral just an aggregation of repos? ===&lt;br /&gt;
In addition to solving other problems, GCentral solves the problem of G programmers attempting to find an use each other&#039;s code. GCentral provides a single web interface that indexes the common repositories of all three package managers to present packages of all types through a single interface. &lt;br /&gt;
 &lt;br /&gt;
=== Why is the G programmer community not using a single repository? ===&lt;br /&gt;
Our community has a long history, members with different preferences/use cases, and members with varying awareness of community resource locations. This has led to different methods of package/code distribution as well as different package manager technologies.&lt;br /&gt;
&lt;br /&gt;
Here are the major locations of code today:&lt;br /&gt;
1. ni.com community forums as attachments&lt;br /&gt;
2. lavag.org as attachments&lt;br /&gt;
3. The NI Tools Network&lt;br /&gt;
4. JKI Package Network&lt;br /&gt;
5. NI Tools Network&lt;br /&gt;
6. GPackage.io&lt;br /&gt;
7. Git Repos&lt;br /&gt;
&lt;br /&gt;
Each of the above have various advantages, disadvantages, and capabilities.&lt;br /&gt;
NI.com&lt;br /&gt;
NI.com has been around the longest and has the infrastructure investment of National Instruments. The NI.com allows users to easily post files, code snippets, .llbs, .ppls, vips, nipkgs, etc. Many users are first acquainted with the NI community through ni.com&lt;br /&gt;
&lt;br /&gt;
ni.com allows you to attach files and is probably the most popular community site. So when the VI Package manager arrived, people who didn&#039;t want to go through the validation process of the LabVIEW Tools Network simply attached packages to ni.com forum posts. Oh yeah... there&#039;s the NI Tools network: a repository of code validated and certified by NI. The Tools Network is in the VI Package format. Then there is the JKI Tools Network (also VI Package format), which is publicly readable but not publicly writable. We also have lavag.org, which is another community forum that allows users to attach files suck as VI packages. The LabVIEW Tools Network &lt;br /&gt;
&lt;br /&gt;
in the early 2010&#039;s NI introduced a new package manager for a variety of reasons. There is no public repository of NI Packages, but NI Package Manager exposes the products and packages created by NI. NI Package manager also allows someone to create their own private repository &lt;br /&gt;
&lt;br /&gt;
There are different preferences and experience levels of our community. So some people aren&#039;t aware of lavag.org and have posted all of their code on &lt;br /&gt;
&lt;br /&gt;
== GCentral ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
==== What Is GCentral? ====&lt;br /&gt;
:GCentral is for programmers who need to find, share or collaborate on G reusable code or software engineering tools. GCentral is a non profit organization that provides a platform for G code packages and collaboration resources. &lt;br /&gt;
&lt;br /&gt;
==== What problems is GCentral solving? ====&lt;br /&gt;
:G community members are often frustrated when looking for tools and code others have posted on the web. There are too many places to look, and most aren’t easy to find:&lt;br /&gt;
:*ni.com&lt;br /&gt;
:*lavag.org &lt;br /&gt;
:*LabVIEW Tools Network&lt;br /&gt;
:*NI package manager&lt;br /&gt;
:*VI Package Manager&lt;br /&gt;
:*G package manager&lt;br /&gt;
:*Git repos&lt;br /&gt;
:*Others&lt;br /&gt;
:These locations often don’t reference each other. Therefore, a new or even experienced G community member can easily miss code ALREADY WRITTEN that solves their problem, resulting in wasted time duplicating code.&lt;br /&gt;
&lt;br /&gt;
:Furthermore, should someone want to generously contribute their code, there are significant barriers to build and distribution.&lt;br /&gt;
&lt;br /&gt;
==== How does GCentral solve these problems? ==== &lt;br /&gt;
:GCentral exposes packages of all types (NIPkgs, VIPkgs, GPkgs) through a single web interface. The web interface indexes the main locations of packages.&lt;br /&gt;
&lt;br /&gt;
:GCentral provides software tools to build and move packages to the common locations making it easy to contribute code, and find and use each other&#039;s code.&lt;br /&gt;
&lt;br /&gt;
:Ultimately code that&#039;s easy to find reduces/eliminates wasted time in re-solving problems, and redirects the community&#039;s effort towards new and meaningful innovations.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
*GCentral was first envisioned by [[Chris_Cilino_(LabVIEW_Champion)]] in early 2019.&lt;br /&gt;
*Officially incorporated as a Non-Profit, September 18, 2019.&lt;br /&gt;
&lt;br /&gt;
== Organization ==&lt;br /&gt;
GCentral is organized as a non-profit with a Board of Directors, Executive Staff, and a Steering Committee.  These positions are currently held as follows:&lt;br /&gt;
&lt;br /&gt;
=== Board of Directors ===&lt;br /&gt;
&lt;br /&gt;
*[[Quentin &amp;quot;Q&amp;quot; Alldredge (LabVIEW Champion)|Quentin Alldredge]]&lt;br /&gt;
*[[Fabiola De la Cueva (LabVIEW Champion)|Fabiola De la Cueva]]&lt;br /&gt;
*[[Danielle Jobe]]&lt;br /&gt;
&lt;br /&gt;
=== Executive Staff ===&lt;br /&gt;
&lt;br /&gt;
*[[Chris Cilino (LabVIEW Champion)|Chris Cilino]], Founder and President&lt;br /&gt;
*Open Position, Secretary&lt;br /&gt;
*Open Position, Accountant&lt;br /&gt;
*Open Position, Bookkeeper&lt;br /&gt;
*Open Position, Public Relations&lt;br /&gt;
&lt;br /&gt;
=== Steering Committee ===&lt;br /&gt;
&lt;br /&gt;
*Michael Aivaliotis&lt;br /&gt;
*Brian Hoover&lt;br /&gt;
*Jeff Kodosky&lt;br /&gt;
*Jon McBee&lt;br /&gt;
*Brian Powell&lt;br /&gt;
*Michal Radziwon&lt;br /&gt;
*Derek Trepanier&lt;br /&gt;
&lt;br /&gt;
== Volunteers ==&lt;br /&gt;
Volunteers have been essential in getting GCentral&#039;s mission going.  This is above the volunteered time of our Board, Staff, and Committee. A few others have volunteered time and effort and have helped in getting a prototype website together.  They include:&lt;br /&gt;
&lt;br /&gt;
*Matthias Baudot, Studio Bods&lt;br /&gt;
*Siva Shankar, Soliton&lt;br /&gt;
&lt;br /&gt;
[[Category:Open Source Code]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10028</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10028"/>
		<updated>2019-09-16T13:58:15Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Free)] !! [[VI Package Manager]] (Pro $599/user/year) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || ? || ? || ? || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G  || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes || Yes Trial || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || No || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || No || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Local and Global repositories&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || No || Yes || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || No || Yes || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || No || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit without manual intervention?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes|| Yes || No&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10027</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10027"/>
		<updated>2019-09-16T13:55:44Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Free)] !! [[VI Package Manager]] (Pro $599/user/year) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || ? || ? || ? || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G  || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes || Yes Trial || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || No || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || No || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Local and Global repositories&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || No || Yes || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || No || Yes || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || No || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes|| Yes || No&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10026</id>
		<title>Package Manager Comparison</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Package_Manager_Comparison&amp;diff=10026"/>
		<updated>2019-09-16T13:55:13Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the comparison of package management solutions in the LabVIEW community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Characteristic !! [[VI Package Manager]] (Free)] !! [[VI Package Manager]] (Pro $599/user/year) !! [[NI Package Manager]] !! [[G Package Manager]] ([[GPM]])&lt;br /&gt;
|-&lt;br /&gt;
| Installs With LabVIEW || Yes || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Created By|| JKI || JKI || National Instruments || MGI (Moore Good Ideas)&lt;br /&gt;
|-&lt;br /&gt;
| Year Released || ? || ? || ? || 2018&lt;br /&gt;
|-&lt;br /&gt;
| Open Source || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Language Written In || G  || G || C# || G&lt;br /&gt;
|-&lt;br /&gt;
| Free To Install || Yes || Yes Trial || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| API || No || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Local repository management&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || No || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Supports multiple LabVIEW versions from a single package || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Natively supports mass compile after install || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Scope of package installation&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || LabVIEW IDE || LabVIEW IDE || LabVIEW IDE || Per Project&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports LabVIEW NXG || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW IDE&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Integrates Into LabVIEW NXG IDE&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; || No || No || Yes || No&lt;br /&gt;
|-&lt;br /&gt;
| Create palettes as a part of the package creation || Yes || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports Installation to symbolic paths (user.lib) || Yes || Yes || No || N/A&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Supports Local and Global repositories&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Support Structure || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.jki.net/forum/5-vi-package-manager-vipm/ JKI online support] || [https://forums.ni.com/t5/NI-Package-Manager-NIPM/bd-p/1023 NI Forums] || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Build Step || No || Yes, G Code || Yes - via Source Distribution, G Code || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Install Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Pre Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Configurable from LabVIEW IDE)|| ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Post Uninstall Step || Yes, G Code || Yes, G Code || Yes - via exe/bat (Advanced: must [https://forums.ni.com/t5/NI-Package-Management/Manually-Pack-and-Unpack-Packages/ta-p/3956905 pack the package]) || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports N post install/pre uninstall steps || No || No || Yes || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports N Post Install All steps|| No || No || Yes || ?&lt;br /&gt;
|-&lt;br /&gt;
| Supports Automatic Dependency Scanning&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; || No || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a dedicated package manager application || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Packages Searchable via Web Page || Yes || Yes || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Has a community repository of packages || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Can list packages created by other package managers as dependencies&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Supports 64 bit?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || Yes || Yes|| Yes || No&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Detail Number !! Additional Information&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Repository types: A global repository is accessible to anyone. A local repository is created by an individual (company, etc.) and hosted on a local server.&lt;br /&gt;
|-&lt;br /&gt;
| 2 || Scope of Package Installation: determines if multiple versions of a package are allowed or if you may have only one version of a package. &lt;br /&gt;
|-&lt;br /&gt;
| 3 || GPM can place files anywhere. However, as of 0.2.0-35, GPackages installed for LabVIEW 64 bit will open, but cant find linked VIs. The GPackage(s) directories must be mass compiled to allow LabVIEW to relink the VIs to eachother.&lt;br /&gt;
|-&lt;br /&gt;
| 4 || Example&lt;br /&gt;
|-&lt;br /&gt;
| 5 || LabVIEW IDE Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Coming Soon&lt;br /&gt;
|-&lt;br /&gt;
| 7 || Only packages of the same type can be listed as dependencies. For example, a VI Package can only depend on other VI Packages. A VI Package cannot depend on a NI Package. &lt;br /&gt;
|-&lt;br /&gt;
| 8 || There is no user experience to find, install, upgrade, remove, or autodetect packages from within the LabVIEW IDE.&lt;br /&gt;
|-&lt;br /&gt;
| 9 || NI Package manager is integrated into the NXG IDE so that the user may find the package responsible for installing missing gvis without leaving the IDE.&lt;br /&gt;
|}&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://vipm.jki.net VI Package Manager]&lt;br /&gt;
* [https://www.ni.com/en-us/support/downloads/ni-package-manager.html NI Package Manager]&lt;br /&gt;
* [https://gpackage.io G Package Manager]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=8753</id>
		<title>GCentral</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=8753"/>
		<updated>2019-08-23T01:03:17Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: /* What problems is GCentral solving? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
== GCentral.org ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
==== How Do I Get To GCentral? ====&lt;br /&gt;
:Go to [https://www.gcentral.org/ GCentral.org]&lt;br /&gt;
&lt;br /&gt;
==== What Is GCentral.org? ====&lt;br /&gt;
:GCentral.org is the first global index  of packages in the LabVIEW Community. Think of GCentral.org being to LabVIEW what PyPi.org is to Python. GCentral.org is the only place you need to look to find all packages, regardless of type.&lt;br /&gt;
&lt;br /&gt;
== GCentral ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
==== What Is GCentral? ====&lt;br /&gt;
:GCentral is for programmers who need to find, share or collaborate on G reusable code or software engineering tools. GCentral is a non profit organization that provides a platform for G code packages and collaboration resources. &lt;br /&gt;
&lt;br /&gt;
==== What problems is GCentral solving? ====&lt;br /&gt;
:G community members are often frustrated when looking for tools and code others have posted on the web. There are too many places to look, and most aren’t easy to find:&lt;br /&gt;
:*ni.com&lt;br /&gt;
:*lavag.org &lt;br /&gt;
:*LabVIEW Tools Network&lt;br /&gt;
:*NI package manager&lt;br /&gt;
:*VI Package Manager&lt;br /&gt;
:*G package manager&lt;br /&gt;
:*Git repos&lt;br /&gt;
:*Others&lt;br /&gt;
:These locations often don’t reference each other. Therefore, a new or even experienced G community member can easily miss code ALREADY WRITTEN that solves their problem, resulting in wasted time duplicating code.&lt;br /&gt;
&lt;br /&gt;
:Furthermore, should someone want to generously contribute their code, there are significant barriers to build and distribution.&lt;br /&gt;
&lt;br /&gt;
==== How does GCentral solve these problems? ==== &lt;br /&gt;
:GCentral exposes packages of all types (NIPkgs, VIPkgs, GPkgs) through a single web interface. The web interface indexes the main locations of packages.&lt;br /&gt;
&lt;br /&gt;
:GCentral provides software tools to build and move packages to the common locations making it easy to contribute code, and find and use each other&#039;s code.&lt;br /&gt;
&lt;br /&gt;
:Ultimately code that&#039;s easy to find reduces/eliminates wasted time in re-solving problems, and redirects the community&#039;s effort towards new and meaningful innovations.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
*GCentral was first envisioned by [[Chris_Cilino_(LabVIEW_Champion)]] in early 2019.&lt;br /&gt;
&lt;br /&gt;
[[Category:Open Source Code]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=8752</id>
		<title>GCentral</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=GCentral&amp;diff=8752"/>
		<updated>2019-08-23T00:59:51Z</updated>

		<summary type="html">&lt;p&gt;ChrisCilino: /* How does GCentral solve these problems? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
== GCentral.org ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
==== How Do I Get To GCentral? ====&lt;br /&gt;
:Go to [https://www.gcentral.org/ GCentral.org]&lt;br /&gt;
&lt;br /&gt;
==== What Is GCentral.org? ====&lt;br /&gt;
:GCentral.org is the first global index  of packages in the LabVIEW Community. Think of GCentral.org being to LabVIEW what PyPi.org is to Python. GCentral.org is the only place you need to look to find all packages, regardless of type.&lt;br /&gt;
&lt;br /&gt;
== GCentral ==&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
==== What Is GCentral? ====&lt;br /&gt;
:GCentral is for programmers who need to find, share or collaborate on G reusable code or software engineering tools. GCentral is a non profit organization that provides a platform for G code packages and collaboration resources. &lt;br /&gt;
&lt;br /&gt;
==== What problems is GCentral solving? ====&lt;br /&gt;
:G community members are often frustrated when looking for tools and code others have posted on the web. There are too many places to look, and most aren’t easy to find:&lt;br /&gt;
:*ni.com&lt;br /&gt;
:*lavag.org &lt;br /&gt;
:*LabVIEW Tools Network&lt;br /&gt;
:*NI package manager&lt;br /&gt;
:*VI Package Manager&lt;br /&gt;
:*G package manager&lt;br /&gt;
:*Git repos&lt;br /&gt;
:*Others&lt;br /&gt;
:These locations often don’t reference each other. Therefore, a new or even experienced G community member can easily miss code ALREADY WRITTEN that solves their problem, resulting in wasted time duplicating code. &lt;br /&gt;
&lt;br /&gt;
==== How does GCentral solve these problems? ==== &lt;br /&gt;
:GCentral exposes packages of all types (NIPkgs, VIPkgs, GPkgs) through a single web interface. The web interface indexes the main locations of packages.&lt;br /&gt;
&lt;br /&gt;
:GCentral provides software tools to build and move packages to the common locations making it easy to contribute code, and find and use each other&#039;s code.&lt;br /&gt;
&lt;br /&gt;
:Ultimately code that&#039;s easy to find reduces/eliminates wasted time in re-solving problems, and redirects the community&#039;s effort towards new and meaningful innovations.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
*GCentral was first envisioned by [[Chris_Cilino_(LabVIEW_Champion)]] in early 2019.&lt;br /&gt;
&lt;br /&gt;
[[Category:Open Source Code]]&lt;/div&gt;</summary>
		<author><name>ChrisCilino</name></author>
	</entry>
</feed>