<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.freesideatlanta.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jake</id>
	<title>Freeside Atlanta - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.freesideatlanta.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jake"/>
	<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/fs/Special:Contributions/Jake"/>
	<updated>2026-05-23T02:05:15Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3274</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3274"/>
		<updated>2025-05-25T11:17:34Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barfs a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barfs a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - Complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - Search your history for previously-run commands&lt;br /&gt;
* ctrl+p, up arrow - Flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - Pauses a running command and returns to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quits a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to post here. If you're curious to see a list of commands you can currently execute, try running this:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but this output is nowhere close to everything you can run through a terminal, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3273</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3273"/>
		<updated>2025-05-25T11:16:56Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barfs a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barfs a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - Complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - Search your history for previously-run commands&lt;br /&gt;
* ctrl+p, up arrow - Flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - Pauses a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quits a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to post here. If you're curious to see a list of commands you can currently execute, try running this:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but this output is nowhere close to everything you can run through a terminal, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3272</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3272"/>
		<updated>2025-05-25T11:16:37Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barfs a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barfs a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - Complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - Search your history for previously-run commands&lt;br /&gt;
* ctrl+p, up arrow - Flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - Pauses a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quitss a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to post here. If you're curious to see a list of commands you can currently execute, try running this:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but this output is nowhere close to everything you can run through a terminal, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3271</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3271"/>
		<updated>2025-05-25T11:14:59Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barfs a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barfs a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* ctrl+p, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to post here. If you're curious to see a list of commands you can currently execute, try running this:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but this output is nowhere close to everything you can run through a terminal, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3270</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3270"/>
		<updated>2025-05-25T11:13:40Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barfs a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barfs a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* ctrl+p, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to post here. If you're curious to a see list of commands you can currently execute, try running this:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but this output is nowhere close to everything you can run through a terminal, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3269</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3269"/>
		<updated>2025-05-25T09:19:05Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barfs a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barfs a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to post here. If you're curious to a see list of commands you can currently execute, try running this:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but this output is nowhere close to everything you can run through a terminal, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3268</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3268"/>
		<updated>2025-05-25T09:15:16Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barfs a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barfs a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3267</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3267"/>
		<updated>2025-05-24T13:30:02Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barfs a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barfs a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3266</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3266"/>
		<updated>2025-05-24T13:04:21Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barf a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barf a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you like, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3265</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3265"/>
		<updated>2025-05-24T09:42:41Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include automation and electronics data and control servers, an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barf a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barf a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3264</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3264"/>
		<updated>2025-05-24T09:23:31Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Projects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for local Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barf a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barf a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3263</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3263"/>
		<updated>2025-05-24T09:18:27Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barf a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barf a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup, up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3262</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3262"/>
		<updated>2025-05-24T09:15:37Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Basic Navigation Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* cat &amp;lt;filename&amp;gt; - Barf a file's text into your shell&lt;br /&gt;
* less &amp;lt;filename&amp;gt; - Barf a file's text into your shell politely &lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup or up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3261</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3261"/>
		<updated>2025-05-24T09:14:13Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
* nano, vim, emacs - Edit text in a file (in order of complexity)&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
* tab - complete the name of a command or file in your directory (shell dependent)&lt;br /&gt;
* ctrl+r - search your history for previously-run commands&lt;br /&gt;
* pgup or up arrow - flip back through recent command history one-by-one&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3260</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3260"/>
		<updated>2025-05-24T09:10:00Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
* ctrl+z - pause a running command and return to the prompt (use fg to come back)&lt;br /&gt;
* ctrl+c, ctrl+d, esc, q - Quit a running command (program dependent, usually ctrl+c)&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3259</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3259"/>
		<updated>2025-05-24T08:31:36Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice: 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3258</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3258"/>
		<updated>2025-05-24T08:28:02Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under virtual lock and key. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice - 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3257</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3257"/>
		<updated>2025-05-24T08:26:45Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to log in with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under lock and key of restrictive file permissions, readable only by your user. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice - 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3256</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3256"/>
		<updated>2025-05-24T08:25:10Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittifying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to login with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under lock and key of restrictive file permissions, readable only by your user. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice - 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3255</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3255"/>
		<updated>2025-05-24T08:19:15Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittfying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to login with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under lock and key of restrictive file permissions, readable only by your user. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice - 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There are far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3254</id>
		<title>The Grid</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=The_Grid&amp;diff=3254"/>
		<updated>2025-05-24T08:14:19Z</updated>

		<summary type="html">&lt;p&gt;Jake: Created page with &amp;quot;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.  == Current System Specifications == Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some de...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The Grid''' is Freeside's local software development and hosting platform. Originally a storage closet, the server room is now home to a half-rack containing all of our computer systems infrastructure. The Grid came online on May 9th, 2025, and will, perhaps alarmingly, never, ever die.&lt;br /&gt;
&lt;br /&gt;
== Current System Specifications ==&lt;br /&gt;
Our main server is an [https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&amp;amp;docId=c00752093 HP ProLiant DL380 G5], vintage 2009. Some detailed specs:&lt;br /&gt;
&lt;br /&gt;
* 2x Intel Xeon E5440 (8 cores @ 2.83GHz, no Hyper-Threading)&lt;br /&gt;
* 16GB RAM (8x 2GB 667Mhz FB-DIMMs)&lt;br /&gt;
* 6x (mostly) 10kRPM 300GB 2.5&amp;quot; SAS HDDs in RAID5 (1.36TB available)&lt;br /&gt;
* Running Ubuntu 24.04.2 LTS&lt;br /&gt;
&lt;br /&gt;
Capable enough to start. Upgrades forthcoming.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
The original project idea was for this system to serve as a NAS, and it's currently doing so for Linux systems via nfs. Win10/11 machines are a little more finicky as they reject guest connections to remote systems in their group policy by default. We're in the process of configuring samba for these clients.&lt;br /&gt;
&lt;br /&gt;
Proposed future projects include an LLM-based bot to answer questions about the space such as tool locations and Freeside storytime, a Discourse server to potentially get us off of (a rapidly enshittfying) Discord, various tools to help the admin crew manage the space, personal member containers for their own development, a general learning environment for folks who are new to Linux-based systems, and plenty of other neat apps.&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a cool project that you'd like to host, let us know at #the-grid on Freeside's Discord server!&lt;br /&gt;
&lt;br /&gt;
== How-To The Grid ==&lt;br /&gt;
If this is your first time connecting to a Linux server, consider checking out the [[#Basic Navigation Syntax|Basic Navigation Syntax]] section below.&lt;br /&gt;
&lt;br /&gt;
To connect to The Grid, you'll need a sysadmin to configure your user. This process involves actually creating your user account on the system, creating your home directory, setting its permissons, and setting your default shell. Notably, this does not involve creating a password to login with as we are not currently allowing password-based login. Instead, you'll need to run 'ssh-keygen' on your own system, which should create an ed25519 keypair. Once you run this command, you should have two files available to you: id_ed25519, and id_ed25519.pub - these are your private and public keys, respectively.&lt;br /&gt;
&lt;br /&gt;
Your sysadmin will need to have a copy of either the id_ed25519.pub file or its contents (this is a plaintext file). Make absolutely certain that you are providing them with the id_ed25519.pub file and not the id_ed25519 file as the latter is your private key which should '''''absolutely never be shown''''' to anyone other than yourself, and should be kept under lock and key of restrictive file permissions, readable only by your user. The public key, however, can happily be shown to most anyone as it facilitates secure authentication such as in the case of this ssh connection.&lt;br /&gt;
&lt;br /&gt;
Once your user is configured with your id_ed25519.pub and permissions set appropriately on all files and directories, you should be able to connect to the server via ssh with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your local username differs from your user as configured on the server, you may need to run the command as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh &amp;lt;remote username&amp;gt;@thegrid.freesideatlanta.org -p 19820&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Congratulations, User! You are now on The Grid! ===&lt;br /&gt;
&lt;br /&gt;
[[File:WelcomeToTheGrid51p.png]]&lt;br /&gt;
&lt;br /&gt;
Unless something broke.&lt;br /&gt;
&lt;br /&gt;
In that case, contact your sysadmin.&lt;br /&gt;
&lt;br /&gt;
== Basic Navigation Syntax ==&lt;br /&gt;
&lt;br /&gt;
'''File Management'''&lt;br /&gt;
* ls - Lists files and directories&lt;br /&gt;
* touch &amp;lt;filename&amp;gt; - Creates an empty file or updates the last accessed date&lt;br /&gt;
* cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Copies files from source to destination&lt;br /&gt;
* mv &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt; - Moves files or renames them&lt;br /&gt;
* rm &amp;lt;filename&amp;gt; - Deletes a file&lt;br /&gt;
&lt;br /&gt;
'''Directory Navigation'''&lt;br /&gt;
* pwd - Displays the current directory path&lt;br /&gt;
* cd &amp;lt;directory&amp;gt; - Changes the current directory &lt;br /&gt;
* mkdir &amp;lt;dirname&amp;gt; - Creates a new directory&lt;br /&gt;
&lt;br /&gt;
'''Searching and Finding'''&lt;br /&gt;
* grep &amp;lt;search_pattern&amp;gt; &amp;lt;file&amp;gt; - Quick search for text in a given file&lt;br /&gt;
* find [directory] -name &amp;lt;search_pattern&amp;gt; - Search for files under a given path&lt;br /&gt;
&lt;br /&gt;
'''Running Commands'''&lt;br /&gt;
* [command] &amp;amp; - Runs command in the background &lt;br /&gt;
* jobs - Displays background commands&lt;br /&gt;
* fg &amp;lt;command number&amp;gt; - Brings command to the foreground&lt;br /&gt;
&lt;br /&gt;
'''Getting Help'''&lt;br /&gt;
* man &amp;lt;command&amp;gt; - Produces the manual for a given command, but not always available&lt;br /&gt;
* &amp;lt;command&amp;gt; --help - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -h - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; -? - Depending on the command, produces a short help text&lt;br /&gt;
* &amp;lt;command&amp;gt; &amp;lt;screwing it up&amp;gt; - Depending on the command, produces a short help text&lt;br /&gt;
* rtfm - Not usually a command, just classic advice - 'read the fucking manual'&lt;br /&gt;
&lt;br /&gt;
'''Much Cooler Things'''&lt;br /&gt;
&lt;br /&gt;
There a far too many commands to list here. If you're curious what that list actually looks like, try running this one:&lt;br /&gt;
&lt;br /&gt;
* compgen -c&lt;br /&gt;
&lt;br /&gt;
Feel free to peruse that, run 'man &amp;lt;command&amp;gt;' if you're curious, but it's not even close to all of them, so probably more comfortably, consider checking out some Ubuntu tutorials online and/or ask for help at #the-grid on Freeside's Discord server. If you hate the terminal, ask about graphical interfaces. Linux distributions have access to some really great ones of all sorts, and they're usually extremely customisable.&lt;br /&gt;
&lt;br /&gt;
There is so much depth here, and you can do some incredibly neat stuff given a little determination. Again, just ask a lot of questions, and have fun!&lt;br /&gt;
&lt;br /&gt;
== Dev Log ==&lt;br /&gt;
&lt;br /&gt;
We'll get to it, jeez.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=File:WelcomeToTheGrid51p.png&amp;diff=3253</id>
		<title>File:WelcomeToTheGrid51p.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=File:WelcomeToTheGrid51p.png&amp;diff=3253"/>
		<updated>2025-05-24T06:52:32Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Officers&amp;diff=3243</id>
		<title>Officers</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Officers&amp;diff=3243"/>
		<updated>2025-05-09T18:26:29Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== President ===&lt;br /&gt;
&lt;br /&gt;
Regina (Gigi) Mathias&lt;br /&gt;
&lt;br /&gt;
[mailto:president@freesideatlanta.org president@freesideatlanta.org]&lt;br /&gt;
&lt;br /&gt;
=== Secretary ===&lt;br /&gt;
&lt;br /&gt;
N/A&lt;br /&gt;
&lt;br /&gt;
[mailto:secretary@freesideatlanta.org secretary@freesideatlanta.org]&lt;br /&gt;
&lt;br /&gt;
=== Treasurer ===&lt;br /&gt;
&lt;br /&gt;
Kevin Fink&lt;br /&gt;
&lt;br /&gt;
[mailto:treasurer@freesideatlanta.org treasurer@freesideatlanta.org]&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Detailed_Directions&amp;diff=3241</id>
		<title>Detailed Directions</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Detailed_Directions&amp;diff=3241"/>
		<updated>2023-10-03T13:01:53Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Address =&lt;br /&gt;
&lt;br /&gt;
3043 Commerce Way&amp;lt;br&amp;gt;&lt;br /&gt;
Atlanta, Georgia 30354&lt;br /&gt;
&lt;br /&gt;
= Parking =&lt;br /&gt;
&lt;br /&gt;
Parking is free inside the complex, but if the spots near our front door are full, please try to avoid parking directly in front of our neighbours' doors during business hours.&lt;br /&gt;
&lt;br /&gt;
= Getting to Freeside =&lt;br /&gt;
&lt;br /&gt;
* Take I-75 exit 241 (south of of its split with I-85), Cleveland Avenue.&lt;br /&gt;
* Keep right and follow signs for Cleveland Avenue.&lt;br /&gt;
* Drive straight across Cleveland Avenue to continue on Forrest Hills Dr SW.&lt;br /&gt;
* Follow Forrest Hills which will become Commerce Way.&lt;br /&gt;
* You'll see Freeside's rear door and gates on the left near the end of the road.&lt;br /&gt;
* Turn in to the complex and follow the road between the two brick buildings.&lt;br /&gt;
* On reaching the end of the road, you should see our front door on the left.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=MediaWiki:Sidebar&amp;diff=3170</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=MediaWiki:Sidebar&amp;diff=3170"/>
		<updated>2023-01-15T22:57:49Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* About Us&lt;br /&gt;
** info|Info&lt;br /&gt;
** faq|FAQ&lt;br /&gt;
** Our_Space|Our Space&lt;br /&gt;
** Detailed_Directions|Directions&lt;br /&gt;
** equipment|Equipment&lt;br /&gt;
** press|Press&lt;br /&gt;
** Contact|Contact&lt;br /&gt;
&lt;br /&gt;
* Support Us&lt;br /&gt;
** donations|Donations!&lt;br /&gt;
** Wishlist|Wishlist&lt;br /&gt;
&lt;br /&gt;
* Activities and Culture&lt;br /&gt;
** Events|Events&lt;br /&gt;
** http://www.meetup.com/Freeside-Atlanta|Meetup&lt;br /&gt;
** https://www.meetup.com/Freeside-Atlanta/events/|Calendar&lt;br /&gt;
** Build_Out|Build Outs&lt;br /&gt;
** Artwork|Artwork&lt;br /&gt;
** http://blog.freesideatlanta.org|Blog&lt;br /&gt;
** https://groups.google.com/forum/?fromgroups#!forum/freesideatlanta|Public Mailing List&lt;br /&gt;
** projects|Projects&lt;br /&gt;
&lt;br /&gt;
* Membership&lt;br /&gt;
** joining|Join Us!&lt;br /&gt;
** benefits|Benefits&lt;br /&gt;
** Pay_Dues|Pay Dues&lt;br /&gt;
** members|Member Pages&lt;br /&gt;
** https://groups.google.com/forum/?fromgroups#!forum/freesideatlanta-members|Member Mailing List&lt;br /&gt;
** https://drive.google.com/drive/folders/1BmfFknsNKhXwMy7m4AniqqHAC__tLDrV?usp=sharing|Documentation&lt;br /&gt;
** https://trello.com/freesideatl|Trello&lt;br /&gt;
&lt;br /&gt;
* Outreach&lt;br /&gt;
** Atlanta_Makers|Atlanta Makers&lt;br /&gt;
&lt;br /&gt;
* Leadership&lt;br /&gt;
** Board_of_Directors|Board of Directors&lt;br /&gt;
** officers|Officers&lt;br /&gt;
&lt;br /&gt;
* Teams&lt;br /&gt;
** Activities_and_Culture|Activities and Culture&lt;br /&gt;
** Marketing_and_Outreach|Marketing and Outreach&lt;br /&gt;
** Safety_and_Risk|Safety and Risk&lt;br /&gt;
** IT|IT&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Corporate|Corporate Documents&lt;br /&gt;
** Financial_Reports|Financial Reports&lt;br /&gt;
** Operations|Operations&lt;br /&gt;
** Policies|Policies&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=MediaWiki:Sidebar&amp;diff=3169</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=MediaWiki:Sidebar&amp;diff=3169"/>
		<updated>2023-01-15T22:56:38Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* About Us&lt;br /&gt;
** info|Info&lt;br /&gt;
** faq|FAQ&lt;br /&gt;
** Our_Space|Our Space&lt;br /&gt;
** Detailed_Directions|Directions&lt;br /&gt;
** equipment|Equipment&lt;br /&gt;
** press|Press&lt;br /&gt;
** Contact|Contact&lt;br /&gt;
&lt;br /&gt;
* Support Us&lt;br /&gt;
** donations|Donations!&lt;br /&gt;
** Wishlist|Wishlist&lt;br /&gt;
&lt;br /&gt;
* Activities and Culture&lt;br /&gt;
** Events|Events&lt;br /&gt;
** http://www.meetup.com/Freeside-Atlanta|Meetup&lt;br /&gt;
** https://www.meetup.com/Freeside-Atlanta/events/|Calendar&lt;br /&gt;
** Build_Out|Build Outs&lt;br /&gt;
** Artwork|Artwork&lt;br /&gt;
** http://blog.freesideatlanta.org|Blog&lt;br /&gt;
** https://groups.google.com/forum/?fromgroups#!forum/freesideatlanta|Public Mailing List&lt;br /&gt;
** projects|Projects&lt;br /&gt;
&lt;br /&gt;
* Membership&lt;br /&gt;
** joining|Join Us!&lt;br /&gt;
** benefits|Benefits&lt;br /&gt;
** Pay_Dues|Pay Dues&lt;br /&gt;
** members|Member Pages&lt;br /&gt;
** https://groups.google.com/forum/?fromgroups#!forum/freesideatlanta-members|Member Mailing List&lt;br /&gt;
** https://drive.google.com/drive/folders/1BmfFknsNKhXwMy7m4AniqqHAC__tLDrV/edit|Documentation&lt;br /&gt;
** https://trello.com/freesideatl|Trello&lt;br /&gt;
&lt;br /&gt;
* Outreach&lt;br /&gt;
** Atlanta_Makers|Atlanta Makers&lt;br /&gt;
&lt;br /&gt;
* Leadership&lt;br /&gt;
** Board_of_Directors|Board of Directors&lt;br /&gt;
** officers|Officers&lt;br /&gt;
&lt;br /&gt;
* Teams&lt;br /&gt;
** Activities_and_Culture|Activities and Culture&lt;br /&gt;
** Marketing_and_Outreach|Marketing and Outreach&lt;br /&gt;
** Safety_and_Risk|Safety and Risk&lt;br /&gt;
** IT|IT&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Corporate|Corporate Documents&lt;br /&gt;
** Financial_Reports|Financial Reports&lt;br /&gt;
** Operations|Operations&lt;br /&gt;
** Policies|Policies&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Corporate&amp;diff=3109</id>
		<title>Corporate</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Corporate&amp;diff=3109"/>
		<updated>2022-05-31T05:30:19Z</updated>

		<summary type="html">&lt;p&gt;Jake: Updating to the 2020 bylaws.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Corporate Documents =&lt;br /&gt;
&lt;br /&gt;
* [[Media:2009.Georgia.Certificate-Incorporation.pdf |2009 Georgia Certificate of Incorporation]]&lt;br /&gt;
* [[Media:2010.Georgia.Registration.pdf |2010 Georgia Corporate Registration]]&lt;br /&gt;
* [[Media:2011.Georgia.Registration.pdf |2011 Georgia Corporate Registration]]&lt;br /&gt;
* [[Media:2012.Georgia.Registration.pdf |2012 Georgia Corporate Registration]]&lt;br /&gt;
* [[Media:2013.Georgia.Registration.pdf |2013 Georgia Corporate Registration]]&lt;br /&gt;
&lt;br /&gt;
= By-Laws =&lt;br /&gt;
&lt;br /&gt;
* [[Media:Freeside.Bylaws.2020.pdf|Freeside Bylaws 2020]]&lt;br /&gt;
&lt;br /&gt;
= Budgets =&lt;br /&gt;
&lt;br /&gt;
* [[FY2013-Budget |FY2013 Budget]]&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=File:Freeside.Bylaws.2020.pdf&amp;diff=3108</id>
		<title>File:Freeside.Bylaws.2020.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=File:Freeside.Bylaws.2020.pdf&amp;diff=3108"/>
		<updated>2022-05-31T05:22:44Z</updated>

		<summary type="html">&lt;p&gt;Jake: Bylaws document updated in 2020 to reflect new location address.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Bylaws document updated in 2020 to reflect new location address.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Board_of_Directors&amp;diff=3107</id>
		<title>Board of Directors</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Board_of_Directors&amp;diff=3107"/>
		<updated>2022-05-23T16:44:29Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Chairman of the Board ===&lt;br /&gt;
&lt;br /&gt;
* Jacob Rook&lt;br /&gt;
&lt;br /&gt;
=== Directors ===&lt;br /&gt;
&lt;br /&gt;
* Griffin Brown&lt;br /&gt;
* Seamus Clark&lt;br /&gt;
* Regina Mathias&lt;br /&gt;
* [[User:Mary| Mary Peabody]]&lt;br /&gt;
* [[User:Dominic| Dominic Ryder]]&lt;br /&gt;
* [[User:Miles| Miles Neretin]]&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Officers&amp;diff=3106</id>
		<title>Officers</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Officers&amp;diff=3106"/>
		<updated>2022-05-23T16:43:07Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== President ===&lt;br /&gt;
&lt;br /&gt;
[[User:Jake|Jacob Rook]]&lt;br /&gt;
&lt;br /&gt;
[mailto:president@freesideatlanta.org president@freesideatlanta.org]&lt;br /&gt;
&lt;br /&gt;
=== Secretary ===&lt;br /&gt;
&lt;br /&gt;
Dominic Ryder&lt;br /&gt;
&lt;br /&gt;
[mailto:secretary@freesideatlanta.org secretary@freesideatlanta.org]&lt;br /&gt;
&lt;br /&gt;
=== Treasurer ===&lt;br /&gt;
&lt;br /&gt;
Eli Kehler&lt;br /&gt;
&lt;br /&gt;
[mailto:treasurer@freesideatlanta.org treasurer@freesideatlanta.org]&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Pay_Dues&amp;diff=3104</id>
		<title>Pay Dues</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Pay_Dues&amp;diff=3104"/>
		<updated>2022-05-06T15:59:34Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Members can pay their dues for the month on any day of that month.&lt;br /&gt;
&lt;br /&gt;
== Membership Rates ==&lt;br /&gt;
&lt;br /&gt;
* '''Standard:''' $80/mo or $864/yr (10% discount applied for prepayment)&lt;br /&gt;
* '''Starving Hacker:''' $40/mo (must qualify for the [[Policy_StarvingHackerProgram| Starving Hacker Program]])&lt;br /&gt;
* '''Joint:''' $65/mo, rate offered with joint membership to select hackerspaces&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Materials&amp;diff=3103</id>
		<title>Materials</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Materials&amp;diff=3103"/>
		<updated>2022-05-05T22:28:09Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We get a lot of requests for materials shop recommendations, so here's a list of spots where you can buy stuff to make stuff.&lt;br /&gt;
&lt;br /&gt;
=== Wood ===&lt;br /&gt;
[https://www.peachstatelumber.com/ Peach State Lumber] Large sheet goods, often better than Home Depot prices.&lt;br /&gt;
&lt;br /&gt;
[https://www.rarewoodsandveneers.com/ Rare Woods &amp;amp; Veneers] AKA Carlton's, an Atlanta classic with a huge selection of fancy species.&lt;br /&gt;
&lt;br /&gt;
=== Metal ===&lt;br /&gt;
[http://www.imsornamental.com/ IMS Ornamental Steel] - Decorative metals, but also standard stock. The entire support structure for our auto bay ramp came from IMS.&lt;br /&gt;
&lt;br /&gt;
[https://www.metalsupermarkets.com/location/atlanta-south/ Metal Supermarket] - South Atlanta, fairly close to Freeside.&lt;br /&gt;
&lt;br /&gt;
[https://www.onlinemetals.com/en/location-and-hours/atlanta Online Metals] - NW Atlanta, fairly not close to Freeside.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Materials&amp;diff=3102</id>
		<title>Materials</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Materials&amp;diff=3102"/>
		<updated>2022-05-05T21:14:08Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We get a lot of requests for materials shop recommendations, so here's a list of spots where you can buy stuff to make stuff.&lt;br /&gt;
&lt;br /&gt;
=== Wood ===&lt;br /&gt;
[https://www.peachstatelumber.com/ Peach State Lumber] Large sheet goods, often better than Home Depot prices.&lt;br /&gt;
&lt;br /&gt;
[https://www.rarewoodsandveneers.com/ Rare Woods &amp;amp; Veneers] AKA Carlton's, an Atlanta classic with a huge selection of fancy species.&lt;br /&gt;
&lt;br /&gt;
=== Metal ===&lt;br /&gt;
[http://www.imsornamental.com/ IMS Ornamental Steel] - Decorative metals, but also standard stock. The entire support structure for our auto bay ramp came from IMS.&lt;br /&gt;
&lt;br /&gt;
[https://www.metalsupermarkets.com/location/atlanta-south/ Metal Supermarket] - South Atlanta, fairly close to Freeside.&lt;br /&gt;
&lt;br /&gt;
[https://www.onlinemetals.com/en/location-and-hours/atlanta Online Metals] - NW Atlanta, fairly not close to Freeside&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Materials&amp;diff=3101</id>
		<title>Materials</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Materials&amp;diff=3101"/>
		<updated>2022-05-05T20:29:53Z</updated>

		<summary type="html">&lt;p&gt;Jake: Created page with &amp;quot;We get a lot of requests for materials shop recommendations, so here's a list of spots where you can buy stuff to make stuff.  === Wood === [https://www.peachstatelumber.com/ Peach State Lumber] Large sheet goods, often better than Home Depot prices.  [https://www.rarewoodsandveneers.com/ Rare Woods &amp;amp; Veneers] AKA Carlton's, an Atlanta classic with a huge selection of fancy species.  === Metal === [http://www.imsornamental.com/ IMS Ornamental Steel] - decorative metals,...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We get a lot of requests for materials shop recommendations, so here's a list of spots where you can buy stuff to make stuff.&lt;br /&gt;
&lt;br /&gt;
=== Wood ===&lt;br /&gt;
[https://www.peachstatelumber.com/ Peach State Lumber] Large sheet goods, often better than Home Depot prices.&lt;br /&gt;
&lt;br /&gt;
[https://www.rarewoodsandveneers.com/ Rare Woods &amp;amp; Veneers] AKA Carlton's, an Atlanta classic with a huge selection of fancy species.&lt;br /&gt;
&lt;br /&gt;
=== Metal ===&lt;br /&gt;
[http://www.imsornamental.com/ IMS Ornamental Steel] - decorative metals, but also standard stock. The entire support structure for our auto bay ramp came from IMS.&lt;br /&gt;
&lt;br /&gt;
[https://www.metalsupermarkets.com/location/atlanta-south/ Metal Supermarket] - South Atlanta, fairly close to Freeside.&lt;br /&gt;
&lt;br /&gt;
[https://www.onlinemetals.com/en/location-and-hours/atlanta Online Metals] - NW Atlanta, fairly not close to Freeside&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Officers_and_Directors&amp;diff=3100</id>
		<title>Officers and Directors</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Officers_and_Directors&amp;diff=3100"/>
		<updated>2022-04-24T08:17:12Z</updated>

		<summary type="html">&lt;p&gt;Jake: Created page with &amp;quot;===Current Leadership=== Freeside Atlanta has six director seats on our board, and four officers, those being the president, vice president, secretary, and treasurer. The list of members in those roles is as follows -  *President - Jacob Rook *Vice President - TBD *Secretary - Dominic Ryder (Acting) *Treasurer - Ronnie Hinton  *Director - Mary Peabody *Director - Miles Neretin *Director - Dominic Ryder *Director - Jacob Rook *Director - Adam Greene *Director - Sean Kenne...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Current Leadership===&lt;br /&gt;
Freeside Atlanta has six director seats on our board, and four officers, those being the president, vice president, secretary, and treasurer. The list of members in those roles is as follows -&lt;br /&gt;
&lt;br /&gt;
*President - Jacob Rook&lt;br /&gt;
*Vice President - TBD&lt;br /&gt;
*Secretary - Dominic Ryder (Acting)&lt;br /&gt;
*Treasurer - Ronnie Hinton&lt;br /&gt;
&lt;br /&gt;
*Director - Mary Peabody&lt;br /&gt;
*Director - Miles Neretin&lt;br /&gt;
*Director - Dominic Ryder&lt;br /&gt;
*Director - Jacob Rook&lt;br /&gt;
*Director - Adam Greene&lt;br /&gt;
*Director - Sean Kennedy&lt;br /&gt;
&lt;br /&gt;
===Duties===&lt;br /&gt;
&lt;br /&gt;
From the bylaws, here are the duties for each of the officer and director positions -&lt;br /&gt;
&lt;br /&gt;
====President====&lt;br /&gt;
&lt;br /&gt;
The President shall be the chief executive officer of the Corporation and shall, subject to the control of the Board of Directors, supervise and control the affairs of the Corporation and the activities of the Officers. He or she shall perform all duties incident to his or her office and such other duties as may be required by law, by the articles of incorporation or by these bylaws, or which may be prescribed from time to time by the Board of Directors. Unless another person is specifically appointed as Chairperson of the Board of Directors, the President shall preside at all meetings of the Board of Directors and, if this Corporation has members, at all meetings of the members. Except as otherwise expressly provided by law, by&lt;br /&gt;
the articles of incorporation or by these bylaws, he or she shall, in the name of the Corporation, execute such deeds, mortgages, bonds, contracts, checks, or other instruments which may from time to time be authorized by the Board of Directors.&lt;br /&gt;
&lt;br /&gt;
====Secretary====&lt;br /&gt;
The Secretary shall: Certify and keep at the principal office of the corporation the original, or a copy, of these bylaws as amended or otherwise altered to date. Keep at the principal office of the corporation or at such other place as the Board may determine, a book of minutes of all meetings of the directors, and, if applicable, meetings of committees of Directors and of members, recording therein the time and place of holding, whether regular or special, how called, how notice thereof was given, the names of those present or represented at the meeting and the proceedings thereof. See that all notices are duly given in accordance with the provisions of these bylaws or as required by law. Be custodian of the records and of the seal of the corporation and affix the seal, as authorized by law or the provisions of these bylaws, to duly executed documents of the Corporation. Keep at the principal office of the Corporation a membership book containing the name and electronic mail address of each and any members, and, in the case where any membership has been terminated, he or she shall record such fact in the membership book together with the date on which such membership ceased. Exhibit at all reasonable times to any Director of the Corporation, or to his or her agent or attorney, on request therefore, the bylaws, the membership book, and the minutes of the proceedings of the Directors of the Corporation. In general, perform all duties incident to the office of Secretary and such other duties as may be required by law, by the articles of incorporation or by these bylaws, or which may be assigned to him or her from time to time by the Board of Directors.&lt;br /&gt;
&lt;br /&gt;
====Treasurer====&lt;br /&gt;
The Treasurer shall: Have charge and custody of, and be responsible for, all funds and securities of the Corporation, and deposit all such funds in the name of the corporation in such banks, trust companies, or other depositories as shall be selected by the Board of Directors. Receive, and give receipt for, monies due and payable to the corporation from any source whatsoever.Disburse, or cause to be disbursed, the funds of the corporation as may be directed by the Board of Directors, taking proper vouchers for such disbursements. Keep and maintain adequate and correct accounts of the Corporation's properties and business transactions, including accounts of its assets, liabilities, receipts, disbursements, gains, and losses. Exhibit at all reasonable times the books of account and financial records to any Director of the corporation, or to his or her agent or attorney, on request therefore. Render to the President and Directors, whenever requested, an account of any or all of his or her transactions as Treasurer and of the financial condition of the Corporation. Prepare, or cause to be prepared, and certify, or cause to be certified, the financial statements to be included in any required reports. In general, perform all duties incident to the office of Treasurer and such other duties as may be required by law, by the articles of incorporation of the Corporation or by these bylaws, or which may be assigned to him or her from time to time by the Board of Directors.&lt;br /&gt;
&lt;br /&gt;
====Directors====&lt;br /&gt;
It shall be the duty of the Directors to:&lt;br /&gt;
*Perform any and all duties imposed on them collectively or individually by law, by the articles of incorporation, or by these bylaws;&lt;br /&gt;
*Appoint and remove, employ and discharge, and, except as otherwise provided in these bylaws, prescribe the duties and fix the compensation, if any, of all agents, and employees of the Corporation;&lt;br /&gt;
*Supervise all officers, agents, and employees of the corporation to assure that their duties are performed properly;&lt;br /&gt;
*Meet at such times and places as required by these bylaws;&lt;br /&gt;
*Register their electronic mail addresses with the Secretary of the Corporation, and notices of meetings electronically mailed to them at such addresses shall be valid notices thereof.&lt;br /&gt;
*Remain loyal to the best interests of the Corporation.&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3093</id>
		<title>Wishlist</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3093"/>
		<updated>2022-03-17T19:28:13Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We're always looking for new opportunities to facilitate projects/education in the space. New equipment can help us do that, so we decided to make a wishlist of some of the things that we need for the space.&lt;br /&gt;
&lt;br /&gt;
If you have any items you would like to donate to our space, please contact [mailto:donations@freesideatlanta.org donations@freesideatlanta.org] with details to arrange the donation drop off.&lt;br /&gt;
&lt;br /&gt;
== Volunteer Opportunities ==&lt;br /&gt;
* [[Artwork|Mural Art]]: Artists, pick a spot on the wall and make it yours! For large pieces, please give the directors a heads-up.&lt;br /&gt;
* [[Classes]]: Teaching at Freeside raises money for the space, helps educate our community, and can put a little extra money in your pocket. You don't have to be a member or an expert to teach a class, you just have to have some basic skills and a plan to share them.&lt;br /&gt;
* [[Projects]]: Volunteering your skills on projects (and [[Build_Out|Build-Outs]]) is a great way to meet people and help out. Check out our [http://www.meetup.com/Freeside-Atlanta Meetup] account for upcoming opportunities to jump on in.&lt;br /&gt;
&lt;br /&gt;
== Consumables ==&lt;br /&gt;
* 105&amp;quot; bandsaw blades for the Delta&lt;br /&gt;
* Resin for the 3D printer (Elegoo grey is a decent choice)&lt;br /&gt;
* Paper towels and toilet paper&lt;br /&gt;
* Ten-gallon trash can liners&lt;br /&gt;
* White stoneware clay (cone six)&lt;br /&gt;
* Various pottery glazes&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* More CAD licenses and modules (Solidworks/Fusion/AutoCAD)&lt;br /&gt;
* Windows 10/11 LTSC licenses (ideally 2021 or later)&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
* SSDs of reasonable size (256GB+ 2.5&amp;quot; drives would be great)&lt;br /&gt;
* LCD monitors with HDMI (most of our current monitors only have VGA/DVI input)&lt;br /&gt;
* Audio/lighting/DJ equipment&lt;br /&gt;
* Human Interface Devices (decent mice, VR headsets and controllers...)&lt;br /&gt;
* Modern Raspberry Pis and microcontrollers (We have lots of Arduino UNOs, but something more powerful would be great)&lt;br /&gt;
* Working UPSes for various systems&lt;br /&gt;
&lt;br /&gt;
== Storage ==&lt;br /&gt;
* Materials for an additional member storage rack (lots of 1&amp;quot; square steel tube and at least 3/4&amp;quot; plywood)&lt;br /&gt;
* Other comparable shelving for member storage&lt;br /&gt;
&lt;br /&gt;
== Materials ==&lt;br /&gt;
* Bar/tube/sheet steel for buildout projects&lt;br /&gt;
* Lumber - 2x4&amp;quot; lengths and plywood sheets are always useful&lt;br /&gt;
&lt;br /&gt;
== Equipment ==&lt;br /&gt;
* Decent-size toaster oven for the kitchen (ideally pizza-capable)&lt;br /&gt;
* Dust collection for everything (getting close to done on this one)&lt;br /&gt;
* More area rugs of various sizes for up front&lt;br /&gt;
* Big Ass Fans for the workshop&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
'''Wood Shop'''&lt;br /&gt;
* Better planer (currently have an old Grizzly G0505 12.5&amp;quot;) - something like a modern 13&amp;quot; DeWalt would be awesome!&lt;br /&gt;
* Better jointer &lt;br /&gt;
* 4x8 CNC router (Maslow build still in progress, has yet to cut anything)&lt;br /&gt;
* Track saw&lt;br /&gt;
* Sawstop&lt;br /&gt;
* More clamps of all shapes &amp;amp; sizes&lt;br /&gt;
* New cordless hand tools (drills, impact drivers, hand routers, et cetera)&lt;br /&gt;
&lt;br /&gt;
'''Machine Shop'''&lt;br /&gt;
* Surface grinder&lt;br /&gt;
* Small cnc mill, e.g. Tormach 440/770&lt;br /&gt;
* D bit grinder&lt;br /&gt;
&lt;br /&gt;
'''Metal Shop'''&lt;br /&gt;
* Drill press&lt;br /&gt;
* Roll-in saw, or other vertical metal cutting bandsaw&lt;br /&gt;
* Better horizontal bandsaw (currently have a small, aging Harbour Freight model)&lt;br /&gt;
* Better welding table&lt;br /&gt;
* Cnc plasma table&lt;br /&gt;
* Dry cut saw&lt;br /&gt;
* Power hammer&lt;br /&gt;
* Beefier press (currently have a manual 20-ton)&lt;br /&gt;
&lt;br /&gt;
'''Auto Bay'''&lt;br /&gt;
* Vehicle lift&lt;br /&gt;
&lt;br /&gt;
'''Craft Space'''&lt;br /&gt;
* Vinyl cutter&lt;br /&gt;
&lt;br /&gt;
'''CNC Room'''&lt;br /&gt;
* Upgraded laser cutter&lt;br /&gt;
* Upgraded resin printer&lt;br /&gt;
* Rotary axis for laser cutter&lt;br /&gt;
&lt;br /&gt;
'''Ceramics'''&lt;br /&gt;
* Additional pottery wheel&lt;br /&gt;
* Additional shelving for drying pieces&lt;br /&gt;
* Splash pan for the Spinning Tiger&lt;br /&gt;
* Low stools/chairs&lt;br /&gt;
* Heavy canvas for boards&lt;br /&gt;
* Kiln shelves and posts&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3092</id>
		<title>Wishlist</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3092"/>
		<updated>2022-03-17T14:48:07Z</updated>

		<summary type="html">&lt;p&gt;Jake: /* Consumables */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We're always looking for new opportunities to facilitate projects/education in the space. New equipment can help us do that, so we decided to make a wishlist of some of the things that we need for the space.&lt;br /&gt;
&lt;br /&gt;
If you have any items you would like to donate to our space, please contact [mailto:donations@freesideatlanta.org donations@freesideatlanta.org] with details to arrange the donation drop off.&lt;br /&gt;
&lt;br /&gt;
== Volunteer Opportunities ==&lt;br /&gt;
* [[Artwork|Mural Art]]: Artists, pick a spot on the wall and make it yours! For large pieces, please give the directors a heads-up.&lt;br /&gt;
* [[Classes]]: Teaching at Freeside raises money for the space, helps educate our community, and can put a little extra money in your pocket. You don't have to be a member or an expert to teach a class, you just have to have some basic skills and a plan to share them.&lt;br /&gt;
* [[Projects]]: Volunteering your skills on projects (and [[Build_Out|Build-Outs]]) is a great way to meet people and help out. Check out our [http://www.meetup.com/Freeside-Atlanta Meetup] account for upcoming opportunities to jump on in.&lt;br /&gt;
&lt;br /&gt;
== Consumables ==&lt;br /&gt;
* 105&amp;quot; bandsaw blades for the Delta&lt;br /&gt;
* Resin for the 3D printer (Elegoo grey is a good choice)&lt;br /&gt;
* Paper towels and toilet paper&lt;br /&gt;
* Ten-gallon trash can liners&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* More CAD licenses and modules (Solidworks/Fusion/AutoCAD)&lt;br /&gt;
* Windows 10/11 LTSC licenses (ideally 2021 or later)&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
* SSDs of reasonable size (256GB+ 2.5&amp;quot; drives would be great)&lt;br /&gt;
* LCD monitors with HDMI (most of our current monitors only have VGA/DVI input)&lt;br /&gt;
* Audio/lighting/DJ equipment&lt;br /&gt;
* Human Interface Devices (decent mice, VR headsets and controllers...)&lt;br /&gt;
* Modern Raspberry Pis and microcontrollers (We have lots of Arduino UNOs, but something more powerful would be great)&lt;br /&gt;
* Working UPSes for various systems&lt;br /&gt;
&lt;br /&gt;
== Storage ==&lt;br /&gt;
* Materials for an additional member storage rack (lots of 1&amp;quot; square steel tube and at least 3/4&amp;quot; plywood)&lt;br /&gt;
* Other comparable shelving for member storage&lt;br /&gt;
&lt;br /&gt;
== Materials ==&lt;br /&gt;
* Bar/tube/sheet steel for buildout projects&lt;br /&gt;
* Lumber - 2x4&amp;quot; lengths and plywood sheets are always useful&lt;br /&gt;
&lt;br /&gt;
== Equipment ==&lt;br /&gt;
* Decent-size toaster oven for the kitchen (ideally pizza-capable)&lt;br /&gt;
* Dust collection for everything (getting close to done on this one)&lt;br /&gt;
* More area rugs of various sizes for up front&lt;br /&gt;
* Big Ass Fans for the workshop&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
'''Wood Shop'''&lt;br /&gt;
* Better planer (currently have an old Grizzly G0505 12.5&amp;quot;) - something like a modern 13&amp;quot; DeWalt would be awesome!&lt;br /&gt;
* Better jointer &lt;br /&gt;
* 4x8 CNC router (Maslow build still in progress, has yet to cut anything)&lt;br /&gt;
* Track saw&lt;br /&gt;
* Sawstop&lt;br /&gt;
* More clamps of all shapes &amp;amp; sizes&lt;br /&gt;
&lt;br /&gt;
'''Machine Shop'''&lt;br /&gt;
* Surface grinder&lt;br /&gt;
* Small cnc mill, e.g. Tormach 440/770&lt;br /&gt;
* D bit grinder&lt;br /&gt;
&lt;br /&gt;
'''Metal Shop'''&lt;br /&gt;
* Drill press&lt;br /&gt;
* Roll-in saw, or other vertical metal cutting bandsaw&lt;br /&gt;
* Better horizontal bandsaw (currently have a small, aging Harbour Freight model)&lt;br /&gt;
* Better welding table&lt;br /&gt;
* Cnc plasma table&lt;br /&gt;
* Dry cut saw&lt;br /&gt;
* Power hammer&lt;br /&gt;
* Beefier press (currently have a manual 20-ton)&lt;br /&gt;
&lt;br /&gt;
'''Auto Bay'''&lt;br /&gt;
* Vehicle lift&lt;br /&gt;
&lt;br /&gt;
'''Craft Space'''&lt;br /&gt;
* Vinyl cutter&lt;br /&gt;
&lt;br /&gt;
'''CNC Room'''&lt;br /&gt;
* Upgraded laser cutter&lt;br /&gt;
* Rotary axis for laser cutter&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3091</id>
		<title>Wishlist</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3091"/>
		<updated>2022-03-17T14:47:52Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We're always looking for new opportunities to facilitate projects/education in the space. New equipment can help us do that, so we decided to make a wishlist of some of the things that we need for the space.&lt;br /&gt;
&lt;br /&gt;
If you have any items you would like to donate to our space, please contact [mailto:donations@freesideatlanta.org donations@freesideatlanta.org] with details to arrange the donation drop off.&lt;br /&gt;
&lt;br /&gt;
== Volunteer Opportunities ==&lt;br /&gt;
* [[Artwork|Mural Art]]: Artists, pick a spot on the wall and make it yours! For large pieces, please give the directors a heads-up.&lt;br /&gt;
* [[Classes]]: Teaching at Freeside raises money for the space, helps educate our community, and can put a little extra money in your pocket. You don't have to be a member or an expert to teach a class, you just have to have some basic skills and a plan to share them.&lt;br /&gt;
* [[Projects]]: Volunteering your skills on projects (and [[Build_Out|Build-Outs]]) is a great way to meet people and help out. Check out our [http://www.meetup.com/Freeside-Atlanta Meetup] account for upcoming opportunities to jump on in.&lt;br /&gt;
&lt;br /&gt;
== Consumables ==&lt;br /&gt;
* 105&amp;quot; bandsaw blades for the Delta&lt;br /&gt;
* Resin for the 3D printer (Elegoo grey is a good choice)&lt;br /&gt;
* Paper towels and toilet paper&lt;br /&gt;
* Ten-gallon can liners&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* More CAD licenses and modules (Solidworks/Fusion/AutoCAD)&lt;br /&gt;
* Windows 10/11 LTSC licenses (ideally 2021 or later)&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
* SSDs of reasonable size (256GB+ 2.5&amp;quot; drives would be great)&lt;br /&gt;
* LCD monitors with HDMI (most of our current monitors only have VGA/DVI input)&lt;br /&gt;
* Audio/lighting/DJ equipment&lt;br /&gt;
* Human Interface Devices (decent mice, VR headsets and controllers...)&lt;br /&gt;
* Modern Raspberry Pis and microcontrollers (We have lots of Arduino UNOs, but something more powerful would be great)&lt;br /&gt;
* Working UPSes for various systems&lt;br /&gt;
&lt;br /&gt;
== Storage ==&lt;br /&gt;
* Materials for an additional member storage rack (lots of 1&amp;quot; square steel tube and at least 3/4&amp;quot; plywood)&lt;br /&gt;
* Other comparable shelving for member storage&lt;br /&gt;
&lt;br /&gt;
== Materials ==&lt;br /&gt;
* Bar/tube/sheet steel for buildout projects&lt;br /&gt;
* Lumber - 2x4&amp;quot; lengths and plywood sheets are always useful&lt;br /&gt;
&lt;br /&gt;
== Equipment ==&lt;br /&gt;
* Decent-size toaster oven for the kitchen (ideally pizza-capable)&lt;br /&gt;
* Dust collection for everything (getting close to done on this one)&lt;br /&gt;
* More area rugs of various sizes for up front&lt;br /&gt;
* Big Ass Fans for the workshop&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
'''Wood Shop'''&lt;br /&gt;
* Better planer (currently have an old Grizzly G0505 12.5&amp;quot;) - something like a modern 13&amp;quot; DeWalt would be awesome!&lt;br /&gt;
* Better jointer &lt;br /&gt;
* 4x8 CNC router (Maslow build still in progress, has yet to cut anything)&lt;br /&gt;
* Track saw&lt;br /&gt;
* Sawstop&lt;br /&gt;
* More clamps of all shapes &amp;amp; sizes&lt;br /&gt;
&lt;br /&gt;
'''Machine Shop'''&lt;br /&gt;
* Surface grinder&lt;br /&gt;
* Small cnc mill, e.g. Tormach 440/770&lt;br /&gt;
* D bit grinder&lt;br /&gt;
&lt;br /&gt;
'''Metal Shop'''&lt;br /&gt;
* Drill press&lt;br /&gt;
* Roll-in saw, or other vertical metal cutting bandsaw&lt;br /&gt;
* Better horizontal bandsaw (currently have a small, aging Harbour Freight model)&lt;br /&gt;
* Better welding table&lt;br /&gt;
* Cnc plasma table&lt;br /&gt;
* Dry cut saw&lt;br /&gt;
* Power hammer&lt;br /&gt;
* Beefier press (currently have a manual 20-ton)&lt;br /&gt;
&lt;br /&gt;
'''Auto Bay'''&lt;br /&gt;
* Vehicle lift&lt;br /&gt;
&lt;br /&gt;
'''Craft Space'''&lt;br /&gt;
* Vinyl cutter&lt;br /&gt;
&lt;br /&gt;
'''CNC Room'''&lt;br /&gt;
* Upgraded laser cutter&lt;br /&gt;
* Rotary axis for laser cutter&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3090</id>
		<title>Wishlist</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3090"/>
		<updated>2022-03-17T13:55:54Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We're always looking for new opportunities to facilitate projects/education in the space. New equipment can help us do that, so we decided to make a wishlist of some of the things that we need for the space.&lt;br /&gt;
&lt;br /&gt;
If you have any items you would like to donate to our space, please contact [mailto:donations@freesideatlanta.org donations@freesideatlanta.org] with details to arrange the donation drop off.&lt;br /&gt;
&lt;br /&gt;
== Volunteer Opportunities ==&lt;br /&gt;
* [[Artwork|Mural Art]]: Artists, pick a spot on the wall and make it yours! For large pieces, please give the directors a heads-up.&lt;br /&gt;
* [[Classes]]: Teaching at Freeside raises money for the space, helps educate our community, and can put a little extra money in your pocket. You don't have to be a member or an expert to teach a class, you just have to have some basic skills and a plan to share them.&lt;br /&gt;
* [[Projects]]: Volunteering your skills on projects (and [[Build_Out|Build-Outs]]) is a great way to meet people and help out. Check out our [http://www.meetup.com/Freeside-Atlanta Meetup] account for upcoming opportunities to jump on in.&lt;br /&gt;
&lt;br /&gt;
== Consumables ==&lt;br /&gt;
* 105&amp;quot; bandsaw blades for the Delta&lt;br /&gt;
* Resin for the 3D printer (Elegoo grey is a good choice)&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* More CAD licenses and modules (Solidworks/Fusion/AutoCAD)&lt;br /&gt;
* Windows 10/11 LTSC licenses (ideally 2021 or later)&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
* SSDs of reasonable size (256GB+ 2.5&amp;quot; drives would be great)&lt;br /&gt;
* LCD monitors with HDMI (most of our current monitors only have VGA/DVI input)&lt;br /&gt;
* Audio/lighting/DJ equipment&lt;br /&gt;
* Human Interface Devices (decent mice, VR headsets and controllers...)&lt;br /&gt;
* Modern Raspberry Pis and microcontrollers (We have lots of Arduino UNOs, but something more powerful would be great)&lt;br /&gt;
* Working UPSes for various systems&lt;br /&gt;
&lt;br /&gt;
== Storage ==&lt;br /&gt;
* Materials for an additional member storage rack (lots of 1&amp;quot; square steel tube and at least 3/4&amp;quot; plywood)&lt;br /&gt;
* Other comparable shelving for member storage&lt;br /&gt;
&lt;br /&gt;
== Materials ==&lt;br /&gt;
* Bar/tube/sheet steel for buildout projects&lt;br /&gt;
* Lumber - 2x4&amp;quot; lengths and plywood sheets are always useful&lt;br /&gt;
&lt;br /&gt;
== Equipment ==&lt;br /&gt;
* Decent-size toaster oven for the kitchen (ideally pizza-capable)&lt;br /&gt;
* Dust collection for everything (getting close to done on this one)&lt;br /&gt;
* More area rugs of various sizes for up front&lt;br /&gt;
* Big Ass Fans for the workshop&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
'''Wood Shop'''&lt;br /&gt;
* Better planer (currently have an old Grizzly G0505 12.5&amp;quot;) - something like a modern 13&amp;quot; DeWalt would be awesome!&lt;br /&gt;
* Better jointer &lt;br /&gt;
* 4x8 CNC router (Maslow build still in progress, has yet to cut anything)&lt;br /&gt;
* Track saw&lt;br /&gt;
* Sawstop&lt;br /&gt;
* More clamps of all shapes &amp;amp; sizes&lt;br /&gt;
&lt;br /&gt;
'''Machine Shop'''&lt;br /&gt;
* Surface grinder&lt;br /&gt;
* Small cnc mill, e.g. Tormach 440/770&lt;br /&gt;
* D bit grinder&lt;br /&gt;
&lt;br /&gt;
'''Metal Shop'''&lt;br /&gt;
* Drill press&lt;br /&gt;
* Roll-in saw, or other vertical metal cutting bandsaw&lt;br /&gt;
* Better horizontal bandsaw (currently have a small, aging Harbour Freight model)&lt;br /&gt;
* Better welding table&lt;br /&gt;
* Cnc plasma table&lt;br /&gt;
* Dry cut saw&lt;br /&gt;
* Power hammer&lt;br /&gt;
* Beefier press (currently have a manual 20-ton)&lt;br /&gt;
&lt;br /&gt;
'''Auto Bay'''&lt;br /&gt;
* Vehicle lift&lt;br /&gt;
&lt;br /&gt;
'''Craft Space'''&lt;br /&gt;
* Vinyl cutter&lt;br /&gt;
&lt;br /&gt;
'''CNC Room'''&lt;br /&gt;
* Upgraded laser cutter&lt;br /&gt;
* Rotary axis for laser cutter&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3089</id>
		<title>Wishlist</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3089"/>
		<updated>2022-03-17T13:54:47Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We're always looking for new opportunities to facilitate projects/education in the space. New equipment can help us do that, so we decided to make a wishlist of some of the things that we need for the space.&lt;br /&gt;
&lt;br /&gt;
If you have any items you would like to donate to our space, please contact [mailto:donations@freesideatlanta.org donations@freesideatlanta.org] with details to arrange the donation drop off.&lt;br /&gt;
&lt;br /&gt;
== Volunteer Opportunities ==&lt;br /&gt;
* [[Artwork|Mural Art]]: Artists, pick a spot on the wall and make it yours! For large pieces, please give the directors a heads-up.&lt;br /&gt;
* [[Classes]]: Teaching at Freeside raises money for the space, helps educate our community, and can put a little extra money in your pocket. You don't have to be a member or an expert to teach a class, you just have to have some basic skills and a plan to share them.&lt;br /&gt;
* [[Projects]]: Volunteering your skills on projects (and [[Build_Out|Build-Outs]]) is a great way to meet people and help out. Check out our [http://www.meetup.com/Freeside-Atlanta Meetup] account for upcoming opportunities to jump on in.&lt;br /&gt;
&lt;br /&gt;
== Consumables ==&lt;br /&gt;
* 105&amp;quot; bandsaw blades for the Delta&lt;br /&gt;
* Resin for the 3D printer (Elegoo grey is a good choice)&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* More CAD licenses and modules (Solidworks/Fusion/AutoCAD)&lt;br /&gt;
* Windows 10/11 LTSC licenses (ideally 2021 or later)&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
* SSDs of reasonable size (256GB+ 2.5&amp;quot; drives would be great)&lt;br /&gt;
* LCD monitors with HDMI (most of our current monitors only have VGA/DVI input)&lt;br /&gt;
* Audio/lighting/DJ equipment&lt;br /&gt;
* Human Interface Devices (decent mice, VR headsets and controllers...)&lt;br /&gt;
* Modern Raspberry Pis and microcontrollers (We have lots of Arduino UNOs, but something more powerful would be great)&lt;br /&gt;
* Working UPSes for various systems&lt;br /&gt;
&lt;br /&gt;
== Storage ==&lt;br /&gt;
* Materials for an additional member storage rack (lots of 1&amp;quot; square steel tube and at least 3/4&amp;quot; plywood)&lt;br /&gt;
* Other comparable shelving for member storage&lt;br /&gt;
&lt;br /&gt;
== Materials ==&lt;br /&gt;
* Bar/tube/sheet steel for buildout projects&lt;br /&gt;
* Lumber - 2x4&amp;quot; lengths and plywood sheets are always useful&lt;br /&gt;
&lt;br /&gt;
== Equipment ==&lt;br /&gt;
* Decent-size toaster oven for the kitchen (ideally pizza-capable)&lt;br /&gt;
* Dust collection for everything (getting close to done on this one)&lt;br /&gt;
* More area rugs of various sizes for up front&lt;br /&gt;
* Big Ass Fans for the workshop&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
'''Wood Shop'''&lt;br /&gt;
* Better planer (currently have an old Grizzly G0505 12.5&amp;quot;) - something like a modern 13&amp;quot; DeWalt would be awesome!&lt;br /&gt;
* Better jointer &lt;br /&gt;
* 4x8 CNC router (Maslow build still in progress, has yet to cut anything)&lt;br /&gt;
* Track saw&lt;br /&gt;
* Sawstop&lt;br /&gt;
* More clamps of all shapes &amp;amp; sizes&lt;br /&gt;
&lt;br /&gt;
'''Machine Shop'''&lt;br /&gt;
* Surface grinder&lt;br /&gt;
* Small cnc mill, e.g. Tormach 440/770&lt;br /&gt;
* D bit grinder&lt;br /&gt;
&lt;br /&gt;
'''Metal Shop'''&lt;br /&gt;
* Drill press&lt;br /&gt;
* Roll-in saw, or other vertical metal cutting bandsaw&lt;br /&gt;
* Better horizontal bandsaw (currently have a small, aging Harbour Freight model)&lt;br /&gt;
* Better welding table&lt;br /&gt;
* Cnc plasma table&lt;br /&gt;
* Dry cut saw&lt;br /&gt;
* Power hammer&lt;br /&gt;
* Beefier press (currently have a small, manual 20-ton)&lt;br /&gt;
&lt;br /&gt;
'''Auto Bay'''&lt;br /&gt;
* Vehicle lift&lt;br /&gt;
&lt;br /&gt;
'''Craft Space'''&lt;br /&gt;
* Vinyl cutter&lt;br /&gt;
&lt;br /&gt;
'''CNC Room'''&lt;br /&gt;
* Upgraded laser cutter&lt;br /&gt;
* Rotary axis for laser cutter&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3088</id>
		<title>Wishlist</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Wishlist&amp;diff=3088"/>
		<updated>2022-03-17T13:47:24Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We're always looking for new opportunities to facilitate projects/education in the space. New equipment can help us do that, so we decided to make a wishlist of some of the things that we need for the space.&lt;br /&gt;
&lt;br /&gt;
If you have any items you would like to donate to our space, please contact [mailto:donations@freesideatlanta.org donations@freesideatlanta.org] with details to arrange the donation drop off.&lt;br /&gt;
&lt;br /&gt;
== Volunteer Opportunities ==&lt;br /&gt;
* [[Artwork|Mural Art]]: Artists, pick a spot on the wall and make it yours! For large pieces, please give the directors a heads-up.&lt;br /&gt;
* [[Classes]]: Teaching at Freeside raises money for the space, helps educate our community, and can put a little extra money in your pocket. You don't have to be a member or an expert to teach a class, you just have to have some basic skills and a plan to share them.&lt;br /&gt;
* [[Projects]]: Volunteering your skills on projects (and [[Build_Out|Build-Outs]]) is a great way to meet people and help out. Check out our [http://www.meetup.com/Freeside-Atlanta Meetup] account for upcoming opportunities to jump on in.&lt;br /&gt;
&lt;br /&gt;
== Consumables ==&lt;br /&gt;
* 105&amp;quot; bandsaw blades for the Delta&lt;br /&gt;
* Resin for the 3D printer (Elegoo grey is a good choice)&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* More CAD licenses and modules (Solidworks/Fusion/AutoCAD in that order)&lt;br /&gt;
* Windows 10/11 LTSC licenses (ideally 2021 or later)&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
* SSDs of reasonable size (256GB+ 2.5&amp;quot; drives would be great)&lt;br /&gt;
* LCD monitors with HDMI (most of our current monitors only have VGA/DVI input)&lt;br /&gt;
* Audio/lighting/DJ equipment&lt;br /&gt;
* Human Interface Devices (decent mice, VR headsets and controllers...)&lt;br /&gt;
* Modern Raspberry Pis and microcontrollers (We have lots of Arduino UNOs, but something more powerful would be great)&lt;br /&gt;
* Working UPSes for various systems&lt;br /&gt;
&lt;br /&gt;
== Storage ==&lt;br /&gt;
* Materials for an additional member storage rack (lots of 1&amp;quot; square steel tube and at least 3/4&amp;quot; plywood)&lt;br /&gt;
* Other comparable shelving for member storage&lt;br /&gt;
&lt;br /&gt;
== Materials ==&lt;br /&gt;
* Bar/tube/sheet steel for buildout projects&lt;br /&gt;
* Lumber - 2x4&amp;quot; lengths and plywood sheets are always useful&lt;br /&gt;
&lt;br /&gt;
== Equipment ==&lt;br /&gt;
* Decent-size toaster oven for the kitchen (ideally pizza-capable)&lt;br /&gt;
* Dust collection for everything (getting close to done on this one)&lt;br /&gt;
* More area rugs of various sizes for up front&lt;br /&gt;
* Big Ass Fans for the workshop&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
'''Wood Shop'''&lt;br /&gt;
* Better planer (currently have an old Grizzly G0505 12.5&amp;quot;) - something like a modern 13&amp;quot; DeWalt would be awesome!&lt;br /&gt;
* Better jointer &lt;br /&gt;
* 4x8 CNC router (Maslow build still in progress, has yet to cut anything)&lt;br /&gt;
* Track saw&lt;br /&gt;
* Sawstop&lt;br /&gt;
* More clamps of all shapes &amp;amp; sizes&lt;br /&gt;
&lt;br /&gt;
'''Machine Shop'''&lt;br /&gt;
* Surface grinder&lt;br /&gt;
* Small cnc mill, e.g. Tormach 440/770&lt;br /&gt;
* D bit grinder&lt;br /&gt;
&lt;br /&gt;
'''Metal Shop'''&lt;br /&gt;
* Drill press&lt;br /&gt;
* Roll-in saw, or other vertical metal cutting bandsaw&lt;br /&gt;
* Better horizontal bandsaw (currently have a small, aging Harbour Freight model)&lt;br /&gt;
* Better welding table&lt;br /&gt;
* Cnc plasma table&lt;br /&gt;
* Dry cut saw&lt;br /&gt;
* Power hammer&lt;br /&gt;
* Beefier press (currently have a small, manual 20-ton)&lt;br /&gt;
&lt;br /&gt;
'''Auto Bay'''&lt;br /&gt;
* Vehicle lift&lt;br /&gt;
&lt;br /&gt;
'''Craft Space'''&lt;br /&gt;
* Vinyl cutter&lt;br /&gt;
&lt;br /&gt;
'''CNC Room'''&lt;br /&gt;
* Upgraded laser cutter&lt;br /&gt;
* Rotary axis for laser cutter&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=User:Jake&amp;diff=3083</id>
		<title>User:Jake</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=User:Jake&amp;diff=3083"/>
		<updated>2022-02-21T21:10:53Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Testing....&lt;br /&gt;
&lt;br /&gt;
[[File:AtlasDance.gif|Everybody dance!]]&lt;br /&gt;
&lt;br /&gt;
Good enough!&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=File:AtlasDance.gif&amp;diff=3082</id>
		<title>File:AtlasDance.gif</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=File:AtlasDance.gif&amp;diff=3082"/>
		<updated>2022-02-21T19:02:13Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Info&amp;diff=3078</id>
		<title>Info</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Info&amp;diff=3078"/>
		<updated>2022-02-16T17:19:26Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[File:FrontSignCrop.jpg|thumb|right|300px]]&lt;br /&gt;
[[File:Dsc_1048_27728446822_o.jpg|thumb|right|300px]]&lt;br /&gt;
[[File:24495000883_c84da5a225_h.jpg|thumb|right|300px]]&lt;br /&gt;
&lt;br /&gt;
'''Freeside Atlanta''' (est. 2009) is a 501(c)(3) non-profit work space built entirely by volunteers.&lt;br /&gt;
 &lt;br /&gt;
Located just south of downtown Atlanta, we are a community of makers, tinkerers, engineers, programmers, artists, teachers, and lunatics. As a community, we have built out our space with tools and equipment for electronics, 3D printing, woodworking, metalworking, art, design, [[Classes|classes]], and events. Everything you see in [[Our Space|our space]] was donated or built by members. &lt;br /&gt;
&lt;br /&gt;
Our members are engaged in amazing [[Projects|projects]] and love to share knowledge. We also develop and work with open source and free technology wherever possible, and try to release our creations under variants of the [https://creativecommons.org/licenses Creative Commons license].&lt;br /&gt;
&lt;br /&gt;
You don't have to be a Freeside member to come to our events or take our classes. We encourage you to come out to the '''Tuesday night Open House''' that we have every second and fourth Tuesday at 7:30 PM, or to any of the other public classes or events that we have on [http://www.meetup.com/Freeside-Atlanta Meetup]. Come check the place out and see if this is a community that you'd be interested in [[Joining|joining]].&lt;br /&gt;
&lt;br /&gt;
== Our Mission ==&lt;br /&gt;
&lt;br /&gt;
Freeside Technology Spaces, a 501(c)(3) non-profit organization, strives to provide a space that inspires collaboration, creativity, teaching, and open projects for the Atlanta community. &lt;br /&gt;
&lt;br /&gt;
== Our Space ==&lt;br /&gt;
&lt;br /&gt;
We built our space into different areas to consolidate where we work on stuff in the space. You can check out the different areas of our space [[Our_Space | here]].  We are located at:&lt;br /&gt;
&lt;br /&gt;
3043 Commerce Way&amp;lt;br&amp;gt;&lt;br /&gt;
Atlanta, GA 30354&lt;br /&gt;
&lt;br /&gt;
There are [[Detailed Directions|detailed directions]] to our space to help you find the place.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
== Freeside by the Numbers ==&lt;br /&gt;
&lt;br /&gt;
* 70 [[Members|members]] and [[Joining|growing]]!&lt;br /&gt;
* 1,200+ makers served in 2012&lt;br /&gt;
* 9,000 square feet of shop, workspace, and materials&lt;br /&gt;
* 22 [[Our_Space|zones]] of awesomeness&lt;br /&gt;
* 1 cat puzzle&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Past Projects ==&lt;br /&gt;
&lt;br /&gt;
Interesting [[Projects | projects]] going on at our space:&lt;br /&gt;
* An under $2000 [http://blog.freesideatlanta.org/2013/03/super-cheap-and-effective-off-road.html Off Road Wheelchair] art project&lt;br /&gt;
* A [http://blog.freesideatlanta.org/2012/04/draft-freesiders-hackers-collaborate-in.html published white paper] for an open collaboration to 3D print CT scans for pre-surgery planning&lt;br /&gt;
* An interactive [https://wiki.freesideatlanta.org/fs/Infinity_Portal Infinity Mirror Archway] art project for Alchemy&lt;br /&gt;
* [http://www.learntosolder.org/ LearnToSolder.org] - started by a member for Atlanta's Mini Maker Faire (before we had a full Maker Faire)&lt;br /&gt;
* [https://wiki.freesideatlanta.org/fs/Gaze Gaze Tracking in Rookie and Veteran Surgeons] - Another medical collaboration examining how diagnosticians look at x-rays.&lt;br /&gt;
* The [[JAM]] (Joy's Art Machine): A machine that gifts art&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
== Upcoming Events ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;shtml version=&amp;quot;2&amp;quot; hash=&amp;quot;077ef96cabd5093bdf6e83e2be757e3c43c5c8b21f7a0d4af15cc4da3b52d604&amp;quot;&amp;gt;&amp;lt;iframe src=&amp;quot;/static/meetup.html&amp;quot; frameborder=0&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/iframe&amp;gt;&amp;lt;/shtml&amp;gt;&amp;lt;p&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Freeside in Photos ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px heights=200px&amp;gt;&lt;br /&gt;
File:IMG_20151206_084209.jpg&lt;br /&gt;
File:41_-_QgruavT.jpg&lt;br /&gt;
File:27655585626_8152e003b1_k.jpg&lt;br /&gt;
File:DSC_0537.jpg&lt;br /&gt;
File:Dsc_1061_27728443462_o.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Info&amp;diff=3077</id>
		<title>Info</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Info&amp;diff=3077"/>
		<updated>2022-02-16T17:13:08Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[File:FrontSignCrop.jpg|thumb|right|300px]]&lt;br /&gt;
[[File:Dsc_1048_27728446822_o.jpg|thumb|right|300px]]&lt;br /&gt;
[[File:24495000883_c84da5a225_h.jpg|thumb|right|300px]]&lt;br /&gt;
&lt;br /&gt;
'''Freeside Atlanta''' (est. 2009) is a 501(c)(3) non-profit work space built entirely by volunteers.&lt;br /&gt;
 &lt;br /&gt;
Located just south of downtown Atlanta, we are a community of makers, tinkerers, engineers, programmers, artists, teachers, and lunatics. As a community, we have built out our space with tools and equipment for electronics, 3D printing, woodworking, metalworking, art, design, [[Classes|classes]], and events. Everything you see in [[Our Space|our space]] was donated or built by members. &lt;br /&gt;
&lt;br /&gt;
Our members are engaged in amazing [[Projects|projects]] and love to share knowledge. We also develop and work with open source and free technology wherever possible, and try to release our creations under variants of the [https://creativecommons.org/licenses Creative Commons license].&lt;br /&gt;
&lt;br /&gt;
You don't have to be a Freeside member to come to our events or take our classes. We encourage you to come out to the '''Tuesday night Open House''' that we have every second and fourth Tuesday at 7:30 PM, or to any of the other public classes or events that we have on [http://www.meetup.com/Freeside-Atlanta Meetup]. Come check the place out and see if this is a community that you'd be interested in [[Joining|joining]]!&lt;br /&gt;
&lt;br /&gt;
== Our Mission ==&lt;br /&gt;
&lt;br /&gt;
Freeside Technology Spaces, a 501(c)(3) non-profit organization, strives to provide a space that inspires collaboration, creativity, teaching, and open projects for the Atlanta community. &lt;br /&gt;
&lt;br /&gt;
== Our Space ==&lt;br /&gt;
&lt;br /&gt;
We built our space into different areas to consolidate where we work on stuff in the space. You can check out the different areas of our space [[Our_Space | here]].  We are located at:&lt;br /&gt;
&lt;br /&gt;
3043 Commerce Way&amp;lt;br&amp;gt;&lt;br /&gt;
Atlanta, GA 30354&lt;br /&gt;
&lt;br /&gt;
There are [[Detailed Directions|detailed directions]] to our space to help you find the place.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
== Freeside by the Numbers ==&lt;br /&gt;
&lt;br /&gt;
* 70 [[Members|members]] and [[Joining|growing]]!&lt;br /&gt;
* 1,200+ makers served in 2012&lt;br /&gt;
* 9,000 square feet of shop, workspace, and materials&lt;br /&gt;
* 22 [[Our_Space|zones]] of awesomeness&lt;br /&gt;
* 1 cat puzzle&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Past Projects ==&lt;br /&gt;
&lt;br /&gt;
Interesting [[Projects | projects]] going on at our space:&lt;br /&gt;
* An under $2000 [http://blog.freesideatlanta.org/2013/03/super-cheap-and-effective-off-road.html Off Road Wheelchair] art project&lt;br /&gt;
* A [http://blog.freesideatlanta.org/2012/04/draft-freesiders-hackers-collaborate-in.html published white paper] for an open collaboration to 3D print CT scans for pre-surgery planning&lt;br /&gt;
* An interactive [https://wiki.freesideatlanta.org/fs/Infinity_Portal Infinity Mirror Archway] art project for Alchemy&lt;br /&gt;
* [http://www.learntosolder.org/ LearnToSolder.org] - started by a member for Atlanta's Mini Maker Faire (before we had a full Maker Faire)&lt;br /&gt;
* [https://wiki.freesideatlanta.org/fs/Gaze Gaze Tracking in Rookie and Veteran Surgeons] - Another medical collaboration examining how diagnosticians look at x-rays.&lt;br /&gt;
* The [[JAM]] (Joy's Art Machine): A machine that gifts art&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
== Upcoming Events ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;shtml version=&amp;quot;2&amp;quot; hash=&amp;quot;077ef96cabd5093bdf6e83e2be757e3c43c5c8b21f7a0d4af15cc4da3b52d604&amp;quot;&amp;gt;&amp;lt;iframe src=&amp;quot;/static/meetup.html&amp;quot; frameborder=0&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/iframe&amp;gt;&amp;lt;/shtml&amp;gt;&amp;lt;p&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Freeside in Photos ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px heights=200px&amp;gt;&lt;br /&gt;
File:IMG_20151206_084209.jpg&lt;br /&gt;
File:41_-_QgruavT.jpg&lt;br /&gt;
File:27655585626_8152e003b1_k.jpg&lt;br /&gt;
File:DSC_0537.jpg&lt;br /&gt;
File:Dsc_1061_27728443462_o.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=User_talk:10.4.1.43&amp;diff=3076</id>
		<title>User talk:10.4.1.43</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=User_talk:10.4.1.43&amp;diff=3076"/>
		<updated>2022-02-16T17:11:58Z</updated>

		<summary type="html">&lt;p&gt;Jake: Created page with &amp;quot;This was me. When I realised I could edit the wiki without being logged in, I shut that down, so we should be all good there now. ~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This was me. When I realised I could edit the wiki without being logged in, I shut that down, so we should be all good there now. [[User:Jake|Jake]] ([[User talk:Jake|talk]]) 17:11, 16 February 2022 (UTC)&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Info&amp;diff=3075</id>
		<title>Info</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Info&amp;diff=3075"/>
		<updated>2022-02-16T17:10:13Z</updated>

		<summary type="html">&lt;p&gt;Jake: Reverted edits by 10.4.1.43 (talk) to last revision by Jake&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[File:FrontSignCrop.jpg|thumb|right|300px]]&lt;br /&gt;
[[File:Dsc_1048_27728446822_o.jpg|thumb|right|300px]]&lt;br /&gt;
[[File:24495000883_c84da5a225_h.jpg|thumb|right|300px]]&lt;br /&gt;
&lt;br /&gt;
'''Freeside Atlanta''' (est. 2009) is a 501(c)(3) non-profit work space built entirely by volunteers.&lt;br /&gt;
 &lt;br /&gt;
Located just south of downtown Atlanta, we are a community of makers, tinkerers, engineers, programmers, artists, teachers, and lunatics. As a community, we have built out our space with tools and equipment for electronics, 3D printing, woodworking, metalworking, art, design, [[Classes|classes]], and events. Everything you see in [[Our Space|our space]] was donated or built by members. &lt;br /&gt;
&lt;br /&gt;
Our members are engaged in amazing [[Projects|projects]] and love to share knowledge. We also develop and work with open source and free technology wherever possible, and try to release our creations under variants of the [https://creativecommons.org/licenses Creative Commons license].&lt;br /&gt;
&lt;br /&gt;
You don't have to be a Freeside member to come to our events or take our classes. We encourage you to come out to the '''Tuesday night Open House''' that we have every second and fourth Tuesday at 7:30 PM, or to any of the other public classes or events that we have on [http://www.meetup.com/Freeside-Atlanta Meetup]. Come check the place out and see if this is a community that you'd be interested in [[Joining|joining]]!&lt;br /&gt;
&lt;br /&gt;
== Our Mission ==&lt;br /&gt;
&lt;br /&gt;
Freeside Technology Spaces, a 501(c)(3) non-profit organization, strives to provide a space that inspires collaboration, creativity, teaching, and open projects for the Atlanta community. &lt;br /&gt;
&lt;br /&gt;
== Our Space ==&lt;br /&gt;
&lt;br /&gt;
We built our space into different areas to consolidate where we work on stuff in the space. You can check out the different areas of our space [[Our_Space | here]].  We are located at:&lt;br /&gt;
&lt;br /&gt;
3043 Commerce Way&amp;lt;br&amp;gt;&lt;br /&gt;
Atlanta, GA 30354&lt;br /&gt;
&lt;br /&gt;
There are [[Detailed Directions|detailed directions]] to our space to help you find the place.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
== Freeside by the Numbers ==&lt;br /&gt;
&lt;br /&gt;
* 70 [[Members|members]] and [[Joining|growing]]!&lt;br /&gt;
* 1,200+ makers served in 2012&lt;br /&gt;
* 9,000 square feet of shop, workspace, and materials&lt;br /&gt;
* 22 [[Our_Space|zones]] of awesomeness&lt;br /&gt;
* 1 cat puzzle&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Past Projects ==&lt;br /&gt;
&lt;br /&gt;
Interesting [[Projects | projects]] going on at our space:&lt;br /&gt;
* An under $2000 [http://blog.freesideatlanta.org/2013/03/super-cheap-and-effective-off-road.html Off Road Wheelchair] art project&lt;br /&gt;
* A [http://blog.freesideatlanta.org/2012/04/draft-freesiders-hackers-collaborate-in.html published white paper] for an open collaboration to 3D print CT scans for pre-surgery planning&lt;br /&gt;
* An interactive [https://wiki.freesideatlanta.org/fs/Infinity_Portal Infinity Mirror Archway] art project for Alchemy&lt;br /&gt;
* [http://www.learntosolder.org/ LearnToSolder.org] - started by a member for Atlanta's Mini Maker Faire (before we had a full Maker Faire)&lt;br /&gt;
* [https://wiki.freesideatlanta.org/fs/Gaze Gaze Tracking in Rookie and Veteran Surgeons] - Another medical collaboration examining how diagnosticians look at x-rays.&lt;br /&gt;
* The [[JAM]] (Joy's Art Machine): A machine that gifts art&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
== Upcoming Events ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;shtml version=&amp;quot;2&amp;quot; hash=&amp;quot;077ef96cabd5093bdf6e83e2be757e3c43c5c8b21f7a0d4af15cc4da3b52d604&amp;quot;&amp;gt;&amp;lt;iframe src=&amp;quot;/static/meetup.html&amp;quot; frameborder=0&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/iframe&amp;gt;&amp;lt;/shtml&amp;gt;&amp;lt;p&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Freeside in Photos ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px heights=200px&amp;gt;&lt;br /&gt;
File:IMG_20151206_084209.jpg&lt;br /&gt;
File:41_-_QgruavT.jpg&lt;br /&gt;
File:27655585626_8152e003b1_k.jpg&lt;br /&gt;
File:DSC_0537.jpg&lt;br /&gt;
File:Dsc_1061_27728443462_o.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Boop ==&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=User:Jake&amp;diff=3069</id>
		<title>User:Jake</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=User:Jake&amp;diff=3069"/>
		<updated>2022-02-16T05:43:01Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Testing....&lt;br /&gt;
&lt;br /&gt;
Good enough!&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=User:Jake&amp;diff=3068</id>
		<title>User:Jake</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=User:Jake&amp;diff=3068"/>
		<updated>2022-02-16T05:38:35Z</updated>

		<summary type="html">&lt;p&gt;Jake: Created page with &amp;quot;Testing....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Testing....&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
	<entry>
		<id>https://wiki.freesideatlanta.org/index.php?title=Info&amp;diff=3067</id>
		<title>Info</title>
		<link rel="alternate" type="text/html" href="https://wiki.freesideatlanta.org/index.php?title=Info&amp;diff=3067"/>
		<updated>2022-02-16T05:36:33Z</updated>

		<summary type="html">&lt;p&gt;Jake: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[File:FrontSignCrop.jpg|thumb|right|300px]]&lt;br /&gt;
[[File:Dsc_1048_27728446822_o.jpg|thumb|right|300px]]&lt;br /&gt;
[[File:24495000883_c84da5a225_h.jpg|thumb|right|300px]]&lt;br /&gt;
&lt;br /&gt;
'''Freeside Atlanta''' (est. 2009) is a 501(c)(3) non-profit work space built entirely by volunteers.&lt;br /&gt;
 &lt;br /&gt;
Located just south of downtown Atlanta, we are a community of makers, tinkerers, engineers, programmers, artists, teachers, and lunatics. As a community, we have built out our space with tools and equipment for electronics, 3D printing, woodworking, metalworking, art, design, [[Classes|classes]], and events. Everything you see in [[Our Space|our space]] was donated or built by members. &lt;br /&gt;
&lt;br /&gt;
Our members are engaged in amazing [[Projects|projects]] and love to share knowledge. We also develop and work with open source and free technology wherever possible, and try to release our creations under variants of the [https://creativecommons.org/licenses Creative Commons license].&lt;br /&gt;
&lt;br /&gt;
You don't have to be a Freeside member to come to our events or take our classes. We encourage you to come out to the '''Tuesday night Open House''' that we have every second and fourth Tuesday at 7:30 PM, or to any of the other public classes or events that we have on [http://www.meetup.com/Freeside-Atlanta Meetup]. Come check the place out and see if this is a community that you'd be interested in [[Joining|joining]]!&lt;br /&gt;
&lt;br /&gt;
== Our Mission ==&lt;br /&gt;
&lt;br /&gt;
Freeside Technology Spaces, a 501(c)(3) non-profit organization, strives to provide a space that inspires collaboration, creativity, teaching, and open projects for the Atlanta community. &lt;br /&gt;
&lt;br /&gt;
== Our Space ==&lt;br /&gt;
&lt;br /&gt;
We built our space into different areas to consolidate where we work on stuff in the space. You can check out the different areas of our space [[Our_Space | here]].  We are located at:&lt;br /&gt;
&lt;br /&gt;
3043 Commerce Way&amp;lt;br&amp;gt;&lt;br /&gt;
Atlanta, GA 30354&lt;br /&gt;
&lt;br /&gt;
There are [[Detailed Directions|detailed directions]] to our space to help you find the place.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
== Freeside by the Numbers ==&lt;br /&gt;
&lt;br /&gt;
* 70 [[Members|members]] and [[Joining|growing]]!&lt;br /&gt;
* 1,200+ makers served in 2012&lt;br /&gt;
* 9,000 square feet of shop, workspace, and materials&lt;br /&gt;
* 22 [[Our_Space|zones]] of awesomeness&lt;br /&gt;
* 1 cat puzzle&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Past Projects ==&lt;br /&gt;
&lt;br /&gt;
Interesting [[Projects | projects]] going on at our space:&lt;br /&gt;
* An under $2000 [http://blog.freesideatlanta.org/2013/03/super-cheap-and-effective-off-road.html Off Road Wheelchair] art project&lt;br /&gt;
* A [http://blog.freesideatlanta.org/2012/04/draft-freesiders-hackers-collaborate-in.html published white paper] for an open collaboration to 3D print CT scans for pre-surgery planning&lt;br /&gt;
* An interactive [https://wiki.freesideatlanta.org/fs/Infinity_Portal Infinity Mirror Archway] art project for Alchemy&lt;br /&gt;
* [http://www.learntosolder.org/ LearnToSolder.org] - started by a member for Atlanta's Mini Maker Faire (before we had a full Maker Faire)&lt;br /&gt;
* [https://wiki.freesideatlanta.org/fs/Gaze Gaze Tracking in Rookie and Veteran Surgeons] - Another medical collaboration examining how diagnosticians look at x-rays.&lt;br /&gt;
* The [[JAM]] (Joy's Art Machine): A machine that gifts art&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
== Upcoming Events ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;shtml version=&amp;quot;2&amp;quot; hash=&amp;quot;077ef96cabd5093bdf6e83e2be757e3c43c5c8b21f7a0d4af15cc4da3b52d604&amp;quot;&amp;gt;&amp;lt;iframe src=&amp;quot;/static/meetup.html&amp;quot; frameborder=0&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/iframe&amp;gt;&amp;lt;/shtml&amp;gt;&amp;lt;p&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Freeside in Photos ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px heights=200px&amp;gt;&lt;br /&gt;
File:IMG_20151206_084209.jpg&lt;br /&gt;
File:41_-_QgruavT.jpg&lt;br /&gt;
File:27655585626_8152e003b1_k.jpg&lt;br /&gt;
File:DSC_0537.jpg&lt;br /&gt;
File:Dsc_1061_27728443462_o.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Boop ==&lt;/div&gt;</summary>
		<author><name>Jake</name></author>
	</entry>
</feed>